/* ============================================================
   RESET & BASE GLOBAL
============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.5;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}


/* ============================================================
   SEÇÃO 1 — HEADER + HERO  |  mobile-first (base)
============================================================ */

/* --- Variáveis da seção 1 --- */
:root {
  --s1-yellow:  #F5C800;
  --s1-dark:    #1a1a1a;
  --s1-white:   #ffffff;
}

/* --- Header --- */
.s1-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
}

.s1-logo img {
  width: 110px;
}

/* Nav: oculta no mobile, aparece ao abrir */
.s1-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.92);
  padding: 20px;
}

.s1-nav--open {
  display: block;
}

.s1-nav ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.s1-nav__link {
  color: var(--s1-white);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color 0.2s;
}

.s1-nav__link:hover,
.s1-nav__link--active {
  color: var(--s1-yellow);
}

/* --- Hamburger --- */
.s1-hamburger {
  background: var(--s1-yellow);
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 10px 12px;
  border-radius: 6px;
}

.s1-hamburger span {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--s1-dark);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

/* Animação do hamburger quando ativo */
.s1-hamburger--active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.s1-hamburger--active span:nth-child(2) {
  opacity: 0;
}
.s1-hamburger--active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* --- Hero --- */
.s1-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
}

.s1-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #2a4a3a;
  transition: opacity 1.2s ease-in-out;
}

/* Slide 1 começa visível, slide 2 começa invisível */
.s1-hero__bg--1 { opacity: 1; }
.s1-hero__bg--2 { opacity: 0; }

/* Classe ativa inverte a visibilidade */
.s1-hero__bg--1.s1-bg--hidden { opacity: 0; }
.s1-hero__bg--2.s1-bg--visible { opacity: 1; }

.s1-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.48);
}

.s1-hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 130px 20px 60px;
  text-align: center;
  color: var(--s1-white);
}

.s1-hero__title {
  font-size: 1.75rem;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 16px;
}

/* Divisor amarelo: visível em mobile e desktop */
.s1-hero__divider {
  display: block;
  width: 60px;
  height: 4px;
  background: var(--s1-yellow);
  margin: 0 auto 20px;
}

.s1-hero__subtitle {
  font-size: 1rem;
  margin-bottom: 32px;
  opacity: 0.95;
}

.s1-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--s1-yellow);
  color: var(--s1-dark);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 12px 24px;
  border-radius: 50px;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.s1-hero__cta:hover {
  opacity: 0.85;
}

/* --- Botão flutuante WhatsApp --- */
.s1-whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  background: #25D366;
  color: var(--s1-white);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s;
}

.s1-whatsapp-float:hover {
  transform: scale(1.08);
}


/* SEÇÃO 1 — desktop (≥ 1024px)
============================================================ */
@media (min-width: 1024px) {

  /* Header */
  .s1-header {
    padding: 20px 48px;
  }

  .s1-logo img {
    width: 130px;
  }

  .s1-hamburger {
    display: none;
  }

  /* Nav: sempre visível, layout horizontal */
  .s1-nav {
    display: block;
    position: static;
    background: transparent;
    padding: 0;
  }

  .s1-nav ul {
    flex-direction: row;
    gap: 36px;
  }

  /* Hero */
  .s1-hero__content {
    padding: 180px 80px 100px;
    text-align: left;
    max-width: 640px;
  }

  .s1-hero__title {
    font-size: 3rem;
  }

  .s1-hero__divider {
    margin: 0 0 24px;
  }

  .s1-hero__subtitle {
    font-size: 1.05rem;
    max-width: 460px;
  }
}

/* ============================================================
   SEÇÃO 2 — NOSSOS PACOTES EXCLUSIVOS  |  mobile-first
============================================================ */
.s2-pacotes {
  background: #f5f5f5;
  padding: 60px 20px;
}

.s2-pacotes__header {
  text-align: center;
  margin-bottom: 36px;
}

.s2-pacotes__titulo {
  font-size: 1.6rem;
  font-weight: 900;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 14px;
}

.s2-pacotes__divider {
  width: 50px;
  height: 4px;
  background: var(--s1-yellow);
  margin: 0 auto;
}

/* Grid: mobile = 1 coluna */
.s2-pacotes__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Card — container flex coluna */
.s2-card {
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
  background: #fff;
}

/* Foto limpa no topo — sem overlay, sem texto */
.s2-card__img {
  width: 100%;
  height: 220px;
  background-size: cover;
  background-position: center;
  background-color: #2a3a2a;
  flex-shrink: 0;
}

/* Área de conteúdo abaixo da imagem */
.s2-card__body {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}

.s2-card__titulo {
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
  color: #111;
  line-height: 1.3;
  margin-bottom: 16px;
}

.s2-card__lista {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  width: 100%;
  text-align: left;
}

.s2-card__lista li {
  font-size: 0.85rem;
  line-height: 1.4;
  color: #444;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

/* Seta amarela como marcador */
.s2-card__lista li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  background: var(--s1-yellow);
  color: #111;
  font-size: 0.7rem;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}

.s2-card__preco {
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--s1-yellow);
  margin-bottom: 20px;
  /* amarelo sobre fundo branco pode sumir — adicionamos contorno */
  -webkit-text-stroke: 0.5px #b89200;
}

.s2-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--s1-yellow);
  color: var(--s1-dark);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 12px 28px;
  border-radius: 50px;
  transition: opacity 0.2s;
  margin-top: auto;
}

.s2-card__cta:hover {
  opacity: 0.85;
}

/* SEÇÃO 2 — desktop (≥ 1024px)
============================================================ */
@media (min-width: 1024px) {
  .s2-pacotes {
    padding: 80px 48px;
  }

  .s2-pacotes__titulo {
    font-size: 2.2rem;
  }

  /* 3 colunas iguais */
  .s2-pacotes__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }

  .s2-card__img {
    height: 260px;
  }

  .s2-card__titulo {
    font-size: 1rem;
  }
}
/* ============================================================
   SEÇÃO 3 — POR QUE ESCOLHER  |  mobile-first
============================================================ */
.s3-porque {
  background: #111;
  display: flex;
  flex-direction: column;
}

/* --- Slideshow --- */
.s3-porque__slides {
  position: relative;
  width: calc(100% - 40px);
  height: 260px;
  overflow: hidden;
  flex-shrink: 0;
  margin: 60px auto 0;
  border-radius: 14px;
}

.s3-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: #1a2a1a;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.s3-slide--active {
  opacity: 1;
}

/* --- Conteúdo --- */
.s3-porque__content {
  padding: 36px 24px 48px;
  color: #fff;
}

.s3-porque__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--s1-yellow);
  margin-bottom: 12px;
}

.s3-porque__titulo {
  font-size: 1.8rem;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 16px;
}

.s3-porque__divider {
  width: 50px;
  height: 4px;
  background: var(--s1-yellow);
  margin-bottom: 24px;
}

.s3-porque__texto {
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 28px;
}

.s3-porque__lista {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.s3-porque__item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: #fff;
  font-weight: 500;
}

.s3-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  min-width: 26px;
  border-radius: 50%;
  background: var(--s1-yellow);
  color: #111;
}

.s3-porque__cta {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--s1-yellow);
  color: var(--s1-dark);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 11px 20px;
  border-radius: 50px;
  white-space: nowrap;
  transition: opacity 0.2s;
  margin: 0 auto;
  width: fit-content;
}

.s3-porque__cta:hover {
  opacity: 0.85;
}


/* SEÇÃO 3 — desktop (≥ 1024px)
============================================================ */
@media (min-width: 1024px) {
  .s3-porque {
    flex-direction: row;
    align-items: center;
    gap: 60px;
    padding: 80px 80px;
    min-height: 600px;
  }

  /* Conteúdo à esquerda */
  .s3-porque__content {
    flex: 1;
    padding: 0;
    order: 1;
  }

  .s3-porque__titulo {
    font-size: 2.6rem;
  }

  /* Slideshow à direita */
  .s3-porque__slides {
    flex: 1;
    height: 480px;
    border-radius: 16px;
    order: 2;
  }
}


/* ============================================================
   SEÇÃO 4 — NOSSOS DIFERENCIAIS  |  mobile-first
============================================================ */
.s4-diferenciais {
  background: #fff;
  display: flex;
  flex-direction: column;
}

/* --- Slideshow --- */
.s4-diferenciais__slides {
  position: relative;
  width: calc(100% - 40px);
  height: 260px;
  overflow: hidden;
  flex-shrink: 0;
  margin: 48px auto 0;
  border-radius: 14px;
}

.s4-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: #e0e0e0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.s4-slide--active {
  opacity: 1;
}

/* --- Conteúdo --- */
.s4-diferenciais__content {
  padding: 36px 24px 48px;
  color: #111;
}

.s4-diferenciais__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--s1-yellow);
  margin-bottom: 12px;
}

.s4-diferenciais__titulo {
  font-size: 1.8rem;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.15;
  color: #111;
  margin-bottom: 16px;
}

.s4-diferenciais__divider {
  width: 50px;
  height: 4px;
  background: var(--s1-yellow);
  margin-bottom: 28px;
}

.s4-diferenciais__lista {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.s4-diferenciais__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: #222;
  line-height: 1.5;
}

.s4-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  min-width: 26px;
  border-radius: 50%;
  background: var(--s1-yellow);
  color: #111;
  margin-top: 1px;
}

.s4-diferenciais__cta {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--s1-yellow);
  color: var(--s1-dark);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 11px 20px;
  border-radius: 50px;
  white-space: nowrap;
  transition: opacity 0.2s;
  margin: 0 auto;
  width: fit-content;
}

.s4-diferenciais__cta:hover {
  opacity: 0.85;
}

/* SEÇÃO 4 — desktop (≥ 1024px)
============================================================ */
@media (min-width: 1024px) {
  .s4-diferenciais {
    flex-direction: row;
    align-items: center;
    gap: 60px;
    padding: 80px 80px;
    min-height: 600px;
  }

  /* Slideshow à ESQUERDA */
  .s4-diferenciais__slides {
    flex: 1;
    height: 520px;
    border-radius: 16px;
    order: 1;
  }

  /* Conteúdo à DIREITA */
  .s4-diferenciais__content {
    flex: 1;
    padding: 0;
    order: 2;
  }

  .s4-diferenciais__titulo {
    font-size: 2.4rem;
  }
}
/* ============================================================
   SEÇÃO 5 — DEPOIMENTOS  |  mobile-first
============================================================ */
.s5 {
  background: #0d0d0d;
  padding: 60px 20px;
}

.s5__header {
  text-align: center;
  margin-bottom: 40px;
}

.s5__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #F5C800;
  margin-bottom: 12px;
}

.s5__titulo {
  font-size: 1.6rem;
  font-weight: 900;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 16px;
}

.s5__divider {
  width: 50px;
  height: 4px;
  background: #F5C800;
  margin: 0 auto;
}

.s5__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1300px;
  margin: 0 auto 40px;
}

.s5__card {
  background: #ffffff;
  border-radius: 14px;
  padding: 28px 24px 24px;
}

.s5__card-inner {
  position: relative;
  z-index: 2;
}

.s5__texto {
  font-size: 0.88rem;
  font-style: italic;
  color: #222222;
  line-height: 1.65;
  margin-bottom: 16px;
}

.s5__estrelas {
  color: #F5C800;
  font-size: 1rem;
  letter-spacing: 3px;
  margin-bottom: 6px;
}

.s5__nome {
  font-size: 0.88rem;
  font-weight: 700;
  font-style: italic;
  color: #111111;
}

.s5__cta-wrap {
  display: flex;
  justify-content: center;
}

.s5__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #F5C800;
  color: #1a1a1a;
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 14px 32px;
  border-radius: 50px;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.s5__cta:hover {
  opacity: 0.85;
}

/* SEÇÃO 5 — desktop (≥ 1024px)
============================================================ */
@media (min-width: 1024px) {
  .s5 {
    padding: 80px 48px;
  }

  .s5__titulo {
    font-size: 2.2rem;
  }

  .s5__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}

/* ============================================================
   SEÇÃO 6 — FALE CONOSCO + FOOTER  |  mobile-first
============================================================ */
.s6-contato {
  position: relative;
  padding: 60px 20px;
}

.s6-contato__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: #1a3a4a;
}

.s6-contato__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.s6-contato__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* --- Info esquerda --- */
.s6-contato__titulo {
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 14px;
}

.s6-contato__divider {
  width: 50px;
  height: 4px;
  background: #F5C800;
  margin-bottom: 32px;
}

.s6-contato__lista {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.s6-contato__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.s6-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: #F5C800;
  color: #111;
}

.s6-contato__label {
  font-size: 0.85rem;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.s6-contato__valor {
  font-size: 0.9rem;
  color: #ddd;
}

/* --- Card branco direita --- */
.s6-card {
  background: #fff;
  border-radius: 8px;
  padding: 32px 28px;
}

.s6-card__titulo {
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
  color: #111;
  line-height: 1.3;
  margin-bottom: 16px;
}

.s6-card__texto {
  font-size: 0.9rem;
  font-weight: 600;
  color: #222;
  line-height: 1.6;
  margin-bottom: 20px;
}

.s6-card__lista {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.s6-card__item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: #222;
  font-weight: 500;
}

.s6-card__check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  background: #F5C800;
  color: #111;
}

.s6-card__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #F5C800;
  color: #1a1a1a;
  font-weight: 700;
  font-size: 0.60rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 14px 28px;
  border-radius: 50px;
  white-space: nowrap;
  transition: opacity 0.2s;
  width: 100%;
}

.s6-card__cta:hover {
  opacity: 0.85;
}

/* --- Footer --- */
.s6-footer {
  background: #0a0a0a;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.s6-footer__copy {
  font-size: 0.78rem;
  color: #aaa;
}

.s6-footer__links {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: #aaa;
}

.s6-footer__links a {
  color: #aaa;
  transition: color 0.2s;
}

.s6-footer__links a:hover {
  color: #F5C800;
}

/* SEÇÃO 6 — desktop (≥ 1024px)
============================================================ */
@media (min-width: 1024px) {
  .s6-contato {
    padding: 80px 60px;
  }

  .s6-contato__inner {
    flex-direction: row;
    align-items: center;
    gap: 60px;
  }

  .s6-contato__info {
    flex: 1;
  }

  .s6-card {
    flex: 0 0 420px;
    width: 420px;
  }

  .s6-card__titulo {
    font-size: 1.1rem;
  }

  .s6-footer {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    padding: 20px 48px;
  }
}


/* ============================================================
   (novas seções serão adicionadas abaixo)
============================================================ */