/* ========================================
   AURION ENERGIA — Design System
   ======================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* ---- Custom Properties ---- */
:root {
  /* Brand Colors */
  --navy-950: #030712;
  --navy-900: #0a1628;
  --navy-800: #0f2240;
  --navy-700: #162d54;
  --navy-600: #1e3a6a;
  --gold-500: #d4a843;
  --gold-400: #e6bf5e;
  --gold-300: #f0d078;
  --gold-200: #f5dfa0;
  --amber-500: #f59e0b;
  --green-500: #22c55e;
  --green-400: #4ade80;
  --white: #ffffff;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;

  /* Gradients */
  --gradient-gold: linear-gradient(135deg, var(--gold-500), var(--amber-500));
  --gradient-navy: linear-gradient(180deg, var(--navy-950) 0%, var(--navy-800) 100%);
  --gradient-hero: linear-gradient(135deg, rgba(3, 7, 18, 0.92) 0%, rgba(15, 34, 64, 0.85) 50%, rgba(30, 58, 106, 0.75) 100%);
  --gradient-card: linear-gradient(145deg, rgba(15, 34, 64, 0.6), rgba(10, 22, 40, 0.8));

  /* Typography */
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --section-pad: clamp(4rem, 8vw, 7rem) clamp(1rem, 5vw, 6rem);

  /* Misc */
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-soft: 0 4px 24px rgba(0,0,0,0.15);
  --shadow-gold: 0 4px 30px rgba(212, 168, 67, 0.25);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--navy-950);
  color: var(--gray-200);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.15;
  color: var(--white);
}

/* ---- Utility ---- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 1rem;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--gradient-gold);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  margin-bottom: 1.2rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-400);
  max-width: 600px;
  line-height: 1.7;
}

.highlight {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 60px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-gold);
  color: var(--navy-950);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(212, 168, 67, 0.4);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(4px);
}

.btn-outline:hover {
  border-color: var(--gold-400);
  color: var(--gold-400);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background: #1fb855;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.8rem 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(3, 7, 18, 0.92);
  backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid rgba(212, 168, 67, 0.1);
  padding: 0.5rem 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo img {
  height: 64px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.navbar-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  transition: var(--transition);
  position: relative;
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-gold);
  border-radius: 2px;
  transition: var(--transition);
}

.navbar-links a:hover {
  color: var(--white);
}

.navbar-links a:hover::after {
  width: 100%;
}

.navbar-cta {
  padding: 10px 24px !important;
  font-size: 0.85rem !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(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
}

/* Animated particles/glow */
.hero-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.12) 0%, transparent 70%);
  top: 20%;
  right: -10%;
  z-index: 1;
  animation: pulseGlow 6s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.15); opacity: 1; }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: clamp(7rem, 12vh, 10rem) 0 clamp(4rem, 8vh, 7rem);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 168, 67, 0.12);
  border: 1px solid rgba(212, 168, 67, 0.25);
  border-radius: 60px;
  padding: 8px 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-400);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
  animation: fadeInUp 0.8s ease-out;
}

.hero-badge svg {
  width: 16px;
  height: 16px;
}

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease-out 0.15s both;
}

.hero h1 span {
  display: block;
}

.hero-description {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,0.7);
  max-width: 540px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3.5rem;
  animation: fadeInUp 0.8s ease-out 0.45s both;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-stat {
  text-align: left;
}

.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.hero-stat-number .highlight {
  font-size: inherit;
}

.hero-stat-label {
  font-size: 0.82rem;
  color: var(--gray-400);
  margin-top: 4px;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeInUp 1s ease-out 1s both;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold-400), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; height: 40px; }
  50% { opacity: 0.4; height: 25px; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ========================================
   BENEFITS SECTION
   ======================================== */
.benefits {
  padding: var(--section-pad);
  position: relative;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.benefit-card {
  background: var(--gradient-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-gold);
  opacity: 0;
  transition: var(--transition);
}

.benefit-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 168, 67, 0.2);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.benefit-card:hover::before {
  opacity: 1;
}

.benefit-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(212, 168, 67, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  color: var(--gold-400);
}

.benefit-icon svg {
  width: 26px;
  height: 26px;
}

.benefit-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.benefit-card p {
  font-size: 0.9rem;
  color: var(--gray-400);
  line-height: 1.6;
}

/* ========================================
   ABOUT / HOW IT WORKS
   ======================================== */
.about {
  padding: var(--section-pad);
  position: relative;
}

.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-xl);
}

.about-image-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(3, 7, 18, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(212, 168, 67, 0.2);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-image-badge .badge-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gradient-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-950);
}

.about-image-badge .badge-icon svg {
  width: 20px;
  height: 20px;
}

.about-image-badge .badge-text {
  font-size: 0.8rem;
  color: var(--gray-400);
}

.about-image-badge .badge-text strong {
  display: block;
  font-size: 1.1rem;
  color: var(--white);
}

.about-text .section-subtitle {
  margin-bottom: 2rem;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.about-feature-check {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-400);
  margin-top: 2px;
}

.about-feature-check svg {
  width: 14px;
  height: 14px;
}

.about-feature div h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.about-feature div p {
  font-size: 0.85rem;
  color: var(--gray-400);
}

/* ========================================
   HOW IT WORKS (Steps)
   ======================================== */
.steps {
  padding: var(--section-pad);
  background: linear-gradient(180deg, var(--navy-950) 0%, var(--navy-900) 50%, var(--navy-950) 100%);
  position: relative;
}

.steps-header {
  text-align: center;
  margin-bottom: 4rem;
}

.steps-header .section-subtitle {
  margin: 0 auto;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

/* Connection line between steps */
.steps-grid::before {
  content: '';
  position: absolute;
  top: 52px;
  left: calc(16.66% + 26px);
  right: calc(16.66% + 26px);
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
  opacity: 0.25;
}

.step-card {
  text-align: center;
  padding: 2rem 1.5rem;
}

.step-number {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: var(--gradient-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy-950);
  position: relative;
  z-index: 1;
}

.step-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.7rem;
}

.step-card p {
  font-size: 0.9rem;
  color: var(--gray-400);
  line-height: 1.65;
}

/* ========================================
   PRICING SECTION
   ======================================== */
.pricing {
  padding: var(--section-pad);
  position: relative;
}

.pricing-header {
  text-align: center;
  margin-bottom: 3rem;
}

.pricing-header .section-subtitle {
  margin: 0 auto;
}

.pricing-note {
  text-align: center;
  margin-bottom: 2.5rem;
  font-size: 0.85rem;
  color: var(--gray-400);
}

.pricing-note span {
  color: var(--gold-400);
  font-weight: 600;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pricing-card {
  background: var(--gradient-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.pricing-card.featured {
  border-color: rgba(212, 168, 67, 0.3);
  background: linear-gradient(145deg, rgba(30, 58, 106, 0.5), rgba(15, 34, 64, 0.8));
}

.pricing-card.featured::before {
  content: 'Mais Vendido';
  position: absolute;
  top: 16px;
  right: -32px;
  background: var(--gradient-gold);
  color: var(--navy-950);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 40px;
  transform: rotate(45deg);
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 168, 67, 0.15);
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}

.pricing-card-kwh {
  font-size: 0.82rem;
  color: var(--gold-400);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.3rem;
}

.pricing-card-title {
  font-size: 0.95rem;
  color: var(--gray-300);
  margin-bottom: 1.2rem;
}

.pricing-card-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 1.5rem;
}

.pricing-card-price .currency {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold-400);
}

.pricing-card-price .amount {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--white);
}

.pricing-card-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 1.8rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.pricing-card-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--gray-300);
}

.pricing-card-features li svg {
  width: 16px;
  height: 16px;
  color: var(--green-400);
  flex-shrink: 0;
}

.pricing-card .btn {
  width: 100%;
}

/* ========================================
   PAYMENT INFO SECTION
   ======================================== */
.payment-info {
  padding: 3rem 0;
}

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

.payment-card {
  background: var(--gradient-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
}

.payment-card:hover {
  border-color: rgba(212, 168, 67, 0.15);
  transform: translateY(-3px);
}

.payment-card-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  background: rgba(212, 168, 67, 0.1);
}

.payment-card-icon svg {
  width: 24px;
  height: 24px;
}

.payment-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.payment-card h3 .highlight {
  font-size: inherit;
}

.payment-card p {
  font-size: 0.85rem;
  color: var(--gray-400);
}

/* ========================================
   TESTIMONIALS / SOCIAL PROOF
   ======================================== */
.testimonials {
  padding: var(--section-pad);
  background: linear-gradient(180deg, var(--navy-950) 0%, var(--navy-900) 100%);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 3rem;
}

.testimonials-header .section-subtitle {
  margin: 0 auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--gradient-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(212, 168, 67, 0.15);
  transform: translateY(-3px);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
  color: var(--gold-400);
}

.testimonial-stars svg {
  width: 16px;
  height: 16px;
}

.testimonial-card blockquote {
  font-size: 0.92rem;
  color: var(--gray-300);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gradient-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy-950);
}

.testimonial-author-info strong {
  display: block;
  font-size: 0.9rem;
  color: var(--white);
}

.testimonial-author-info span {
  font-size: 0.78rem;
  color: var(--gray-500);
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta {
  padding: var(--section-pad);
  position: relative;
}

.cta-box {
  background: linear-gradient(135deg, var(--navy-700), var(--navy-800));
  border: 1px solid rgba(212, 168, 67, 0.15);
  border-radius: var(--radius-xl);
  padding: clamp(3rem, 6vw, 5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.08) 0%, transparent 70%);
}

.cta-box::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -15%;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.06) 0%, transparent 70%);
}

.cta-box > * {
  position: relative;
  z-index: 1;
}

.cta h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 1rem;
}

.cta p {
  font-size: 1.05rem;
  color: var(--gray-400);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.cta-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 1.5rem;
  font-size: 1.1rem;
  color: var(--gray-300);
}

.cta-phone svg {
  width: 20px;
  height: 20px;
  color: var(--gold-400);
}

.cta-phone a {
  color: var(--white);
  font-weight: 600;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  padding: 3rem 0 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  background: var(--navy-950);
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand img {
  height: 58px;
  max-width: 200px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--gray-400);
  line-height: 1.7;
  max-width: 320px;
}

.footer-col h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--gold-400);
}

.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: var(--gray-400);
  padding: 4px 0;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--white);
  padding-left: 6px;
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--gray-500);
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--gradient-gold);
  color: var(--navy-950);
}

.footer-social a svg {
  width: 16px;
  height: 16px;
}

/* ========================================
   FLOATING WHATSAPP BUTTON
   ======================================== */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: whatsappPulse 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: white;
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 12px rgba(37, 211, 102, 0.08); }
}

/* ========================================
   VIDEOS SECTION
   ======================================== */
.videos-section {
  padding: var(--section-pad);
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-950) 100%);
}

.videos-header {
  text-align: center;
  margin-bottom: 3rem;
}

.videos-header .section-subtitle {
  margin: 0 auto;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

/* Card */
.video-card {
  background: var(--gradient-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
}

.video-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 168, 67, 0.25);
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}

/* Thumbnail wrapper */
.video-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--navy-800);
}

.video-thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

/* Overlay */
.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3,7,18,0.75) 0%, rgba(3,7,18,0.15) 60%, transparent 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.video-card:hover .video-overlay {
  background: linear-gradient(to top, rgba(3,7,18,0.85) 0%, rgba(3,7,18,0.3) 60%, rgba(3,7,18,0.1) 100%);
}

/* Play button */
.play-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(212, 168, 67, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-950);
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(212, 168, 67, 0.4);
}

.play-btn svg {
  width: 22px;
  height: 22px;
  margin-left: 3px;
}

.video-card:hover .play-btn {
  transform: scale(1.12);
  background: var(--gold-400);
  box-shadow: 0 6px 28px rgba(212, 168, 67, 0.6);
}

/* Info */
.video-info {
  padding: 1rem 1.2rem;
}

.video-info h3 {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.video-info span {
  font-size: 0.78rem;
  color: var(--gray-500);
}

/* ---- Video Modal ---- */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(3, 7, 18, 0.96);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.video-modal.open {
  opacity: 1;
  pointer-events: all;
}

.video-modal-inner {
  position: relative;
  width: 100%;
  max-width: 900px;
}

.video-modal-close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--white);
  transition: var(--transition);
}

.video-modal-close:hover {
  background: var(--gradient-gold);
  color: var(--navy-950);
  border-color: transparent;
}

.video-modal-close svg {
  width: 16px;
  height: 16px;
}

.video-modal-title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--gold-400);
  margin-bottom: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.video-modal-inner video {
  width: 100%;
  border-radius: var(--radius-lg);
  display: block;
  max-height: 80vh;
  background: #000;
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq {
  padding: var(--section-pad);
  background: var(--navy-950);
}

.faq-header {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-header .section-subtitle {
  margin: 0 auto;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.faq-item:first-child {
  border-top: 1px solid rgba(255,255,255,0.07);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 1.4rem 0;
  text-align: left;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--gold-400);
}

.faq-question svg {
  width: 20px;
  height: 20px;
  min-width: 20px;
  color: var(--gold-400);
  transition: transform var(--transition);
}

.faq-question[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.faq-question[aria-expanded="true"] {
  color: var(--gold-400);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.3s ease;
}

.faq-answer.open {
  max-height: 300px;
  padding-bottom: 1.4rem;
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--gray-400);
  line-height: 1.75;
}

.faq-answer p strong {
  color: var(--white);
  font-weight: 600;
}

/* ========================================
   PAGE HERO (páginas internas)
   ======================================== */
.page-hero {
  position: relative;
  padding: 8rem 0 4.5rem;
  overflow: hidden;
  text-align: center;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: brightness(0.35) saturate(0.7);
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero-content .section-label {
  justify-content: center;
  margin-bottom: 1rem;
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--white);
}

.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.2rem;
}

.breadcrumb a {
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}

.breadcrumb a:hover {
  color: var(--gold-400);
}

.breadcrumb span {
  color: var(--gold-400);
  font-weight: 500;
}

.breadcrumb-sep {
  color: rgba(255,255,255,0.25);
}

/* Nav active */
.navbar-links a.nav-active {
  color: var(--gold-400) !important;
}

.navbar-links a.nav-active::after {
  width: 100% !important;
}

/* ========================================
   SERVICE CARDS (servicos.html)
   ======================================== */
.services-section {
  padding: var(--section-pad);
}

.services-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}

.services-intro.reverse {
  direction: rtl;
}

.services-intro.reverse > * {
  direction: ltr;
}

.services-intro-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.services-intro-img img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  transition: transform 0.6s ease;
}

.services-intro-img:hover img {
  transform: scale(1.04);
}

.services-intro-text .section-subtitle {
  margin-bottom: 1.5rem;
}

.service-items {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--gray-300);
}

.service-item svg {
  width: 18px;
  height: 18px;
  color: var(--gold-400);
  flex-shrink: 0;
}

.service-types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}

.service-type-card {
  background: var(--gradient-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
  cursor: default;
}

.service-type-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 168, 67, 0.2);
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}

.service-type-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius);
  background: rgba(212, 168, 67, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  color: var(--gold-400);
}

.service-type-icon svg {
  width: 28px;
  height: 28px;
}

.service-type-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.service-type-card p {
  font-size: 0.88rem;
  color: var(--gray-400);
  line-height: 1.6;
}

/* ========================================
   CONTACT PAGE (contato.html)
   ======================================== */
.contact-section {
  padding: var(--section-pad);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

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

.contact-card {
  background: var(--gradient-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
}

.contact-card:hover {
  border-color: rgba(212, 168, 67, 0.2);
  transform: translateX(4px);
}

.contact-card-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-950);
}

.contact-card-icon svg {
  width: 22px;
  height: 22px;
}

.contact-card-icon.gold { background: var(--gradient-gold); }
.contact-card-icon.green { background: #25d366; color: white; }
.contact-card-icon.blue { background: linear-gradient(135deg, #4c9be8, #2563eb); color: white; }

.contact-card-text strong {
  display: block;
  font-size: 0.82rem;
  color: var(--gray-500);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 3px;
}

.contact-card-text span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}

.contact-card-text small {
  display: block;
  font-size: 0.78rem;
  color: var(--gray-500);
  margin-top: 2px;
}

/* Contact Form */
.contact-form-box {
  background: var(--gradient-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
}

.contact-form-box h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.contact-form-box > p {
  font-size: 0.88rem;
  color: var(--gray-400);
  margin-bottom: 1.8rem;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-300);
  margin-bottom: 0.5rem;
  letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 0.9rem 1rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.92rem;
  transition: var(--transition);
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(212, 168, 67, 0.4);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-500);
}

.form-group select option {
  background: var(--navy-800);
  color: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-form-box .btn {
  width: 100%;
  margin-top: 0.5rem;
}

/* Map embed */
.map-section {
  padding: 0 0 var(--section-pad);
}

.map-embed {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  height: 380px;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: invert(90%) hue-rotate(180deg) saturate(0.7);
}

/* ========================================
   ABOUT PAGE (sobre.html)
   ======================================== */
.about-page-section {
  padding: var(--section-pad);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.value-card {
  background: var(--gradient-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
}

.value-card:hover {
  border-color: rgba(212, 168, 67, 0.2);
  transform: translateY(-4px);
}

.value-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(212, 168, 67, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  color: var(--gold-400);
}

.value-icon svg {
  width: 26px;
  height: 26px;
}

.value-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.value-card p {
  font-size: 0.88rem;
  color: var(--gray-400);
  line-height: 1.6;
}

/* Stats bar */
.stats-bar {
  background: var(--gradient-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
  margin: 4rem 0;
}

.stat-item-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat-item-label {
  font-size: 0.82rem;
  color: var(--gray-400);
}

/* Pricing grid full all items visible */
.pricing-grid-full {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* ========================================
   SCROLL ANIMATIONS

   ======================================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal.active {
  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; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ========================================
   COUNTER ANIMATION
   ======================================== */
.counter-animate {
  display: inline-block;
}

/* ========================================
   RESPONSIVE — Tablet (≤ 1024px)
   ======================================== */
@media (max-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ========================================
   RESPONSIVE — Mobile (≤ 768px)
   ======================================== */
@media (max-width: 768px) {

  /* --- Variáveis ajustadas para mobile --- */
  :root {
    --section-pad: 3.5rem 1.25rem;
  }

  /* --- Container com padding generoso --- */
  .container {
    padding: 0 1.25rem;
  }

  /* --- Navbar mobile --- */
  .navbar {
    padding: 0.8rem 0;
  }

  .navbar-logo img {
    height: 46px;
  }

  .navbar-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(3, 7, 18, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 998;
  }

  .navbar-links.open {
    display: flex;
  }

  .navbar-links a {
    font-size: 1.2rem;
  }

  .navbar-toggle {
    display: flex;
    z-index: 999;
  }

  /* --- Hero --- */
  .hero-content {
    padding-top: 7rem;
    padding-bottom: 4rem;
  }

  .hero h1 {
    font-size: clamp(2rem, 8vw, 2.8rem);
    margin-bottom: 1.2rem;
  }

  .hero-description {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2.5rem;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.5rem 2rem;
  }

  .hero-stat-number {
    font-size: 1.8rem;
  }

  /* --- Section labels e títulos --- */
  .section-title {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }

  .section-subtitle {
    font-size: 0.92rem;
  }

  /* --- Benefits --- */
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .benefit-card {
    padding: 1.5rem 1.25rem;
  }

  /* --- About --- */
  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-image img {
    height: 280px;
  }

  /* --- Steps --- */
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .steps-grid::before {
    display: none;
  }

  .step-card {
    padding: 1.5rem 1rem;
  }

  /* --- Pricing --- */
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
    margin: 0;
  }

  .pricing-card {
    padding: 1.5rem;
  }

  /* --- Payment --- */
  .payment-cards {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  /* --- Testimonials --- */
  /* --- Videos --- */
  .videos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  /* --- Testimonials --- */
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .testimonial-card {
    padding: 1.5rem;
  }

  /* --- FAQ --- */
  .faq-question {
    font-size: 0.9rem;
    padding: 1.2rem 0;
  }

  /* --- CTA --- */
  .cta-box {
    padding: 2.5rem 1.25rem;
    border-radius: var(--radius-lg);
  }

  .cta h2 {
    font-size: 1.7rem;
  }

  .cta p {
    font-size: 0.92rem;
  }

  .cta-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.8rem;
  }

  .cta-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .cta-phone {
    font-size: 0.95rem;
  }

  /* --- Footer --- */
  .footer {
    padding: 2.5rem 0 1.5rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-brand img {
    height: 44px;
  }

  .footer-brand p {
    font-size: 0.85rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* ========================================
   RESPONSIVE — Small Mobile (≤ 480px)
   ======================================== */
@media (max-width: 480px) {

  :root {
    --section-pad: 3rem 1rem;
  }

  .container {
    padding: 0 1rem;
  }

  /* Videos — 1 coluna em celular pequeno */
  .videos-grid {
    grid-template-columns: 1fr;
  }

  /* Hero */
  .hero h1 {
    font-size: 1.9rem;
  }

  .hero-badge {
    font-size: 0.72rem;
    padding: 6px 14px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-stat-number {
    font-size: 1.6rem;
  }

  /* Buttons */
  .btn {
    padding: 14px 24px;
    font-size: 0.9rem;
  }

  /* Section titles */
  .section-title {
    font-size: 1.5rem;
  }

  /* Benefit cards */
  .benefit-card {
    padding: 1.25rem 1rem;
  }

  .benefit-icon {
    width: 44px;
    height: 44px;
  }

  /* Pricing */
  .pricing-card-price .amount {
    font-size: 2rem;
  }

  /* About image */
  .about-image img {
    height: 220px;
  }

  .about-image-badge {
    padding: 0.75rem 1rem;
    left: 1rem;
    bottom: 1rem;
  }

  .about-image-badge .badge-text strong {
    font-size: 0.9rem;
  }

  .about-image-badge .badge-text {
    font-size: 0.72rem;
  }

  /* CTA */
  .cta-box {
    padding: 2rem 1rem;
  }

  .cta h2 {
    font-size: 1.5rem;
  }

  /* FAQ */
  .faq-question {
    font-size: 0.85rem;
  }

  /* Footer */
  .footer-col a,
  .footer-brand p {
    font-size: 0.82rem;
  }

  /* Float WhatsApp — menor em tela pequena */
  .whatsapp-float {
    width: 52px;
    height: 52px;
    bottom: 1rem;
    right: 1rem;
  }

  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
}

/* ========================================
   VISUAL ANIMATIONS & EFFECTS v2
   ======================================== */

/* ---- FIX: Pricing features SVG size ---- */
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--gray-300);
  line-height: 1.4;
}

.pricing-features li svg {
  width: 16px !important;
  height: 16px !important;
  min-width: 16px;
  flex-shrink: 0;
  color: var(--gold-400);
}

/* ---- Scroll Progress Bar ---- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-400), #ffe87c, var(--gold-400));
  z-index: 10000;
  box-shadow: 0 0 10px rgba(212,168,67,0.7);
  transition: width 0.05s linear;
  pointer-events: none;
}

/* ---- Marquee Section — Texto Vazado Gigante ---- */
.marquee-section {
  overflow: hidden;
  padding: 0.2rem 0;
  background: transparent;
  position: relative;
  z-index: 5;
  pointer-events: none;
  /* suave separador visual */
  border-top: 1px solid rgba(212,168,67,0.06);
  border-bottom: 1px solid rgba(212,168,67,0.06);
}

/* fade lateral */
.marquee-section::before,
.marquee-section::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.marquee-section::before {
  left: 0;
  background: linear-gradient(90deg, var(--navy-950), transparent);
}
.marquee-section::after {
  right: 0;
  background: linear-gradient(-90deg, var(--navy-950), transparent);
}

.marquee-row {
  display: flex;
  overflow: hidden;
  line-height: 1;
}

.marquee-big-track {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  animation: marqueeBig 22s linear infinite;
  will-change: transform;
  white-space: nowrap;
  flex-shrink: 0;
}

.marquee-row.rev .marquee-big-track {
  animation-direction: reverse;
  animation-duration: 18s;
}

/* O texto principal — grande, vazado, com sombra */
.m-big {
  font-family: var(--font-heading);
  font-size: clamp(52px, 9vw, 108px);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(212,168,67,0.28);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
  user-select: none;
  filter:
    drop-shadow(0 0 18px rgba(212,168,67,0.18))
    drop-shadow(0 2px 6px rgba(0,0,0,0.6));
  transition: -webkit-text-stroke-color 0.4s, filter 0.4s;
}

.m-big:hover {
  -webkit-text-stroke-color: rgba(212,168,67,0.7);
  filter:
    drop-shadow(0 0 30px rgba(212,168,67,0.4))
    drop-shadow(0 2px 8px rgba(0,0,0,0.7));
}

/* Separador entre palavras */
.m-big-sep {
  font-size: clamp(24px, 4vw, 46px);
  color: rgba(212,168,67,0.35);
  line-height: 1;
  white-space: nowrap;
  filter: drop-shadow(0 0 8px rgba(212,168,67,0.3));
}

@keyframes marqueeBig {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Responsivo */
@media (max-width: 768px) {
  .m-big { font-size: clamp(36px, 11vw, 64px); -webkit-text-stroke-width: 1px; }
  .m-big-sep { font-size: clamp(16px, 5vw, 28px); }
}


/* ---- Solar Decoration (hero) ---- */
.hero-solar-deco {
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
  width: 420px;
  height: 420px;
  z-index: 1;
  pointer-events: none;
}

.solar-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1.5px solid rgba(212,168,67,0.25);
}

.solar-ring:nth-child(1) { width: 110px; height: 110px; animation: ringPulse 3s ease-in-out infinite 0s; }
.solar-ring:nth-child(2) { width: 180px; height: 180px; animation: ringPulse 3s ease-in-out infinite 0.5s; border-style: dashed; }
.solar-ring:nth-child(3) { width: 270px; height: 270px; animation: ringPulse 3s ease-in-out infinite 1s; opacity: 0.6; }
.solar-ring:nth-child(4) { width: 380px; height: 380px; animation: ringPulse 3s ease-in-out infinite 1.5s; opacity: 0.3; }

.solar-core-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,230,60,0.9) 0%, rgba(212,168,67,0.5) 50%, transparent 100%);
  animation: corePulse 3s ease-in-out infinite;
}

.solar-rays-spin {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  animation: rayRotate 20s linear infinite;
  background: repeating-conic-gradient(
    rgba(212,168,67,0.35) 0deg 3deg,
    transparent 3deg 25deg
  );
  mask-image: radial-gradient(circle, transparent 52px, black 65px, transparent 210px);
  -webkit-mask-image: radial-gradient(circle, transparent 52px, black 65px, transparent 210px);
}

@keyframes ringPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1);    opacity: 0.5; }
  50%       { transform: translate(-50%, -50%) scale(1.06); opacity: 1;   }
}

@keyframes corePulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1);   filter: brightness(1);   }
  50%       { transform: translate(-50%, -50%) scale(1.3); filter: brightness(1.5); }
}

@keyframes rayRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ---- Floating Particles ---- */
.particle-field {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.particle {
  position: absolute;
  border-radius: 50%;
  animation: particleRise linear infinite;
  will-change: transform, opacity;
}

@keyframes particleRise {
  0%   { transform: translateY(0) scale(1); opacity: 0.8; }
  60%  { opacity: 0.6; }
  100% { transform: translateY(-100vh) scale(0.1); opacity: 0; }
}

/* ---- Slide-in animations ---- */
.slide-from-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1),
              transform 0.9s cubic-bezier(0.16,1,0.3,1);
}

.slide-from-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1),
              transform 0.9s cubic-bezier(0.16,1,0.3,1);
}

.slide-from-bottom {
  opacity: 0;
  transform: translateY(45px);
  transition: opacity 0.75s cubic-bezier(0.16,1,0.3,1),
              transform 0.75s cubic-bezier(0.16,1,0.3,1);
}

.slide-visible {
  opacity: 1 !important;
  transform: none !important;
}

.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }
.delay-5 { transition-delay: 0.5s !important; }

/* ---- Text Shimmer on .highlight ---- */
.section-title .highlight,
.hero h1 .highlight,
.page-hero h1 .highlight,
.cta-box h2 .highlight {
  background: linear-gradient(
    90deg,
    var(--gold-300) 0%,
    #fff8b0 30%,
    var(--gold-400) 50%,
    #fff8b0 70%,
    var(--gold-300) 100%
  );
  background-size: 250% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textShimmer 5s linear infinite;
}

@keyframes textShimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 250% center; }
}

/* ---- Energy Divider ---- */
.energy-divider {
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(212,168,67,0.25) 25%,
    rgba(212,168,67,0.6) 50%,
    rgba(212,168,67,0.25) 75%,
    transparent 100%
  );
  position: relative;
  overflow: hidden;
  margin: 0;
}

.energy-divider::after {
  content: '';
  position: absolute;
  top: 0;
  left: -80%;
  width: 80%;
  height: 100%;
  background: linear-gradient(90deg,
    transparent,
    rgba(255,255,255,0.9),
    rgba(255,230,60,0.7),
    rgba(255,255,255,0.9),
    transparent
  );
  animation: energyFlow 2.8s ease-in-out infinite;
}

@keyframes energyFlow {
  0%   { left: -80%; }
  100% { left: 120%; }
}

/* ---- Glowing CTA buttons ---- */
.btn.btn-primary:not(:hover) {
  animation: btnGlow 3.5s ease-in-out infinite;
}

@keyframes btnGlow {
  0%, 100% { box-shadow: 0 4px 15px rgba(212,168,67,0.2); }
  50%       { box-shadow: 0 4px 32px rgba(212,168,67,0.55), 0 0 60px rgba(212,168,67,0.15); }
}

/* ---- Animated border on featured pricing card ---- */
.pricing-card.featured {
  position: relative;
}

.pricing-card.featured::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(135deg,
    rgba(212,168,67,0.9),
    rgba(255,240,120,0.3) 40%,
    rgba(212,168,67,0.9) 70%,
    rgba(255,240,120,0.3) 100%
  );
  background-size: 200% 200%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: borderShimmer 3s linear infinite;
  pointer-events: none;
}

@keyframes borderShimmer {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ---- Hover glow on cards ---- */
.benefit-card:hover,
.step-card:hover,
.value-card:hover {
  box-shadow: 0 8px 40px rgba(212,168,67,0.1), 0 2px 20px rgba(0,0,0,0.35);
}

/* =========================================================
   MOBILE FIXES — Revisão Completa
   ========================================================= */

/* ---- Prevent horizontal overflow globally ---- */
*, *::before, *::after { box-sizing: border-box; }

html, body {
  overflow-x: hidden;
  max-width: 100%;
}

/* ---- Sol no mobile — mostrar versão menor ---- */
@media (max-width: 768px) {
  .hero-solar-deco {
    display: block;       /* mostrar no mobile */
    width: 220px;
    height: 220px;
    right: -40px;         /* parcialmente fora da tela, sutil */
    top: 55%;
    opacity: 0.55;        /* mais visível que no desktop */
  }

  /* Anéis menores no mobile */
  .solar-ring:nth-child(1) { width: 60px;  height: 60px; }
  .solar-ring:nth-child(2) { width: 100px; height: 100px; }
  .solar-ring:nth-child(3) { width: 150px; height: 150px; }
  .solar-ring:nth-child(4) { width: 210px; height: 210px; }
  .solar-core-glow { width: 40px; height: 40px; }

  /* ---- Stats bar 2x2 grid ---- */
  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    padding: 1.5rem 1.25rem;
    margin: 2rem 0;
  }

  .stat-item-num {
    font-size: 1.7rem;
  }

  /* ---- Page hero (páginas internas) ---- */
  .page-hero {
    padding: 7rem 1.25rem 3rem;
    text-align: center;
  }

  .page-hero h1 {
    font-size: clamp(1.7rem, 7vw, 2.4rem);
  }

  .page-hero p {
    font-size: 0.92rem;
  }

  /* ---- Breadcrumb ---- */
  .breadcrumb {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.3rem;
    font-size: 0.78rem;
  }

  /* ---- About (sobre.html) ---- */
  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .about-content {
    padding: 0 0.25rem;
  }

  .about-content h2 {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .about-content p {
    font-size: 0.9rem;
    line-height: 1.7;
  }

  /* ---- Values grid ---- */
  .values-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  /* ---- Services page ---- */
  .services-intro {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .services-intro.reverse {
    direction: ltr;
  }

  .services-intro-img {
    height: 220px;
  }

  .services-intro-img img {
    height: 100%;
    object-fit: cover;
  }

  .service-types-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .services-intro-text {
    padding: 0 0.25rem;
  }

  .services-intro-text h2 {
    font-size: clamp(1.4rem, 6vw, 2rem);
  }

  /* ---- Plans page ---- */
  .pricing-grid-full {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  /* ---- Gallery page ---- */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  /* ---- Contact page ---- */
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-cards {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .contact-card {
    padding: 1.2rem 1rem;
  }

  /* ---- FAQ page ---- */
  .faq-list {
    gap: 0.5rem;
  }

  .faq-answer {
    font-size: 0.88rem;
  }

  /* ---- Videos grid ---- */
  .videos-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  /* ---- Marquee big text ---- */
  .m-big {
    font-size: clamp(38px, 10vw, 60px);
    -webkit-text-stroke-width: 1px;
  }

  .m-big-sep {
    font-size: clamp(18px, 4vw, 28px);
  }
}

/* ---- Pequenos celulares (≤ 400px) ---- */
@media (max-width: 400px) {
  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    padding: 1.2rem 1rem;
  }

  .stat-item-num {
    font-size: 1.5rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-solar-deco {
    width: 160px;
    height: 160px;
    opacity: 0.4;
    right: -30px;
  }
}
