/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: #43181E;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}


/* ============================================================
   BOTÕES GLOBAIS
============================================================ */

/* Botão padrão da LP (fundo claro, sombra laranja) */
.btn {
  display: inline-block;
  cursor: pointer;
  border: none;
  background: #FDFCF9;
  box-shadow: 0px 4px 4px 0px #FF7500;
  border-radius: 999px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: #43181E;
  padding: 14px 36px;
  transition: opacity 0.2s;
}

.btn:hover {
  opacity: 0.88;
}

/* Botão do cabeçalho (menor) */
.btn--cab {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 18px;
  padding: 10px 24px;
  background: #FAE7A3;
  box-shadow: none;
  color: #43181E;
  border-radius: 999px;
  white-space: nowrap;
}

.btn--cab:hover {
  opacity: 0.88;
}


/* ============================================================
   CABEÇALHO
============================================================ */
.cabecalho {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: #43181E;
}

.cabecalho__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

/* Logo - removida conforme solicitado */
.cabecalho__logo {
  display: none;
}

/* Nav */
.cabecalho__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex: 1;
}

.cabecalho__nav ul {
  display: flex;
  gap: 32px;
}

.cabecalho__nav ul a {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #FAE7A3;
  transition: opacity 0.2s;
}

.cabecalho__nav ul a:hover {
  opacity: 0.75;
}

/* Hamburguer (oculto no desktop) */
.cabecalho__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-right: auto; /* empurra para a esquerda no mobile */
}

.cabecalho__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #FAE7A3;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* Estado aberto do hamburguer */
.cabecalho__hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.cabecalho__hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.cabecalho__hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* Botão hero desktop: visível no desktop/tablet, oculto no mobile */
.btn--hero-mobile { display: none; }
.btn--hero-desktop { display: inline-block; }


/* ============================================================
   SEÇÃO 1 – HERO
============================================================ */
.sec1-hero {
  padding-top: 68px;
  background-image: url('assets/pg1-bgImage.png');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

/* Área de conteúdo: só a coluna esquerda fica no fluxo */
.sec1-hero__content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 80px 0;
  /* largura da coluna esquerda ocupa ~55% para dar espaço à menina */
  display: flex;
  min-height: calc(100vh - 68px - 80px);
}

/* Coluna esquerda */
.sec1-hero__left {
  width: 55%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding-bottom: 100px; /* espaço acima da borda */
  justify-content: center;
}

/* Logo Raízes do Saber */
.sec1-hero__logo-raizes {
  width: 220px;
  height: auto;
}

/* Título hero */
.sec1-hero__titulo {
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-weight: 500;
  font-size: 43px;
  line-height: 1.1;
  text-transform: uppercase;
  color: #43181E;
}

.sec1-hero__titulo strong {
  font-weight: 700;
}

/* Parágrafo descritivo */
.sec1-hero__texto {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  color: #43181E;
  max-width: 480px;
}

/* Imagem da menina: absoluta, alinhada ao bottom da seção, lado direito */
.sec1-hero__right {
  position: absolute;
  right: 0;
  bottom: 0; /* alinha ao fim da seção (sobre a borda) */
  width: 50%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  pointer-events: none;
}

.sec1-hero__menina {
  width: 100%;
  max-width: 391px; /* 435px - 10% */
  height: auto;
  display: block;
}

/* Faixa decorativa inferior – fixada no bottom da seção */
.sec1-hero__borda {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-image: url('assets/pg1-img-borda.png');
  background-size: auto 100%;
  background-repeat: repeat-x;
  z-index: 1;
}

.sec1-hero__borda img {
  display: none;
}


/* ============================================================
   SEÇÃO 2 – TRANSFORMANDO DIRETRIZES EM PRÁTICA
============================================================ */
.sec2 {
  background-color: #FFF9E6;
  padding: 80px 0;
}

.sec2__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
}

.sec2__titulo-principal {
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-weight: 700;
  font-size: 43px;
  text-transform: uppercase;
  color: #285422;
  text-align: center;
  margin-bottom: 48px;
}

.sec2__body {
  display: flex;
  align-items: center;
  gap: 64px;
}

.sec2__texto-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sec2__texto1 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  color: #43181E;
}

.sec2__texto1 strong {
  font-weight: 700;
}

.sec2__titulo2 {
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-weight: 700;
  font-size: 36px;
  text-transform: uppercase;
  color: #285422;
  margin-top: 12px;
}

.sec2__texto2 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.5;
  color: #43181E;
}

.sec2__img-col {
  flex: 0 0 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sec2__img {
  width: 100%;
  height: auto;
}

/* Imagem mobile: escondida por padrão (desktop/tablet) */
.sec2__img--mobile {
  display: none;
}


/* ============================================================
   SEÇÃO 3 – CONHEÇA A COLEÇÃO
============================================================ */
.sec3 {
  background-image: url('assets/pg3-bgImg.png');
  background-size: cover;
  background-position: center;
  padding: 80px 0 60px;
}

.sec3__inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
  margin-bottom: 48px;
}

.sec3__titulo {
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-weight: 700;
  font-size: 45px;
  text-transform: uppercase;
  color: #285422;
  margin-bottom: 16px;
}

.sec3__subtitulo {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 22px;
  color: #43181E;
  line-height: 1.5;
}

/* Carrossel wrapper: setas + viewport */
.sec3__carrossel-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 40px;
  max-width: 1680px;
  margin: 0 auto;
}

.sec3__carrossel {
  flex: 1;
  overflow: hidden;
}

.sec3__track {
  display: flex;
  gap: 24px;
  transition: transform 0.4s ease;
  will-change: transform;
}

/* Card */
.sec3__card {
  flex: 0 0 351px;
  width: 351px;
  height: 450px;
  border-radius: 40px;
  background: #FDFCF9;
  box-shadow: -1px 20px 24.5px 0px #43181E33;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  outline: none;
}

/* Face frontal: imagem centralizada + texto embaixo */
.sec3__card-front {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 24px 20px 28px;
  gap: 10px;
  transition: opacity 0.3s ease;
}

.sec3__card-front img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -58%);
  width: 250px;
  height: auto;
  object-fit: contain;
  pointer-events: none;
}

.sec3__card-titulo {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  color: #43181E;
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0.02em;
  margin-top: auto;
}

.sec3__card-isbn {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 11px;
  color: #43181E;
  opacity: 0.55;
  text-align: center;
}

/* Face de hover/tap: descrição centralizada */
.sec3__card-back {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
  padding: 32px 28px;
  background: #FDFCF9;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.sec3__card-desc {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #43181E;
  text-align: left;
  line-height: 1.6;
}

/* Hover desktop */
@media (hover: hover) {
  .sec3__card:hover .sec3__card-front,
  .sec3__card:focus-visible .sec3__card-front {
    opacity: 0;
  }
  .sec3__card:hover .sec3__card-back,
  .sec3__card:focus-visible .sec3__card-back {
    opacity: 1;
    pointer-events: auto;
  }
}

/* Toggle tap mobile */
.sec3__card.is-flipped .sec3__card-front { opacity: 0; }
.sec3__card.is-flipped .sec3__card-back  { opacity: 1; pointer-events: auto; }

/* Setas */
.sec3__seta {
  flex: 0 0 auto;
  background: none;
  border: none;
  font-size: 22px;
  color: #43181E;
  cursor: pointer;
  padding: 8px;
  opacity: 0.7;
  transition: opacity 0.2s;
  line-height: 1;
}

.sec3__seta:hover { opacity: 1; }
.sec3__seta:disabled { opacity: 0.2; cursor: default; }

/* Dots + botão */
.sec3__rodape {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-top: 36px;
}

.sec3__dots {
  display: flex;
  gap: 8px;
}

.sec3__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #43181E;
  opacity: 0.25;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: opacity 0.2s;
}

.sec3__dot.is-active {
  opacity: 1;
}

.btn--sec3 {
  font-size: 20px;
}

/* ============================================================
   CARD CTA – DISTRIBUIDORES AUTORIZADOS
============================================================ */
.sec3__cta-card {
  max-width: 860px;
  width: 100%;
  margin: 36px auto 0;
  padding: 40px 48px;
  background: #FDFCF9;
  border-radius: 40px;
  box-shadow: -1px 20px 24.5px 0px #43181E33;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.sec3__cta-texto {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.5;
  color: #43181E;
  max-width: 680px;
}

.sec3__cta-btn {
  flex: 0 0 auto;
  white-space: nowrap;
}


/* ============================================================
   RESPONSIVO – DESKTOP (> 1024px)
   Aproxima a imagem da menina do texto e centraliza ambos
============================================================ */
@media (min-width: 1025px) {
  /* Reduz a largura da coluna esquerda para que a imagem fique mais próxima */
  .sec1-hero__left {
    width: 50%;
  }

  /* Imagem posicionada a partir do centro, colada ao final do texto */
  .sec1-hero__right {
    right: auto;
    left: 50%;
    width: 50%;
    justify-content: flex-start;
    align-items: flex-end;
    z-index: 2; /* sobrepõe a faixa decorativa */
  }
}


/* ============================================================
   RESPONSIVO – TABLET (≤ 1024px)
============================================================ */
@media (max-width: 1024px) {
  .sec1-hero__content {
    padding: 48px 40px 0;
  }

  .sec1-hero__left {
    width: 58%;
  }

  .sec1-hero__titulo {
    font-size: 34px;
  }

  .sec1-hero__logo-raizes {
    width: 180px;
  }

  .sec1-hero__right {
    width: 46%;
  }

  .sec2__inner {
    padding: 0 40px;
  }

  .sec2__titulo-principal {
    font-size: 36px;
  }

  .sec2__img-col {
    flex: 0 0 300px;
  }

  .sec2__body {
    gap: 40px;
  }

  /* Sec3 tablet: 2 cards visíveis */
  .sec3__card {
    flex: 0 0 260px;
    width: 260px;
    height: 380px;
  }

  .sec3__card-back {
    padding: 20px 18px;
    gap: 10px;
  }

  .sec3__card-desc {
    font-size: 13px;
    line-height: 1.5;
  }

  .sec3__card-front img {
    width: 250px;
  }

  .sec3__carrossel-wrap {
    padding: 0 20px;
  }

  /* Sec3 CTA card – tablet */
  .sec3__cta-card {
    max-width: 600px;
    padding: 32px 28px;
    gap: 20px;
    border-radius: 32px;
  }

  .sec3__cta-texto {
    font-size: 18px;
  }
}


/* ============================================================
   RESPONSIVO – MOBILE (≤ 768px)
============================================================ */
@media (max-width: 768px) {

  /* Cabeçalho mobile */
  .cabecalho__hamburger {
    display: flex;
  }

  /* Nav mobile: overlay absoluto sobre o conteúdo */
  .cabecalho__nav {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    width: 100%;
    background-color: #43181E;
    flex-direction: column;
    align-items: center;
    padding: 24px 0 32px;
    gap: 24px;
  }

  .cabecalho__nav.is-open {
    display: flex;
  }

  .cabecalho__nav ul {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .sec1-hero__borda {
    height: 56px; /* 80px - 30% */
  }

  /* Seção 1 mobile: coluna única */
  .sec1-hero {
    overflow: hidden;
    padding-top: 68px;
    min-height: 100vh;
  }

  .sec1-hero__content {
    flex-direction: column;
    align-items: center;
    padding: 24px 24px 0;
    min-height: unset;
    padding-bottom: 64px; /* espaço para a borda decorativa */
  }

  .sec1-hero__left {
    width: 100%;
    align-items: flex-start;
    padding-bottom: 0;
    gap: 16px;
  }

  /* Logo raizes: topo direito no mobile */
  .sec1-hero__logo-raizes {
    width: 100px;
    align-self: center;
  }

  .sec1-hero__titulo {
    font-size: 28px;
    text-align: left;
  }

  .sec1-hero__texto {
    font-size: 16px;
    max-width: 100%;
  }

  /* Imagem da menina: no fluxo, abaixo do texto */
  .sec1-hero__right {
    position: relative;
    transform: none;
    width: 100%;
    justify-content: center;
    pointer-events: auto;
    margin-top: 16px;
  }

  .sec1-hero__menina {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  /* Botões hero: inverte visibilidade */
  .btn--hero-desktop { display: none; }
  .btn--hero-mobile {
    display: block;
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 15px;
    padding: 14px 24px;
    white-space: normal;
    text-align: center;
    z-index: 3;
    width: 85%;
  }

  /* Seção 2 mobile */
  .sec2 {
    padding: 48px 0;
  }

  .sec2__inner {
    padding: 0 24px;
  }

  .sec2__titulo-principal {
    font-size: 30px;
    margin-bottom: 32px;
  }

  .sec2__body {
    flex-direction: column;
    gap: 32px;
  }

  .sec2__img-col {
    flex: unset;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    display: none; /* esconde a coluna da imagem no mobile */
  }

  /* Mostra a imagem mobile inserida entre o título2 e os textos */
  .sec2__img--mobile {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .sec2__texto1 {
    font-size: 16px;
    text-align: center;
  }

  .sec2__titulo2 {
    text-align: center;
    font-size: 28px;
  }

  .sec2__texto2 {
    font-size: 16px;
    text-align: center;
  }

  /* Sec3 mobile */
  .sec3 {
    padding: 48px 0 40px;
  }

  .sec3__titulo {
    font-size: 28px;
  }

  .sec3__subtitulo {
    font-size: 18px;
  }

  .sec3__carrossel-wrap {
    padding: 0 8px;
    gap: 8px;
  }

  .sec3__card {
    flex: 0 0 calc(100vw - 80px);
    width: calc(100vw - 80px);
    max-width: 320px;
    height: 420px;
  }

  .sec3__card-back {
    padding: 18px 16px;
    gap: 8px;
  }

  .sec3__card-desc {
    font-size: 13px;
    line-height: 1.5;
  }

  .sec3__card-front img {
    width: 250px;
  }

  .sec3__seta {
    font-size: 18px;
    padding: 4px;
  }

  /* Sec3 CTA card – mobile */
  .sec3__cta-card {
    width: 90%;
    max-width: none;
    padding: 28px 20px;
    gap: 18px;
    border-radius: 24px;
    margin-top: 28px;
  }

  .sec3__cta-texto {
    font-size: 16px;
  }

  .sec3__cta-btn {
    width: 100%;
    white-space: normal;
    text-align: center;
    font-size: 16px;
    padding: 14px 20px;
  }
}


/* ============================================================
   SEÇÃO 4 – ECOSSISTEMA COMPLETO
============================================================ */
.sec4 {
  background-image: url('assets/pg4-bgImg.png');
  background-size: cover;
  background-position: center;
  padding: 80px 0;
}

.sec4__inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.sec4__bloco {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.sec4__titulo {
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-weight: 700;
  font-size: 45px;
  line-height: 1.1;
  text-transform: uppercase;
  color: #FC9670;
}

.sec4__texto {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  color: #FFF9E6;
  max-width: 620px;
}

.sec4__texto--bold {
  font-weight: 700;
}

/* Grid 3x2 */
.sec4__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
  min-width: 0;
  margin-top: 8px;
}

.sec4__card {
  min-width: 0;
  background: #FFF9E6;
  box-shadow: 0px 4px 4px 0px #FF750080;
  border-radius: 16px;
  padding: 28px 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  overflow: hidden;
}

.sec4__card img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.sec4__card-titulo {
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0.01em;
  text-align: center;
  text-transform: uppercase;
  color: #43181E;
}

.sec4__card-desc {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  text-align: center;
  color: #43181E;
}

.sec4__card-desc strong {
  font-weight: 700;
}

/* Dotpoints */
.sec4__dotpoints {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  text-align: left;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.sec4__dotpoints li {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 26px;
  line-height: 1.4;
  letter-spacing: 0.01em;
  color: #FAE7A3;
  padding-left: 1.4em;
  position: relative;
  margin-bottom: 20px;
}

.sec4__dotpoints li:last-child {
  margin-bottom: 0;
}

.sec4__dotpoints li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #FF9670;
}


/* ============================================================
   RESPONSIVO SEC4 – TABLET (≤ 1024px)
============================================================ */
@media (max-width: 1024px) {
  .sec4__titulo {
    font-size: 34px;
  }

  .sec4__texto {
    font-size: 17px;
  }

  .sec4__card {
    padding: 20px 14px 18px;
    gap: 8px;
  }

  .sec4__card img {
    width: 44px;
    height: 44px;
  }

  .sec4__card-titulo {
    font-size: 13px;
  }

  .sec4__card-desc {
    font-size: 12px;
  }

  .sec4__dotpoints li {
    font-size: 20px;
  }
}


/* ============================================================
   RESPONSIVO SEC4 – MOBILE (≤ 768px)
============================================================ */
@media (max-width: 768px) {
  .sec4 {
    padding: 48px 0;
  }

  .sec4__inner {
    gap: 48px;
  }

  .sec4__titulo {
    font-size: 25px;
  }

  .sec4__texto {
    font-size: 15px;
  }

  .sec4__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .sec4__card {
    padding: 14px 8px 12px;
    gap: 6px;
    border-radius: 12px;
    word-break: break-word;
  }

  .sec4__card img {
    width: 36px;
    height: 36px;
  }

  .sec4__card-titulo {
    font-size: 11px;
  }

  .sec4__card-desc {
    font-size: 11px;
  }

  .sec4__dotpoints li {
    font-size: 16px;
    line-height: 1.7;
  }
}


/* ============================================================
   SEÇÃO 5 – IMPLEMENTE A ERER DO JEITO CERTO
============================================================ */
.sec5 {
  background-image: url('assets/pg5-bgImg.png');
  background-size: cover;
  background-position: center;
  padding: 80px 0 0;
  overflow: hidden;
}

.sec5__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
  display: flex;
  align-items: flex-end;
  gap: 48px;
  width: 100%;
}

.sec5__col-texto {
  flex: 0 0 45%;
  padding-bottom: 80px;
}

.sec5__titulo {
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-weight: 700;
  font-size: 45px;
  line-height: 1.05;
  text-transform: uppercase;
  color: #285422;
  margin-bottom: 28px;
}

.sec5__texto {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: 0.01em;
  color: #43181E;
  margin-bottom: 16px;
}

/* Form */
.sec5__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
  border-radius: 20px;
  overflow: hidden;
}

.sec5__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.sec5__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sec5__field label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: -0.02em;
  color: #43181E;
}

.sec5__field input {
  height: 48px;
  border-radius: 40px;
  border: none;
  background: #FDFCF9;
  padding: 0 20px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: -0.02em;
  color: #FC9670;
  outline: none;
  width: 100%;
}

.sec5__field input::placeholder {
  color: #FC9670;
  opacity: 0.7;
}

.sec5__field input:focus {
  box-shadow: 0 0 0 2px #285422;
}

.btn--sec5 {
  align-self: center;
  margin-top: 8px;
  font-size: 20px;
  padding: 14px 36px;
  white-space: nowrap;
}

/* Imagem do homem */
.sec5__col-img {
  flex: 0 0 55%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.sec5__col-img img {
  height: 620px;
  width: auto;
  max-width: 100%;
  display: block;
}


/* ============================================================
   RESPONSIVO SEC5 – TABLET (≤ 1024px)
============================================================ */
@media (max-width: 1024px) {
  .sec5__inner {
    padding: 0 40px;
    gap: 32px;
  }

  .sec5__titulo {
    font-size: 36px;
  }

  .sec5__col-img {
    flex: 0 0 300px;
  }
}


/* ============================================================
   RESPONSIVO SEC5 – MOBILE (≤ 768px)
============================================================ */
@media (max-width: 768px) {
  .sec5 {
    padding: 48px 0 48px;
  }

  .sec5__inner {
    flex-direction: column;
    padding: 0 24px;
    align-items: stretch;
    gap: 0;
  }

  .sec5__col-texto {
    padding-bottom: 40px;
  }

  .sec5__titulo {
    font-size: 28px;
    text-align: center;
  }

  .sec5__texto {
    font-size: 16px;
    text-align: center;
  }

  .sec5__form-row {
    grid-template-columns: 1fr;
  }

  .btn--sec5 {
    width: 100%;
    font-size: 16px;
    padding: 14px 20px;
    white-space: normal;
    text-align: center;
  }

  .sec5__col-img {
    display: none;
  }
}


/* ============================================================
   SEÇÃO 7 – FAQ (PERGUNTAS FREQUENTES)
============================================================ */
.sec7 {
  background-image: url('assets/pg7-bgImage.png');
  background-size: cover;
  background-position: center;
  padding: 80px 0;
}

.sec7__inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sec7__titulo {
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-weight: 700;
  font-size: 36px;
  text-transform: uppercase;
  text-align: center;
  color: #285422;
  margin-bottom: 40px;
}

.sec7__accordion {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sec7__item {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  border-radius: 10px;
  background: #FFF9E6;
  box-shadow: 0px 4px 4px 0px #43181E40;
  overflow: hidden;
}

.sec7__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 54px 13px;
  min-height: 70px;
  border: none;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: 0.01em;
  color: #FF7500;
  transition: background 0.2s;
}

.sec7__trigger:hover {
  background: rgba(67, 24, 30, 0.04);
}

.sec7__pergunta {
  flex: 1;
  min-width: 0;
  font-weight: 700;
}

.sec7__icone {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  font-size: 28px;
  font-weight: 700;
  color: #FF7500;
  transition: transform 0.3s ease;
  line-height: 1;
}

.sec7__trigger[aria-expanded="true"] .sec7__icone {
  transform: rotate(45deg);
}

.sec7__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 54px;
}

.sec7__content p {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  text-align: justify;
  color: #43181E;
  padding-bottom: 24px;
}

.sec7__content.is-open {
  max-height: 400px; /* safe max */
  padding: 0 54px;
}


/* ============================================================
   RESPONSIVO SEC7 – TABLET (≤ 1024px)
============================================================ */
@media (max-width: 1024px) {
  .sec7__titulo {
    font-size: 30px;
  }

  .sec7__trigger {
    padding: 10px 32px 13px;
    font-size: 18px;
  }

  .sec7__content {
    padding: 0 32px;
  }

  .sec7__content.is-open {
    padding: 0 32px;
  }

  .sec7__content p {
    font-size: 15px;
  }
}


/* ============================================================
   RESPONSIVO SEC7 – MOBILE (≤ 768px)
============================================================ */
@media (max-width: 768px) {
  .sec7 {
    padding: 48px 0;
  }

  .sec7__titulo {
    font-size: 20px;
    margin-bottom: 28px;
  }

  .sec7__trigger {
    padding: 12px 20px 12px;
    font-size: 16px;
    min-height: 56px;
    gap: 10px;
  }

  .sec7__icone {
    width: 24px;
    height: 24px;
    font-size: 22px;
  }

  .sec7__content {
    padding: 0 20px;
  }

  .sec7__content.is-open {
    padding: 0 20px;
  }

  .sec7__content p {
    font-size: 12px;
    padding-bottom: 16px;
  }
}


/* ============================================================
   RODAPÉ
============================================================ */
.rodape {
  background-color: #43181E;
  padding: 48px 0 56px;
}

.rodape__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 80px;
}

/* ---- BLOCO ESQUERDO: LOGO + DIREITOS ---------------------- */
.rodape__left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.rodape__logo img {
  height: 100px;
  width: auto;
}

.rodape__direitos {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #FCFDF9;
  text-align: center;
  line-height: 1.5;
  max-width: 280px;
}

/* ---- BLOCO DIREITO: NAV + INFO INSTITUCIONAIS ------------- */
.rodape__right {
  display: flex;
  flex-direction: column;
  align-items: right;
  gap: 20px;
}

.rodape__nav ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
}

.rodape__nav ul a {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #FAE7A3;
  transition: opacity 0.2s;
  white-space: nowrap;
}

.rodape__nav ul a:hover {
  opacity: 0.75;
}

.rodape__info {
  display: flex;
  flex-direction: column;
  align-items: right;
  gap: 6px;
}

.rodape__info p {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: #FCFDF9;
  text-align: right;
  line-height: 1.6;
}


/* ============================================================
   RESPONSIVO RODAPÉ – TABLET (≤ 1024px)
============================================================ */
@media (max-width: 1024px) {
  .rodape {
    padding: 40px 0 48px;
  }

  .rodape__inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
  }

  .rodape__nav ul {
    gap: 28px;
  }

  .rodape__nav ul a {
    font-size: 15px;
  }

  .rodape__logo img {
    height: 80px;
  }

  .rodape__info p {
    font-size: 12px;
    text-align: center;
  }
}


/* ============================================================
   RESPONSIVO RODAPÉ – MOBILE (≤ 768px)
============================================================ */
@media (max-width: 768px) {
  .rodape {
    padding: 36px 0 44px;
  }

  .rodape__inner {
    flex-direction: column;
    align-items: center;
    gap: 28px;
    padding: 0 50px;
  }

  /* Ordem mobile: nav → logo + direitos → info */
  .rodape__right {
    display: contents;
    align-items: center;
  }

  .rodape__nav {
    order: 1;
  }

  .rodape__nav ul {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .rodape__nav ul a {
    font-size: 14px;
  }

  .rodape__left {
    order: 2;
  }

  .rodape__logo img {
    height: 90px;
  }

  .rodape__direitos {
    font-size: 11px;
    max-width: 260px;
  }

  .rodape__info {
    order: 3;
    gap: 4px;
  }

  .rodape__info p {
    font-size: 11px;
    line-height: 1.5;
    text-align: center;
  }
}


/* ============================================================
   DESKTOP ONLY – Altura das seções (≥ 1025px)
============================================================ */
@media (min-width: 1025px) {
  .sec1-hero__content {
    min-height: calc(85vh - 68px - 80px);
  }

  .sec2,
  .sec3,
  .sec4,
  .sec5,
  .sec7 {
    min-height: calc(85vh - 68px - 80px);;
  }
}
