/* ═══════════════════════════════════════
   RESET & VARIÁVEIS
═══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --azul:        #0D1F3C;
  --dourado:     #C9A84C;
  --branco:      #FFFFFF;
  --cinza-bg:    #F5F7FA;
  --cinza-txt:   #4A4A4A;
  --verde-a:     #25D366;
  --verde-b:     #128C7E;
  --grad:        linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  --nav-h:       76px;
  --bar-h:       62px;
  --radius:      12px;
  --gap:         3.5rem;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Red Hat Display', sans-serif;
  color: var(--cinza-txt);
  padding-bottom: var(--bar-h);
  -webkit-font-smoothing: antialiased;
}

a   { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ═══════════════════════════════════════
   CONTAINER PADRÃO
═══════════════════════════════════════ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ═══════════════════════════════════════
   LABEL / MICROTAG
═══════════════════════════════════════ */
.label {
  display: inline-block;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dourado);
  margin-bottom: 0.7rem;
}

/* ═══════════════════════════════════════
   BOTÕES
═══════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Red Hat Display', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.875rem 1.75rem;
  border-radius: 6px;
  cursor: pointer;
  border: none;
  transition: opacity .2s, transform .15s, box-shadow .2s;
  white-space: nowrap;
}
.btn:hover  { opacity: .88; transform: translateY(-2px); box-shadow: 0 6px 22px rgba(0,0,0,.18); }
.btn:active { transform: translateY(0); }

.btn-green {
  background: var(--grad);
  color: var(--branco);
}
.btn-outline-white {
  background: transparent;
  color: var(--branco);
  border: 2px solid var(--branco);
}
.btn-outline-white:hover { background: rgba(255,255,255,.1); }

.wa-icon { width: 20px; height: 20px; flex-shrink: 0; }

/* ═══════════════════════════════════════
   CARROSSEL
═══════════════════════════════════════ */
.carousel-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 14px 48px rgba(13,31,60,.18);
}

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}

.carousel-slide {
  min-width: 100%;
  height: 100%;
  flex-shrink: 0;
}
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(13,31,60,.55);
  color: var(--branco);
  border: none;
  width: 40px; height: 40px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 5;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.carousel-btn:hover { background: var(--grad); }
.carousel-btn.prev { left: 10px; }
.carousel-btn.next { right: 10px; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  padding: .75rem 0 .25rem;
}
.carousel-dots button {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: #ccc;
  cursor: pointer;
  padding: 0;
  transition: background .2s, transform .2s;
}
.carousel-dots button.active {
  background: var(--verde-a);
  transform: scale(1.3);
}

/* ═══════════════════════════════════════
   CHECK LIST
═══════════════════════════════════════ */
.check-list { list-style: none; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .95rem;
  font-weight: 500;
  color: var(--cinza-txt);
  padding: .55rem 0;
  border-bottom: 1px solid #dce2ec;
  line-height: 1.5;
}
.check-list li::before {
  content: '✓';
  font-weight: 900;
  font-size: .9rem;
  flex-shrink: 0;
  margin-top: .1rem;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ═══════════════════════════════════════
   NAV
═══════════════════════════════════════ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: var(--azul);
  display: flex;
  align-items: center;
  padding: 0 40px;
  gap: 2rem;
  box-shadow: 0 2px 20px rgba(0,0,0,.28);
}

#nav .nav-logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

#nav .nav-links {
  display: flex;
  gap: 1.75rem;
  list-style: none;
  margin-left: auto;
}
#nav .nav-links a {
  color: rgba(255,255,255,.78);
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .03em;
  transition: color .2s;
}
#nav .nav-links a:hover { color: var(--verde-a); }
#nav .nav-cta { margin-left: 1.25rem; }

#hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  margin-left: auto;
  padding: 6px;
  background: none;
  border: none;
}
#hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--branco);
  border-radius: 2px;
  transition: all .28s;
}
#hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#hamburger.open span:nth-child(2) { opacity: 0; }
#hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

#mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--azul);
  padding: 1.5rem 40px;
  z-index: 999;
  flex-direction: column;
  gap: 1.2rem;
  border-top: 1px solid rgba(37,211,102,.2);
}
#mobile-menu.open { display: flex; }
#mobile-menu a { color: rgba(255,255,255,.82); font-size: 1rem; font-weight: 600; }

/* ═══════════════════════════════════════
   BARRA FLUTUANTE INFERIOR
═══════════════════════════════════════ */
#floating-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--bar-h);
  background: var(--azul);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 0 40px;
  box-shadow: 0 -2px 16px rgba(0,0,0,.3);
}
#floating-bar p { color: rgba(255,255,255,.88); font-size: .9rem; font-weight: 500; }

/* ═══════════════════════════════════════
   SEÇÃO 1 — HERO
═══════════════════════════════════════ */
#hero {
  background: var(--azul);
  padding-top: var(--nav-h);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  align-items: center;
  min-height: calc(90vh - var(--nav-h));
  padding: 4rem 0;
}

.hero-left { display: flex; flex-direction: column; justify-content: center; }

.hero-tag {
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--dourado);
  margin-bottom: 1.1rem;
}

.hero-left h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--branco);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero-sub {
  font-size: clamp(.9rem, 1.4vw, 1.05rem);
  font-weight: 400;
  color: rgba(255,255,255,.8);
  line-height: 1.72;
  margin-bottom: 1.75rem;
}

.hero-bullets { list-style: none; margin-bottom: 2.25rem; }
.hero-bullets li {
  color: var(--branco);
  font-size: .95rem;
  font-weight: 500;
  margin-bottom: .55rem;
  display: flex;
  align-items: center;
  gap: .65rem;
}
.hero-bullets li::before {
  content: '✓';
  font-weight: 900;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-right {
  aspect-ratio: 1 / 1;
}
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background-color: transparent;
  background: none;
  display: block;
}

/* ═══════════════════════════════════════
   SEÇÃO 2 — SOBRE + CARROSSEL
═══════════════════════════════════════ */
#sobre {
  background: var(--branco);
  padding: 6.5rem 0;
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  align-items: center;
}

#sobre h2 {
  font-size: clamp(1.55rem, 2.4vw, 2.2rem);
  font-weight: 800;
  color: var(--azul);
  line-height: 1.22;
  margin-bottom: 1.1rem;
}

#sobre p {
  font-size: .97rem;
  font-weight: 400;
  line-height: 1.82;
  color: var(--cinza-txt);
  margin-bottom: 1.75rem;
}

.dados-table { width: 100%; border-collapse: collapse; margin-bottom: 1.75rem; }
.dados-table td { padding: .7rem .9rem; font-size: .88rem; }
.dados-table td:first-child {
  font-weight: 700;
  color: var(--azul);
  border-right: 3px solid var(--dourado);
  width: 50%;
}
.dados-table tr { border-bottom: 1px solid #e4eaf3; }

.link-verde {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-weight: 700;
  font-size: .95rem;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: underline;
  text-decoration-color: var(--verde-b);
  transition: opacity .2s;
}
.link-verde:hover { opacity: .7; }

/* ═══════════════════════════════════════
   SEÇÃO 3 — DIFERENCIAIS
═══════════════════════════════════════ */
#diferenciais {
  background: var(--cinza-bg);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.dif-img { position: relative; overflow: hidden; min-height: 540px; }
.dif-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

.dif-content {
  padding: 5.5rem 6% 5.5rem 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#diferenciais h2 {
  font-size: clamp(1.5rem, 2.3vw, 2.15rem);
  font-weight: 800;
  color: var(--azul);
  line-height: 1.22;
  margin-bottom: 1.75rem;
}

.dif-content .check-list { margin-bottom: 2.5rem; }

/* ═══════════════════════════════════════
   SEÇÃO 4 — POR QUE INVESTIR
═══════════════════════════════════════ */
#por-que {
  background: var(--azul);
  padding: 6.5rem 40px;
  text-align: center;
}

#por-que h2 {
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 900;
  color: var(--branco);
  line-height: 1.18;
  margin-bottom: 3.5rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1120px;
  margin: 0 auto;
}

.card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(37,211,102,.2);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  transition: background .25s, border-color .25s, transform .25s;
}
.card:hover {
  background: rgba(37,211,102,.08);
  border-color: var(--verde-a);
  transform: translateY(-5px);
}
.card .card-icon { font-size: 2.4rem; margin-bottom: 1rem; }
.card h3 {
  font-size: 1.12rem;
  font-weight: 800;
  margin-bottom: .7rem;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.card p { font-size: .88rem; color: rgba(255,255,255,.72); line-height: 1.68; }

/* ═══════════════════════════════════════
   SEÇÃO 5 — IDEAL PARA
═══════════════════════════════════════ */
#ideal {
  background: var(--branco);
  padding: 6.5rem 0;
}

.ideal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  align-items: center;
}

.ideal-left { display: flex; flex-direction: column; justify-content: center; }

#ideal h2 {
  font-size: clamp(1.9rem, 2.7vw, 2.7rem);
  font-weight: 900;
  color: var(--azul);
  margin-bottom: 2rem;
}

.pills { display: flex; flex-direction: column; gap: 1rem; }

.pill {
  display: flex;
  align-items: center;
  gap: .85rem;
  background: var(--cinza-bg);
  border: 2px solid #dce4f0;
  border-radius: 100px;
  padding: .9rem 1.5rem;
  font-size: .95rem;
  font-weight: 700;
  color: var(--azul);
  transition: border-color .2s, background .2s, transform .2s;
}
.pill:hover {
  border-color: var(--verde-a);
  background: #f0fdf6;
  transform: translateX(4px);
}
.pill-icon { font-size: 1.3rem; flex-shrink: 0; }

/* ═══════════════════════════════════════
   SEÇÃO 6 — CTA FINAL
═══════════════════════════════════════ */
#cta-final {
  position: relative;
  background-image: url('../images/Carrossel 1/C1-IMG1.webp');
  background-size: cover;
  background-position: center;
}

#cta-final .cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 16, 34, .68);
}

#cta-final .container { position: relative; z-index: 2; }

.cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 7rem 0;
  max-width: 680px;
  margin: 0 auto;
}

.tag-guimenia-s6 {
  height: 55px;
  width: auto;
  display: block;
  margin-bottom: 1.5rem;
  filter: brightness(0) invert(1);
  opacity: .85;
}

#cta-final h2 {
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  font-weight: 900;
  color: var(--branco);
  line-height: 1.15;
  margin-bottom: 1rem;
}

#cta-final p {
  color: rgba(255,255,255,.84);
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.68;
  margin-bottom: 2.5rem;
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
footer {
  background: var(--azul);
  padding: 4.5rem 40px 3rem;
  text-align: center;
}

.footer-logo { display: flex; justify-content: center; margin-bottom: 1.5rem; }
.footer-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-tagline {
  color: rgba(255,255,255,.62);
  font-size: .88rem;
  font-weight: 400;
  max-width: 500px;
  margin: 0 auto 1.75rem;
  line-height: 1.75;
}

.footer-divider { width: 60px; height: 2px; background: var(--dourado); margin: 0 auto 1.75rem; }

.footer-bottom { color: rgba(255,255,255,.36); font-size: .76rem; margin-bottom: 1.5rem; }

.footer-wa {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-weight: 700;
  font-size: .9rem;
  color: var(--verde-a);
  transition: opacity .2s;
}
.footer-wa:hover { opacity: .7; }
.footer-wa svg { width: 22px; height: 22px; flex-shrink: 0; }

/* ═══════════════════════════════════════
   RESPONSIVIDADE
═══════════════════════════════════════ */
@media (max-width: 980px) {
  :root { --gap: 2.5rem; }

  #nav .nav-links, #nav .nav-cta { display: none; }
  #hamburger { display: flex; }
  #nav, #mobile-menu, #floating-bar { padding-left: 24px; padding-right: 24px; }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 3rem 0;
  }
  .hero-right { order: -1; max-width: 480px; margin: 0 auto; width: 100%; }

  .sobre-grid { grid-template-columns: 1fr; }
  .sobre-grid .carousel-col { order: -1; }

  #diferenciais { grid-template-columns: 1fr; }
  .dif-img { min-height: 280px; order: -1; }

  .cards { grid-template-columns: 1fr; max-width: 440px; }

  .ideal-grid { grid-template-columns: 1fr; }
  .ideal-left { order: -1; }

  .container { padding: 0 24px; }
  #por-que { padding-left: 24px; padding-right: 24px; }
  footer    { padding-left: 24px; padding-right: 24px; }
}

@media (max-width: 600px) {
  :root { --nav-h: 62px; }

  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }

  #floating-bar p { display: none; }

  #sobre, #ideal { padding-top: 4rem; padding-bottom: 4rem; }
  .dif-content { padding: 3rem 6%; }
  #por-que { padding-top: 4rem; padding-bottom: 4rem; }
  .cta-content { padding: 5rem 0; }

  #cta-final .btn { font-size: .9rem; padding: .875rem 1.5rem; }

  .dif-content .btn { align-self: flex-start; }
}
