:root {
      --accent-1: #fcaf3b;
      --accent-2: #ab641d;
      --bg: #ffffff;
      --text: #2b2b2b;
      --max-width: 1200px;
      --radius: 12px;
      --gap: 24px;
      font-family: 'Segoe UI', Arial, Helvetica, sans-serif;
    }
	
	
	
		/* HEADER */
	.nav {
	  position: fixed;
	  top: 0;
	  width: 100%;
	  z-index: 999;
	  background: rgba(252,175,59,0.85);
	  backdrop-filter: blur(6px);
	  transition: background 0.3s ease;
	}

	/* container */
	.nav-inner {
	  max-width: 1200px;
	  margin: auto;
	  padding: 12px 20px;
	  display: flex;
	  align-items: center;
	  gap: 20px;
	}

	/* LOGO */
	.nav-left img {
	  width: 120px;
	  height: auto;
	}

	/* TITULO */
	.nav-center {
	  flex: 1;
	  text-align: center;
	}

	.nav-title {
	  font-size: 1.1rem;
	  font-weight: 700;
	  color: #2b2b2b;
	}

	/* MENU */
	.nav-menu {
	  margin-right: 40px; /* espaço antes das redes */
	}

	.nav-menu ul {
	  display: flex;
	  gap: 26px;
	  list-style: none;
	  margin: 0;
	  padding: 0;
	}

	.nav-menu a {
	  text-decoration: none;
	  font-weight: 600;
	  color: #2b2b2b;
	  font-size: 0.95rem;
	  transition: color 0.25s ease;
	}

	.nav-menu a:hover {
	  color: #ab641d;
	}

	/* REDES */
	.nav-right {
	  display: flex;
	  align-items: center;
	}

	.socials {
	  display: flex;
	  gap: 10px;
	}

	.socials img {
	  width: 26px;
	  height: 26px;
	}

	/* BOTÃO HAMBURGER */
	.menu-toggle {
	  display: none;
	  flex-direction: column;
	  cursor: pointer;
	}

	.menu-toggle span {
	  width: 26px;
	  height: 3px;
	  background: #2b2b2b;
	  margin: 4px 0;
	  transition: .3s;
	}

	/* MOBILE */
	@media (max-width: 900px) {

	  .nav-inner {
		justify-content: space-between;
	  }

	  .menu-toggle {
		display: flex;
	  }

	  /* menu mobile */
	  .nav-menu {
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		background: #fcaf3b;
		display: none;
		flex-direction: column;
		text-align: center;
		padding: 20px 0;
	  }

	  .nav-menu ul {
		flex-direction: column;
		gap: 18px;
	  }

	  .nav-menu.active {
		display: flex;
	  }

	  /* redes sociais abaixo do menu */
	  .nav-right {
		width: 100%;
		justify-content: center;
		margin-top: 10px;
	  }

	}
	
	
	
	
	

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
      overflow-x: hidden;
    }

    img, iframe {
      max-width: 100%;
      display: block;
    }

    .container {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 16px;
    }

    /* HEADER */
    header.nav {
      width: 100%;
      background-color: var(--accent-1);
      position: sticky;
      top: 0;
      z-index: 100;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      padding: 10px 20px;
      max-width: var(--max-width);
      margin: 0 auto;
    }

    .nav-left img {
      width: 100px;
      height: auto;
      object-fit: contain;
      transition: transform 0.3s ease;
    }

    .nav-left img:hover {
      transform: scale(1.05);
    }

    .nav-center {
      flex: 1;
      text-align: center;
      animation: fadeIn 1s ease;
    }

    .nav-title {
      font-size: 1.6rem;
      font-weight: 700;
      color: var(--text);
      letter-spacing: 1px;
    }

    .nav-right {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 10px;
    }

    .socials {
  display: flex;
  align-items: center;
  gap: 12px;
}

.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;              /* ligeiramente maior para PNG */
  height: 42px;
  border-radius: 10px;
  background-color: #ffffff;
  border: 1px solid #ddd;
  overflow: hidden;         /* mantém cantos arredondados */
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.socials a img {
  width: 26px;              /* tamanho visível e legível */
  height: 26px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) contrast(120%); /* melhora legibilidade */
  transition: filter 0.3s ease;
}

.socials a:hover {
  transform: scale(1.1);
  background-color: #ffe2b3;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.socials a:hover img {
  filter: brightness(1) saturate(120%);
}


    /* HERO / BANNER */
    .hero-full {
      position: relative;
      width: 100%;
      overflow: hidden;
    }

    .hero-full .hero-img {
      width: 100%;
      height: auto;
      object-fit: cover;
      aspect-ratio: 2110 / 800;
      animation: fadeIn 1.2s ease-in;
    }

    /* BLOCKS */
    .blocks {
      display: flex;
      flex-direction: column;
      gap: var(--gap);
      margin: 40px 0;
    }

    .block {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      align-items: center;
      padding: 20px;
      border: 1px solid #eee;
      border-radius: 12px;
      background: #fff;
      opacity: 0;
      transform: translateY(40px);
      animation: slideUp 0.8s forwards;
    }

    .block:nth-child(even) {
      animation-delay: 0.2s;
    }

    .block img {
      width: auto;
      height: auto;
      border-radius: 10px;
    }

    .block .text h2 {
      font-size: 1.5rem;
      color: var(--accent-2);
      margin-bottom: 10px;
    }

    .block .text p {
      font-size: 1rem;
      margin-bottom: 10px;
    }

    /* VIDEO BLOCK */
    iframe {
      max-width: 500px;
      height: 480px;
      margin: 0 auto;
      border-radius: 10px;
      border: none;
    }

    /* CONTACT SECTION */
    .contact-block {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      padding: 20px;
      border-top: 2px solid #eee;
      margin-top: 40px;
      animation: fadeIn 1.2s ease;
    }

    .contact-card h4 {
      color: var(--accent-1);
      margin-bottom: 10px;
    }

    .contact-card p {
      font-size: 0.95rem;
      margin-bottom: 6px;
    }

    .contact-card a {
      color: var(--accent-2);
      text-decoration: none;
    }

    .btn {
      display: inline-block;
      padding: 10px 18px;
      background: var(--accent-1);
      color: #fff;
      border-radius: 8px;
      margin-top: 10px;
      text-decoration: none;
      font-weight: 600;
      transition: background 0.3s;
    }

    .btn:hover {
      background: var(--accent-2);
    }

    footer {
      text-align: center;
      color: #777;
      font-size: 13px;
      padding: 30px 0;
      animation: fadeIn 1s ease-in;
    }

    /* --- ANIMAÇÕES --- */
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    @keyframes slideUp {
      from {
        opacity: 0;
        transform: translateY(40px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
	
	
	/* 4 botoes*/
	.cta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 40px auto;
  width: 100%;
  max-width: 1000px;
  text-align: center;
}

/* Responsivo */
@media (max-width: 900px) {
  .cta-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .cta-grid {
    grid-template-columns: 1fr;
  }
}



/* NOVO BLOCO — 2 blocos, 2 linhas, 1 coluna cada */
/* container dos blocos */
.two-blocks {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin: 40px 0;
}

/* cada bloco */
.single-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px;
  background: #ffffff;
  border: 1px solid #eee;
  border-radius: 12px;
}

/* cada linha */
.block-line {
  width: 100%;
  max-width: 600px;
  margin-bottom: 18px;
}

/* imagem com tamanho natural e centralizada */
.block-line img {
  max-width: 100%;     /* impede vazamento no mobile */
  height: auto;        /* preserva proporção */
  border-radius: 12px;
  display: block;
  margin-left: auto;
  margin-right: auto;  /* centraliza a imagem */
}

/* textos */
.block-line p {
  font-size: 1rem;
  line-height: 1.6;
  color: #2b2b2b;
}

/* MOBILE */
@media (max-width: 480px) {
  .block-line p {
    font-size: 0.95rem;
  }
}



/* BLOCO 2 — 2 colunas × 2 linhas */
.double-block {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 24px;
  background: #ffffff;
  border: 1px solid #eee;
  border-radius: 12px;
}

/* cada linha do bloco */
.double-block .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: center;
}

/* cada coluna */
.double-block .col {
  text-align: center;
}

/* imagens */
.double-block img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 12px;
}

/* textos */
.double-block p {
  font-size: 1rem;
  line-height: 1.6;
  color: #2b2b2b;
}

/* MOBILE — vira 1 coluna */
@media (max-width: 768px) {
  .double-block .row {
    grid-template-columns: 1fr;
  }
}



/* BLOCO 3 — Galeria */
.gallery-block {
  padding: 24px;
  background: #ffffff;
  border: 1px solid #eee;
  border-radius: 12px;
  margin-top: 40px;
}

.gallery-block h2 {
  text-align: center;
  font-size: 1.7rem;
  color: #ab641d;
  margin-bottom: 24px;
}

/* GRID 3 colunas */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* Miniatura */
.gallery-item img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  cursor: zoom-in;
  transition: transform .25s ease;
  display: block;
  margin: 0 auto;
}

.gallery-item img:hover {
  transform: scale(1.05);
}

/* ------- LIGHTBOX ------- */

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(4px);
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 20px;
}

.lightbox-img {
  max-width: 90%;
  max-height: 90vh;
  border-radius: 12px;
  display: block;
  cursor: zoom-in;
  transition: transform 0.3s ease;
}

.close-btn {
  position: absolute;
  top: 40px;
  right: 40px;
  font-size: 3rem;
  color: #fff;
  cursor: pointer;
  z-index: 10000;
}

/* MOBILE */
@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item img {
    width: 100%;
    height: auto;
    max-width: 250px;
  }
}







	
	
	
    /* --- RESPONSIVIDADE --- */
    @media (max-width: 900px) {
      .nav-inner {
        flex-direction: column;
        text-align: center;
      }

      .nav-left img {
        width: 80px;
      }

      .nav-title {
        font-size: 1.3rem;
      }

      .block {
        grid-template-columns: 1fr;
        text-align: center;
      }

      .contact-block {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 480px) {
      .nav-title { font-size: 1rem; }
      .block .text h2 { font-size: 1.1rem; }
      .block .text p { font-size: 0.9rem; }
      iframe {
        width: 100%;
        height: auto;
        aspect-ratio: 500 / 480;
      }
	  
		@media (max-width: 900px) {

	  .language-switch {
		justify-content: center;
		margin: 10px auto;
		width: 100%;
	  }

	}

	
		@media (max-width: 900px) {

	  .nav-menu {
		display: none;
		flex-direction: column;
		align-items: center;  /* ← adicione isto */
		text-align: center;
		padding: 20px 0;
	  }

	}
	  
	  
    }
