:root {
  --font-primary:   'Manrope', sans-serif;
  --font-secondary: 'Montserrat', sans-serif;
  --azul:        #3479C5;
  --teal:        #19B6A6;
  --azul-deep:   #2563C8;
  --teal-dark:   #0F9E90;
  --bg-dark:     #0D1E35;
  --bg-dark2:    #142438;
  --bg-light:    #F5F9FC;
  --bg-alt:      #EEF9FB;
  --bg-white:    #FFFFFF;
  --text-dark:   #2C3E50;
  --text-muted:  #6B8090;
  --text-light:  #EEF9FB;
  --text-light2: #A8C5D6;
  --border-d:    #1A2E45;
  --border-l:    #D0E4EE;
  --shadow-azul: rgba(52,121,197,0.18);
  --shadow-teal: rgba(25,182,166,0.18);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: var(--font-primary); color: var(--text-dark); line-height: 1.6; overflow-x: hidden; background: var(--bg-white); }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
h1, h2, h3 { font-family: var(--font-primary); line-height: 1.15; }
h1 { font-weight: 800; }
h2 { font-weight: 700; }
h3 { font-weight: 600; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.badge {
  display: inline-block; font-family: var(--font-secondary);
  font-weight: 700; font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--teal); border: 1px solid rgba(25,182,166,0.3); background: rgba(25,182,166,0.08);
  padding: 6px 16px; border-radius: 2px; margin-bottom: 16px;
}
.section-sub {
  font-family: var(--font-primary); font-weight: 400;
  max-width: 620px; margin: 0 auto 48px; font-size: 17px; color: var(--text-muted);
}
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.4s ease-out, transform 0.4s ease-out; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── BOTÃO WHATSAPP ── */
.btn-cta-wpp {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-secondary); font-weight: 800;
  font-size: 15px; letter-spacing: 0.05em; text-transform: uppercase;
  background: linear-gradient(90deg, #25D366 0%, #1ebe5d 40%, #25D366 100%);
  background-size: 200% auto;
  color: #FFFFFF; padding: 18px 36px;
  border-radius: 4px; border: none; cursor: pointer;
  position: relative; overflow: hidden;
  box-shadow: 0 4px 24px rgba(37,211,102,0.55), 0 0 0 0 rgba(37,211,102,0.4);
  animation: wpp-pulse 2.4s ease-in-out infinite, wpp-bg-slide 3s linear infinite;
  transition: transform 0.3s ease;
  text-decoration: none;
  line-height: 1.2;
  text-align: center;
}
.btn-cta-wpp::after {
  content: ''; position: absolute; top: 0; left: -75%;
  width: 50%; height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.28) 50%, transparent 100%);
  animation: wpp-shine 2.4s ease-in-out infinite; pointer-events: none;
}
.btn-cta-wpp:hover { transform: translateY(-2px); }
@keyframes wpp-pulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(37,211,102,0.55), 0 0 0 0 rgba(37,211,102,0.4); }
  50%       { box-shadow: 0 6px 32px rgba(37,211,102,0.70), 0 0 0 10px rgba(37,211,102,0.0); }
}
@keyframes wpp-bg-slide {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}
@keyframes wpp-shine {
  0%   { left: -75%; }
  60%, 100% { left: 130%; }
}

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 999;
  padding: 12px 0; background: var(--bg-white);
  border-bottom: 1px solid var(--border-l);
  box-shadow: 0 2px 12px rgba(52,121,197,0.08);
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; }
.navbar-logo-link { display: inline-flex; align-items: center; line-height: 0; text-decoration: none; }
.navbar-logo { height: 40px; width: auto; display: block; }
.navbar-links { display: flex; gap: 32px; align-items: center; }
.navbar-links a {
  font-family: var(--font-secondary); font-weight: 500; font-size: 13px; letter-spacing: 0.5px;
  color: var(--text-dark); transition: color 0.3s ease;
}
.navbar-links a:hover { color: var(--teal); }
.navbar-cta {
  background: var(--teal); color: #FFFFFF !important; padding: 10px 20px; border-radius: 4px;
  font-weight: 700 !important; transition: background 0.3s ease;
}
.navbar-cta:hover { background: var(--teal-dark); color: #FFFFFF !important; }
.navbar-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.navbar-toggle span { width: 24px; height: 2px; background: var(--text-dark); transition: all 0.3s ease; border-radius: 1px; }
@media (max-width: 900px) {
  .navbar-links { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    background: var(--bg-dark); flex-direction: column; align-items: center; justify-content: center; gap: 28px; z-index: 998; }
  .navbar-links.open { display: flex; }
  .navbar-links.open a { color: var(--text-light) !important; font-size: 18px; }
  .navbar-toggle { display: flex; }
  .navbar-logo { height: 32px; }
}

/* ── HERO SPLIT ── */
.hero-split {
  position: relative;
  background: linear-gradient(135deg, #F5F9FC 0%, #EEF5FC 100%);
  padding: 120px 0 60px; overflow: hidden;
}
.hero-split::before {
  content: ''; position: absolute; top: -20%; right: -10%;
  width: 60%; height: 140%;
  background: radial-gradient(ellipse at center, rgba(25,182,166,0.10) 0%, transparent 60%);
  pointer-events: none;
}
.hero-split .container { position: relative; z-index: 2; }
.hero-split-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
.hero-split-text { text-align: left; }
.hero-split-text .hero-tag {
  display: inline-block; font-family: var(--font-secondary); font-weight: 700;
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--teal); background: rgba(25,182,166,0.10);
  border: 1px solid rgba(25,182,166,0.3); padding: 6px 14px; border-radius: 2px;
  margin-bottom: 20px;
}
.hero-split-text h1 { font-size: 48px; color: var(--text-dark); margin-bottom: 20px; line-height: 1.1; text-wrap: balance; }
.hero-split-text h1 span { color: var(--teal); }
.hero-split-sub { font-size: 18px; color: var(--text-muted); margin-bottom: 28px; line-height: 1.65; max-width: 560px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 18px 28px; margin-bottom: 32px;
  font-family: var(--font-secondary); font-weight: 600; font-size: 13px; color: var(--text-dark); }
.hero-trust-item { display: flex; align-items: center; gap: 8px; }
.hero-trust-item svg { width: 18px; height: 18px; color: var(--teal); flex-shrink: 0; }
.hero-cta-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-note { font-size: 13px; color: var(--text-muted); margin-top: 16px; display: flex; align-items: center; gap: 6px; }
.hero-note svg { width: 14px; height: 14px; color: var(--teal); }

.hero-split-img {
  position: relative; border-radius: 12px; overflow: hidden;
  box-shadow: 0 24px 60px rgba(13,30,53,0.18), 0 8px 24px rgba(52,121,197,0.10);
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, #0D1E35 0%, #142438 100%);
}
.hero-split-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-split-img-badge {
  position: absolute; top: 20px; left: 20px; z-index: 3;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(13,30,53,0.85); backdrop-filter: blur(8px);
  color: #FFF; font-family: var(--font-secondary); font-weight: 700;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  padding: 8px 14px; border-radius: 2px; border: 1px solid rgba(25,182,166,0.4);
}
.hero-split-img-badge::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal); box-shadow: 0 0 0 4px rgba(25,182,166,0.25);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(25,182,166,0.25); }
  50% { box-shadow: 0 0 0 8px rgba(25,182,166,0.10); }
}
@media (max-width: 1024px) { .hero-split-grid { gap: 40px; } .hero-split-text h1 { font-size: 40px; } }
@media (max-width: 900px) {
  .hero-split { padding: 100px 0 40px; }
  .hero-split-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-split-text { text-align: center; }
  .hero-split-text h1 { font-size: 30px; }
  .hero-split-sub { font-size: 16px; margin-left: auto; margin-right: auto; }
  .hero-trust { justify-content: center; gap: 14px 20px; font-size: 12px; }
  .hero-cta-row { justify-content: center; }
  .hero-note { justify-content: center; }
  .hero-split-img { aspect-ratio: 16 / 11; max-width: 560px; margin: 0 auto; }
}
@media (max-width: 480px) {
  .hero-split-text h1 { font-size: 26px; }
  .btn-cta-wpp { font-size: 12px; letter-spacing: 0.5px; padding: 16px 22px; gap: 8px; }
  .btn-cta-wpp svg { width: 16px; height: 16px; }
}

/* ── FORMULÁRIO ── */
.s-form { background: #F4F8FD; padding: 80px 0; position: relative; border-top: 1px solid var(--border-l); }
.s-form .badge { background: rgba(52,121,197,0.10); color: var(--azul); border-color: rgba(52,121,197,0.3); }
.s-form h2 { color: var(--text-dark); font-size: 32px; margin-bottom: 12px; }
.s-form .section-sub { color: var(--text-muted); margin-bottom: 32px; }

.urgencia-box {
  display: flex; align-items: flex-start; gap: 12px;
  background: rgba(25,182,166,0.10); border: 1px solid rgba(25,182,166,0.35);
  border-left: 4px solid var(--teal); border-radius: 4px;
  padding: 14px 20px; max-width: 600px; margin: 0 auto 20px;
}
.urgencia-icon { color: var(--teal); flex-shrink: 0; margin-top: 2px; }
.urgencia-box p { color: var(--text-dark); font-size: 14px; font-family: var(--font-secondary); font-weight: 600; line-height: 1.5; text-align: left; }

.form-card { background: var(--bg-white); border: 1px solid var(--border-l); border-radius: 8px; padding: 36px; max-width: 600px; margin: 0 auto; box-shadow: 0 8px 32px rgba(52,121,197,0.08); }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-family: var(--font-secondary); font-weight: 600; font-size: 13px; color: var(--text-dark); margin-bottom: 8px; }
.form-input { width: 100%; background: var(--bg-light); border: 1px solid var(--border-l); border-radius: 6px; padding: 14px 16px; color: var(--text-dark); font-family: var(--font-primary); font-size: 16px; transition: border-color 0.3s ease, box-shadow 0.3s ease; outline: none; }
.form-input::placeholder { color: var(--text-muted); opacity: 0.7; }
.form-input:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(25,182,166,0.15); background: var(--bg-white); }
.radio-group { margin-bottom: 22px; }
.radio-group-title { font-family: var(--font-secondary); font-weight: 600; font-size: 13px; color: var(--text-dark); margin-bottom: 12px; }
.radio-option { display: flex; align-items: center; gap: 10px; padding: 12px 14px; cursor: pointer; border-radius: 6px; border: 1px solid var(--border-l); background: var(--bg-light); margin-bottom: 8px; transition: border-color 0.2s ease, background 0.2s ease; }
.radio-option:hover { border-color: var(--teal); }
.radio-option input[type="radio"] { display: none; }
.radio-custom { width: 18px; height: 18px; flex-shrink: 0; border: 2px solid var(--border-l); border-radius: 50%; position: relative; transition: border-color 0.3s ease; }
.radio-option input[type="radio"]:checked + .radio-custom { border-color: var(--teal); }
.radio-option input[type="radio"]:checked + .radio-custom::after { content: ''; position: absolute; top: 3px; left: 3px; width: 8px; height: 8px; background: var(--teal); border-radius: 50%; }
.radio-option input[type="radio"]:checked ~ span:last-child { color: var(--text-dark); font-weight: 600; }
.radio-option span:last-child { font-size: 14px; color: var(--text-muted); }

.btn-submit {
  width: 100%; padding: 18px; font-family: var(--font-secondary); font-weight: 800;
  font-size: 14px; letter-spacing: 0.05em; text-transform: uppercase;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: linear-gradient(90deg, #25D366 0%, #1ebe5d 40%, #25D366 100%);
  background-size: 200% auto;
  color: #FFFFFF; border: none; border-radius: 6px; cursor: pointer;
  position: relative; overflow: hidden;
  box-shadow: 0 4px 24px rgba(37,211,102,0.55), 0 0 0 0 rgba(37,211,102,0.4);
  animation: wpp-pulse 2.4s ease-in-out infinite, wpp-bg-slide 3s linear infinite;
  transition: transform 0.3s ease;
}
.btn-submit::after {
  content: ''; position: absolute; top: 0; left: -75%; width: 50%; height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.28) 50%, transparent 100%);
  animation: wpp-shine 2.4s ease-in-out infinite; pointer-events: none;
}
.btn-submit:hover { transform: translateY(-2px); }
.btn-submit.loading { pointer-events: none; opacity: 0.7; animation: none; }
.form-error { color: #E74C3C; font-size: 14px; text-align: center; padding: 12px; margin-top: 12px; border-radius: 4px; background: rgba(231,76,60,0.08); }
.form-disclaimer { font-size: 12px; color: var(--text-muted); text-align: center; margin-top: 16px; line-height: 1.6; display: flex; align-items: center; justify-content: center; gap: 6px; }
.form-disclaimer svg { width: 14px; height: 14px; color: var(--teal); flex-shrink: 0; }
@media (max-width: 768px) {
  .s-form { padding: 60px 0; } .s-form h2 { font-size: 26px; }
  .form-card { padding: 24px; border-radius: 6px; }
}

/* ── TRANSFORMAÇÃO ── */
.s-transform { background: var(--bg-white); padding: 100px 0; }
.s-transform h2 { color: var(--text-dark); font-size: 34px; margin-bottom: 12px; max-width: 700px; margin-left: auto; margin-right: auto; }
.transform-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; margin-bottom: 48px; }
.transform-card { background: var(--bg-light); border-radius: 6px; border-top: 3px solid var(--teal); padding: 32px; transition: box-shadow 0.3s ease, transform 0.3s ease; }
.transform-card:hover { box-shadow: 0 8px 32px var(--shadow-teal); transform: translateY(-3px); }
.transform-antes { font-size: 14px; color: var(--text-muted); margin-bottom: 12px; display: flex; align-items: flex-start; gap: 8px; }
.transform-antes::before { content: '✕'; color: #C0392B; font-weight: 700; font-size: 12px; flex-shrink: 0; margin-top: 2px; }
.transform-arrow { display: flex; align-items: center; justify-content: center; margin: 8px 0; }
.transform-arrow svg { width: 20px; height: 20px; color: var(--teal); }
.transform-depois { font-size: 15px; color: var(--text-dark); font-weight: 500; display: flex; align-items: flex-start; gap: 8px; }
.transform-depois::before { content: '✓'; color: var(--teal); font-weight: 700; font-size: 14px; flex-shrink: 0; margin-top: 1px; }
@media (max-width: 768px) { .transform-grid { grid-template-columns: 1fr; gap: 16px; } .s-transform { padding: 70px 0; } .s-transform h2 { font-size: 26px; } .transform-card { padding: 24px; } }

/* ── PRODUTO INTRO ── */
.s-produto-intro { background: #EEF5FC; padding: 100px 0; border-top: 1px solid var(--border-l); }
.produto-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.produto-intro-img {
  position: relative; border-radius: 12px; overflow: hidden;
  background: linear-gradient(135deg, #0D1E35 0%, #142438 100%);
  box-shadow: 0 24px 60px rgba(13,30,53,0.18), 0 8px 24px rgba(52,121,197,0.10);
  aspect-ratio: 4 / 5;
}
.produto-intro-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.produto-intro-img-badge {
  position: absolute; top: 20px; left: 20px; z-index: 3;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(13,30,53,0.85); backdrop-filter: blur(8px);
  color: #FFF; font-family: var(--font-secondary); font-weight: 700;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  padding: 8px 14px; border-radius: 2px; border: 1px solid rgba(25,182,166,0.4);
}
.produto-intro-img-badge::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal); box-shadow: 0 0 0 4px rgba(25,182,166,0.25);
  animation: pulse-dot 2s ease-in-out infinite;
}
.produto-intro-info { text-align: left; }
.produto-intro-info .badge { margin-bottom: 20px; }
.produto-intro-info h2 { font-size: 34px; color: var(--text-dark); margin-bottom: 16px; line-height: 1.2; }
.produto-intro-info p { font-size: 16px; color: var(--text-muted); line-height: 1.8; margin-bottom: 28px; }
.produto-intro-features { list-style: none; margin-bottom: 32px; display: grid; gap: 10px; }
.produto-intro-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text-dark); font-weight: 500; }
.produto-intro-features li svg { width: 18px; height: 18px; color: var(--teal); flex-shrink: 0; margin-top: 3px; }
@media (max-width: 900px) {
  .s-produto-intro { padding: 70px 0; }
  .produto-intro-grid { grid-template-columns: 1fr; gap: 32px; }
  .produto-intro-info { text-align: center; }
  .produto-intro-info h2 { font-size: 26px; }
  .produto-intro-img { aspect-ratio: 16 / 11; max-width: 560px; margin: 0 auto; order: -1; }
  .produto-intro-features { text-align: left; max-width: 420px; margin-left: auto; margin-right: auto; margin-bottom: 28px; }
}

/* ── AUTORIDADE ── */
.s-autoridade { background: #EEF5FC; padding: 100px 0; }
.s-autoridade h2 { color: var(--text-dark); font-size: 36px; margin-bottom: 12px; }
.s-autoridade .section-sub { color: var(--text-muted); }
.stats-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 32px; margin-bottom: 48px; }
.stat-item { text-align: center; }
.stat-number { font-family: var(--font-secondary); font-weight: 900; font-size: 48px; background: linear-gradient(135deg, var(--azul), var(--teal)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1.1; margin-bottom: 4px; }
.stat-suffix { font-family: var(--font-secondary); font-weight: 700; font-size: 16px; color: var(--text-muted); }
.stat-label { font-family: var(--font-secondary); font-weight: 700; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--azul); margin: 8px 0 6px; }
.stat-desc { font-size: 13px; color: var(--text-muted); line-height: 1.5; }
@media (max-width: 1200px) { .stats-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 768px) {
  .s-autoridade { padding: 70px 0; } .s-autoridade h2 { font-size: 26px; }
  .stats-grid { grid-template-columns: repeat(2,1fr); gap: 24px; }
  .stat-number { font-size: 36px; }
  .stat-item:last-child:nth-child(odd) { grid-column: 1 / -1; }
}

/* ── INDICAÇÕES ── */
.s-indicacoes { background: var(--bg-white); padding: 80px 0; }
.s-indicacoes h2 { color: var(--text-dark); font-size: 32px; margin-bottom: 40px; }
.indicacoes-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-bottom: 40px; }
.indicacao-tag { background: var(--bg-light); border: 1px solid var(--border-l); border-left: 4px solid var(--teal); border-radius: 4px; padding: 16px 20px; font-size: 14px; color: var(--text-dark); font-weight: 500; line-height: 1.5; text-align: left; transition: box-shadow 0.3s ease, transform 0.3s ease; }
.indicacao-tag:hover { box-shadow: 0 4px 16px var(--shadow-teal); transform: translateY(-2px); }
@media (max-width: 1024px) { .indicacoes-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 768px) { .indicacoes-grid { grid-template-columns: 1fr; } .s-indicacoes { padding: 60px 0; } .s-indicacoes h2 { font-size: 24px; } }

/* ── POR QUE NEW CYCLE ── */
.s-porque-prod { background: #F4F8FD; padding: 100px 0; }
.s-porque-prod h2 { color: var(--text-dark); font-size: 34px; margin-bottom: 48px; max-width: 700px; margin-left: auto; margin-right: auto; }
.porque-prod-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-bottom: 48px; }
.porque-prod-card { background: var(--bg-white); border: 1px solid var(--border-l); border-radius: 6px; padding: 28px; text-align: left; transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease; }
.porque-prod-card:hover { border-color: var(--teal); transform: translateY(-3px); box-shadow: 0 8px 24px var(--shadow-teal); }
.porque-prod-icon { width: 40px; height: 40px; color: var(--teal); margin-bottom: 16px; }
.porque-prod-card h3 { font-size: 16px; color: var(--text-dark); margin-bottom: 10px; font-family: var(--font-secondary); font-weight: 600; }
.porque-prod-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
@media (max-width: 1200px) { .porque-prod-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 768px) { .porque-prod-grid { grid-template-columns: 1fr; } .s-porque-prod { padding: 70px 0; } .s-porque-prod h2 { font-size: 26px; } }

/* ── SPECS ── */
.s-specs { background: #EEF5FC; padding: 100px 0; }
.s-specs h2 { color: var(--text-dark); font-size: 34px; margin-bottom: 48px; }
.specs-wrapper { max-width: 700px; margin: 0 auto 48px; }
.specs-table { width: 100%; border-collapse: collapse; margin-bottom: 32px; background: var(--bg-white); border-radius: 6px; overflow: hidden; box-shadow: 0 4px 16px rgba(52,121,197,0.06); }
.specs-table th { font-family: var(--font-secondary); font-weight: 700; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--teal); text-align: left; padding: 14px 18px; border-bottom: 1px solid var(--border-l); }
.specs-table td { font-family: 'JetBrains Mono', 'Manrope', monospace; font-size: 14px; padding: 14px 18px; border-bottom: 1px solid var(--border-l); }
.specs-table td:first-child { color: var(--text-muted); }
.specs-table td:last-child { color: var(--text-dark); font-weight: 600; }
.specs-table tr:nth-child(even) { background: rgba(52,121,197,0.04); }
.recursos-list { list-style: none; display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; margin-bottom: 48px; text-align: left; }
.recursos-list li { font-size: 14px; color: var(--text-muted); display: flex; align-items: flex-start; gap: 8px; }
.recursos-list li::before { content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0; }
@media (max-width: 768px) { .recursos-list { grid-template-columns: 1fr; } .s-specs { padding: 70px 0; } .s-specs h2 { font-size: 26px; } }

/* ── DEPOIMENTOS ── */
.s-depo { background: var(--bg-white); padding: 100px 0; }
.s-depo h2 { color: var(--text-dark); font-size: 34px; margin-bottom: 48px; }
.depo-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.depo-card { border-radius: 12px; overflow: hidden; background: var(--bg-white); box-shadow: 0 4px 24px rgba(0,0,0,0.08); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.depo-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.14); }
.depo-card img { width: 100%; height: auto; display: block; }
@media (max-width: 768px) { .depo-grid { grid-template-columns: 1fr; } .s-depo { padding: 70px 0; } .s-depo h2 { font-size: 26px; } }

/* ── FAQ ── */
.s-faq { background: #F4F8FD; padding: 100px 0; }
.s-faq h2 { color: var(--text-dark); font-size: 34px; margin-bottom: 48px; }
.faq-list { max-width: 760px; margin: 0 auto 48px; }
.faq-item { border-bottom: 1px solid var(--border-l); background: var(--bg-white); margin-bottom: 8px; border-radius: 6px; padding: 0 20px; }
.faq-question { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; cursor: pointer; font-family: var(--font-secondary); font-weight: 600; font-size: 15px; color: var(--text-dark); transition: color 0.3s ease; gap: 16px; }
.faq-question:hover { color: var(--azul); }
.faq-chevron { width: 20px; height: 20px; flex-shrink: 0; transition: transform 0.35s ease; color: var(--text-muted); }
.faq-item.active .faq-chevron { transform: rotate(180deg); color: var(--teal); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer-inner { padding: 0 0 20px; font-size: 14px; color: var(--text-muted); line-height: 1.7; }
@media (max-width: 768px) { .s-faq { padding: 70px 0; } .s-faq h2 { font-size: 26px; } }

/* ── FORMULÁRIO FINAL (dark) ── */
.s-form-final { background: var(--bg-dark); padding: 100px 0; }
.s-form-final .badge { color: var(--teal); background: rgba(25,182,166,0.10); border-color: rgba(25,182,166,0.3); }
.s-form-final h2 { color: #FFFFFF; font-size: 32px; margin-bottom: 12px; }
.s-form-final .section-sub { color: var(--text-light2); }
.s-form-final .urgencia-box { background: rgba(25,182,166,0.08); }
.s-form-final .urgencia-box p { color: var(--text-light); }
.s-form-final .form-card { background: rgba(255,255,255,0.04); border: 1px solid var(--border-d); box-shadow: 0 8px 32px rgba(0,0,0,0.3); }
.s-form-final .form-group label { color: var(--text-light); }
.s-form-final .form-input { background: rgba(255,255,255,0.07); border-color: var(--border-d); color: #FFFFFF; }
.s-form-final .form-input::placeholder { color: var(--text-light2); opacity: 0.6; }
.s-form-final .form-input:focus { background: rgba(255,255,255,0.10); border-color: var(--teal); }
.s-form-final .radio-group-title { color: var(--text-light); }
.s-form-final .radio-option { background: rgba(255,255,255,0.04); border-color: var(--border-d); }
.s-form-final .radio-option:hover { border-color: var(--teal); }
.s-form-final .radio-option span:last-child { color: var(--text-light2); }
.s-form-final .radio-option input[type="radio"]:checked ~ span:last-child { color: #FFFFFF; }
.s-form-final .radio-custom { border-color: var(--border-d); }
.s-form-final .form-disclaimer { color: var(--text-light2); }
@media (max-width: 768px) { .s-form-final { padding: 70px 0; } .s-form-final h2 { font-size: 26px; } }

/* ── EQUIPAMENTOS (index) ── */
.s-equipamentos { background: var(--bg-white); padding: 100px 0; }
.s-equipamentos h2 { color: var(--text-dark); font-size: 34px; margin-bottom: 12px; }
.equip-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-bottom: 48px; }
.equip-card { background: var(--bg-light); border: 1px solid var(--border-l); border-radius: 8px; overflow: hidden; transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease; display: flex; flex-direction: column; }
.equip-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px var(--shadow-teal); border-color: var(--teal); }
.equip-card img { width: 100%; height: 240px; object-fit: cover; display: block; background: linear-gradient(135deg, #0D1E35 0%, #142438 100%); }
.equip-card-body { padding: 24px; text-align: left; flex: 1; display: flex; flex-direction: column; }
.equip-card-body h3 { font-size: 18px; color: var(--text-dark); margin-bottom: 10px; font-family: var(--font-secondary); font-weight: 700; }
.equip-card-body p { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 20px; flex: 1; }
.equip-link { font-family: var(--font-secondary); font-weight: 700; font-size: 13px; color: var(--teal); letter-spacing: 0.5px; transition: gap 0.3s ease; display: inline-flex; align-items: center; gap: 6px; }
.equip-link:hover { gap: 10px; }
@media (max-width: 1024px) { .equip-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 640px) { .equip-grid { grid-template-columns: 1fr; } .s-equipamentos { padding: 70px 0; } .s-equipamentos h2 { font-size: 26px; } }

/* ── PARCEIROS ── */
.s-parceiros { background: #F4F8FD; padding: 100px 0; }
.s-parceiros h2 { color: var(--text-dark); font-size: 32px; margin-bottom: 32px; }
.parceiros-wrapper { max-width: 1000px; margin: 0 auto; }
.parceiros-wrapper img { width: 100%; height: auto; }
@media (max-width: 768px) { .s-parceiros { padding: 70px 0; } .s-parceiros h2 { font-size: 24px; } }

/* ── FOOTER ── */
.footer { background: #EEF5FC; padding: 80px 0 32px; border-top: 1px solid var(--border-l); }
.footer-grid { display: grid; grid-template-columns: 1.2fr 0.8fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo-link { display: inline-flex; align-items: center; line-height: 0; margin-bottom: 16px; text-decoration: none; }
.footer-logo { height: 52px; width: auto; display: block; }
.footer-tagline { font-family: var(--font-primary); font-weight: 500; font-size: 13px; letter-spacing: 3px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 16px; }
.footer-about { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.footer h4 { font-family: var(--font-secondary); font-weight: 700; font-size: 13px; letter-spacing: 1px; text-transform: uppercase; color: var(--text-dark); margin-bottom: 20px; }
.footer-links a { display: block; font-size: 14px; color: var(--text-muted); padding: 4px 0; transition: color 0.3s ease; }
.footer-links a:hover { color: var(--teal); }
.footer-contact p { font-size: 13px; color: var(--text-muted); line-height: 1.8; display: flex; align-items: flex-start; gap: 6px; }
.footer-contact svg { flex-shrink: 0; margin-top: 4px; }
.footer-bottom { border-top: 1px solid var(--border-l); padding-top: 24px; text-align: center; font-size: 12px; color: var(--text-muted); }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } .footer { padding: 60px 0 24px; } }

/* ── BOTÃO FLUTUANTE ── */
.float-wpp {
  position: fixed; bottom: 28px; right: 28px; z-index: 9000;
  display: flex; align-items: center; gap: 10px;
  background: #25D366; color: #FFFFFF;
  padding: 14px 22px; border-radius: 50px;
  font-family: var(--font-secondary); font-weight: 700; font-size: 13px; letter-spacing: 0.5px;
  text-decoration: none; box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: pulse-wpp 2.8s ease-in-out infinite;
}
.float-wpp:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(37,211,102,0.55); }
.float-wpp svg { flex-shrink: 0; }
@keyframes pulse-wpp {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
  50%      { box-shadow: 0 4px 28px rgba(37,211,102,0.70), 0 0 0 8px rgba(37,211,102,0.12); }
}
@media (max-width: 768px) {
  .float-wpp span { display: none; }
  .float-wpp { padding: 14px; border-radius: 50%; bottom: 20px; right: 20px; }
}
