/*
 * application.css — TedPay Design System
 * Fonte: Poppins (Google Fonts)
 * Inclua no <head>:
 *   <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap" rel="stylesheet">
 *   <link rel="stylesheet" href="assets/application.css">
 */

/* =========================================================
   1. DESIGN TOKENS (CSS Variables)
   ========================================================= */
:root {
  /* --- Cores primárias --- */
  --yellow:        #FFCC00;
  --yellow-dark:   #F2BD00;
  --yellow-darker: #E0AC00;
  --yellow-light:  #FFF4B8;
  --yellow-50:     #FFFBE5;

  /* --- Escala de cinzas / preto --- */
  --black:     #0A0A0A;
  --ink:       #1A1A1A;
  --gray-900:  #2A2A2A;
  --gray-700:  #4A4A4A;
  --gray-500:  #7A7A7A;
  --gray-300:  #C8C8C8;
  --gray-100:  #EDEDED;
  --gray-50:   #F7F7F7;
  --white:     #FFFFFF;

  /* --- Fundos --- */
  --bg:     #FFFFFF;
  --bg-alt: #FAFAF8;

  /* --- Semânticas --- */
  --success: #00B86B;
  --danger:  #E74C3C;

  /* --- Border-radius --- */
  --radius:    20px;
  --radius-sm: 12px;
  --radius-lg: 28px;

  /* --- Sombras --- */
  --shadow-sm:     0 2px 8px rgba(0,0,0,0.04);
  --shadow-md:     0 10px 32px rgba(0,0,0,0.08);
  --shadow-lg:     0 24px 60px rgba(0,0,0,0.12);
  --shadow-yellow: 0 12px 32px rgba(255,204,0,0.35);
}

/* =========================================================
   2. RESET & BASE
   ========================================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* =========================================================
   3. TIPOGRAFIA
   ========================================================= */

/* Títulos de seção */
.sec-title {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 800;
  color: var(--black);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}
.sec-title em { font-style: normal; }
.sec-title .y-highlight {
  background: linear-gradient(180deg, transparent 60%, var(--yellow) 60%);
  padding: 0 6px;
}

/* Subtítulo de seção */
.sec-sub {
  font-size: 17px;
  color: var(--gray-700);
  line-height: 1.6;
  max-width: 580px;
  margin: 0 auto;
}

/* Marcador eyebrow */
.eyebrow {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-size: 12px;
  font-weight: 800;
  padding: 7px 16px;
  border-radius: 50px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.eyebrow.dark  { background: var(--black);     color: var(--yellow);   }
.eyebrow.light { background: var(--yellow-50); color: var(--gray-900); }

/* Realce amarelo inline */
.y-highlight {
  background: linear-gradient(180deg, transparent 60%, var(--yellow) 60%);
  padding: 0 6px;
  margin: 0 -2px;
}

/* =========================================================
   4. LAYOUT
   ========================================================= */

/* Container padrão (max 1280px) */
.container {
  max-width: 1280px;
  margin: 0 auto;
}

/* Cabeçalho de seção centralizado */
.sec-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}

/* Seção genérica */
section {
  padding: 100px 5vw;
  position: relative;
}

/* Fundo alternativo para seções */
.section--alt { background: var(--bg-alt); }

/* =========================================================
   5. BOTÕES
   ========================================================= */

/* Primário — preto com hover amarelo */
.btn-primary {
  background: var(--black);
  color: var(--white);
  font-weight: 700;
  font-size: 15.5px;
  padding: 17px 30px;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all .25s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  font-family: inherit;
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
  z-index: 0;
}
.btn-primary > * { position: relative; z-index: 1; transition: color .25s; }
.btn-primary:hover::before       { transform: scaleX(1); }
.btn-primary:hover > *           { color: var(--black); }
.btn-primary:hover               { transform: translateY(-2px); box-shadow: var(--shadow-yellow); }

/* Secundário — contorno preto com hover amarelo */
.btn-secondary {
  background: transparent;
  color: var(--ink);
  font-weight: 700;
  font-size: 15px;
  padding: 15px 26px;
  border-radius: 50px;
  text-decoration: none;
  border: 2px solid var(--black);
  cursor: pointer;
  transition: all .2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
}
.btn-secondary:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  transform: translateY(-1px);
}

/* Botão de card (largura total) */
.btn-card {
  display: block;
  width: 100%;
  background: var(--black);
  color: var(--white);
  font-weight: 700;
  font-size: 14.5px;
  padding: 15px;
  border-radius: 50px;
  text-decoration: none;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: all .25s;
  font-family: inherit;
}
.btn-card:hover {
  background: var(--yellow);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: var(--shadow-yellow);
}
.btn-card.primary       { background: var(--yellow); color: var(--black); }
.btn-card.primary:hover { background: var(--black); color: var(--white); box-shadow: 0 8px 20px rgba(0,0,0,0.2); }

/* Seta de link */
.link-arrow {
  color: var(--black);
  font-weight: 700;
  text-decoration: none;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 2px solid var(--yellow);
  padding-bottom: 4px;
  transition: all .2s;
}
.link-arrow:hover { color: var(--gray-700); border-color: var(--gray-700); }

/* =========================================================
   6. FORMULÁRIOS
   ========================================================= */
.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--yellow);
  margin-bottom: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-group input,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  outline: none;
  transition: all .2s;
  -webkit-appearance: none;
  font-family: inherit;
}
.form-group input:focus,
.form-group select:focus {
  border-color: var(--yellow);
  background: rgba(255,204,0,0.08);
}
.form-group select option { background: var(--ink); color: var(--white); }

/* Linha com dois campos lado a lado */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* =========================================================
   7. CARDS GENÉRICOS
   ========================================================= */
.card {
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 28px 22px;
  transition: all .25s;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--yellow);
}

.card--dark {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

.card--featured {
  border-color: var(--black);
  background: linear-gradient(180deg, #FFFEF5 0%, var(--white) 50%);
}
.card--featured::before {
  content: '';
  display: block;
  height: 5px;
  background: var(--yellow);
  border-radius: var(--radius) var(--radius) 0 0;
  margin: -28px -22px 22px;
}

/* Badge posicionado no canto do card */
.badge-card {
  position: absolute;
  top: 22px;
  right: 22px;
  background: var(--yellow);
  color: var(--black);
  font-size: 11px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 50px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  z-index: 2;
}
.badge-card.dark { background: var(--black); color: var(--yellow); }

/* =========================================================
   8. ÍCONE DE CHECK (listas de features)
   ========================================================= */
.features-list {
  list-style: none;
  margin-bottom: 26px;
}
.features-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--gray-700);
  padding: 7px 0;
}
.check-icon {
  width: 20px;
  height: 20px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-size: 11px;
  font-weight: 900;
  flex-shrink: 0;
}

/* =========================================================
   9. NAVEGAÇÃO (NAV)
   ========================================================= */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 5vw;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  height: 36px;
}
.logo img { height: 100%; width: auto; }

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: rgba(0,0,0,0.85);
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 500;
  transition: color .2s;
}
.nav-links a:hover { color: var(--yellow-dark); }

/* Nav Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger { display: inline-flex; align-items: center; gap: 5px; cursor: pointer; }
.nav-dropdown-trigger svg { transition: transform .25s; }
.nav-dropdown:hover .nav-dropdown-trigger svg { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  padding: 8px 0;
  min-width: 170px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(8px);
  transition: all .25s ease;
  z-index: 1000;
  border: 1px solid var(--gray-100);
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
  transition: background .15s, color .15s;
}
.nav-dropdown-menu li a:hover {
  background: var(--bg-alt);
  color: var(--yellow-dark);
}
.nav-dropdown-menu li a.active-maq {
  color: var(--yellow-dark);
  font-weight: 700;
}

.nav-right { display: flex; gap: 14px; align-items: center; }

.nav-login {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  transition: color .2s;
}
.nav-login:hover { color: var(--yellow-dark); }

.nav-cta {
  background: var(--yellow);
  color: var(--black);
  font-weight: 700;
  padding: 11px 22px;
  border-radius: 50px;
  font-size: 14px;
  text-decoration: none;
  transition: all .25s;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  box-shadow: 0 4px 14px rgba(255,204,0,0.25);
}
.nav-cta:hover {
  background: #FFD93D;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(255,204,0,0.4);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
}

/* =========================================================
   10. TICKER (barra de avisos animada)
   ========================================================= */
.ticker-wrap {
  background: var(--black);
  padding: 11px 0;
  overflow: hidden;
  position: relative;
  border-bottom: 2px solid var(--yellow);
}
.ticker-track {
  display: flex;
  animation: ticker 35s linear infinite;
  white-space: nowrap;
  will-change: transform;
}
.ticker-track span {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--yellow);
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
}
.ticker-sep { color: rgba(255,204,0,0.35); margin: 0 28px; font-weight: 300; }
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =========================================================
   11. FOOTER
   ========================================================= */
footer {
  background: var(--black);
  color: var(--white);
  padding: 80px 5vw 36px;
}

.footer-grid {
  max-width: 1280px;
  margin: 0 auto 54px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
}

.footer-logo { height: 36px; margin-bottom: 18px; }
.footer-logo img { height: 100%; width: auto; }

.footer-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  margin-bottom: 22px;
  max-width: 320px;
}

.footer-socials { display: flex; gap: 10px; margin-bottom: 22px; }

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: all .2s;
}
.social-btn:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--black);
}
.social-btn svg { width: 17px; height: 17px; fill: currentColor; }

.footer-trust {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
}
.trust-shield   { height: 36px; width: auto; flex-shrink: 0; }
.trust-body     { display: flex; flex-direction: column; gap: 3px; }
.trust-label    { font-size: 10px; font-weight: 600; color: var(--gray-500); line-height: 1; }
.trust-ra-logo  { height: 14px; width: auto; }

.footer-col h5 {
  font-size: 13px;
  font-weight: 800;
  color: var(--yellow);
  margin-bottom: 18px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  margin-bottom: 12px;
  transition: color .2s;
}
.footer-col a:hover { color: var(--yellow); }

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 14px;
}

/* =========================================================
   12. WHATSAPP FLUTUANTE
   ========================================================= */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 62px;
  height: 62px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(37,211,102,0.45);
  cursor: pointer;
  z-index: 99;
  text-decoration: none;
  animation: pulseWa 2.5s ease-in-out infinite;
  transition: transform .25s;
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 32px; height: 32px; fill: white; }

@keyframes pulseWa {
  0%, 100% { box-shadow: 0 8px 28px rgba(37,211,102,0.45); }
  50%       { box-shadow: 0 8px 48px rgba(37,211,102,0.80); }
}

.wa-pulse-ring {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 2px solid #25D366;
  z-index: 98;
  animation: ringPulse 2s ease-out infinite;
  pointer-events: none;
}
@keyframes ringPulse {
  0%   { transform: scale(1);   opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* =========================================================
   13. UTILITÁRIOS
   ========================================================= */

/* Centralizar bloco de links */
.flex-center {
  display: flex;
  justify-content: center;
}

/* Grade 2 colunas */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* Grade 3 colunas */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Grade 4 colunas */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* =========================================================
   14. ANIMAÇÕES REUTILIZÁVEIS
   ========================================================= */
@keyframes floatDevice {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50%      { transform: translate3d(0, -18px, 0); }
}

@keyframes floatChip {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

@keyframes morph {
  0%, 100% { border-radius: 48% 52% 68% 32% / 42% 58% 42% 58%; transform: rotate(0deg); }
  33%       { border-radius: 60% 40% 38% 62% / 55% 45% 55% 45%; transform: rotate(8deg); }
  66%       { border-radius: 40% 60% 50% 50% / 60% 40% 60% 40%; transform: rotate(-6deg); }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(-360deg); }
}

@keyframes shimmer {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* =========================================================
   14b. SCROLL REVEAL — elementos aparecem ao rolar
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Stagger de cards dentro de grids */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.2s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.3s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.4s; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.5s; }
.reveal-stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* Scale-in para elementos de destaque */
.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* =========================================================
   15. RESPONSIVO
   ========================================================= */

/* Tablet / telas médias */
@media (max-width: 1100px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .nav-links  { display: none; }
  .hamburger  { display: flex; }
}

/* Mobile */
@media (max-width: 600px) {
  section { padding: 70px 5vw; }
  .grid-4 { grid-template-columns: 1fr 1fr; gap: 16px; }
  .grid-2 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .nav-login { display: none; }
  .sec-head { margin-bottom: 36px; }
}

/* =========================================================
   16. HERO
   ========================================================= */
.hero {
  position: relative;
  padding: 60px 5vw 40px;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 10%, rgba(255,204,0,0.15) 0%, transparent 50%),
    radial-gradient(circle at 10% 90%, rgba(255,204,0,0.08) 0%, transparent 50%),
    var(--bg);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 60px;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  min-height: 78vh;
  animation: heroEntrance 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes heroEntrance {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  padding: 7px 7px 7px 16px;
  border-radius: 50px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
  font-size: 13px;
  color: var(--gray-700);
  font-weight: 500;
}
.hero-badge .stars   { color: var(--yellow); font-size: 13px; letter-spacing: 1px; }
.hero-badge strong   { color: var(--ink); font-weight: 700; }
.hero-badge .verified {
  background: var(--black);
  color: var(--yellow);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.hero-greeting {
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
  opacity: 0;
  animation: fadeInGreeting 0.8s 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes fadeInGreeting {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero h1 {
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 1.02;
  color: var(--black);
  letter-spacing: -0.035em;
  margin-bottom: 22px;
}
.hero h1 .y-highlight {
  background: linear-gradient(180deg, transparent 60%, var(--yellow) 60%);
  padding: 0 6px;
  margin: 0 -2px;
}
.hero h1 em {
  font-style: normal;
  position: relative;
  display: inline-block;
}
.hero h1 em::after {
  content: '';
  position: absolute;
  bottom: 8px; left: 0; right: 0;
  height: 14px;
  background: var(--yellow);
  z-index: -1;
  border-radius: 4px;
}

.hero-sub {
  font-size: 18px;
  color: var(--gray-700);
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: 36px;
}
.hero-sub strong { color: var(--black); font-weight: 700; }

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* Prova social */
.hero-proof {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 44px;
  flex-wrap: wrap;
}
.proof-avatars { display: flex; }
.proof-avatars-img {
  height: 46px;
  width: auto;
  object-fit: contain;
}
.proof-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 3px solid var(--white);
  margin-left: -10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-weight: 800;
  font-size: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.proof-avatar:first-child  { margin-left: 0; background: linear-gradient(135deg, #FFE066, var(--yellow)); }
.proof-avatar:nth-child(2) { background: linear-gradient(135deg, var(--yellow), var(--yellow-dark)); }
.proof-avatar:nth-child(3) { background: linear-gradient(135deg, #FFD43B, #FAB005); }
.proof-avatar:nth-child(4) { background: var(--black); color: var(--yellow); }
.proof-text { font-size: 14px; color: var(--gray-700); }
.proof-text strong { color: var(--black); display: block; font-weight: 700; }
.proof-text .ratings { display: flex; align-items: center; gap: 5px; margin-top: 2px; }
.proof-text .ratings .stars { color: var(--yellow-dark); font-size: 13px; letter-spacing: 1px; }

/* Visual / blob */
.hero-visual {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 140px;
  z-index: 4;
  pointer-events: none;
}
.hero-blob {
  position: absolute;
  width: 500px; height: 500px;
  background: var(--yellow);
  border-radius: 48% 52% 68% 32% / 42% 58% 42% 58%;
  box-shadow: 0 40px 80px rgba(255,204,0,0.35);
  animation: morph 14s ease-in-out infinite;
}
.hero-device {
  position: relative;
  z-index: 3;
  height: 480px;
  width: auto;
  filter: drop-shadow(0 40px 60px rgba(0,0,0,0.35));
  animation: floatDevice 6s ease-in-out infinite;
  transition: opacity .2s ease, transform .3s ease;
}

/* Chips flutuantes */
.chip {
  position: absolute;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 14px 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10), 0 1px 3px rgba(0,0,0,0.06);
  border: 1px solid rgba(255,255,255,0.6);
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floatChip 5s ease-in-out infinite;
  transition: transform .3s, box-shadow .3s;
}
.chip:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 40px rgba(0,0,0,0.14);
}
.chip-1 { top: 6%;  right: -5%;  animation-delay: -1s; }
.chip-2 { bottom: 18%; left: -8%;  animation-delay: -2.5s; }
.chip-3 { top: 60%; right: -10%; animation-delay: -3.5s; }
.chip-ico {
  width: 42px; height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 19px;
}
.chip-ico.yellow { background: var(--yellow); color: var(--black); }
.chip-ico.black  { background: var(--black);  color: var(--yellow); }
.chip-ico.green  { background: #DCFCE7;       color: var(--success); }
.chip-ico svg { stroke: currentColor; }
.chip-txt .t1 { font-size: 14px;   font-weight: 800; color: var(--black);    line-height: 1.15; }
.chip-txt .t2 { font-size: 11.5px; color: var(--gray-500); margin-top: 2px; font-weight: 500; }

/* =========================================================
   16b. HERO — PRODUCT VIEW
   ========================================================= */
.hero-product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 5vw 40px;
  align-items: center;
}
.hero-product-text h1 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  line-height: 1.25;
  color: var(--black);
  margin-bottom: 28px;
}
.product-specs {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.product-specs li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--gray-700);
  font-weight: 500;
}
.spec-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  font-weight: 800;
  font-size: 13px;
  flex-shrink: 0;
}
.prod-pix-note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--gray-500);
}
.prod-pix-note strong { color: var(--black); }
.hero-product-visual {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-product-visual .hero-blob {
  position: absolute;
  width: 500px;
  height: 500px;
  background: var(--yellow);
  border-radius: 48% 52% 68% 32% / 42% 58% 42% 58%;
  box-shadow: 0 40px 80px rgba(255,204,0,0.35);
  animation: morph 14s ease-in-out infinite;
}
.hero-product-visual .hero-device {
  position: relative;
  z-index: 3;
  height: 420px;
  width: auto;
  filter: drop-shadow(0 40px 60px rgba(0,0,0,0.35));
  animation: floatDevice 6s ease-in-out infinite;
  transition: opacity .2s ease, transform .3s ease;
}

/* Notification cards flutuantes */
.notif-card {
  position: absolute;
  z-index: 5;
  background: var(--white);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.04);
  min-width: 200px;
  animation: floatNotif 5s ease-in-out infinite;
  pointer-events: none;
  opacity: 0;
  transition: opacity .6s ease;
}
.notif-card.notif-visible {
  opacity: 1;
}
.notif-top-right {
  top: 10%;
  right: -24%;
  animation-delay: 0s;
}
.notif-bottom-left {
  bottom: 15%;
  left: -20%;
  animation-delay: -2.5s;
}
.notif-top-left {
  top: 10%;
  left: -20%;
  animation-delay: -1.2s;
}
.notif-bottom-right {
  bottom: 15%;
  right: -24%;
  animation-delay: -3.8s;
}
.notif-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}
.notif-brand {
  font-size: 12px;
  font-weight: 800;
  color: var(--black);
}
.notif-time {
  font-size: 11px;
  color: var(--gray-400);
}
.notif-type {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--gray-500);
  margin-bottom: 6px;
}
.notif-type-icon {
  font-size: 14px;
}
.notif-amount {
  font-size: 22px;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.notif-status {
  font-size: 11px;
  color: var(--success);
  font-weight: 600;
}

@keyframes floatNotif {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

/* =========================================================
   16c. PRODUCT HIGHLIGHTS (Aumente suas vendas / Detalhes)
   ========================================================= */
.prod-hl {
  padding: 80px 5vw;
}
.prod-hl-1 {
  background: var(--white);
  padding-bottom: 0;
}
.prod-hl-1 .prod-hl-divider {
  max-width: 1200px;
  margin: 60px auto 0;
  border: none;
  border-top: 1px solid var(--gray-200);
}
.prod-hl-center {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.prod-hl-center h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--black);
  margin-bottom: 20px;
  line-height: 1.2;
}
.prod-hl-center p {
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 12px;
}
.prod-hl-center .prod-hl-sub {
  font-size: 0.9rem;
  color: var(--gray-400);
  font-style: italic;
  margin-top: 8px;
}
.prod-hl-2 {
  background: var(--white);
}
.prod-hl-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}
.prod-hl-grid.reverse {
  direction: rtl;
}
.prod-hl-grid.reverse > * {
  direction: ltr;
}
.prod-hl-text h2 {
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 20px;
}
.prod-hl-text p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-700);
  margin-bottom: 12px;
}
.prod-hl-1 .prod-hl-text p {
  color: var(--ink);
}
.prod-hl-sub {
  font-size: 15px;
  font-weight: 600;
  color: var(--black) !important;
}
.prod-hl-img {
  display: flex;
  align-items: center;
  justify-content: center;
}
.prod-hl-img img {
  max-height: 400px;
  width: auto;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
}

/* =========================================================
   16d. TED LINK — Seções exclusivas
   ========================================================= */
.link-features-section {
  padding: 80px 5vw;
  background: linear-gradient(135deg, #fff8e1 0%, #ffffff 100%);
}
.link-cards-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-top: 50px;
}
.link-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: transform 0.3s, box-shadow 0.3s;
}
.link-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}
.link-card-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--yellow);
  border-radius: 50%;
  margin: 0 auto 16px;
}
.link-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
}
.link-card p {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.5;
}

.link-security-section {
  padding: 80px 5vw;
  background: var(--white);
}
.link-security-section h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--black);
  margin-bottom: 20px;
  line-height: 1.25;
}
.link-security-section p {
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 16px;
}

.link-steps-section {
  padding: 80px 5vw;
  background: var(--bg-alt);
}
.link-steps-section h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--black);
  margin-bottom: 28px;
  line-height: 1.25;
}
.link-steps-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.link-steps-list li {
  font-size: 1rem;
  color: var(--gray-600);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.5;
}
.step-num {
  color: var(--yellow);
  font-size: 1.3rem;
  flex-shrink: 0;
}

/* -- Ted Link: Plan Cards -- */
.link-plan-card {
  background: var(--black);
  border-radius: var(--radius);
  padding: 36px 32px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}
.link-plan-img {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}
.link-plan-img img {
  height: 80px;
  width: auto;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.3));
}
.link-plan-name {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
}
.link-plan-recebe {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.link-check {
  font-size: 1rem;
}
.link-plan-rates {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 28px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.link-plan-publico {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.78);
  margin-top: -10px;
  margin-bottom: 16px;
  font-weight: 600;
}
.link-rate {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.link-rate-val {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
}
.link-rate-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.3;
}
.btn-link-plan {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 28px;
  background: var(--yellow);
  color: var(--black);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
}
.btn-link-plan:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
}

.link-taxas-collapse-item {
  grid-column: 1 / -1;
  margin-top: 10px;
  text-align: center;
}

.btn-link-taxas-toggle {
  width: auto;
  min-width: 300px;
  border: 2px solid rgba(255,255,255,0.28);
  background: transparent;
  color: var(--white);
  border-radius: 50px;
  padding: 14px 26px;
  font-size: 1rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  cursor: pointer;
  transition: all .25s;
}

.btn-link-taxas-toggle:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-1px);
}

.btn-link-taxas-toggle[aria-expanded="true"] .btn-link-taxas-icon {
  transform: rotate(45deg);
}

.btn-link-taxas-icon {
  font-size: 1.25rem;
  line-height: 1;
  transition: transform 0.2s ease;
}

.link-taxas-collapse {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  text-align: initial;
}

.link-taxas-collapse[hidden] {
  display: none !important;
}

.link-taxas-col {
  background: #f4f4f4;
  border-radius: 18px;
  padding: 22px 20px;
  color: #101010;
}

.link-taxas-col h4 {
  margin: 0 0 14px;
  font-size: 1.9rem;
  font-weight: 800;
}

.link-taxas-table {
  width: 100%;
  border-collapse: collapse;
}

.link-taxas-table td {
  padding: 4px 0;
  font-size: 1.28rem;
  font-weight: 700;
}

.link-taxas-table td:last-child {
  text-align: right;
  font-weight: 500;
}

/* =========================================================
   17. PILARES
   ========================================================= */
.pillars {
  background: var(--gray-50);
  padding: 0;
}

/* -- Header -- */
.pillars-top {
  text-align: center;
  padding-top: 100px;
  margin-bottom: 64px;
}
.pillars-heading {
  font-size: clamp(28px, 3.8vw, 44px);
  font-weight: 800;
  color: var(--black);
  line-height: 1.18;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}
.pillars-sub {
  font-size: 17px;
  color: var(--gray-500);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.65;
}

/* -- Split: imagem + benefícios -- */
.pillars-split {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
  align-items: center;
  padding: 0 5vw 96px;
}

/* Imagem */
.pillars-photo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pillars-photo img {
  width: 100%;
  max-width: 440px;
  display: block;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.13));
}

/* Lado direito */
.pillars-right {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

/* Grid 2×2 */
.pillars-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.pillar-item {
  padding: 24px;
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-lg);
  transition: all .3s ease;
}
.pillar-item:hover {
  border-color: var(--yellow);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
  transform: translateY(-3px);
}

.pillar-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--yellow-50);
  color: var(--yellow-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: all .3s ease;
}
.pillar-item:hover .pillar-icon {
  background: var(--yellow);
  color: var(--black);
  box-shadow: 0 4px 14px rgba(255, 204, 0, 0.3);
}

.pillar-item h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.pillar-item p {
  font-size: 13.5px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* CTA */
.pillars-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 44px;
  background: var(--yellow);
  color: var(--black);
  font-size: 16px;
  font-weight: 700;
  border-radius: 60px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all .25s ease;
  box-shadow: 0 4px 16px rgba(255, 204, 0, 0.3);
}
.pillars-cta:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 204, 0, 0.4);
}

/* -- Banner escuro imersivo -- */
.pillars-banner {
  background: var(--black);
  padding: 100px 5vw 80px;
  overflow: hidden;
  position: relative;
}

.pillars-banner-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(255, 204, 0, 0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.pillars-banner-lines {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 320px;
  pointer-events: none;
  z-index: 1;
}
.pillars-banner-lines svg {
  width: 100%;
  height: 100%;
}

.pillars-banner-inner {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.pillars-banner-title {
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 800;
  font-style: italic;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  text-shadow: 0 2px 24px rgba(255, 204, 0, 0.12);
}
.pillars-banner-desc {
  font-size: 16px;
  color: var(--gray-300);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .pillars-split { grid-template-columns: 1fr; gap: 48px; }
  .pillars-photo img { max-width: 360px; margin: 0 auto; }
  .pillars-top { padding-top: 72px; }
}
@media (max-width: 600px) {
  .pillars-grid { grid-template-columns: 1fr; gap: 16px; }
  .pillar-item { padding: 20px; }
  .pillars-top { padding-top: 56px; margin-bottom: 48px; }
  .pillars-split { padding: 0 5vw 64px; }
  .pillars-banner { padding: 64px 5vw 56px; }
  .pillars-cta { width: 100%; }
  .pillars-photo img { max-width: 280px; }
}

/* =========================================================
   17c. PRODUCT DETAIL (nova partial de maquininha)
   ========================================================= */
.prod-detail {
  background: var(--white);
  padding: 80px 5vw 0;
}

/* Header */
.prod-detail-header {
  max-width: 700px;
  margin-bottom: 56px;
}
.prod-detail-header h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: var(--black);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.prod-detail-header p {
  font-size: 16px;
  color: var(--gray-500);
  line-height: 1.65;
}

/* Main grid: hero-card + text + side-cards */
.prod-detail-main {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 320px;
  gap: 24px;
  align-items: start;
  margin-bottom: 24px;
}

/* Hero card (imagem + specs) */
.pd-hero-card {
  background: var(--yellow-50);
  border-radius: var(--radius-lg);
  padding: 40px 32px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  min-height: 420px;
}
.pd-hero-img {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.pd-hero-img img {
  max-height: 240px;
  width: auto;
  filter: drop-shadow(0 12px 32px rgba(0,0,0,0.12));
}
.pd-hero-specs {
  display: flex;
  gap: 40px;
  margin-bottom: 20px;
}
.pd-spec {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--gray-700);
}
.pd-spec-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-500);
}
.pd-spec-value {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: var(--black);
  line-height: 1;
}
.pd-hero-tag {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--gray-700);
  display: flex;
  align-items: center;
  gap: 6px;
}
.pd-hero-tag::before {
  content: '📱';
  font-size: 14px;
}
.pd-hero-note {
  font-size: 10px;
  color: var(--gray-300);
  letter-spacing: 0.05em;
  margin-top: 12px;
}

/* Hero text */
.pd-hero-text {
  padding: 16px 0;
}
.pd-eyebrow {
  font-size: 11px;
  font-weight: 700;
  color: var(--gray-500);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pd-eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--gray-300);
}
.pd-hero-text h3 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: var(--black);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}
.pd-hero-text p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.65;
  margin-bottom: 24px;
}

/* Chips de conectividade */
.pd-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pd-chip {
  padding: 8px 16px;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  color: var(--gray-700);
  letter-spacing: 0.03em;
}

/* Side cards */
.pd-side-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.pd-side-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}
.pd-side-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--yellow-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.pd-side-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
  line-height: 1.3;
}
.pd-side-card p {
  font-size: 13.5px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* Bottom cards */
.pd-bottom-cards {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding-bottom: 80px;
}
.pd-bottom-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--yellow-50);
  border-radius: var(--radius-lg);
  padding: 28px 28px;
}
.pd-bottom-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pd-bottom-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 6px;
}
.pd-bottom-card p {
  font-size: 13.5px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ===== Plan Cards (estilo moderno) ===== */
.pd-plans {
  background: var(--gray-50);
  padding: 80px 5vw;
}
.pd-plans-grid {
  max-width: 840px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.pd-plan-card {
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 36px 32px 32px;
  position: relative;
  overflow: hidden;
  transition: all .3s ease;
}
.pd-plan-card:hover {
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}
.pd-plan-card.featured {
  border-color: var(--yellow);
}

/* Badge */
.pd-plan-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  background: var(--yellow-50);
  color: var(--yellow-dark);
  border: 1px solid var(--yellow-light);
}
.pd-plan-card.featured .pd-plan-badge {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}

/* Imagem do plano */
.pd-plan-img {
  text-align: center;
  margin-bottom: 24px;
  padding-top: 8px;
}
.pd-plan-img img {
  max-height: 140px;
  width: auto;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.1));
}

/* Info do plano */
.pd-plan-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--gray-500);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.pd-plan-name {
  font-size: 28px;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.pd-plan-desc {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.5;
  margin-bottom: 28px;
}

.pd-plan-oldline {
  font-size: 14px;
  color: var(--gray-400);
  margin-bottom: 8px;
}

.pd-plan-oldline s {
  color: var(--gray-300);
}

/* Preço */
.pd-plan-installment {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pd-plan-discount {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 6px;
  background: var(--success);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
}
.pd-plan-price {
  font-size: 48px;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}
.pd-plan-price sup {
  font-size: 20px;
  font-weight: 700;
  vertical-align: super;
  margin-right: 2px;
}
.pd-plan-price .cents {
  font-size: 24px;
}
.pd-plan-avista {
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 24px;
}
.pd-plan-avista s {
  color: var(--gray-300);
}

/* Taxas */
.pd-plan-rates {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--gray-100);
  border: 1px solid var(--gray-100);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 24px;
}
.pd-rate {
  background: var(--gray-50);
  padding: 14px 8px;
  text-align: center;
}
.pd-rate-label {
  display: block;
  font-size: 9px;
  font-weight: 700;
  color: var(--gray-500);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.pd-rate-val {
  display: block;
  font-size: 16px;
  font-weight: 800;
  color: var(--black);
}

/* CTA */
.pd-plan-cta {
  display: block;
  text-align: center;
  padding: 16px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all .25s ease;
  cursor: pointer;
}
.pd-plan-card.featured .pd-plan-cta {
  background: var(--yellow);
  color: var(--black);
  border: 2px solid var(--yellow);
}
.pd-plan-card.featured .pd-plan-cta:hover {
  background: var(--yellow-dark);
  border-color: var(--yellow-dark);
}
.pd-plan-card:not(.featured) .pd-plan-cta {
  background: var(--white);
  color: var(--black);
  border: 2px solid var(--gray-200, #ddd);
}
.pd-plan-card:not(.featured) .pd-plan-cta:hover {
  border-color: var(--black);
  background: var(--gray-50);
}

.pd-plans-note {
  text-align: center;
  font-size: 12.5px;
  color: var(--gray-400);
  margin-top: 28px;
}
.pd-plans-note a {
  color: var(--yellow-dark);
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 1000px) {
  .prod-detail-main { grid-template-columns: 1fr 1fr; }
  .pd-side-cards { grid-column: 1 / -1; flex-direction: row; }
  .pd-side-card { flex: 1; }
}
@media (max-width: 700px) {
  .prod-detail-main { grid-template-columns: 1fr; }
  .pd-side-cards { flex-direction: column; }
  .pd-bottom-cards { grid-template-columns: 1fr; }
  .pd-plans-grid { grid-template-columns: 1fr; max-width: 420px; }
  .pd-hero-card { min-height: auto; padding: 32px 24px 16px; }
  .pd-plan-price { font-size: 40px; }
}

/* =========================================================
   17b. PRODUCT PLANS (Planos por maquininha — usa .product-card)
   ========================================================= */
.prod-plans {
  background: var(--black);
  padding: 80px 5vw;
}
.prod-plans .sec-head { margin-bottom: 48px; }
.prod-plans-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 800px;
  margin: 0 auto;
}

/* =========================================================
   18. TAXAS
   ========================================================= */

/* 18a. Hero taxas — usa classes do hero principal (.hero, .hero-product) */
.hero.hero-dark {
  background: var(--black);
}
.hero-dark .hero-product-text h1 {
  color: var(--white);
}
.hero-dark .product-specs li {
  color: rgba(255,255,255,0.8);
}
.hero-dark .btn-primary {
  background: var(--yellow);
  color: var(--black);
}
.hero-dark .btn-primary:hover {
  background: var(--yellow-dark);
}

/* 18b. Tabela de taxas */
.taxas-tabela-section {
  background: var(--white);
  padding: 80px 5vw;
}
.taxas-tabela-section .sec-head {
  text-align: center;
  margin-bottom: 36px;
}
.taxas-tabela-section .sec-title {
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
  font-weight: 800;
  line-height: 1.3;
}

.taxas-mode-switch {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.taxas-mode-badge {
  border: 1px solid var(--gray-200, #dcdcdc);
  background: var(--white);
  color: var(--gray-500);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s;
}

.taxas-mode-badge.active {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.taxas-mode-badge:hover {
  border-color: var(--black);
}

.taxas-toggle { display: flex; justify-content: center; margin-bottom: 12px; }
.taxas-toggle-wrap {
  display: inline-flex;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 50px;
  padding: 5px;
  box-shadow: var(--shadow-sm);
}
.toggle-btn {
  padding: 12px 26px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  background: transparent;
  color: var(--gray-500);
  transition: all .25s;
  font-family: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.toggle-btn .sub { font-size: 11px; font-weight: 500; opacity: 0.85; }
.toggle-btn.active { background: var(--yellow); color: var(--black); box-shadow: 0 4px 14px rgba(255,204,0,0.35); }

.taxas-recebe-label {
  text-align: center;
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 40px;
}
.taxas-recebe-label strong {
  color: var(--black);
}

.taxas-tabela-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}
.taxas-tabela-card {
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
}
.taxas-bandeira-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-100);
}
.taxas-bandeira-header img {
  height: 28px;
  width: auto;
}
.taxas-bandeira-label {
  font-size: 14px;
  color: var(--gray-500);
  font-weight: 600;
}
.taxas-bandeira-fallback {
  font-size: 14px;
  font-weight: 700;
}
.taxas-table {
  width: 100%;
  border-collapse: collapse;
}
.taxas-table tr {
  border-bottom: 1px solid var(--gray-50);
}
.taxas-table tr:last-child {
  border-bottom: none;
}
.taxas-table td {
  padding: 8px 0;
  font-size: 14px;
}
.taxas-table td:first-child {
  font-weight: 700;
  color: var(--black);
  width: 50%;
}
.taxas-table td:last-child {
  text-align: right;
  color: var(--yellow-dark, #c5960b);
  font-weight: 700;
}
.taxas-table tr.taxa-featured td:first-child {
  color: var(--yellow-dark, #c5960b);
}

.taxas-cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 44px;
}
.btn-primary-outline {
  display: inline-block;
  padding: 14px 36px;
  border: 2px solid var(--yellow);
  border-radius: 50px;
  color: var(--black);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all .25s;
}
.btn-primary-outline:hover {
  background: var(--yellow);
  box-shadow: 0 4px 14px rgba(255,204,0,0.35);
}

/* =========================================================
   19. TAXAS DESTAQUE
   ========================================================= */
.taxas-destaque-section {
  background: var(--bg-alt);
  padding: 80px 5vw;
  border-top: 1px solid var(--gray-100);
}

.taxas-destaque-card {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--yellow);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-yellow);
  overflow: hidden;
  max-width: 860px;
  margin: 0 auto;
  border: 2px solid var(--yellow-dark);
}

.taxas-destaque-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 16px 28px;
  border-right: 1px solid rgba(0,0,0,0.08);
}
.taxas-destaque-col:last-child {
  border-right: none;
}

.taxas-destaque-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--black);
  text-align: center;
  margin-bottom: 14px;
}

.taxas-destaque-val {
  background: var(--white);
  border-radius: var(--radius-sm);
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  font-weight: 800;
  color: var(--black);
  padding: 14px 10px;
  text-align: center;
  width: 100%;
  box-shadow: var(--shadow-sm);
}

@media (max-width: 600px) {
  .taxas-destaque-card {
    grid-template-columns: repeat(2, 1fr);
  }
  .taxas-destaque-col:nth-child(2) {
    border-right: none;
  }
  .taxas-destaque-col:nth-child(odd) {
    border-right: 1px solid rgba(0,0,0,0.08);
  }
  .taxas-destaque-col {
    border-bottom: 1px solid rgba(0,0,0,0.08);
  }
  .taxas-destaque-col:nth-child(3),
  .taxas-destaque-col:nth-child(4) {
    border-bottom: none;
  }
}

/* =========================================================
   20. BANDEIRAS
   ========================================================= */
.brands {
  padding: 80px 5vw;
  background: var(--bg-alt);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  overflow: hidden;
}
.brands-category {
  margin-bottom: 32px;
}
.brands-cat-label {
  font-size: 12px;
  font-weight: 800;
  color: var(--gray-500);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

/* Carousel */
.brands-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}
.brands-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: brandsScroll 35s linear infinite;
}
.brands-track[data-speed="-1"] {
  animation: brandsScrollReverse 28s linear infinite;
}
.brands-carousel:hover .brands-track {
  animation-play-state: paused;
}

@keyframes brandsScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes brandsScrollReverse {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.brand-logo-card {
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 100px;
  height: 56px;
  flex-shrink: 0;
  transition: all .25s;
}
.brand-logo-card:hover {
  border-color: var(--yellow);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.brand-logo-card img {
  max-height: 32px;
  max-width: 80px;
  width: auto;
  object-fit: contain;
}
.brands-footnote {
  text-align: center;
  font-size: 12px;
  color: var(--gray-500);
  margin-top: 8px;
  padding: 0 20px;
}
.brands-footnote strong {
  text-decoration: underline;
  color: var(--black);
}

@media (max-width: 600px) {
  .brand-logo-card {
    padding: 10px 16px;
    min-width: 80px;
    height: 48px;
  }
  .brand-logo-card img {
    max-height: 26px;
    max-width: 60px;
  }
}

/* =========================================================
   20. PRODUTOS
   ========================================================= */
.products-section { background: var(--bg); }
.plans-toggle { display: flex; justify-content: center; margin-bottom: 48px; }

.products-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product-card {
  background: var(--white);
  border: 2px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: all .3s;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--yellow); }
.product-card.featured {
  border-color: var(--black);
  background: linear-gradient(180deg, #FFFEF5 0%, var(--white) 50%);
}
.product-card.featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: var(--yellow);
}
.product-name { font-size: 24px; font-weight: 800; color: var(--black); margin-bottom: 4px; letter-spacing: -0.025em; }
.product-sub  { font-size: 13.5px; color: var(--gray-500); margin-bottom: 18px; font-weight: 500; }

.product-image {
  width: 100%;
  height: 180px;
  margin-bottom: 22px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255,204,0,0.15) 0%, transparent 70%),
    var(--bg-alt);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  transition: background .3s;
}
.product-card:hover .product-image {
  background:
    radial-gradient(circle at 50% 50%, rgba(255,204,0,0.25) 0%, transparent 70%),
    var(--bg-alt);
}
.product-image img {
  max-height: 160px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 24px rgba(0,0,0,0.15));
  transition: transform .35s;
}
.product-card:hover .product-image img { transform: scale(1.05) rotate(-15deg); }

.price-block { margin-bottom: 18px; }
.price-old  { font-size: 13px; color: var(--gray-500); text-decoration: line-through; }
.price-new  { font-size: 40px; font-weight: 800; color: var(--black); letter-spacing: -0.03em; line-height: 1; margin-top: 2px; }
.price-new sup    { font-size: 17px; font-weight: 700; vertical-align: top; margin-top: 8px; margin-right: 2px; color: var(--gray-700); }
.price-new .cents { font-size: 20px; font-weight: 700; }
.price-parcel         { font-size: 12.5px; color: var(--gray-500); margin-top: 6px; }
.price-parcel strong  { color: var(--black); font-weight: 700; }

.rates-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 14px 0;
  margin-bottom: 16px;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}
.rate-chip {
  background: var(--yellow-50);
  color: var(--gray-900);
  font-size: 11.5px;
  font-weight: 700;
  padding: 5px 11px;
  border-radius: 50px;
}

/* =========================================================
   20b. TED LINK CTA
   ========================================================= */
.ted-link-section {
  background: var(--black);
  padding: 96px 5vw;
  overflow: hidden;
}

.ted-link-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.ted-link-text h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin: 14px 0 20px;
}

.ted-link-text > p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
  max-width: 460px;
  margin-bottom: 32px;
}

.ted-link-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.ted-link-feat {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.ted-link-feat strong {
  color: var(--white);
}

.ted-link-section .btn-primary {
  background: var(--yellow);
  color: var(--black);
}
.ted-link-section .btn-primary:hover {
  background: var(--yellow-dark);
}

/* Visual (phone + floating cards) */
.ted-link-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 480px;
}

.ted-link-phone img {
  height: 440px;
  width: auto;
  filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.5));
  animation: floatDevice 6s ease-in-out infinite;
}

.ted-link-float {
  position: absolute;
  background: var(--white);
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  animation: floatNotif 5s ease-in-out infinite;
  white-space: nowrap;
}

.ted-link-float-icon {
  font-size: 22px;
}

.ted-link-float strong {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: var(--black);
}

.ted-link-float small {
  font-size: 11px;
  color: var(--gray-500);
}

.ted-link-float-1 {
  top: 12%;
  right: -8%;
  animation-delay: 0s;
}

.ted-link-float-2 {
  bottom: 16%;
  left: -6%;
  animation-delay: -2.5s;
}

@media (max-width: 900px) {
  .ted-link-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .ted-link-text > p {
    margin-left: auto;
    margin-right: auto;
  }
  .ted-link-features {
    align-items: center;
  }
  .ted-link-text .btn-primary {
    margin: 0 auto;
  }
  .ted-link-visual {
    min-height: 400px;
  }
  .ted-link-phone img {
    height: 360px;
  }
  .ted-link-float {
    display: none;
  }
}

/* =========================================================
   21. CALCULADORA
   ========================================================= */
.calc-section { background: var(--bg); }
.calc-wrapper {
  max-width: 1180px;
  margin: 0 auto;
  background: var(--black);
  border-radius: var(--radius-lg);
  padding: 56px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.calc-wrapper::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,204,0,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.calc-wrapper::after {
  content: '';
  position: absolute;
  bottom: -50px; left: -50px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,204,0,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  position: relative;
  z-index: 2;
}
.calc-form h3 {
  font-size: 34px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.calc-form h3 .y-highlight {
  background: linear-gradient(180deg, transparent 65%, var(--yellow) 65%);
  padding: 0 4px;
  color: var(--white);
}
.calc-form > p { font-size: 15px; color: rgba(255,255,255,0.7); line-height: 1.55; margin-bottom: 28px; }

.calc-result {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  color: var(--ink);
  align-self: start;
  box-shadow: 0 24px 60px rgba(0,0,0,0.25);
}
.result-row { padding: 14px 0; }
.result-row + .result-row { border-top: 1px solid var(--gray-100); }
.result-label {
  font-size: 12px;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 700;
  margin-bottom: 6px;
}
.result-value { font-size: 34px; font-weight: 800; color: var(--black); letter-spacing: -0.02em; line-height: 1; }
.result-value.market {
  color: var(--gray-500);
  font-size: 22px;
  text-decoration: line-through;
  text-decoration-color: rgba(231,76,60,0.5);
}
.result-tax-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13.5px;
  padding: 10px 0;
}
.result-tax-row .tax-name { color: var(--gray-700); display: flex; align-items: center; gap: 8px; }
.result-tax-row .tax-name .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--yellow); }
.result-tax-row .tax-name.market .dot { background: var(--danger); }
.result-tax-row .tax-value { font-weight: 800; color: var(--black); }

.result-economy {
  background: var(--yellow);
  color: var(--black);
  padding: 20px 22px;
  border-radius: 16px;
  margin-top: 18px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.result-economy::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 50%);
  animation: shimmer 4s linear infinite;
}
.result-economy .lbl {
  font-size: 12.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  position: relative;
  z-index: 1;
}
.result-economy .val {
  font-size: 30px;
  font-weight: 800;
  margin-top: 4px;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}
.calc-note { text-align: center; font-size: 12.5px; color: rgba(255,255,255,0.5); margin-top: 28px; position: relative; z-index: 2; }

/* Toggle repassar taxa */
.toggle-repass {
  display: flex;
  align-items: center;
  gap: 12px;
}
.toggle-repass-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  min-width: 36px;
}

/* Tooltip icon */
.tooltip-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  font-style: normal;
  cursor: help;
  position: relative;
  vertical-align: middle;
  margin-left: 6px;
  transition: background .2s;
}
.tooltip-icon:hover,
.tooltip-icon:focus {
  background: var(--yellow);
  color: var(--black);
}
.tooltip-text {
  display: none;
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  color: var(--black);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  padding: 12px 16px;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  width: 260px;
  z-index: 100;
  pointer-events: none;
}
.tooltip-text::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--white);
}
.tooltip-icon:hover .tooltip-text,
.tooltip-icon:focus .tooltip-text {
  display: block;
}

.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 28px;
  flex-shrink: 0;
}
.switch input { opacity: 0; width: 0; height: 0; }
.switch .slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: rgba(255,255,255,0.15);
  border-radius: 50px;
  transition: background .3s;
}
.switch .slider::before {
  content: '';
  position: absolute;
  height: 22px;
  width: 22px;
  left: 3px;
  bottom: 3px;
  background: var(--white);
  border-radius: 50%;
  transition: transform .3s;
}
.switch input:checked + .slider { background: var(--yellow); }
.switch input:checked + .slider::before { transform: translateX(22px); background: var(--black); }

/* Animação de valor */
.anim-value {
  transition: transform .15s ease, opacity .15s ease;
}
.anim-value.updating {
  transform: translateY(-4px);
  opacity: 0.6;
}

/* =========================================================
   22. DEPOIMENTOS
   ========================================================= */
.testimonials-section { background: var(--bg-alt); }
.testimonials-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  transition: all .25s;
  border: 1px solid transparent;
  position: relative;
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--yellow); }
.quote-icon {
  font-size: 64px;
  color: var(--yellow);
  line-height: 0.6;
  font-family: Georgia, serif;
  margin-bottom: 10px;
  height: 32px;
}
.testimonial-text { font-size: 14.5px; color: var(--gray-700); line-height: 1.65; margin-bottom: 22px; }
.testimonial-text strong { color: var(--black); font-weight: 700; }
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--gray-100);
}
.author-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
}
.author-avatar.a2 { background: var(--black);       color: var(--yellow); }
.author-avatar.a3 { background: var(--yellow-dark); color: var(--black);  }
.author-avatar-img {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--yellow);
  flex-shrink: 0;
}
.author-info .name { font-size: 14.5px; font-weight: 700; color: var(--black); }
.author-info .role { font-size: 12.5px; color: var(--gray-500); }
.author-rating     { margin-left: auto; color: var(--yellow-dark); font-size: 13px; letter-spacing: 1px; }

/* =========================================================
   22b. RECLAME AQUI
   ========================================================= */
.ra-section {
  background: var(--white);
  border-top: 1px solid var(--gray-100);
}

.ra-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.ra-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--bg-alt);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 28px 28px;
  text-decoration: none;
  color: inherit;
  transition: all .3s;
  position: relative;
}
.ra-card:hover {
  border-color: var(--yellow);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.ra-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ra-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.ra-card-content {
  flex: 1;
  min-width: 0;
}
.ra-card-eyebrow {
  font-size: 11px;
  font-weight: 700;
  color: var(--gray-500);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.ra-card-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 4px;
}
.ra-score {
  color: var(--yellow-dark);
  font-weight: 800;
}
.ra-card-desc {
  font-size: 13px;
  color: var(--gray-500);
  font-weight: 500;
}

.ra-arrow {
  flex-shrink: 0;
  color: var(--yellow-dark);
  transition: transform .3s;
}
.ra-card:hover .ra-arrow {
  transform: translateX(4px);
}

.ra-footnote {
  text-align: center;
  font-size: 12px;
  color: var(--gray-500);
  margin-top: 24px;
}

@media (max-width: 600px) {
  .ra-cards {
    grid-template-columns: 1fr;
  }
  .ra-card {
    padding: 20px;
    gap: 14px;
  }
}

/* =========================================================
   23. FAQ
   ========================================================= */
.faq-section { background: var(--bg); }
.faq-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.faq-item {
  background: var(--bg-alt);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .25s, box-shadow .3s;
  border: 1.5px solid transparent;
}
.faq-item:hover { background: var(--white); box-shadow: var(--shadow-sm); }
.faq-item.open { background: var(--white); border-color: var(--yellow); box-shadow: var(--shadow-sm); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  user-select: none;
  gap: 16px;
  line-height: 1.35;
}
.faq-q .arrow {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-size: 18px;
  font-weight: 800;
  transition: transform .3s, background .3s, color .3s;
  flex-shrink: 0;
}
.faq-item.open .arrow { transform: rotate(45deg); background: var(--black); color: var(--yellow); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s cubic-bezier(0.16, 1, 0.3, 1), padding .35s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0 24px;
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.65;
}
.faq-item.open .faq-a { max-height: 400px; padding: 0 24px 22px; }

/* =========================================================
   24. CTA FINAL
   ========================================================= */
.cta-final {
  text-align: center;
  padding: 110px 5vw;
  background: var(--yellow);
  color: var(--black);
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  top: -100px; left: 10%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(0,0,0,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.cta-final::after {
  content: '';
  position: absolute;
  bottom: -100px; right: 5%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,0,0,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.cta-content { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }
.cta-final .eyebrow { background: var(--black); color: var(--yellow); }
.cta-final h2 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.02;
  margin-bottom: 20px;
  color: var(--black);
}
.cta-final p { font-size: 18px; color: var(--gray-900); margin-bottom: 38px; line-height: 1.5; }
.cta-final p strong { color: var(--black); font-weight: 700; }
.cta-final .btn-primary { background: var(--black); font-size: 16px; padding: 19px 40px; }
.cta-final .btn-primary::before { background: var(--white); }
.cta-final .btn-primary:hover > * { color: var(--black); }
.cta-meta {
  margin-top: 24px;
  font-size: 14px;
  color: var(--gray-900);
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  font-weight: 600;
}
.cta-meta span { display: inline-flex; align-items: center; gap: 6px; }

/* =========================================================
   25. RESPONSIVO — seções de página
   ========================================================= */
@media (max-width: 1100px) {
  .hero-inner    { grid-template-columns: 1fr; gap: 40px; min-height: unset; padding-top: 20px; }
  .hero-visual   { order: -1; height: 460px; }
  .hero-blob     { width: 380px; height: 380px; }
  .hero-device   { height: 380px; }
  .chip-1 { top: 4%; right: 0%; }
  .chip-2 { bottom: 10%; left: 0%; }
  .chip-3 { display: none; }
  .hero-product { grid-template-columns: 1fr; gap: 30px; padding-top: 30px; }
  .hero-product-visual { order: -1; height: 380px; }
  .hero-product-visual .hero-blob { width: 380px; height: 380px; }
  .hero-product-visual .hero-device { height: 340px; }
  .notif-card { display: none !important; }
  .prod-hl-grid, .prod-hl-grid.reverse { grid-template-columns: 1fr; gap: 30px; direction: ltr; }
  .prod-hl-img { order: -1; }
  .prod-hl-img img { max-height: 300px; }
  .link-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .prod-plans-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .taxa-cards        { grid-template-columns: repeat(2, 1fr); }
  .taxas-tabela-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .brands-grid       { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .products-grid     { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .calc-grid         { grid-template-columns: 1fr; gap: 32px; }
  .calc-wrapper      { padding: 40px 28px; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
  .faq-grid          { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .hero h1 { font-size: 40px; }
  .hero-btns { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-secondary { justify-content: center; }
  .link-cards-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .link-taxas-collapse { grid-template-columns: 1fr; }
  .btn-link-taxas-toggle { min-width: 240px; width: min(100%, 360px); }
  .link-taxas-col h4 { font-size: 1.6rem; }
  .link-taxas-table td { font-size: 1.12rem; }
}

/* =========================================================
   20. PÁGINA SOBRE NÓS
   ========================================================= */

/* ── Hero Sobre Nós ── */
.sobre-hero {
  background: var(--black);
  padding: 80px 5vw 70px;
}

.sobre-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.sobre-hero-text h1 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}

.sobre-hero-text > p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
}

.sobre-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.stat-item:first-child { padding-left: 0; }
.stat-item:last-child  { border-right: none; }

.stat-num {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.sobre-hero-img img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
}

/* ── Sobre a TedPay (história) ── */
.sobre-historia {
  background: var(--gray-50);
  padding: 88px 5vw;
  border-top: 1px solid var(--gray-100);
}

.sobre-historia-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.sobre-historia-left .sec-title {
  text-align: left;
}

.sobre-historia-right {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.sobre-historia-right p {
  font-size: 16px;
  color: var(--gray-700);
  line-height: 1.8;
}

/* ── Números ── */
.sobre-numeros {
  background: var(--white);
  padding: 72px 5vw;
  border-top: 1px solid var(--gray-100);
}

.sobre-numeros-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.sobre-numero-card {
  text-align: center;
  padding: 36px 24px;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--gray-100);
  background: var(--white);
  transition: border-color .25s, box-shadow .25s;
}

.sobre-numero-card:hover {
  border-color: var(--yellow);
  box-shadow: 0 8px 28px rgba(255, 204, 0, 0.12);
}

.sobre-numero-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--yellow-50);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--yellow-dark);
}

.sobre-numero-val {
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--black);
  margin-bottom: 8px;
}

.sobre-numero-label {
  display: block;
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ── Timeline ── */
.sobre-timeline {
  background: var(--white);
  padding: 88px 5vw;
  border-top: 1px solid var(--gray-100);
}

.sobre-timeline-track {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  padding-left: 40px;
}

.sobre-timeline-track::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--gray-100);
}

.timeline-item {
  position: relative;
  padding-bottom: 40px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -40px;
  top: 6px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--yellow);
  z-index: 2;
  box-shadow: 0 0 0 4px var(--yellow-50);
}

.timeline-item:last-child .timeline-dot {
  background: var(--yellow);
}

.timeline-year {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--yellow-dark);
  background: var(--yellow-50);
  padding: 3px 10px;
  border-radius: 6px;
  margin-bottom: 8px;
}

.timeline-content h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 6px;
}

.timeline-content p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ── Por que a TedPay ── */
.sobre-porque {
  background: var(--black);
  padding: 88px 5vw;
}

.sobre-porque-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.porque-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: border-color .25s, background .25s;
}

.porque-card:hover {
  border-color: var(--yellow);
  background: rgba(255, 204, 0, 0.04);
}

.porque-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255, 204, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.porque-card h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}

.porque-card p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
}

/* ── Aqui na TedPay (MVV) ── */
.sobre-mvv {
  background: var(--white);
  padding: 88px 5vw;
}

.sobre-mvv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.sobre-mvv-img img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
  display: block;
}

.sobre-mvv-content h2 {
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  font-weight: 800;
  line-height: 1.3;
  color: var(--black);
  margin: 12px 0 16px;
}

.sobre-mvv-content > p {
  font-size: 15px;
  color: var(--gray-500);
  margin-bottom: 32px;
}

/* MVV Accordion */
.mvv-accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mvv-item {
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--white);
  transition: border-color 0.2s, background 0.2s;
}

.mvv-item[open] {
  border-color: var(--yellow);
  background: var(--yellow-50);
}

.mvv-q {
  list-style: none;
  cursor: pointer;
  padding: 16px 20px;
  font-weight: 700;
  font-size: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  color: var(--black);
}

.mvv-q::-webkit-details-marker { display: none; }

.mvv-arrow {
  flex-shrink: 0;
  color: var(--gray-500);
  transition: transform 0.25s ease;
}

.mvv-item[open] .mvv-arrow {
  transform: rotate(180deg);
  color: var(--yellow-darker);
}

.mvv-a {
  padding: 0 20px 20px;
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.75;
}

.mvv-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mvv-list li {
  padding-left: 22px;
  position: relative;
}

.mvv-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--yellow-darker);
  font-weight: 700;
}

/* ── Responsive Sobre Nós ── */
@media (max-width: 900px) {
  .sobre-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .sobre-hero-img { order: -1; }

  .sobre-mvv-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .sobre-numeros-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sobre-historia-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .sobre-porque-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .sobre-hero { padding: 56px 5vw 48px; }
  .sobre-hero-stats { gap: 16px 0; }

  .stat-item {
    padding: 0 20px;
  }

  .stat-num { font-size: 1.5rem; }

  .sobre-numeros-grid {
    grid-template-columns: 1fr;
  }

  .sobre-porque-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   21. PÁGINAS LEGAIS (Termos / Privacidade)
   ========================================================= */

/* ── Hero legal ── */
.legal-hero {
  background: var(--black);
  padding: 64px 5vw 56px;
  text-align: center;
}

.legal-hero-inner {
  max-width: 760px;
  margin: 0 auto;
}

.legal-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin: 12px 0 10px;
}

.legal-hero p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
}

/* ── Conteúdo legal ── */
.legal-content {
  padding: 72px 5vw 96px;
  background: var(--white);
}

.legal-body {
  max-width: 780px;
  margin: 0 auto;
}

.legal-intro {
  font-size: 16px;
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 2px solid var(--yellow);
}

.legal-body h2 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--black);
  margin: 40px 0 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.legal-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--yellow);
  color: var(--black);
  font-size: 12px;
  font-weight: 900;
  border-radius: 50%;
  flex-shrink: 0;
}

.legal-body h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gray-900);
  margin: 24px 0 8px;
}

.legal-body p {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 14px;
}

.legal-body ul {
  list-style: none;
  padding: 0;
  margin: 8px 0 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.legal-body ul li {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.7;
  padding-left: 22px;
  position: relative;
}

.legal-body ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--yellow-darker);
  font-weight: 700;
}

.legal-body a {
  color: var(--black);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--yellow);
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.legal-body a:hover {
  color: var(--yellow-darker);
}

/* Card de info da empresa */
.legal-company-card {
  background: var(--bg-alt);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-top: 40px;
}

.legal-company-card h3 {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.legal-company-card ul li::before {
  content: none;
}

.legal-company-card ul li {
  padding-left: 0;
}

@media (max-width: 600px) {
  .legal-hero { padding: 48px 5vw 40px; }
  .legal-content { padding: 48px 5vw 72px; }
}

/* =========================================================
   22. PÁGINA FRANQUEADO
   ========================================================= */

/* ── Nav highlight ── */
.nav-franqueado {
  background: var(--yellow) !important;
  color: var(--black) !important;
  font-weight: 700 !important;
  padding: 8px 18px !important;
  border-radius: 50px !important;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-franqueado:hover {
  background: var(--yellow-dark) !important;
  transform: translateY(-1px) !important;
  color: var(--black) !important;
}

/* ── Hero Franqueado ── */
.franqueado-hero {
  padding: 60px 5vw 40px;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 10%, rgba(255,204,0,0.15) 0%, transparent 50%),
    var(--bg);
}

.franqueado-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 60px;
  min-height: 78vh;
}

.franqueado-hero-text h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 900;
  color: var(--black);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.franqueado-hero-text > p {
  font-size: 17px;
  color: var(--gray-700);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 30px;
}

.franqueado-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.f-chip {
  background: var(--yellow-50);
  border: 1.5px solid var(--yellow);
  color: var(--black);
  font-size: 13px;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 50px;
}

.btn-franqueado-wa {
  background: #25D366 !important;
  box-shadow: 0 8px 24px rgba(37,211,102,0.35) !important;
}
.btn-franqueado-wa::before {
  background: #1ebe5d !important;
}

/* ── Visual com blob ── */
.franqueado-hero-visual {
  position: relative;
  height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.franqueado-hero-visual .hero-blob {
  position: absolute;
  width: 500px;
  height: 500px;
  background: var(--yellow);
  border-radius: 48% 52% 68% 32% / 42% 58% 42% 58%;
  box-shadow: 0 40px 80px rgba(255,204,0,0.35);
  animation: morph 14s ease-in-out infinite;
}

.franqueado-photo {
  position: relative;
  z-index: 3;
  height: 600px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 40px 60px rgba(0,0,0,0.25));
  animation: floatDevice 6s ease-in-out infinite;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .franqueado-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    min-height: unset;
  }
  .franqueado-hero-visual {
    order: -1;
    height: 440px;
  }
  .franqueado-hero-visual .hero-blob {
    width: 380px;
    height: 380px;
  }
  .franqueado-photo {
    height: 400px;
  }
}

@media (max-width: 600px) {
  .franqueado-hero { padding: 40px 5vw 30px; }
  .franqueado-hero-visual { height: 320px; }
  .franqueado-hero-visual .hero-blob { width: 300px; height: 300px; }
  .franqueado-chips { gap: 8px; }
}

/* =========================================================
   23. HAMBURGER MENU — MOBILE
   ========================================================= */
@media (max-width: 1100px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--gray-100);
    box-shadow: var(--shadow-md);
    padding: 16px 5vw 24px;
    gap: 4px;
    z-index: 99;
  }

  .nav-links.nav-open {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 12px 0;
    font-size: 15px;
    border-bottom: 1px solid var(--gray-100);
  }

  .nav-links li:last-child a {
    border-bottom: none;
  }

  .nav-franqueado {
    display: inline-block !important;
    margin-top: 8px;
    text-align: center;
  }

  /* Dropdown no mobile: toggle via JS com .mobile-open */
  .nav-dropdown-menu {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
    border: none !important;
    background: transparent !important;
    border-radius: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    min-width: unset !important;
    width: 100% !important;
    display: none !important;
  }
  .nav-dropdown.mobile-open .nav-dropdown-menu {
    display: block !important;
    border-left: 3px solid var(--yellow);
    margin: 0 0 8px 0 !important;
    border-radius: 0 4px 4px 0;
    overflow: hidden;
    background: #F5F5F5 !important;
  }
  .nav-dropdown.mobile-open .nav-dropdown-menu li {
    width: 100%;
    border-bottom: 1px solid #E0E0E0;
  }
  .nav-dropdown.mobile-open .nav-dropdown-menu li:last-child {
    border-bottom: none;
  }
  .nav-dropdown.mobile-open .nav-dropdown-menu li a {
    display: block !important;
    width: 100% !important;
    padding: 12px 16px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #333333 !important;
    background: transparent !important;
    border-bottom: none !important;
    text-decoration: none !important;
  }
  .nav-dropdown-trigger {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  .nav-dropdown-trigger svg {
    transition: transform 0.25s;
  }
  .nav-dropdown.mobile-open .nav-dropdown-trigger svg {
    transform: rotate(180deg);
  }
  .nav-dropdown.mobile-open > .nav-dropdown-trigger {
    border-bottom: none !important;
    font-weight: 700 !important;
  }

  /* Hamburger animado */
  .hamburger.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .hamburger.is-open span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .hamburger span {
    transition: transform 0.25s ease, opacity 0.2s ease;
  }

  nav {
    position: relative;
  }
}
