/* =========================================
   VARIÁVEIS & RESET
   CSS por Luanderson
========================================= */
:root {
  --primary: #16A34A;
  --primary-dark: #15803D;
  --primary-light: #BBF7D0;
  --secondary: #4ADE80;
  --accent: #38BDF8;
  --bg: #0A1628;
  --bg-soft: #0D1F3C;
  --bg-card: rgba(255,255,255,0.04);
  --text-main: #FFFFFF;
  --text-muted: #CBD5E1;
  --danger: #EF4444;
  --success: #22C55E;
  --ice-white: #F0FDF4;
  --text-dark: #052e16;
  --shadow-glow: 0 0 40px rgba(22,163,74,0.3);
  --shadow-soft: 0 20px 60px rgba(0,0,0,0.4);
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 999px;
  --grad-hero: linear-gradient(160deg, #060E1C 0%, #0D1F3C 55%, #060E1C 100%);
  --grad-primary: linear-gradient(135deg, #16A34A, #4ADE80);
  --grad-btn: linear-gradient(135deg, #16A34A 0%, #22C55E 60%, #4ADE80 100%);
  --grad-card: linear-gradient(135deg, rgba(22,163,74,0.1), rgba(74,222,128,0.05));
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--bg);
  color: var(--text-main);
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 620px;
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

img { max-width: 100%; border-radius: var(--radius-lg); }

/* =========================================
   ANIMAÇÕES GLOBAIS
========================================= */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}
@keyframes pulse-orange {
  0%   { transform: scale(0.97); box-shadow: 0 0 0 0 rgba(22,163,74,0.65); }
  70%  { transform: scale(1);    box-shadow: 0 0 0 16px rgba(22,163,74,0); }
  100% { transform: scale(0.97); box-shadow: 0 0 0 0 rgba(22,163,74,0); }
}
@keyframes shine-effect {
  0%   { transform: translateX(-120%) rotate(15deg); opacity: 0; }
  10%  { opacity: 1; }
  25%  { transform: translateX(120%) rotate(15deg); opacity: 0.6; }
  26%  { opacity: 0; }
  100% { transform: translateX(-120%) rotate(15deg); opacity: 0; }
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes ray-pulse {
  0%, 100% { opacity: 0.15; transform: scale(1); }
  50%       { opacity: 0.3;  transform: scale(1.05); }
}
@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes count-up { from { opacity: 0; } to { opacity: 1; } }

/* Scroll-reveal */
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* =========================================
   TOP BAR
========================================= */
.top-bar {
  background: linear-gradient(90deg, #7F1D1D, #DC2626, #7F1D1D);
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
  color: #fff;
  text-align: center;
  padding: 11px 15px;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 2px solid rgba(255,255,255,0.15);
}
.top-bar #timer {
  background: rgba(255,255,255,0.2);
  padding: 2px 10px;
  border-radius: 20px;
  margin-left: 6px;
  font-size: 1rem;
}

/* =========================================
   HERO
========================================= */
.hero {
  background: var(--grad-hero);
  position: relative;
  overflow: hidden;
  padding: 60px 0 50px;
}

/* Brilho azul + verde no fundo */
.hero::before {
  content: '';
  position: absolute;
  top: -180px; right: -180px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(56,189,248,0.12) 0%, rgba(22,163,74,0.08) 50%, transparent 70%);
  animation: ray-pulse 4s ease-in-out infinite;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(22,163,74,0.14) 0%, transparent 70%);
  animation: ray-pulse 5s ease-in-out infinite reverse;
  pointer-events: none;
}

.hero .container { position: relative; z-index: 2; }

/* Garante que o conteúdo do hero fica na frente das placas */
.hero > .container { isolation: isolate; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(22,163,74,0.15);
  border: 1px solid rgba(22,163,74,0.4);
  color: var(--primary-light);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  animation: fadeInDown 0.7s ease both;
}
.hero-badge .dot {
  width: 8px; height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse-orange 2s infinite;
  display: inline-block;
}

.product-image-container {
  animation: float 4s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(22,163,74,0.35));
  margin-bottom: 28px;
}

.main-img { border-radius: var(--radius-xl); max-width: 320px; width: 100%; }

.hero h1 {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.15;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  animation: fadeInUp 0.8s ease 0.2s both;
}
.hero h1 span {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero .subtext {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 18px 0 24px;
  animation: fadeInUp 0.8s ease 0.35s both;
}

.hero h2 {
  font-size: 1.15rem;
  color: var(--secondary);
  font-weight: 700;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.45s both;
}

/* =========================================
   SEÇÃO DARK CARROSSEL
========================================= */
.section-dark {
  background: #040C16;
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}
.section-dark::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-primary);
}

.section-dark h1 {
  font-size: 1.6rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 8px;
}
.section-dark h2 {
  font-size: 1.1rem;
  color: var(--secondary);
  font-weight: 700;
}

/* Swiper */
.swiper { width: 100%; height: 280px; margin-bottom: 30px; }
.swiper-slide {
  text-align: center;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
}
.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(22,163,74,0.4);
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

/* =========================================
   SEÇÃO LIGHT
========================================= */
.section-light {
  background: var(--ice-white);
  color: var(--text-dark);
  padding: 60px 0;
}

/* =========================================
   BOTÕES
========================================= */
.btn {
  display: inline-block;
  padding: 17px 38px;
  background: var(--grad-btn);
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  font-size: 1.1rem;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  margin-top: 15px;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 30px rgba(22,163,74,0.5), 0 2px 8px rgba(0,0,0,0.3);
  transition: transform 0.2s, box-shadow 0.2s;
  text-shadow: 0 1px 3px rgba(0,0,0,0.25);
}
.btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 45px rgba(22,163,74,0.65), 0 4px 12px rgba(0,0,0,0.3);
}
.btn::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: linear-gradient(120deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.5) 40%, rgba(255,255,255,0) 60%);
  transform: translateX(-120%) rotate(15deg);
  pointer-events: none;
  z-index: 1;
  animation: shine-effect 3.5s infinite;
}
.btn span, .btn { position: relative; z-index: 2; }
.btn-full { width: 100%; text-align: center; }
.btn-pulse { animation: pulse-orange 2s infinite; }

/* =========================================
   PROVA SOCIAL
========================================= */
.social-proof-section {
  background: linear-gradient(180deg, var(--ice-white) 0%, #EFF6FF 100%);
  padding: 40px 20px 36px;
  text-align: center;
}
.social-proof-text {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 5px;
}
.counter-number {
  font-size: 5rem;
  font-weight: 900;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin: 8px 0;
}
.social-proof-description {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
  max-width: 600px;
  margin: 8px auto 24px;
  line-height: 1.6;
}
.proof-slide {
  width: 280px !important;
  border-radius: var(--radius-lg) !important;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  border: 2px solid rgba(22,163,74,0.25);
  transition: transform 0.3s, box-shadow 0.3s;
}
.proof-slide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
}
/* slide central em destaque */
.proofSwiper .swiper-slide-active .proof-slide,
.proofSwiper .swiper-slide-active {
  transform: scale(1.04);
  box-shadow: 0 12px 40px rgba(22,163,74,0.25);
  border-color: rgba(22,163,74,0.5);
}

/* =========================================
   CARDS DE PRODUTOS
========================================= */
.cards-section {
  background: linear-gradient(180deg, #EFF6FF 0%, #F8FAFC 100%);
  padding-top: 16px;
}

.section-title {
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--text-dark);
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 10px;
}
.section-title span {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 30px 24px;
  margin-bottom: 24px;
  width: 100%;
  border: 1.5px solid #E2E8F0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--grad-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(22,163,74,0.15);
  border-color: rgba(22,163,74,0.3);
}
.card:hover::before { transform: scaleX(1); }

.card h1 {
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 2px solid #F1F5F9;
  font-weight: 800;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: -0.3px;
}
.card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  background: var(--grad-primary);
  border-radius: 50%;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 900;
  margin-right: 10px;
  flex-shrink: 0;
}
.card img {
  margin: 16px 0;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  border-radius: 10px;
  width: 100%;
  height: auto;
}
.card h2 {
  font-size: 0.97rem;
  font-weight: 400;
  color: #475569;
  line-height: 1.75;
  text-align: left;
}
.card h2 b { color: var(--text-dark); font-weight: 700; }

.bonus-label {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 28px 0 20px;
  padding: 14px 20px;
  background: linear-gradient(135deg, #F0FDF4, #DCFCE7);
  border: 2px dashed #16A34A;
  border-radius: var(--radius-lg);
  font-size: 1rem;
  font-weight: 800;
  color: #14532D;
}
.bonus-label .star { font-size: 1.4rem; }

.card-bonus {
  border: 2px solid #16A34A !important;
  background: linear-gradient(135deg, #F0FDF4, #fff) !important;
}
.card-bonus::before {
  background: linear-gradient(135deg, #16A34A, #4ADE80) !important;
}

/* =========================================
   SEÇÃO DE OFERTA
========================================= */
.offer-section {
  background: var(--grad-hero);
  position: relative;
  overflow: hidden;
  padding: 60px 0;
}
.offer-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(22,163,74,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.price-compare {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  text-transform: none;
  letter-spacing: 0;
}
.strike { text-decoration: line-through; color: var(--danger); font-weight: 700; }
.highlight-gold {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.6rem;
  font-weight: 900;
  display: block;
  margin-top: 6px;
}

.offer-section h2 {
  font-size: 1.4rem;
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.arrow-container { margin: 10px 0; }
.red-arrow {
  width: 50px; height: 50px;
  animation: bounce 2s infinite;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  width: 100%;
  margin-top: 16px;
}

.pricing-card {
  background: rgba(255,255,255,0.04);
  border: 2px solid rgba(22,163,74,0.4);
  border-radius: var(--radius-xl);
  padding: 32px 24px;
  width: 100%;
  box-shadow: 0 0 40px rgba(22,163,74,0.15);
  position: relative;
  backdrop-filter: blur(10px);
}
.pricing-card-featured {
  border: 2px solid var(--primary);
  box-shadow: 0 0 50px rgba(22,163,74,0.3);
}

.featured-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--grad-primary);
  color: #fff;
  padding: 6px 22px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 16px rgba(22,163,74,0.5);
  white-space: nowrap;
}

.pricing-header h3 {
  color: var(--primary);
  font-size: 1.4rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.pricing-header .price {
  font-size: 3.2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.pricing-header .price-prefix {
  font-size: 1.2rem;
  font-weight: 600;
  vertical-align: super;
  color: var(--text-muted);
}
.plan-subtitle {
  color: var(--secondary);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 16px 0 10px;
}
.pricing-list {
  list-style: none;
  text-align: left;
  margin: 16px 0;
  color: #CBD5E1;
}
.pricing-list li {
  margin-bottom: 10px;
  font-size: 0.88rem;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  gap: 8px;
}
.economy-tag {
  color: var(--secondary) !important;
  font-weight: 800 !important;
  font-size: 1rem !important;
  text-align: center;
  margin-top: 8px;
  border: none !important;
  justify-content: center !important;
  background: rgba(22,163,74,0.1);
  padding: 10px !important;
  border-radius: 10px;
}
.whatsapp-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 14px;
  text-align: center;
}

/* =========================================
   FAQ
========================================= */
.faq-section {
  background: var(--ice-white);
  padding: 36px 0 40px;
}
.faq-section h1 {
  color: var(--text-dark);
  font-size: 1.7rem;
  text-transform: uppercase;
  font-weight: 900;
}
.faq-item {
  background: #fff;
  border-radius: var(--radius-lg);
  margin-bottom: 14px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  overflow: hidden;
  border: 1.5px solid #E2E8F0;
  width: 100%;
  transition: border-color 0.3s;
}
.faq-item:hover { border-color: rgba(22,163,74,0.3); }

.faq-question {
  width: 100%;
  background: none;
  color: var(--text-dark);
  border: none;
  outline: none;
  text-align: left;
  padding: 18px 20px 18px 52px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  transition: background 0.2s;
}
.faq-question:hover { background: #F0FDF4; }
.faq-icon {
  position: absolute;
  left: 18px;
  font-size: 1.4rem;
  color: var(--primary);
  font-weight: 900;
  transition: transform 0.3s;
}
.faq-answer {
  display: block;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(.4,0,.2,1), opacity 0.3s;
  padding: 0 20px;
  color: #475569;
  background: #F0FDF4;
  border-top: 1px solid #BBF7D0;
  font-size: 0.97rem;
  line-height: 1.7;
  border-radius: 0 0 14px 14px;
}

/* =========================================
   GARANTIA / TRUST BADGES
========================================= */
.trust-section {
  background: #040D08;
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
}
.trust-badge .icon {
  font-size: 2rem;
  filter: grayscale(0);
}

/* =========================================
   FOOTER
========================================= */
.footer {
  margin-top: 40px;
  border-top: 1px solid #E2E8F0;
  padding-top: 24px;
  width: 100%;
  text-align: center;
}
.footer h2 { font-size: 0.95rem; color: #64748B; font-weight: 600; }
.footer p  { font-weight: 700; color: var(--primary); margin-top: 6px; }

/* =========================================
   SUBTEXT MENOR NO HERO
========================================= */
.subtext-sm {
  font-size: 0.88rem !important;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* =========================================
   TÍTULO CARDS — MAIOR, DUAS LINHAS
========================================= */
.section-title-lg {
  font-size: 2.6rem !important;
  line-height: 1.1 !important;
  margin-bottom: 4px !important;
}
/* "Completo!" — verde, maior */
.span-completo {
  background: var(--grad-primary) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  font-size: 3rem !important;
  display: block;
  line-height: 1.05;
}
.card-first {
  margin-top: 32px !important;
}

/* =========================================
   CARD DO PLANO — VERDE
========================================= */
.pricing-card-featured {
  background: linear-gradient(160deg, #052e16 0%, #14532D 50%, #052e16 100%) !important;
  border: 2px solid #22C55E !important;
  box-shadow: 0 0 60px rgba(22,163,74,0.35), inset 0 1px 0 rgba(255,255,255,0.08) !important;
}
.offer-section {
  background: linear-gradient(160deg, #06101E 0%, #0D1F3C 55%, #06101E 100%) !important;
}

/* =========================================
   SEÇÃO QUEM SOMOS NÓS
========================================= */
.who-section {
  background: linear-gradient(160deg, #06101E 0%, #0D1F3C 100%);
  padding: 44px 0 44px;
  position: relative;
  overflow: hidden;
}
.who-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(22,163,74,0.4), transparent);
}

.who-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(22,163,74,0.12);
  border: 1px solid rgba(22,163,74,0.35);
  color: #86EFAC;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.who-title {
  font-size: 2rem !important;
  font-weight: 900 !important;
  color: #fff !important;
  text-transform: uppercase !important;
  margin-bottom: 20px !important;
  line-height: 1.15 !important;
}
.who-title span {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.who-card {
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(22,163,74,0.25);
  border-radius: var(--radius-xl);
  padding: 32px 24px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  backdrop-filter: blur(8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.who-photo-wrap {
  position: relative;
  flex-shrink: 0;
}
.who-photo {
  width: 140px;
  height: 140px;
  border-radius: 50% !important;
  object-fit: cover;
  border: 3px solid #22C55E !important;
  box-shadow: 0 0 0 6px rgba(22,163,74,0.15), 0 12px 40px rgba(0,0,0,0.4);
  display: block;
}
/* Placeholder se a foto não existir */
.who-photo-placeholder {
  width: 140px; height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, #052e16, #14532D);
  border: 3px solid #22C55E;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
}
.who-photo-placeholder::after { content: '👤'; }

.who-photo-ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px dashed rgba(22,163,74,0.4);
  animation: spin-slow 12s linear infinite;
}

.who-info { text-align: center; }
.who-name {
  font-size: 1.5rem !important;
  font-weight: 900 !important;
  color: #fff !important;
  margin-bottom: 4px !important;
}
.who-role {
  display: inline-block;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.who-bio {
  font-size: 0.92rem;
  color: #CBD5E1;
  line-height: 1.75;
  margin-bottom: 22px !important;
  text-align: left;
}
.who-bio strong { color: #86EFAC; }

.who-stats {
  display: flex;
  justify-content: center;
  gap: 0;
  border: 1px solid rgba(22,163,74,0.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  width: 100%;
}
.who-stat {
  flex: 1;
  padding: 14px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  border-right: 1px solid rgba(22,163,74,0.15);
}
.who-stat:last-child { border-right: none; }
.who-stat-num {
  font-size: 1.4rem;
  font-weight: 900;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.who-stat-label {
  font-size: 0.68rem;
  color: #94A3B8;
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
}

/* =========================================
   SEÇÃO TRABALHOS REALIZADOS
========================================= */
.works-section {
  background: linear-gradient(160deg, #040C16 0%, #060E1C 100%);
  padding: 40px 0 36px;
  position: relative;
  overflow: hidden;
}
.works-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(22,163,74,0.3), transparent);
}

.works-title {
  font-size: 1.7rem !important;
  font-weight: 900 !important;
  color: #fff !important;
  text-transform: uppercase !important;
  line-height: 1.2 !important;
  margin-bottom: 8px !important;
}
.works-title span {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.works-subtitle {
  font-size: 0.9rem;
  color: #64748B;
  margin-bottom: 0 !important;
}

/* Slide proporção Reels 9:16 */
.work-slide {
  width: 160px !important;
  height: 284px !important; /* 160 * (16/9) */
  border-radius: var(--radius-lg) !important;
  overflow: hidden;
  flex-shrink: 0;
}
.work-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(22,163,74,0.35);
  display: block;
}
/* Placeholder quando foto não existe */
.work-placeholder {
  background: linear-gradient(135deg, #0A2218, #14532D);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: rgba(22,163,74,0.3);
}
.work-placeholder::after { content: '☀️'; }

/* =========================================
   MOBILE
========================================= */
@media (max-width: 768px) {
  html, body { overflow-x: hidden !important; max-width: 100vw !important; }
  .container, section, div, img { max-width: 100% !important; }
  img { height: auto; }
  .counter-number { font-size: 3.5rem; }
  .hero h1 { font-size: 1.6rem; }
  .proof-slide { width: 82vw !important; }
  .pricing-header .price { font-size: 2.6rem; }

  /* Placas no mobile — mantém presença mas sem sair da tela */
  .sp-1 { width: 150px !important; height: 102px !important; left: -8% !important; }
  .sp-2 { width: 120px !important; height: 82px  !important; right: -6% !important; }
  .sp-3 { width: 160px !important; height: 109px !important; left: -10% !important; opacity: 0.6 !important; }
  .sp-4 { width: 100px !important; height: 68px  !important; right: -4% !important; }
  .sp-5 { display: none; }
  .section-title-lg { font-size: 1.8rem !important; }
  .who-stats { flex-wrap: wrap; }
  .works-title { font-size: 1.4rem !important; }
}

/* =========================================
   PLACAS SOLARES 3D — PARALLAX HERO
========================================= */
@keyframes panel-glow {
  0%, 100% { box-shadow: 0 0 18px rgba(22,163,74,0.25), inset 0 0 12px rgba(22,163,74,0.08); }
  50%       { box-shadow: 0 0 35px rgba(22,163,74,0.45), inset 0 0 20px rgba(22,163,74,0.15); }
}
@keyframes sp-intro {
  from { opacity: 0; transform: translateY(30px) scale(0.85); }
  to   { opacity: 1; }
}

.solar-panels-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  perspective: 900px;
  perspective-origin: 50% 40%;
  overflow: hidden;
}

/* Base de cada placa */
.sp {
  position: absolute;
  transform-style: preserve-3d;
  will-change: transform;
  animation: sp-intro 1.2s ease both;
}

.sp-frame {
  width: 100%;
  height: 100%;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  /* Estrutura de alumínio escovado */
  background: linear-gradient(160deg, #0B2A1A 0%, #0D3B22 40%, #07200F 100%);
  border: 2px solid rgba(22,163,74,0.35);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.06),
    0 10px 40px rgba(0,0,0,0.6),
    inset 0 1px 0 rgba(255,255,255,0.07);
  animation: panel-glow 3s ease-in-out infinite;
}

/* Grade de células solares */
.sp-cells {
  position: absolute;
  inset: 6px;
  border-radius: 4px;
  background-color: #071F10;
  background-image:
    /* linhas horizontais */
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent calc(25% - 1px),
      rgba(22,163,74,0.28) calc(25% - 1px),
      rgba(22,163,74,0.28) 25%
    ),
    /* linhas verticais */
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent calc(16.66% - 1px),
      rgba(22,163,74,0.28) calc(16.66% - 1px),
      rgba(22,163,74,0.28) 16.66%
    );
  /* Busbars (faixas de contato prateadas) */
  box-shadow:
    inset 0 0 0 1px rgba(22,163,74,0.15),
    inset 50% 0 0 0 rgba(255,255,255,0.03),
    inset calc(50% + 0.5px) 0 0 0 rgba(255,255,255,0.03);
}

/* Reflexo de luz na superfície */
.sp-gloss {
  position: absolute;
  inset: 0;
  border-radius: 6px;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.12) 0%,
    rgba(255,255,255,0.04) 30%,
    transparent 60%,
    rgba(22,163,74,0.05) 100%
  );
  pointer-events: none;
}

/* === Posição e tamanho de cada placa === */
/* Placa 1 — muito grande, esquerda-cima */
.sp-1 {
  width: 260px; height: 177px;
  top: 4%; left: -6%;
  transform: rotateX(30deg) rotateY(-18deg) rotateZ(-6deg);
  animation-delay: 0s;
}
/* Placa 2 — grande, direita-cima */
.sp-2 {
  width: 210px; height: 143px;
  top: 8%; right: -4%;
  transform: rotateX(20deg) rotateY(28deg) rotateZ(9deg);
  animation-delay: 0.15s;
}
/* Placa 3 — muito grande, esquerda-baixo */
.sp-3 {
  width: 290px; height: 198px;
  bottom: 5%; left: -8%;
  transform: rotateX(35deg) rotateY(-12deg) rotateZ(4deg);
  opacity: 0.75;
  animation-delay: 0.3s;
}
/* Placa 4 — média, direita-baixo */
.sp-4 {
  width: 175px; height: 119px;
  bottom: 10%; right: -2%;
  transform: rotateX(18deg) rotateY(35deg) rotateZ(-12deg);
  opacity: 0.8;
  animation-delay: 0.2s;
}
/* Placa 5 — média, centro-topo */
.sp-5 {
  width: 155px; height: 106px;
  top: 2%; left: 50%;
  transform: translateX(-50%) rotateX(25deg) rotateY(-25deg) rotateZ(7deg);
  opacity: 0.6;
  animation-delay: 0.4s;
}
