/* ===== VARIÁVEIS ===== */
:root {
  --bg: #0b0b0f;
  --gold: #C5A019;    
  --gold-2: #A98617;  
  --ink: #e8e8f0;
  --muted: #9aa0aa;
  --panel: #101018;
  --error: #ff6b6b;
  --success: #51cf66;
  --warning: #ffa500;
}

/* ===== RESET ===== */
* {
  box-sizing: border-box; 
  margin: 0; 
  padding: 0;
}

body {
  font-family: Inter, sans-serif; 
  background: var(--bg); 
  color: var(--ink); 
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== ACESSIBILIDADE ===== */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--gold);
  color: #000;
  padding: 8px;
  text-decoration: none;
  border-radius: 4px;
  z-index: 10000;
}

.skip-link:focus {
  top: 6px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===== LOADING OVERLAY ===== */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.loading-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(197, 160, 25, 0.3);
  border-top: 3px solid var(--gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 20px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ===== LAZY LOADING ===== */
.lazy {
  opacity: 0;
  transition: opacity 0.3s;
}

.lazy.loaded {
  opacity: 1;
}

/* ===== PROGRESS BAR ===== */
.progress {
  position: fixed; 
  top: 0; 
  left: 0; 
  height: 3px; 
  background: linear-gradient(90deg, var(--gold), transparent); 
  transform: scaleX(0); 
  transform-origin: 0 50%; 
  width: 100%; 
  z-index: 1000;
}

/* ===== NAVBAR ===== */
.nav {
  position: sticky;
  top: 0;
  background: rgba(10, 10, 14, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav.scrolled {
  background: rgba(10, 10, 14, 0.95);
  backdrop-filter: blur(25px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--ink);
  text-decoration: none;
  transition: all 0.3s ease;
}

.brand:hover {
  transform: scale(1.02);
}

.logo {
  height: 45px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(212,175,55,0.3));
  transition: all 0.3s ease;
}

.brand:hover .logo {
  filter: drop-shadow(0 4px 12px rgba(212,175,55,0.5));
  transform: rotate(5deg);
}

.nav-links { 
  display: flex; 
  gap: 22px; 
  transition: all 0.3s ease;
}

.nav-links a { 
  position: relative; 
  color: #cfd3db; 
  text-decoration: none; 
  padding: 8px 0; 
  font-weight: 500; 
  transition: color 0.3s; 
}

.nav-links a:hover { 
  color: var(--gold); 
}

.nav-links a:not(.btn):after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:not(.btn):hover:after {
  width: 100%;
}

.btn { 
  background: var(--gold); 
  padding: 8px 14px; 
  border-radius: 10px; 
  font-weight: 700; 
  font-size: 0.9rem; 
  color: #111; 
  text-transform: uppercase; 
  transition: all 0.3s ease; 
  text-decoration: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn.ghost { 
  background: transparent; 
  border: 1px solid var(--gold); 
  color: var(--ink); 
}

.btn:hover { 
  background: var(--gold-2); 
  transform: translateY(-2px); 
  box-shadow: 0 4px 12px rgba(197, 160, 25, 0.3);
}

.nav .btn.agendar { 
  padding: 10px 20px; 
  border-radius: 12px; 
  font-weight: 700; 
  font-size: 1rem; 
  background: var(--gold); 
  color: #111; 
  transition: all 0.3s ease; 
}

.nav .btn.agendar:hover { 
  background: var(--gold-2); 
  transform: translateY(-2px); 
}

/* ===== MENU MOBILE ===== */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  gap: 4px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--gold);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== HERO SECTION PERSONALIZADO AURUS ===== */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8rem 20px 4rem;
    min-height: 100vh;
    overflow: hidden;
    position: relative;
    background: radial-gradient(circle at 30% 40%, rgba(11,11,15,1) 0%, rgba(20,20,25,1) 50%, var(--bg) 100%);
    gap: 4rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(197,160,25,0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(197,160,25,0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* ===== LASER SECTION ===== */
.laser-section {
    flex: 1;
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    z-index: 1;
}

.laser-beam-container {
    position: relative;
    width: 100%;
    height: 1px;
    opacity: 0.9;
}

/* Laser Beam Styles - Integrado com variáveis Aurus */
.laser-beam {
    position: absolute;
    left: 0;
    top: 0;
    height: 1px;
    width: 100%;

    background: linear-gradient(
        to right, 
        var(--gold) 0%,           
        #f4e4bc 20%,          
        #e6d690 60%,          
        rgba(197, 160, 25, 0.3) 85%,
        rgba(197, 160, 25, 0) 100%
    );
    
    box-shadow:
        0 0 2px 0.5px rgba(197, 160, 25, 0.8),
        0 0 6px 1px rgba(244, 228, 188, 0.4),
        0 0 12px 2px rgba(197, 160, 25, 0.2);
    
    filter: blur(0.3px);
    z-index: 3;
}

.laser-glow {
    position: absolute;
    left: 0;
    top: -150px;
    height: 300px;
    width: 100%;
    
    background: linear-gradient(
        to right,
        rgba(197, 160, 25, 0.18) 0%,
        rgba(244, 228, 188, 0.10) 30%,
        rgba(197, 160, 25, 0.04) 70%,
        rgba(197, 160, 25, 0) 100%
    );
    
    filter: blur(40px);
    opacity: 0.7;
    z-index: 1;
}

.laser-beam::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 200px;
    
    background: linear-gradient(
        to right,
        rgba(197, 160, 25, 0.15) 0%,
        rgba(244, 228, 188, 0.08) 40%,
        rgba(197, 160, 25, 0.03) 75%,
        rgba(197, 160, 25, 0) 100%
    );
    
    filter: blur(25px);
    opacity: 0.8;
    transform: skewY(-8deg);
    transform-origin: left center;
    z-index: 2;
}

.laser-beam::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 200px;
    
    background: linear-gradient(
        to right,
        rgba(197, 160, 25, 0.15) 0%,
        rgba(244, 228, 188, 0.08) 40%,
        rgba(197, 160, 25, 0.03) 75%,
        rgba(197, 160, 25, 0) 100%
    );
    
    filter: blur(25px);
    opacity: 0.8;
    transform: skewY(8deg);
    transform-origin: left center;
    z-index: 2;
}

.laser-beam-container::before {
    content: '';
    position: absolute;
    left: 0;
    top: -250px;
    width: 100%;
    height: 500px;
    
    background: linear-gradient(
        to right,
        rgba(197, 160, 25, 0.08) 0%,
        rgba(244, 228, 188, 0.04) 25%,
        rgba(197, 160, 25, 0.02) 60%,
        rgba(197, 160, 25, 0) 100%
    );
    
    filter: blur(60px);
    opacity: 0.6;
    z-index: 0;
}

/* ===== HERO CONTENT ===== */
.hero-inner {
    flex: 1;
    max-width: 600px;
    position: relative;
    z-index: 2;
    padding-left: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(197, 160, 25, 0.1);
    border: 1px solid rgba(197, 160, 25, 0.3);
    color: var(--gold);
    padding: 10px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.hero-badge:hover {
    background: rgba(197, 160, 25, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(197, 160, 25, 0.2);
}

.hero-headline {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    margin-bottom: 2.5rem;
    max-width: 550px;
}

/* ===== HERO STATS ===== */
.hero-stats {
    display: flex;
    gap: 20px;
    margin: 2.5rem 0;
    flex-wrap: wrap;
}

.stat-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 12px 16px;
    text-align: center;
    min-width: 100px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(197, 160, 25, 0.1);
    border-color: rgba(197, 160, 25, 0.3);
    transform: translateY(-2px);
}

.stat-number {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* ===== HERO CTA BUTTONS ===== */
.hero-cta {
    gap: 16px;
    margin-top: 3rem;
}

.btn-primary-hero {
    background: linear-gradient(135deg, var(--gold) 0%, #f4d03f 100%);
    color: #000;
    padding: 16px 28px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(197, 160, 25, 0.3);
}

.btn-primary-hero:hover {
    background: linear-gradient(135deg, var(--gold-2) 0%, #e6c547 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(197, 160, 25, 0.4);
}

.btn-secondary-hero {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 14px 26px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-secondary-hero:hover {
    background: rgba(197, 160, 25, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(197, 160, 25, 0.2);
}

.btn-icon {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.btn-primary-hero:hover .btn-icon,
.btn-secondary-hero:hover .btn-icon {
    transform: translateX(4px);
}

/* ===== ANIMAÇÕES LASER ===== */
@keyframes subtle-pulse {
    0%, 100% { 
        opacity: 0.9;
        filter: blur(0.3px);
    }
    50% { 
        opacity: 1;
        filter: blur(0.2px);
    }
}

.laser-beam {
    animation: subtle-pulse 3s ease-in-out infinite;
}

/* ===== RESPONSIVIDADE HERO ===== */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column-reverse;
        gap: 3rem;
        text-align: center;
        padding: 6rem 20px 3rem;
    }
    
    .laser-section {
        order: 2;
        height: 200px;
        width: 100%;
    }
    
    .hero-inner {
        order: 1;
        padding-left: 0;
        max-width: 100%;
    }
    
    .hero-headline {
        font-size: clamp(28px, 5vw, 42px);
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 5rem 15px 2rem;
        min-height: 90vh;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 15px;
    }
    
    .stat-item {
        flex: 1 1 calc(50% - 8px);
        min-width: 90px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn-primary-hero,
    .btn-secondary-hero {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
    
    .laser-section {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .hero-badge {
        font-size: 0.8rem;
        padding: 8px 14px;
        margin-bottom: 1.5rem;
    }
    
    .hero-stats {
        margin: 2rem 0;
        gap: 12px;
    }
    
    .stat-item {
        padding: 10px 12px;
        min-width: 80px;
    }
    
    .stat-number {
        font-size: 1.4rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .btn-primary-hero,
    .btn-secondary-hero {
        padding: 14px 24px;
        font-size: 0.95rem;
        max-width: 280px;
    }
}

/* ===== INTEGRAÇÃO COM ANIMAÇÕES EXISTENTES ===== */
.hero-inner > * {
    animation: fadeInUp 0.8s ease both;
}

.hero-inner > *:nth-child(1) { animation-delay: 0.1s; }
.hero-inner > *:nth-child(2) { animation-delay: 0.2s; }
.hero-inner > *:nth-child(3) { animation-delay: 0.3s; }
.hero-inner > *:nth-child(4) { animation-delay: 0.4s; }
.hero-inner > *:nth-child(5) { animation-delay: 0.5s; }

.laser-section {
    animation: fadeInUp 0.8s ease both;
    animation-delay: 0.6s;
}

/* ===== ACESSIBILIDADE ===== */
.hero-badge:focus,
.btn-primary-hero:focus,
.btn-secondary-hero:focus {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

/* ===== PERFORMANCE OTIMIZADA ===== */
@media (prefers-reduced-motion: reduce) {
    .laser-beam {
        animation: none;
    }
    
    .hero-inner > * {
        animation: none;
    }
    
    .laser-section {
        animation: none;
    }
}


/* ===== CORES E TEXTOS ===== */
.accent {
  color: var(--gold) !important;
  text-shadow: 
    0 0 10px rgba(0, 0, 0, 1),
    0 0 20px rgba(197, 160, 25, 0.5),
    2px 2px 4px rgba(0, 0, 0, 0.9);
}

.highlight-text {
  background: linear-gradient(135deg, var(--gold), #f4d03f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  position: relative;
}


/* Para browsers que não suportam background-clip */
@supports not (-webkit-background-clip: text) {
  .highlight-text {
    color: var(--gold) !important;
    text-shadow: 
      0 0 10px rgba(0, 0, 0, 1),
      0 0 20px rgba(197, 160, 25, 0.5),
      2px 2px 4px rgba(0, 0, 0, 0.9);
  }
}

/* Break line responsivo */
.desktop-break {
  display: block;
}

/* Badge icon */
.badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.badge-icon svg {
  color: var(--gold);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.8));
}

/* ===== ÍCONES PERSONALIZADOS AURUS ===== */

/* Ícones dos cards principais */
.card-icon,
.card-icon-large {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 20px;
}

.card-icon svg,
.card-icon-large svg {
  filter: drop-shadow(0 2px 8px rgba(197, 160, 25, 0.3));
  transition: all 0.3s ease;
}

.bento-card:hover .card-icon svg,
.bento-card:hover .card-icon-large svg {
  transform: scale(1.1);
  filter: drop-shadow(0 4px 12px rgba(197, 160, 25, 0.5));
}

/* Ícones dos benefícios */
.benefit-icon-enhanced {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--gold), #f4d03f);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  transition: all 0.3s ease;
}

.benefit-card-enhanced:hover .benefit-icon-enhanced {
  transform: scale(1.05) rotate(5deg);
  box-shadow: 0 8px 20px rgba(197, 160, 25, 0.4);
}

/* Ícones das garantias */
.guarantee-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  color: var(--gold);
}

.guarantee-icon svg {
  filter: drop-shadow(0 2px 8px rgba(197, 160, 25, 0.3));
  transition: all 0.3s ease;
}

.guarantee-card:hover .guarantee-icon svg {
  transform: scale(1.1);
  filter: drop-shadow(0 4px 12px rgba(197, 160, 25, 0.5));
}

/* Ícones de contato */
.contact-card .card-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold), #f4d03f);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-card:hover .card-icon {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(197, 160, 25, 0.4);
}

/* Newsletter icon */
.newsletter-content {
  display: flex;
  align-items: center;
  gap: 15px;
}

.newsletter-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold), #f4d03f);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  flex-shrink: 0;
}

/* Ícones de comparação antes/depois */
.comparison-card .icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.transformation-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
}

.arrow-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.arrow-container svg {
  color: var(--gold);
  animation: pulse 2s infinite;
}

/* Animações para os ícones */
@keyframes iconFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-5px); }
}

.card-icon-large svg {
  animation: iconFloat 3s ease-in-out infinite;
}

/* Estados de hover melhorados */
.bento-card:hover .card-icon svg {
  animation-play-state: paused;
  transform: scale(1.1) translateY(-2px);
}

.benefit-card-enhanced:hover .benefit-icon-enhanced svg {
  transform: scale(1.1);
}

/* ===== TIPOGRAFIA ===== */
.headline {
  font-family: 'Space Grotesk', sans-serif; 
  font-weight: 800; 
  font-size: clamp(32px, 6vw, 64px);
  margin-bottom: 20px;
}

.headline .accent {
  color: var(--gold);
  position: relative;
}

.headline .accent::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.highlight-text::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  animation: underlineExpand 1s ease 0.5s both;
}

@keyframes underlineExpand {
  from { width: 0; }
  to { width: 100%; }
}

.sub {
  max-width: 780px; 
  margin: 20px auto; 
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.2rem);
}

/* ===== CTA BUTTONS ===== */
.cta-row {
  display: flex; 
  gap: 20px; 
  justify-content: center; 
  margin-top: 40px;
  flex-wrap: wrap;
}

/* ===== ANIMAÇÕES DE ENTRADA ===== */
@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-inner > * {
  animation: fadeInUp 0.8s ease both;
}

.hero-inner > *:nth-child(1) { animation-delay: 0.1s; }
.hero-inner > *:nth-child(2) { animation-delay: 0.2s; }
.hero-inner > *:nth-child(3) { animation-delay: 0.3s; }
.hero-inner > *:nth-child(4) { animation-delay: 0.4s; }
.hero-inner > *:nth-child(5) { animation-delay: 0.5s; }
.hero-inner > *:nth-child(6) { animation-delay: 0.6s; }

/* ===== SEÇÕES GERAIS ===== */
section {
  padding: 80px 20px;
  scroll-margin-top: 80px;
}

.wrapper {
  max-width: 1200px; 
  margin: auto;
}

.grid {
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
  gap: 20px;
}

.card {
  background: rgba(255,255,255,.05); 
  border-radius: 14px; 
  padding: 22px; 
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.1);
}

.card:hover {
  transform: translateY(-4px); 
  box-shadow: 0 12px 24px rgba(212,175,55,0.2);
  border-color: rgba(212,175,55,0.3);
}

.card h3 {
  margin: 10px 0;
  color: var(--gold);
}

/* ===== SEÇÃO SOBRE ===== */
.sobre-wrapper { 
  display: flex; 
  flex-direction: column; 
  gap: 60px; 
}

.sobre-top { 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  gap: 40px; 
  flex-wrap: wrap; 
}

.sobre-text { 
  flex: 1 1 450px; 
}

.sobre-text .headline { 
  font-size: clamp(32px, 5vw, 48px); 
  margin-bottom: 20px;
}

.sobre-text .sub { 
  font-size: 1.1rem; 
  margin-top: 16px; 
  line-height: 1.6; 
  color: var(--muted); 
}

.sobre-text .accent {
  color: var(--gold);
  font-weight: 700;
}

.sobre-illustration { 
  flex: 1 1 400px; 
  display: flex; 
  justify-content: center; 
}

.sobre-illustration img {
  width: 115%;
  max-width: 650px;
  border-radius: 16px;
  object-fit: contain;
  box-shadow: 0 12px 24px rgba(0,0,0,0.4);
  filter: brightness(0.85) saturate(0.7);
  transition: all 0.4s ease;
  cursor: pointer;
}

.sobre-illustration img:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 16px 32px rgba(212,175,55,0.25);
  filter: brightness(0.9) saturate(0.8);
}

/* ===== BENTO GRID ===== */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 60px;
}

.bento-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: pointer;
}

.bento-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(212,175,55,0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.bento-card:hover::before {
  opacity: 1;
}

.bento-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212,175,55,0.3);
  box-shadow: 0 20px 40px rgba(212,175,55,0.15);
}

.bento-card:focus {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.bento-card.featured {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(212,175,55,0.1), rgba(212,175,55,0.05));
}

.bento-card h3 {
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.bento-card p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.card-metrics {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.metric {
  background: rgba(81,207,102,0.1);
  color: #51cf66;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(81,207,102,0.2);
}

/* ===== SEÇÃO DIFERENCIAIS ===== */
#diferenciais {
  padding: 120px 20px;
  background: linear-gradient(135deg, rgba(15,15,20,1) 0%, rgba(25,25,30,1) 50%, rgba(15,15,20,1) 100%);
  position: relative;
  overflow: hidden;
}

#diferenciais::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(212,175,55,0.08) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(212,175,55,0.05) 0%, transparent 50%);
  pointer-events: none;
}

.diferenciais-header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
}

.impact-stat {
  text-align: center;
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 20px;
  padding: 40px 30px;
  min-width: 200px;
}

.big-number {
  display: block;
  font-size: 4rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
}

.impact-stat p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.4;
}

.header-content .headline {
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 20px;
}

.section-subtitle {
  text-align: center;
  font-size: clamp(24px, 4vw, 32px);
  color: var(--gold);
  margin-bottom: 50px;
  position: relative;
}

.section-subtitle::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

/* ===== COMPARAÇÃO ANTES VS DEPOIS ===== */
.before-after-section {
  margin-bottom: 100px;
  position: relative;
  z-index: 1;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.comparison-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 30px;
  position: relative;
  transition: all 0.3s ease;
}

.comparison-card.before {
  border-color: rgba(255,107,107,0.3);
}

.comparison-card.after {
  border-color: rgba(81,207,102,0.3);
  background: rgba(81,207,102,0.05);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.status-badge {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

.status-badge.before {
  background: rgba(255,107,107,0.2);
  color: #ff6b6b;
}

.status-badge.after {
  background: rgba(81,207,102,0.2);
  color: #51cf66;
}

.comparison-list {
  list-style: none;
  padding: 0;
}

.comparison-list li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  position: relative;
  padding-left: 25px;
}

.comparison-list li:last-child {
  border-bottom: none;
}

.comparison-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.comparison-card.before .comparison-list li::before {
  background: #ff6b6b;
}

.comparison-card.after .comparison-list li::before {
  background: #51cf66;
}

.transformation-text {
  font-size: 0.9rem;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/* ===== CARDS DE BENEFÍCIOS ===== */
.benefits-enhanced {
  margin-bottom: 100px;
  position: relative;
  z-index: 1;
}

.benefits-grid-enhanced {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.benefit-card-enhanced {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 30px;
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.benefit-card-enhanced::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.1), transparent);
  transition: left 0.6s ease;
}

.benefit-card-enhanced:hover::before {
  left: 100%;
}

.benefit-card-enhanced:hover {
  transform: translateY(-10px);
  background: rgba(212,175,55,0.08);
  border-color: rgba(212,175,55,0.3);
  box-shadow: 0 20px 40px rgba(212,175,55,0.2);
}

.benefit-card-enhanced:focus {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.benefit-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.benefit-metric {
  text-align: right;
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.metric-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.metric-symbol,
.metric-text {
  font-size: 1.2rem;
  color: var(--gold);
  font-weight: 600;
}

.benefit-card-enhanced h4 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.benefit-card-enhanced p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.proof-elements {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.proof-badge {
  font-size: 0.85rem;
  color: #51cf66;
  background: rgba(81,207,102,0.1);
  padding: 4px 8px;
  border-radius: 12px;
  border: 1px solid rgba(81,207,102,0.2);
  width: fit-content;
}

/* ===== SEÇÃO DE GARANTIAS ===== */
.guarantees-section {
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
}

.guarantees-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.guarantee-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 25px;
  text-align: center;
  transition: all 0.3s ease;
}

.guarantee-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212,175,55,0.3);
  box-shadow: 0 10px 20px rgba(212,175,55,0.15);
}

.guarantee-card h4 {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.guarantee-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* ===== CTA FINAL ===== */
.diferenciais-cta {
  background: linear-gradient(135deg, rgba(212,175,55,0.1) 0%, rgba(212,175,55,0.05) 100%);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 24px;
  padding: 50px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-content h3 {
  font-size: clamp(24px, 4vw, 36px);
  color: #fff;
  margin-bottom: 15px;
}

.cta-content p {
  color: var(--muted);
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--gold);
  color: #000;
  transform: translateY(-2px);
}

.trust-indicators {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 30px;
}

.trust-item {
  text-align: center;
}

.trust-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.trust-text {
  font-size: 0.9rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== SEÇÃO SERVIÇOS ===== */
#servicos {
  padding: 100px 20px;
  background: linear-gradient(120deg, rgba(11,11,15,1) 0%, rgba(20,20,25,1) 100%);
}

#servicos .headline { 
  text-align: center; 
  margin-bottom: 60px; 
  font-size: clamp(32px, 5vw, 48px); 
}

#servicos .grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
  gap: 30px; 
}

.service-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  height: 360px;
  cursor: pointer;
  background-size: cover;
  background-position: center;
  filter: brightness(0.8) saturate(0.8);
  transition: all 0.4s ease;
  border: 1px solid rgba(255,255,255,0.1);
}

.service-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 20px 40px rgba(212,175,55,0.25);
  filter: brightness(0.95) saturate(1);
  border-color: rgba(212,175,55,0.3);
}

.service-card:focus {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.service-card .overlay { 
  position: absolute; 
  inset: 0; 
  background: rgba(11, 11, 15, 0.55); 
  transition: background 0.3s; 
}

.service-card:hover .overlay {
  background: rgba(11, 11, 15, 0.35);
}

.service-card .card-content { 
  position: absolute; 
  bottom: 24px; 
  left: 24px; 
  right: 24px;
  color: #fff; 
  z-index: 2; 
}

.service-card h3 { 
  font-size: 1.6rem; 
  color: var(--gold); 
  margin-bottom: 10px; 
}

.service-card p { 
  font-size: 1rem; 
  line-height: 1.6; 
  color: #e8e8f0;
  max-width: 90%; 
}

/* ===== MÉTRICAS ===== */
.metrics {
  display: flex; 
  gap: 20px; 
  justify-content: center; 
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.gauge {
  background: rgba(255,255,255,.05); 
  padding: 30px; 
  border-radius: 14px; 
  text-align: center; 
  width: 200px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s ease;
}

.gauge:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(212,175,55,0.2);
  border-color: rgba(212,175,55,0.3);
}

.gauge b {
  display: block; 
  font-size: 2rem; 
  color: var(--gold);
  margin-bottom: 8px;
}

.gauge small {
  color: var(--muted);
  font-size: 0.9rem;
}

/* ===== TESTIMONIALS ===== */
.testimonials-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.testimonial-modern {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 30px;
  position: relative;
  transition: all 0.3s ease;
}

.testimonial-modern::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.3;
  font-family: serif;
}

.testimonial-modern:hover {
  transform: translateY(-5px);
  border-color: rgba(212,175,55,0.3);
  box-shadow: 0 15px 30px rgba(212,175,55,0.1);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  object-fit: cover;
}

.testimonial-info h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.testimonial-info p {
  color: var(--muted);
  font-size: 0.9rem;
}

.testimonial-rating {
  display: flex;
  gap: 5px;
  margin-bottom: 15px;
}

.star {
  color: #ffd700;
  font-size: 1.2rem;
}

.testimonial-modern p {
  color: var(--muted);
  line-height: 1.6;
  font-style: italic;
}

/* ===== SEÇÃO CONTATO ===== */
#contato {
  padding: 120px 20px;
  background: linear-gradient(135deg, rgba(11,11,15,1) 0%, rgba(20,20,25,1) 50%, rgba(15,15,20,1) 100%);
  position: relative;
}

#contato::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(212,175,55,0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(212,175,55,0.05) 0%, transparent 50%);
  pointer-events: none;
}

.contact-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
}

.contact-header .headline {
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 24px;
  background: linear-gradient(135deg, #fcfbfb 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-header .sub {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.2rem;
  line-height: 1.6;
  color: rgba(253, 251, 251, 0.8);
}

.contact-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

/* ===== FORMULÁRIO ===== */
.form-wrapper {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(10px);
}

.form-header {
  margin-bottom: 32px;
}

.form-header h3 {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 8px;
}

.form-header p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}

.form-group label {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold);
}

.required {
  color: var(--error);
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 16px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border: 1px solid var(--gold);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.1);
  color: #ffffff;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(255,107,107,0.1);
  color: #ffffff;
}

.form-group select {
  cursor: pointer;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group input::placeholder,
.form-group select::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.5);
  opacity: 1;
}

.form-group input::-webkit-input-placeholder,
.form-group select::-webkit-input-placeholder,
.form-group textarea::-webkit-input-placeholder {
  color: rgba(255,255,255,0.5);
}

.form-group input::-moz-placeholder,
.form-group select::-moz-placeholder,
.form-group textarea::-moz-placeholder {
  color: rgba(255,255,255,0.5);
  opacity: 1;
}

.form-group input:-ms-input-placeholder,
.form-group select:-ms-input-placeholder,
.form-group textarea:-ms-input-placeholder {
  color: rgba(255,255,255,0.5);
}

.form-group select option {
  background: var(--panel);
  color: #ffffff;
  border: none;
}

.form-group input:-webkit-autofill,
.form-group input:-webkit-autofill:hover,
.form-group input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px rgba(255,255,255,0.05) inset;
  -webkit-text-fill-color: #ffffff !important;
  transition: background-color 5000s ease-in-out 0s;
}

.char-counter {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  text-align: right;
  margin-top: 4px;
  transition: color 0.3s ease;
}

.error-message {
  font-size: 0.85rem;
  color: var(--error);
  margin-top: 4px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.error-message.show {
  opacity: 1;
}

.form-actions {
  margin-top: 16px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--gold) 0%, #f4d03f 100%);
  color: #000;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212,175,55,0.3);
}

.btn-primary:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.btn-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.btn-primary:hover .btn-icon {
  transform: translateX(4px);
}

.privacy-note {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

.privacy-note a {
  color: var(--gold);
  text-decoration: none;
}

.privacy-note a:hover {
  text-decoration: underline;
}

/* ===== SIDEBAR DE CONTATO ===== */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.sidebar-header h3 {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 8px;
}

.sidebar-header p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 20px;
  border-radius: 16px;
  text-decoration: none;
  color: #fff;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.1), transparent);
  transition: left 0.5s ease;
}

.contact-card:hover::before {
  left: 100%;
}

.contact-card:hover {
  background: rgba(212,175,55,0.1);
  border-color: rgba(212,175,55,0.3);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.card-content {
  flex: 1;
}

.card-content strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 4px;
  color: var(--gold);
}

.card-content p {
  margin: 0;
  color: rgba(255,255,255,0.8);
  line-height: 1.4;
}

.card-action {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-top: 8px;
  font-style: italic;
}

/* ===== HORÁRIO DE FUNCIONAMENTO ===== */
.business-hours {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 24px;
}

.business-hours h4 {
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hour-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
}

.hour-item:last-child {
  border-bottom: none;
}

.hour-item span:first-child {
  color: rgba(255,255,255,0.8);
}

.hour-item span:last-child {
  color: #fff;
  font-weight: 500;
}

.hour-item .closed {
  color: var(--muted);
}

/* ===== FOOTER ===== */
footer {
  background: linear-gradient(135deg, rgba(8,8,12,1) 0%, rgba(15,15,20,1) 100%);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 60px 20px 20px;
}

.newsletter-section {
  background: linear-gradient(135deg, rgba(212,175,55,0.1) 0%, rgba(212,175,55,0.05) 100%);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.newsletter-content h3 {
  color: var(--gold);
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.newsletter-content p {
  color: var(--muted);
  margin: 0;
}

.newsletter-form {
  display: flex;
  gap: 15px;
  min-width: 300px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
  color: #fff;
  font-size: 1rem;
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.1);
}

.btn-newsletter {
  background: var(--gold);
  color: #000;
  border: none;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-newsletter:hover {
  background: var(--gold-2);
  transform: translateY(-2px);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-info {
  flex: 1;
  min-width: 250px;
}

.footer-info h3 {
  color: var(--gold);
  margin-bottom: 12px;
  font-size: 1.4rem;
}

.footer-info p {
  color: rgba(255,255,255,0.7);
  max-width: 300px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--gold);
  color: #000;
  transform: translateY(-2px);
}

.footer-links {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
}

.footer-column h4 {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-column a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
  padding: 4px 0;
}

.footer-column a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  margin: 0;
}

.footer-badges {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.footer-badges .badge {
  background: rgba(255,255,255,0.1);
  color: var(--gold);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid rgba(212,175,55,0.3);
}

/* ===== BOTÃO VOLTAR AO TOPO ===== */
.to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--gold);
  color: #111;
  border: none;
  padding: 12px;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 1000;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
}

.to-top.show { 
  display: flex; 
  opacity: 1; 
}

.to-top:hover {
  background: var(--gold-2);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(197, 160, 25, 0.4);
}

/* ===== RESPONSIVIDADE ESPECÍFICA PARA HERO ===== */

/* Tablets em paisagem */
@media (max-width: 1024px) and (orientation: landscape) {
  .hero {
    min-height: 100vh;
  }
  
  .hero-content {
    padding: 60px 20px 30px;
  }
  
  .hero-stats {
    gap: 20px;
  }

  .diferenciais-header {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .comparison-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .transformation-arrow .arrow-container svg {
    transform: rotate(90deg);
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .benefit-header {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
  }

  .newsletter-section {
    flex-direction: column;
    text-align: center;
  }

  .newsletter-form {
    width: 100%;
    max-width: 400px;
  }
}

/* Tablets em retrato */
@media (max-width: 768px) {
  .hero {
    min-height: 90vh;
  }
  
  .hero-content {
    padding: 60px 15px 30px;
  }
  
  .hero-stats {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
  }
  
  .stat-item {
    flex: 1 1 calc(33.333% - 10px);
    min-width: 90px;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .btn-primary-hero,
  .btn-secondary-hero {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
  
  .desktop-break {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(10,10,14,0.95);
    backdrop-filter: blur(12px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 50px;
    transition: right 0.3s ease;
    z-index: 999;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links a {
    padding: 15px 0;
    font-size: 1.2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    width: 80%;
    text-align: center;
  }

  .nav-links a:not(.btn):after {
    display: none;
  }

  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-card.featured {
    grid-column: span 1;
  }

  #contato {
    padding: 80px 20px;
  }
  
  .form-wrapper {
    padding: 24px;
  }
  
  .contact-header {
    margin-bottom: 50px;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-links {
    justify-content: center;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .benefits-grid-enhanced {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .metrics {
    flex-direction: column;
    align-items: center;
  }

  .gauge {
    width: 100%;
    max-width: 300px;
  }

  .testimonials-modern {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .trust-indicators {
    gap: 20px;
  }

  .newsletter-content {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .contact-card .card-icon {
    width: 40px;
    height: 40px;
  }
  
  .benefit-icon-enhanced {
    width: 50px;
    height: 50px;
  }
  
  .guarantee-icon svg {
    width: 32px;
    height: 32px;
  }
}

/* Smartphones */
@media (max-width: 480px) {
  .hero {
    min-height: 85vh;
  }
  
  .hero-content {
    padding: 50px 15px 25px;
  }
  
  .hero-badge {
    font-size: 0.8rem;
    padding: 8px 14px;
    margin-bottom: 1.5rem;
  }
  
  .hero-headline {
    margin-bottom: 1.2rem;
  }
  
  .hero-subtitle {
    margin-bottom: 2rem;
  }
  
  .hero-stats {
    margin: 2rem 0;
    gap: 12px;
  }
  
  .stat-item {
    padding: 10px 12px;
    min-width: 80px;
  }
  
  .stat-number {
    font-size: 1.4rem;
  }
  
  .stat-label {
    font-size: 0.7rem;
  }
  
  .hero-cta {
    margin-top: 2rem;
  }
  
  .btn-primary-hero,
  .btn-secondary-hero {
    padding: 14px 24px;
    font-size: 0.95rem;
    max-width: 280px;
  }

  .contact-card {
    padding: 16px;
  }
  
  .business-hours {
    padding: 20px;
  }

  .sobre-top { 
    flex-direction: column-reverse; 
    text-align: center; 
  }
  
  .sobre-illustration img { 
    max-width: 300px; 
  }
  
  .service-card { 
    height: 280px; 
  }
  
  .service-card p { 
    max-width: 200px; 
    font-size: 0.95rem; 
  }

  .newsletter-section {
    padding: 25px 20px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .big-number {
    font-size: 3rem;
  }

  .metric-number {
    font-size: 2rem;
  }

  .card-icon-large svg {
    width: 40px;
    height: 40px;
  }
  
  .contact-card .card-icon svg {
    width: 24px;
    height: 24px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 14px;
    font-size: 16px; /* Evita zoom no iOS */
  }
}

/* Smartphones muito pequenos */
@media (max-width: 360px) {
  .hero-stats {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  
  .stat-item {
    width: 100%;
    max-width: 200px;
  }
  
  .btn-primary-hero,
  .btn-secondary-hero {
    max-width: 250px;
    font-size: 0.9rem;
  }
}

/* Orientação paisagem em smartphones */
@media (max-width: 768px) and (orientation: landscape) {
  .hero {
    min-height: 100vh;
  }
  
  .hero-content {
    padding: 40px 15px 20px;
  }
  
  .hero-stats {
    margin: 1.5rem 0;
    gap: 15px;
  }
  
  .hero-cta {
    margin-top: 1.5rem;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .btn-primary-hero,
  .btn-secondary-hero {
    width: auto;
    min-width: 200px;
  }
}

/* Ajustes para vídeo em dispositivos móveis */
@media (max-width: 768px) {
  .hero-video {
    /* Garantir que o vídeo cubra toda a tela em mobile */
    min-width: 120%;
    min-height: 120%;
  }
}

/* Ajustes para dispositivos com notch */
@supports (padding: max(0px)) {
  .hero-content {
    padding-left: max(20px, env(safe-area-inset-left));
    padding-right: max(20px, env(safe-area-inset-right));
  }
}

/* Melhor performance em dispositivos móveis */
@media (max-width: 768px) {
  .particles-container,
  .hero-shapes {
    display: none; /* Remove animações pesadas em mobile */
  }
  
  .hero-video {
    will-change: transform; /* Otimização de performance */
  }
}

/* Fallback para conexões lentas */
@media (prefers-reduced-motion: reduce) {
  .hero-video {
    display: none;
  }
  
  .hero-fallback {
    display: flex;
  }
}

@media (orientation: landscape) and (max-height: 500px) {
  .hero {
    height: 100vh;
  }
}

/* ===== ANIMAÇÕES ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

/* ===== SMOOTH SCROLLING ===== */
html {
  scroll-behavior: smooth;
}

/* ===== FOCUS STYLES PARA ACESSIBILIDADE ===== */
*:focus {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

button:focus,
a:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ===== PREFERS REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  html {
    scroll-behavior: auto;
  }
}