/* =========================================
   GRUPO NEXT CAPITAL – CSS v3 (Fintech Style)
   Brand: Navy #1a2647 / Gold #C9A227
   ========================================= */

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:        #101b3b;
  --navy-dark:   #0a1128;
  --navy-mid:    #1e2f5d;
  --gold:        #C9A227;
  --gold-light:  #e6bc3d;
  --gold-dark:   #a8861e;
  --white:       #ffffff;
  --off-white:   #f8fafc;
  --gray-100:    #f1f5f9;
  --gray-200:    #e2e8f0;
  --gray-400:    #94a3b8;
  --gray-600:    #475569;
  --text-dark:   #0f172a;
  --text-mid:    #334155;
  --text-light:  #64748b;
  --radius-sm:   12px;
  --radius-md:   20px;
  --radius-lg:   32px;
  --radius-xl:   48px;
  --shadow-sm:   0 4px 14px rgba(15,23,42,0.05);
  --shadow-md:   0 10px 32px rgba(15,23,42,0.08);
  --shadow-lg:   0 24px 64px rgba(15,23,42,0.12);
  --shadow-gold: 0 12px 32px rgba(201,162,39,0.35);
  --transition:  all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.site-icon {
  width: 1.25em;
  height: 1.25em;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--navy-mid); border-radius: 4px; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.gold-text { color: var(--gold); }
.navy-text { color: var(--navy); }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 32px;
  border-radius: 60px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: var(--navy-dark);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover { 
  transform: translateY(-4px); 
  box-shadow: 0 16px 40px rgba(201,162,39,0.5); 
  filter: brightness(1.05);
}
.btn-ghost {
  background: rgba(255,255,255,0.05);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { 
  background: rgba(255,255,255,0.15); 
  border-color: var(--white); 
  transform: translateY(-2px); 
}
.btn-full { width: 100%; }
.btn-wpp {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 12px 32px rgba(37,211,102,0.3);
}
.btn-wpp:hover { 
  transform: translateY(-4px); 
  box-shadow: 0 16px 40px rgba(37,211,102,0.45); 
}

/* === SECTION SHARED === */
.section-badge {
  display: inline-block;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  color: var(--navy);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.section-badge.light { 
  background: rgba(255,255,255,0.1); 
  border-color: rgba(255,255,255,0.2);
  color: var(--white);
}
.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text-dark);
  margin-bottom: 20px;
}
.section-title.light { color: var(--white); }
.section-subtitle {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}
.section-header { text-align: center; margin-bottom: 64px; }

/* ===========================
   NAVBAR
   =========================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 24px 0;
  transition: var(--transition);
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 4px 40px rgba(0,0,0,0.06);
}
.navbar.scrolled {
  padding: 16px 0;
}

.nav-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-img { height: 50px; width: auto; transition: var(--transition); filter: drop-shadow(0 2px 4px rgba(0,0,0,0.05)); }
.navbar.scrolled .logo-img { filter: drop-shadow(0 2px 8px rgba(0,0,0,0.05)); }
.logo-img:hover { transform: scale(1.05); }

.nav-links { display: flex; align-items: center; gap: 8px; list-style: none; }
.nav-link {
  color: var(--text-mid);
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 10px 18px;
  border-radius: 50px;
  transition: var(--transition);
}
.nav-link:hover { color: var(--navy); background: var(--gray-100); }
.nav-cta-link {
  background: var(--navy);
  color: var(--white) !important;
  font-weight: 700;
  padding: 12px 24px;
  box-shadow: var(--shadow-sm);
}
.nav-cta-link:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); background: var(--navy-dark); }

.hamburger { display: none; flex-direction: column; gap: 6px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 28px; height: 3px; background: var(--navy); border-radius: 3px; transition: var(--transition); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* ===========================
   HERO
   =========================== */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 110px 24px 40px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(201,162,39,0.15) 0%, transparent 40%),
              radial-gradient(circle at bottom left, rgba(58,92,191,0.2) 0%, transparent 50%);
  pointer-events: none;
}
.hero-watermark {
  position: absolute;
  top: 50%;
  right: -10%;
  transform: translateY(-50%);
  width: 120vh;
  opacity: 0.03;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}
.hero-text-col { display: flex; flex-direction: column; }
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 10px 24px;
  border-radius: 50px;
  margin-bottom: 24px;
  width: fit-content;
  backdrop-filter: blur(8px);
  animation: fadeInDown 0.8s ease both;
}
.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  animation: fadeInUp 0.8s ease 0.1s both;
}
.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 24px;
  line-height: 1.5;
  max-width: 580px;
  animation: fadeInUp 0.8s ease 0.2s both;
}
.hero-products-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.3s both;
}
.hero-products-tags .tag {
  background: rgba(201,162,39,0.15);
  border: 1px solid rgba(201,162,39,0.3);
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.4s both;
}
.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.5s both;
}
.trust-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  font-weight: 500;
}
.trust-pill .site-icon { color: var(--gold); }

/* Hero logo */
.hero-logo-col {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: fadeIn 1.2s ease 0.3s both;
}
.hero-logo-wrap {
  position: relative;
  width: 100%;
  max-width: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-logo-wrap::before {
  content: '';
  position: absolute;
  width: 140%; height: 140%;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 60%);
  border-radius: 50%;
  z-index: 1;
}
.hero-logo-big {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
  transform-style: preserve-3d;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
  animation: floatLogoPremium 8s ease-in-out infinite;
}
@keyframes floatLogoPremium {
  0% { transform: translateY(0) rotateX(0deg) rotateY(0deg); filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4)); }
  25% { transform: translateY(-8px) rotateX(4deg) rotateY(4deg); filter: drop-shadow(-10px 25px 45px rgba(0,0,0,0.3)); }
  50% { transform: translateY(-16px) rotateX(0deg) rotateY(0deg); filter: drop-shadow(0 30px 50px rgba(0,0,0,0.2)); }
  75% { transform: translateY(-8px) rotateX(-4deg) rotateY(-4deg); filter: drop-shadow(10px 25px 45px rgba(0,0,0,0.3)); }
  100% { transform: translateY(0) rotateX(0deg) rotateY(0deg); filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4)); }
}

/* ===========================
   BANNER PRODUTOS
   =========================== */
.produtos-banner {
  background: var(--off-white);
  padding: 24px 0;
  border-bottom: 1px solid var(--gray-200);
}
.banner-items {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
.banner-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
}
.banner-sep { color: var(--gray-400); font-size: 1.2rem; }

/* ===========================
   PRODUTOS
   =========================== */
.produtos {
  padding: 120px 0;
  background: var(--white);
  position: relative;
}
.produtos::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 50%;
  background: linear-gradient(to bottom, var(--off-white), var(--white));
  pointer-events: none;
}
.produtos .container { position: relative; z-index: 2; }
.produtos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.produto-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.produto-card:hover { 
  transform: translateY(-8px); 
  box-shadow: var(--shadow-lg); 
  border-color: rgba(201,162,39,0.3);
}


.featured-pill {
  position: absolute;
  top: 24px; right: 24px;
  background: var(--gold);
  color: var(--navy-dark);
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 0.75rem;
  padding: 6px 16px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.produto-icon-wrap {
  width: 64px; height: 64px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.produto-icon { width: 32px; height: 32px; color: var(--navy); }
.produto-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}
.produto-card p {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 24px;
  flex-grow: 1;
}
.produto-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.produto-tags span {
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  color: var(--navy-mid);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
}
.produto-link {
  color: var(--gold) !important;
  background: var(--navy);
  border: 2px solid var(--gold);
  padding: 12px 24px;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: auto;
  width: 100%;
  box-sizing: border-box;
}
.produto-link:hover {
  background: var(--gold);
  color: var(--navy) !important;
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* ===========================
   COMO FUNCIONA
   =========================== */
.como-funciona {
  padding: 120px 0;
  background: var(--off-white);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  margin-bottom: 64px;
}
.step-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.step-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: var(--navy); }
.step-num {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 20px;
  display: inline-block;
  background: rgba(201,162,39,0.15);
  padding: 6px 16px;
  border-radius: 50px;
}
.step-icon-wrap { margin-bottom: 20px; color: var(--gold); }
.step-icon-wrap .site-icon { width: 48px; height: 48px; stroke-width: 1.5; }
.step-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}
.step-card p { color: var(--text-light); font-size: 1rem; line-height: 1.6; }
.step-arrow {
  color: var(--gray-400);
  font-size: 2rem;
  padding: 0 16px;
}

/* ===========================
   QUEM SOMOS
   =========================== */
.quem-somos {
  padding: 120px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.quem-watermark {
  position: absolute;
  top: -10%; left: -5%;
  width: 600px;
  opacity: 0.03;
  pointer-events: none;
}
.quem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.quem-visual { position: relative; }
.quem-img-wrapper {
  background: var(--off-white);
  border-radius: var(--radius-xl);
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray-200);
  position: relative;
}
.quem-logo { width: 100%; max-width: 320px; height: auto; filter: drop-shadow(0 10px 30px rgba(0,0,0,0.1)); }
.quem-stat-card {
  position: absolute;
  background: var(--navy);
  border-radius: var(--radius-md);
  padding: 20px 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: var(--shadow-lg);
  animation: floatCard 5s ease-in-out infinite;
}
.card-a { bottom: 40px; left: -60px; animation-delay: 0s; }
.card-b { top: 40px; right: -40px; animation-delay: 2.5s; background: var(--gold); }
.card-a .qs-num { color: var(--white); }
.card-a .qs-label { color: rgba(255,255,255,0.7); }
.card-b .qs-num { color: var(--navy-dark); }
.card-b .qs-label { color: rgba(10,17,40,0.7); }

.qs-num { font-family: 'Outfit', sans-serif; font-weight: 900; font-size: 1.8rem; line-height: 1; }
.qs-label { font-size: 0.85rem; font-weight: 500; }
@keyframes floatCard { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

.quem-content { display: flex; flex-direction: column; }
.quem-text {
  color: var(--text-mid);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 16px;
}
.quem-text strong { color: var(--navy); font-weight: 700; }
.quem-diferenciais { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.diferencial {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.diferencial:hover { background: var(--white); box-shadow: var(--shadow-sm); border-color: var(--navy); }
.dif-icon { color: var(--navy); background: rgba(201,162,39,0.15); width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; border-radius: 50%; }
.dif-icon .site-icon { width: 28px; height: 28px; }
.diferencial strong { display: block; font-family: 'Outfit', sans-serif; font-weight: 800; color: var(--navy); font-size: 1.1rem; margin-bottom: 4px; }
.diferencial span { font-size: 0.95rem; color: var(--text-mid); }

/* ===========================
   FAQ
   =========================== */
.faq-section {
  padding: 120px 0;
  background: var(--off-white);
  border-top: 1px solid var(--gray-200);
}
.faq-list {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: var(--navy); box-shadow: var(--shadow-sm); }
.faq-item.open { border-color: var(--gold); box-shadow: var(--shadow-md); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 32px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--navy);
  transition: var(--transition);
}
.faq-icon {
  width: 32px; height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: var(--off-white);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  font-size: 1.4rem;
  font-weight: 400;
  transition: var(--transition);
}
.faq-item.open .faq-icon { background: var(--gold); color: var(--navy-dark); transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-answer p {
  padding: 0 32px 24px;
  color: var(--text-mid);
  font-size: 1.05rem;
  line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 400px; }

/* ===========================
   CONTATO / CTA
   =========================== */
.contato-section {
  padding: 120px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.contato-watermark {
  position: absolute;
  bottom: -20%; right: -10%;
  width: 800px;
  opacity: 0.04;
  pointer-events: none;
}
.contato-grid {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.contato-desc {
  color: rgba(255,255,255,0.75);
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 40px;
}
.contato-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
}
.insta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  background: rgba(255,255,255,0.1);
  padding: 8px 16px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}
.insta-link:hover { background: var(--gold); color: var(--navy-dark); }

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--navy-dark);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 64px;
  padding-bottom: 64px;
}
.footer-logo { height: 64px; width: auto; display: block; margin-bottom: 24px; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5)); }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 1rem; line-height: 1.7; margin-bottom: 32px; max-width: 400px; }
.footer-social { display: flex; gap: 12px; }
.social-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); text-decoration: none;
}
.social-btn svg { width: 20px; height: 20px; }
.social-btn:hover { background: var(--gold); color: var(--navy-dark); transform: translateY(-4px); }
.footer-links-col h4 {
  font-family: 'Outfit', sans-serif; font-weight: 800;
  color: var(--white); font-size: 1.1rem;
  margin-bottom: 24px;
}
.footer-links-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links-col a, .footer-links-col span {
  color: rgba(255,255,255,0.6); text-decoration: none; font-size: 1rem; transition: var(--transition);
}
.footer-links-col a:hover { color: var(--gold); padding-left: 6px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 32px 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 0.9rem; }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: rgba(255,255,255,0.4); text-decoration: none; font-size: 0.9rem; transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--gold); }

/* ===========================
   WHATSAPP FLOAT
   =========================== */
.whatsapp-float {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 999;
  width: 52px; height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(37,211,102,0.4);
  text-decoration: none;
  transition: var(--transition);
  animation: pulseWA 3s ease infinite;
}
.whatsapp-float svg { width: 28px; height: 28px; fill: var(--white); }
.whatsapp-float:hover { transform: scale(1.1) translateY(-4px); box-shadow: 0 16px 40px rgba(37,211,102,0.5); animation: none; }
@keyframes pulseWA {
  0%,100% { box-shadow: 0 8px 32px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 8px 32px rgba(37,211,102,0.4), 0 0 0 12px rgba(37,211,102,0.1); }
}

/* ===========================
   ANIMATIONS
   =========================== */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===========================
   RESPONSIVE
   =========================== */
@media (min-width: 1025px) and (max-height: 800px) {
  .navbar {
    padding: 16px 0;
  }
  .hero {
    padding-top: 100px;
    padding-bottom: 24px;
    min-height: 100vh;
  }
  .hero-logo-wrap {
    max-width: 360px;
  }
  .hero-title {
    font-size: 2.8rem;
    margin-bottom: 12px;
  }
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 16px;
    max-width: 520px;
  }
  .hero-tag {
    margin-bottom: 16px;
    padding: 8px 20px;
  }
  .hero-products-tags {
    margin-bottom: 16px;
    gap: 8px;
  }
  .hero-products-tags .tag {
    font-size: 0.8rem;
    padding: 4px 12px;
  }
  .hero-actions {
    margin-bottom: 16px;
  }
  .hero-actions .btn {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
}

@media (max-width: 1024px) {
  .hero { padding: 120px 24px 60px; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero-tag { margin: 0 auto 24px; }
  .hero-products-tags { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-logo-col { order: -1; }
  .hero-logo-wrap { max-width: 320px; margin: 0 auto; }
  .produtos-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; gap: 32px; }
  .step-arrow { display: none; }
  .quem-grid { grid-template-columns: 1fr; gap: 64px; }
  .quem-visual { order: -1; }
  .quem-img-wrapper { max-width: 480px; margin: 0 auto; }
  .contato-grid { gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; z-index: 1001; position: relative; }
  .navbar { backdrop-filter: none; }
  .nav-links {
    position: fixed; top: 0; right: -100%; bottom: 0;
    width: 300px; background: var(--white);
    flex-direction: column; align-items: flex-start;
    padding: 100px 32px 40px;
    gap: 8px; transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -10px 0 40px rgba(0,0,0,0.1); z-index: 999;
  }
  .nav-links.open { right: 0; }
  .nav-link { color: var(--navy); width: 100%; padding: 16px; border-radius: var(--radius-sm); font-size: 1.1rem; }
  .nav-link:hover { background: var(--gray-100); color: var(--navy); }
  .nav-cta-link { 
    margin-top: 0; 
    background: transparent; 
    color: var(--navy) !important; 
    box-shadow: none; 
    font-weight: 600; 
  }

  .hero-title { font-size: 2.2rem; }
  .banner-sep { display: none; }
  .banner-items { flex-direction: column; gap: 12px; text-align: center; }
  .produtos-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .quem-stat-card { display: none; }
}

@media (max-width: 480px) {
  .hero { padding: 130px 20px 40px; }
  .hero-title { font-size: 1.8rem; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; }
  .trust-pill { font-size: 0.8rem; }
  .hero-logo-wrap { max-width: 240px; }
  
  .produtos-grid { gap: 20px; }
  .produto-card { padding: 24px 20px; }
  .produto-icon-wrap { width: 48px; height: 48px; }
  .produto-icon { width: 24px; height: 24px; }
  
  .step-card { padding: 32px 20px; }
  
  .quem-img-wrapper { padding: 30px; }
  
  .faq-question { padding: 20px 16px; font-size: 1rem; }
  .faq-answer p { padding: 0 16px 20px; }
  
  .footer-grid { gap: 32px; }
}
