/* === STARFIELD GLOBAL BACKGROUND SYSTEM === */
body {
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    background: 
        radial-gradient(2px 2px at 20px 30px, #00c6fb, transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255, 179, 0, 0.8), transparent),
        radial-gradient(1px 1px at 90px 40px, #3a7bd5, transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(0, 198, 251, 0.6), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(255, 179, 0, 0.7), transparent),
        radial-gradient(1px 1px at 190px 90px, #00c6fb, transparent),
        radial-gradient(1px 1px at 220px 10px, #3a7bd5, transparent),
        radial-gradient(2px 2px at 290px 50px, rgba(255, 179, 0, 0.6), transparent),
        radial-gradient(1px 1px at 320px 80px, rgba(0, 198, 251, 0.8), transparent),
        radial-gradient(1px 1px at 350px 25px, #3a7bd5, transparent),
        radial-gradient(2px 2px at 20px 130px, rgba(255, 179, 0, 0.7), transparent),
        radial-gradient(1px 1px at 50px 160px, #00c6fb, transparent),
        radial-gradient(1px 1px at 90px 140px, rgba(58, 123, 213, 0.8), transparent),
        radial-gradient(2px 2px at 130px 180px, rgba(0, 198, 251, 0.6), transparent),
        radial-gradient(1px 1px at 160px 130px, rgba(255, 179, 0, 0.9), transparent),
        radial-gradient(1px 1px at 190px 190px, #3a7bd5, transparent),
        radial-gradient(2px 2px at 220px 110px, #00c6fb, transparent),
        radial-gradient(1px 1px at 290px 150px, rgba(255, 179, 0, 0.5), transparent),
        radial-gradient(1px 1px at 320px 180px, rgba(0, 198, 251, 0.7), transparent),
        radial-gradient(2px 2px at 350px 125px, #3a7bd5, transparent),
        radial-gradient(1px 1px at 20px 230px, rgba(255, 179, 0, 0.8), transparent),
        radial-gradient(2px 2px at 50px 260px, #00c6fb, transparent),
        radial-gradient(1px 1px at 90px 240px, rgba(58, 123, 213, 0.6), transparent),
        radial-gradient(1px 1px at 130px 280px, rgba(0, 198, 251, 0.8), transparent),
        radial-gradient(2px 2px at 160px 230px, rgba(255, 179, 0, 0.7), transparent),
        radial-gradient(1px 1px at 190px 290px, #3a7bd5, transparent),
        radial-gradient(1px 1px at 220px 210px, #00c6fb, transparent),
        radial-gradient(2px 2px at 290px 250px, rgba(255, 179, 0, 0.6), transparent),
        radial-gradient(1px 1px at 320px 280px, rgba(0, 198, 251, 0.9), transparent),
        radial-gradient(1px 1px at 350px 225px, #3a7bd5, transparent);
    background-repeat: repeat;
    background-size: 400px 300px;
    opacity: 0.4;
    animation: starfield-drift 60s linear infinite;
    pointer-events: none;
}

@keyframes starfield-drift {
    0% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(-10px) translateY(-5px); }
    50% { transform: translateX(-5px) translateY(-10px); }
    75% { transform: translateX(5px) translateY(-5px); }
    100% { transform: translateX(0) translateY(0); }
}

/* Mobile optimization for starfield */
@media (max-width: 768px) {
    body::before {
        background-size: 300px 200px;
        opacity: 0.3;
        animation-duration: 80s;
    }
        /* Ordem focada em conversão: Texto/CTA antes da foto */
        .hero-content { order: 1 !important; }
        .hero-visual-top { order: 2 !important; }

        /* Reduz ruído visual no topo */
        .hero-badge { display: none !important; }
        .hero-trust { display: none !important; }
        .hero-particles { display: none !important; }

    /* Mais respiro lateral + coluna única na hero no mobile */
    .hero-container { padding: 0 24px; grid-template-columns: 1fr; gap: 2rem; }

        /* Centralização do título e textos da hero no mobile */
    .hero-content { text-align: center !important; align-items: center; max-width: 100%; }
        .hero-title { justify-content: center; text-align: center; }
        .title-dynamic { white-space: normal; max-width: 100%; }
        .hero-subtitle { margin-left: auto; margin-right: auto; }
    .quick-cta-badges { justify-content: center; }
}

@media (max-width: 480px) {
    body::before {
        background-size: 250px 150px;
        opacity: 0.25;
        animation: none; /* Disable animation on very small screens for performance */
    }
}

/* === SECTION COLOR VARIATIONS === */
.hero-premium::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 198, 251, 0.05) 0%, 
        rgba(58, 123, 213, 0.03) 50%, 
        rgba(255, 179, 0, 0.04) 100%);
    pointer-events: none;
    z-index: 1;
}

.portfolio-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 179, 0, 0.04) 0%, 
        rgba(0, 198, 251, 0.03) 50%, 
        rgba(58, 123, 213, 0.05) 100%);
    pointer-events: none;
    z-index: 1;
}

.metodologia-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(58, 123, 213, 0.05) 0%, 
        rgba(255, 179, 0, 0.03) 50%, 
        rgba(0, 198, 251, 0.04) 100%);
    pointer-events: none;
    z-index: 1;
}

.depoimentos-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 198, 251, 0.04) 0%, 
        rgba(255, 179, 0, 0.05) 50%, 
        rgba(58, 123, 213, 0.03) 100%);
    pointer-events: none;
    z-index: 1;
}

.quem-sou-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 179, 0, 0.05) 0%, 
        rgba(58, 123, 213, 0.04) 50%, 
        rgba(0, 198, 251, 0.03) 100%);
    pointer-events: none;
    z-index: 1;
}

.servicos-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(58, 123, 213, 0.04) 0%, 
        rgba(0, 198, 251, 0.05) 50%, 
        rgba(255, 179, 0, 0.03) 100%);
    pointer-events: none;
    z-index: 1;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 198, 251, 0.05) 0%, 
        rgba(255, 179, 0, 0.04) 50%, 
        rgba(58, 123, 213, 0.03) 100%);
    pointer-events: none;
    z-index: 1;
}

.cta-premium-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 179, 0, 0.06) 0%, 
        rgba(0, 198, 251, 0.04) 50%, 
        rgba(58, 123, 213, 0.05) 100%);
    pointer-events: none;
    z-index: 1;
}

/* Ensure sections have relative positioning for overlays */
section {
    position: relative;
}

/* Ensure section content appears above color overlays */
.container {
    position: relative;
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 2;
}

/* === Glassmorphism Pricing Cards === */
.precos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-top: 2.5rem;
}
.preco-card {
    background: rgba(34, 38, 49, 0.65);
    backdrop-filter: blur(18px) saturate(1.2);
    -webkit-backdrop-filter: blur(18px) saturate(1.2);
    border-radius: 1.5rem;
    border: 2px solid var(--card-border, #2d3340);
    box-shadow: 0 2px 16px 0 rgba(0,0,0,0.10);
    color: #f3f6fa;
    padding: 2.2rem 1.6rem 2.4rem 1.6rem;
    position: relative;
    transition: transform 0.22s cubic-bezier(.4,1.6,.6,1), box-shadow 0.22s, border-color 0.22s, background 0.22s;
    z-index: 1;
}
.preco-card:hover {
    transform: translateY(-8px) scale(1.025);
    box-shadow: 0 8px 32px 0 rgba(0,0,0,0.18);
    background: rgba(44, 48, 59, 0.80);
}
/* Border colors by tier */
.card-basico { --card-border: #3a7bd5; }
.card-avancado { --card-border: #00c6fb; }
.card-premium { --card-border: #ffb300; }
.card-empresarial { --card-border: #3a7bd5; }

/* Featured (Premium) Plan Highlight */
.card-premium {
    box-shadow: 0 0 32px 0 #ffb30099, 0 2px 16px 0 rgba(0,0,0,0.10);
    z-index: 2;
    transform: scale(1.08);
    border-width: 2.5px;
}
.card-premium:hover {
    box-shadow: 0 0 48px 0 #ffb300cc, 0 8px 32px 0 rgba(0,0,0,0.18);
}

/* Card Title & Typography */
.preco-card .card-title {
    font-size: 2.1rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 0.2em;
    margin-top: 0.2em;
    color: #fff;
}
.preco-card .card-subtitle {
    font-size: 1.08rem;
    color: #b6c2d1;
    margin-bottom: 1.2em;
    margin-top: 0.2em;
    font-weight: 500;
}
.preco-card .preco-valor {
    font-size: 1.15rem;
    color: #b6c2d1;
    margin-bottom: 0.2em;
}
.preco-card .preco-numero {
    font-size: 2.6rem;
    font-weight: 900;
    color: #ffb300;
    margin-left: 0.2em;
}
.preco-card .preco-parcelado {
    background: rgba(255,255,255,0.07);
    border-radius: 0.7em;
    color: #e6e6e6;
    font-size: 1.08rem;
    margin: 0.7em 0 1.2em 0;
    padding: 0.7em 0.5em;
    text-align: center;
    font-weight: 500;
    letter-spacing: 0.01em;
}
.preco-card .preco-entrega {
    color: #00c6fb;
    font-weight: 700;
    margin: 1.1em 0 0.7em 0;
    font-size: 1.08rem;
    letter-spacing: 0.01em;
}
.preco-card .preco-features {
    margin-bottom: 1.5em;
}
.feature-item {
    display: flex;
    align-items: center;
    gap: 0.7em;
    background: rgba(255,255,255,0.04);
    border-radius: 0.6em;
    padding: 0.7em 0.8em;
    margin-bottom: 0.5em;
    font-size: 1.04rem;
    color: #e6e6e6;
    font-weight: 500;
    letter-spacing: 0.01em;
    transition: background 0.18s;
}
.feature-item.feature-highlight {
    background: rgba(0,198,251,0.10);
    color: #fff;
}
.feature-item.premium-feature {
    background: rgba(255,179,0,0.10);
}
.feature-item.bonus-feature {
    background: rgba(58,123,213,0.10);
}
.feature-item .feature-check {
    color: #00c6fb;
    font-size: 1.2em;
    font-weight: 700;
    margin-right: 0.2em;
}
.preco-card .btn-preco {
    display: block;
    width: 100%;
    margin: 1.2em 0 0.5em 0;
    padding: 1em 0;
    border-radius: 0.8em;
    font-size: 1.18rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    background: linear-gradient(90deg, #00c6fb 0%, #005bea 100%);
    color: #fff;
    border: none;
    box-shadow: 0 2px 12px 0 rgba(0,198,251,0.10);
    cursor: pointer;
    transition: background 0.18s, box-shadow 0.18s, transform 0.18s;
    text-align: center;
    outline: none;
}
.preco-card .btn-preco:hover, .preco-card .btn-preco:focus {
    background: linear-gradient(90deg, #005bea 0%, #00c6fb 100%);
    box-shadow: 0 4px 24px 0 rgba(0,198,251,0.18);
    transform: translateY(-2px) scale(1.03);
}
.btn-premium {
    background: linear-gradient(90deg, #ffb300 0%, #ff6a00 100%) !important;
    color: #23272f !important;
    box-shadow: 0 2px 12px 0 rgba(255,179,0,0.10);
}
.btn-premium:hover, .btn-premium:focus {
    background: linear-gradient(90deg, #ff6a00 0%, #ffb300 100%) !important;
    color: #23272f !important;
    box-shadow: 0 4px 24px 0 rgba(255,179,0,0.18);
}
.btn-empresarial {
    background: linear-gradient(90deg, #3a7bd5 0%, #00c6fb 100%) !important;
}
.btn-empresarial:hover, .btn-empresarial:focus {
    background: linear-gradient(90deg, #00c6fb 0%, #3a7bd5 100%) !important;
}
.preco-card .preco-ideal {
    color: #b6c2d1;
    font-size: 0.98rem;
    margin-top: 0.7em;
    margin-bottom: 0;
    text-align: center;
    letter-spacing: 0.01em;
}
.card-badge {
    position: absolute;
    top: -1.2em;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #ffb300 0%, #ff6a00 100%);
    color: #23272f;
    font-weight: 900;
    font-size: 1.05rem;
    padding: 0.5em 1.5em;
    border-radius: 1.2em;
    box-shadow: 0 2px 12px 0 rgba(255,179,0,0.10);
    letter-spacing: 0.02em;
    z-index: 3;
    text-shadow: none;
}
@media (max-width: 1100px) {
    .precos-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    .card-premium {
        transform: scale(1.04);
    }
}
@media (max-width: 700px) {
    .precos-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    .preco-card {
        padding: 1.2rem 0.7rem 1.5rem 0.7rem;
    }
    .card-premium {
        transform: scale(1.01);
    }
}
/* Botão Flutuante WhatsApp */
.whatsapp-float {
    position: fixed;
    width: 56px;
    height: 56px;
    bottom: 24px;
    right: 24px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: box-shadow 0.2s;
    text-decoration: none;
}
.whatsapp-float:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.28);
    background: #1ebe57;
}
.whatsapp-float img {
    width: 32px;
    height: 32px;
    display: block;
}
/* =============================================================================
   DEVPRO PREMIUM - Landing de Conversão Profissional
   Design para Confiança e Resultados
============================================================================= */

/* CSS Variables - Paleta Profissional */
:root {
    /* Core Colors - Profissional */
    --bg-primary: #0B0B0F;
    --bg-secondary: #1a1a2e;
    --bg-tertiary: #16213e;
    --text-primary: #FFFFFF;
    --text-secondary: #A0A0B8;
    --text-muted: #6B7280;
    
    /* Brand Colors - DevPro */
    --brand-primary: #2563EB;
    --brand-secondary: #1D4ED8;
    --brand-accent: #F59E0B;
    --brand-gradient: linear-gradient(135deg, #2563EB, #1D4ED8);
    
    /* Status Colors */
    --success: #10B981;
    --warning: #F59E0B;
    --error: #EF4444;
    --info: #06B6D4;
    
    /* Glass Effects */
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.12);
    --glass-backdrop: blur(20px);
    
    /* Shadows & Glows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --glow-primary: 0 0 30px rgba(37, 99, 235, 0.3);
    --glow-accent: 0 0 30px rgba(245, 158, 11, 0.3);
    
    /* Layout */
    --container-width: 1200px;
    --section-padding: 80px 0;
    --card-radius: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', 'Monaco', 'Menlo', monospace;
}

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation Premium */
.nav-premium {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(11, 11, 15, 0.9);
    backdrop-filter: var(--glass-backdrop);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 1.5rem;
}

.brand-icon {
    color: var(--brand-accent);
    font-family: var(--font-mono);
}

.brand-text {
    color: var(--text-primary);
}

.brand-accent {
    color: var(--brand-accent);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-cta {
    background: var(--brand-gradient);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    transition: var(--transition);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-primary);
}

.nav-mobile {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.nav-mobile span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* Hero Section Premium */
.hero-premium {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 70px;
    overflow: hidden;
}

/* === Scroll Cue (Desktop) === */
.scroll-cue {
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    display: none; /* só desktop */
    align-items: center;
    flex-direction: column;
    gap: 8px;
    color: rgba(255,255,255,0.7);
    z-index: 5;
    pointer-events: none;
}

.scroll-cue .mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 16px;
    position: relative;
}

.scroll-cue .wheel {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 8px;
    border-radius: 2px;
    background: rgba(255,255,255,0.85);
    animation: wheelMove 1.6s ease-in-out infinite;
}

@keyframes wheelMove {
    0% { transform: translate(-50%, 0); opacity: 1; }
    60% { transform: translate(-50%, 10px); opacity: 0; }
    100% { transform: translate(-50%, 0); opacity: 0; }
}

.scroll-cue .chevrons { font-size: 0.9rem; letter-spacing: 2px; opacity: 0.7; }

@media (min-width: 769px) {
    .scroll-cue { display: flex; }
}

/* === Mobile Section Ghost Links === */
.mobile-section-links {
    display: none;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 6px;
    justify-content: center; /* centraliza os botões */
}

.section-link-ghost {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.14);
    color: rgba(255,255,255,0.75);
    font-size: 0.85rem;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.section-link-ghost:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.24);
    color: rgba(255,255,255,0.9);
}

@media (max-width: 768px) {
    .mobile-section-links {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
    }
    .mobile-section-links .section-link-ghost {
        justify-content: center;
    }
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-particles {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, var(--brand-primary), transparent),
        radial-gradient(2px 2px at 40% 70%, var(--brand-accent), transparent),
        radial-gradient(1px 1px at 90% 40%, var(--info), transparent),
        radial-gradient(1px 1px at 130% 80%, var(--success), transparent);
    background-repeat: repeat;
    background-size: 200px 200px;
    animation: particles-float 20s linear infinite;
    opacity: 0.3;
}

@keyframes particles-float {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-200px, -200px); }
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Limitar largura do bloco de conteúdo para não invadir os cards flutuantes */
.hero-content {
    max-width: 720px;
    display: flex;
    flex-direction: column;
    text-align: left;
}

/* Foto no topo da hero section para mobile, lado esquerdo para desktop */
.hero-visual-top {
    display: flex;
    justify-content: center;
    animation: fade-in-up 0.8s ease-out 0.2s both;
}

@keyframes fade-in-up {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Hero Visual */
.hero-image {
    position: relative;
    z-index: 2;
}

.profile-image {
    width: 300px;
    height: 300px;
    aspect-ratio: 1 / 1; /* garante círculo perfeito mesmo com reflows */
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--glass-border);
    backdrop-filter: var(--glass-backdrop);
    animation: profile-float 8s ease-in-out infinite;
    position: relative;
    z-index: 3;
    cursor: pointer;
    transition: all 0.3s ease;
}

@keyframes pulse-online {
    0% {
        box-shadow: 0 0 10px rgba(0, 255, 0, 0.6);
    }
    50% {
        box-shadow: 0 0 20px rgba(0, 255, 0, 0.8);
    }
    100% {
        box-shadow: 0 0 10px rgba(0, 255, 0, 0.6);
    }
}

/* Easter Eggs Animations */
@keyframes photo-bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translate3d(0, 0, 0);
    }
    40%, 43% {
        transform: translate3d(0, -30px, 0);
    }
    70% {
        transform: translate3d(0, -15px, 0);
    }
    90% {
        transform: translate3d(0, -4px, 0);
    }
}

@keyframes photo-shake {
    10%, 90% {
        transform: translate3d(-1px, 0, 0);
    }
    20%, 80% {
        transform: translate3d(2px, 0, 0);
    }
    30%, 50%, 70% {
        transform: translate3d(-4px, 0, 0);
    }
    40%, 60% {
        transform: translate3d(4px, 0, 0);
    }
}

@keyframes photo-spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes photo-pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes photo-wobble {
    0% {
        transform: rotate(0deg);
    }
    15% {
        transform: rotate(-5deg);
    }
    30% {
        transform: rotate(3deg);
    }
    45% {
        transform: rotate(-3deg);
    }
    60% {
        transform: rotate(2deg);
    }
    75% {
        transform: rotate(-1deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

@keyframes photo-flip {
    0% {
        transform: perspective(400px) rotateY(0);
    }
    40% {
        transform: perspective(400px) translateZ(150px) rotateY(170deg);
    }
    50% {
        transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    }
    80% {
        transform: perspective(400px) rotateY(360deg) scale(0.95);
    }
    100% {
        transform: perspective(400px) scale(1);
    }
}

.photo-bounce {
    animation: photo-bounce 1s ease-in-out;
}

.photo-shake {
    animation: photo-shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

.photo-spin {
    animation: photo-spin 1s linear;
}

.photo-pulse {
    animation: photo-pulse 1s ease-in-out;
}

.photo-wobble {
    animation: photo-wobble 1s ease-in-out;
}

.photo-flip {
    animation: photo-flip 1s ease-in-out;
}

/* Círculo animado em volta da foto */
.animated-circle {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 330px;
    height: 330px;
    border: 3px solid transparent;
    border-top: 3px solid var(--brand-primary);
    border-right: 3px solid var(--brand-accent);
    border-radius: 50%;
    animation: circle-rotate 4s linear infinite;
    z-index: 2;
}

@keyframes circle-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes profile-float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(1deg); }
    50% { transform: translateY(-5px) rotate(-1deg); }
    75% { transform: translateY(-15px) rotate(0.5deg); }
}

/* Brilho movido para trás da foto */
.image-glow {
    position: absolute;
    inset: -30px;
    background: var(--brand-gradient);
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.2;
    animation: pulse-glow 4s ease-in-out infinite;
    z-index: 1;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.2; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.1); }
}

/* Floating Badges - Orbitando a foto */
.floating-badge {
    position: absolute;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-backdrop);
    -webkit-backdrop-filter: var(--glass-backdrop);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 12px 16px;
    text-align: center;
    animation: orbital-float 8s ease-in-out infinite;
    z-index: 4;
    min-width: 120px;
}

.floating-badge.badge-1 {
    top: -60px;
    left: -80px;
    animation-delay: 0s;
}

.floating-badge.badge-2 {
    top: 60px;
    right: -100px;
    animation-delay: 2.5s;
}

.floating-badge.badge-3 {
    bottom: -50px;
    left: -60px;
    animation-delay: 5s;
}

.floating-badge.badge-4 {
    bottom: -60px;
    right: -70px;
    animation-delay: 7s;
    /* Estilo inspirado no hero-badge */
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--glass-bg);
    border: 1px solid rgba(255, 179, 0, 0.4);
    border-radius: 50px;
    padding: 8px 16px;
    font-size: 0.85rem;
    color: var(--brand-accent);
    backdrop-filter: var(--glass-backdrop);
    -webkit-backdrop-filter: var(--glass-backdrop);
    box-shadow: 
        0 8px 32px rgba(255, 179, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    /* Animação suave personalizada */
    animation: orbital-float 8s ease-in-out infinite, badge-glow 3s ease-in-out infinite alternate;
}

.floating-badge.badge-4::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 179, 0, 0.1) 50%, 
        transparent 100%);
    animation: gentle-sweep 4s ease-in-out infinite;
}

.floating-badge.badge-4 .badge-text {
    color: var(--brand-accent);
    font-weight: 600;
    font-size: 0.85rem;
    text-shadow: none;
    position: relative;
    z-index: 2;
}

@keyframes badge-glow {
    0% { 
        box-shadow: 
            0 8px 32px rgba(255, 179, 0, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }
    100% { 
        box-shadow: 
            0 8px 32px rgba(255, 179, 0, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
}

@keyframes gentle-sweep {
    0% { left: -100%; opacity: 0; }
    30% { opacity: 1; }
    70% { opacity: 1; }
    100% { left: 100%; opacity: 0; }
}

.badge-number {
    display: block;
    font-size: var(--font-size-base, 1rem);
    font-weight: 700;
    background: var(--brand-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.badge-text {
    font-size: 10px;
    color: var(--text-secondary);
    font-weight: 500;
    margin-top: 2px;
    line-height: 1.2;
}

@keyframes orbital-float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    25% { 
        transform: translateY(-15px) rotate(2deg); 
    }
    50% { 
        transform: translateY(-8px) rotate(-1deg); 
    }
    75% { 
        transform: translateY(-20px) rotate(1deg); 
    }
}

.hero-content {
    animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
    from { transform: translateX(-50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    padding: 8px 16px;
    font-size: 0.9rem;
    color: var(--brand-accent);
    margin-bottom: 2rem;
    backdrop-filter: var(--glass-backdrop);
}

.badge-icon {
    font-size: 1.1rem;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.2em;
}

.title-static {
    color: var(--text-primary);
    display: inline-flex;
    align-items: baseline;
}

.title-dynamic {
    min-width: 200px;
    flex-shrink: 0;
    position: relative;
    display: inline-flex;
    align-items: baseline;
    white-space: nowrap; /* evita quebra em desktop */
    max-width: calc(100% - 2rem); /* não invadir os cards flutuantes */
}

/* Auxiliares para o efeito typewriter */
.typewriter-wrapper { position: relative; display: inline-block; line-height: 1.1; vertical-align: baseline; }
.typewriter-spacer { visibility: hidden; white-space: nowrap; }

.title-highlight {
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    white-space: nowrap;
    display: inline-block;
    min-height: 1.2em; /* altura estável para o cursor */
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 680px; /* não avançar sobre os cards do lado direito */
}

.hero-subtitle strong {
    color: var(--text-primary);
    font-weight: 600;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--brand-accent);
    display: block;
    font-family: var(--font-mono);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--brand-gradient);
    color: white;
    padding: 15px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-primary);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    padding: 15px 30px;
    border: 2px solid var(--glass-border);
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--glass-bg);
    border-color: var(--brand-primary);
}

.btn-arrow {
    transition: var(--transition);
}

.btn-primary:hover .btn-arrow {
    transform: translateX(4px);
}

.hero-quick-cta {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 720px; /* alinhado ao hero-content */
}

.quick-cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 16px;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    -webkit-backdrop-filter: var(--glass-backdrop);
    backdrop-filter: var(--glass-backdrop);
    border-radius: 12px;
}

.quick-cta-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.quick-cta-title {
    font-weight: 800;
    color: var(--text-primary);
}

.quick-cta-sub {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    background: #25D366; /* verde WhatsApp */
    color: #0b2313 !important;
}

.btn-whatsapp i { font-size: 1.1rem; }

/* Ícone local do WhatsApp (imagens/wppicon.png) */
.wpp-icon { width: 20px; height: 20px; display: inline-block; object-fit: contain; }

/* Versão principal com animações, borda animada e brilho de confiança */
.btn-whatsapp-primary {
    position: relative;
    padding: 16px 26px;
    border-radius: 14px;
    font-weight: 800;
    letter-spacing: 0.2px;
    isolation: isolate;
    overflow: hidden;
    color: white !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.25), inset 0 -2px 0 rgba(0,0,0,0.12);
    transition: transform .2s ease, box-shadow .2s ease;
}

.btn-whatsapp-primary span {
    color: white !important;
    position: relative;
    z-index: 2;
}

/* Animação de seguir o cursor */
.cursor-follow {
    transition: transform 0.1s ease-out;
}

/* Brilho pulsante suave (confiança) */
.btn-whatsapp-primary::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55);
    animation: pulseGlow 2.2s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.45); }
    70% { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* Borda animada orbitando o botão */
.btn-whatsapp-primary::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    padding: 2px;
    background: conic-gradient(from 0deg, rgba(37,211,102,0.0), rgba(37,211,102,0.8), rgba(37,211,102,0.0) 60%);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    animation: spinBorder 4s linear infinite;
    pointer-events: none;
}

@keyframes spinBorder { to { transform: rotate(360deg); } }

.btn-whatsapp-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(37,211,102,0.35), inset 0 -2px 0 rgba(0,0,0,0.1);
}

.quick-cta-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.quick-cta-badge {
    font-size: 0.85rem;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px dashed rgba(255,255,255,0.18);
    color: rgba(255,255,255,0.85);
}

/* Badge de preço (exibido apenas no mobile) */
.badge-price-mobile {
    display: none;
    background: rgba(255, 179, 0, 0.12);
    border: 1px dashed rgba(255, 179, 0, 0.35);
    color: #ffd489;
}

@media (max-width: 768px) {
    .badge-price-mobile { display: inline-flex; }
}

@media (max-width: 768px) {
    .quick-cta-box {
        align-items: stretch;
        flex-direction: column;
    }
    .btn-whatsapp { justify-content: center; width: 100%; }
}

.hero-trust {
    opacity: 0.8;
}

.trust-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.trust-badges {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.trust-item {
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Hero Visual - ANTIGO (comentado)
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    animation: slideInRight 1s ease-out;
}

@keyframes slideInRight {
    from { transform: translateX(50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.visual-container {
    position: relative;
    width: 400px;
    height: 400px;
}
*/

/* Developer Avatar */
.dev-avatar {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.avatar-ring {
    width: 120px;
    height: 120px;
    border: 3px solid var(--brand-primary);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.avatar-photo {
    width: 100px;
    height: 100px;
    background: var(--brand-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    color: white;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-xl);
}

.avatar-status {
    display: none; /* visível apenas no mobile */
    position: absolute;
    bottom: -18px; /* cola mais na borda inferior da foto */
    left: 50%;
    transform: translateX(-50%);
    background: rgba(10, 25, 47, 0.9);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 999px;
    padding: 8px 12px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #e5f4ed;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
    white-space: nowrap;
    z-index: 5;
}

.status-dot {
    width: 10px;
    height: 10px;
    background: #22c55e; /* verde online */
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(34,197,94,0.6);
    animation: pulseOnline 2s infinite;
}

@keyframes pulseOnline {
    0% { box-shadow: 0 0 0 0 rgba(34,197,94,0.6); }
    70% { box-shadow: 0 0 0 10px rgba(34,197,94,0); }
    100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

/* Exibe a etiqueta colada na foto apenas no mobile */
@media (max-width: 768px) {
    .avatar-status { display: flex; }
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.1); }
}

/* Credibility Cards */
.credibility-cards {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cred-card {
    position: absolute;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--card-radius);
    padding: 16px;
    backdrop-filter: var(--glass-backdrop);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 160px;
    transition: var(--transition);
    animation: float 4s ease-in-out infinite;
}

.cred-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.card-1 {
    top: 20%;
    left: -20%;
    animation-delay: 0s;
}

.card-2 {
    top: 10%;
    right: -20%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 30%;
    left: -15%;
    animation-delay: 2s;
}

.card-4 {
    bottom: 20%;
    right: -15%;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.card-icon {
    font-size: 1.5rem;
    opacity: 0.8;
}

.card-number {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--brand-accent);
    font-family: var(--font-mono);
}

.card-text {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Tech Stack */
.tech-stack {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.tech-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 6px 12px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    backdrop-filter: var(--glass-backdrop);
    transition: var(--transition);
}

.tech-item:hover {
    color: var(--brand-accent);
    border-color: var(--brand-accent);
}

/* Problema e Solução Section */
.problema-solucao {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
}

.problema-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.problema-side {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: var(--card-radius);
    padding: 2.5rem;
}

.problema-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #FCA5A5;
    margin-bottom: 2rem;
}

.solucao-side {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: var(--card-radius);
    padding: 2.5rem;
}

.solucao-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #6EE7B7;
    margin-bottom: 2rem;
}

.problema-list,
.solucao-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.problema-item,
.solucao-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.problema-icon,
.solucao-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.problema-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.solucao-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.solucao-item strong {
    color: var(--text-primary);
}

/* Preços Section */
.precos-section {
    padding: var(--section-padding);
    background: var(--bg-primary);
}

.precos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
    align-items: start;
}

/* Cards Premium com leve destaque */
.card-empresarial,
.card-customizado {
    transform: scale(1.05);
    z-index: 2;
    position: relative;
}

.preco-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--card-radius);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    backdrop-filter: var(--glass-backdrop);
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 620px; /* altura mínima para equalizar cards */
}

.preco-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.card-premium {
    border: 2px solid var(--brand-accent);
    transform: scale(1.02);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(245, 158, 11, 0.1));
}

.card-premium:hover {
    transform: scale(1.02) translateY(-5px);
}

.card-avancado {
    border: 2px solid var(--info);
}

.card-empresarial {
    border: 2px solid var(--brand-primary);
}

.card-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brand-accent);
    color: var(--bg-primary);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.card-header {
    margin-bottom: 1.5rem;
}

.card-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.card-subtitle {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.preco-valor {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 1.5rem;
    gap: 0.2rem;
}

.preco-apartir {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-right: 6px;
}

.preco-cifrao {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.preco-numero {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--brand-accent);
    font-family: var(--font-mono);
}

.preco-periodo {
    font-size: 1rem;
    color: var(--text-muted);
    margin-left: 0.5rem;
}

.preco-texto {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--brand-primary);
    display: block;
}

.preco-texto-2 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-secondary);
    display: block;
}

.preco-parcelado {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.preco-parcelado {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 6px 10px;
    display: inline-block;
}

.preco-entrega {
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 8px;
    padding: 0.8rem;
    margin-bottom: 1.5rem;
    color: var(--brand-primary);
    font-size: 0.9rem;
    font-weight: 600;
}

.preco-features {
    text-align: left;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.feature-highlight {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 10px 12px;
}

.feature-icon {
    font-size: 1.1rem;
    line-height: 1;
    margin-top: 2px;
    opacity: 0.9;
}

.feature-check {
    color: var(--success);
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.feature-item span:last-child {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.feature-item strong {
    color: var(--text-primary);
}

.premium-feature {
    background: rgba(245, 158, 11, 0.1);
    padding: 0.8rem;
    border-radius: 8px;
    border-left: 3px solid var(--brand-accent);
    margin: 0.5rem 0;
}

.bonus-feature {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.08), transparent);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 6px;
    padding: 0.6rem;
    margin: 0.3rem 0;
    position: relative;
}

.bonus-feature::before {
    content: "🎁";
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.9rem;
    opacity: 0.8;
}

.btn-preco {
    width: 100%;
    padding: 15px 20px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    margin-bottom: 1.5rem;
    text-align: center;
    margin-top: auto;
}

.btn-basico {
    background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
    border: 2px solid var(--text-secondary);
    color: var(--text-secondary);
}

.btn-basico:hover {
    background: var(--text-secondary);
    color: var(--bg-primary);
}

.btn-avancado {
    background: linear-gradient(135deg, rgba(6,182,212,0.12), rgba(6,182,212,0.03));
    border: 2px solid var(--info);
    color: var(--info);
}

.btn-avancado:hover {
    background: var(--info);
    color: white;
}

.btn-premium {
    background: linear-gradient(135deg, #F59E0B, #2563EB);
    color: white;
    border: none;
    box-shadow: var(--glow-accent);
}

.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-accent), var(--shadow-lg);
}

.btn-empresarial {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(37, 99, 235, 0.03));
    border: 2px solid var(--brand-primary);
    color: var(--brand-primary);
}

.btn-empresarial:hover {
    background: var(--brand-primary);
    color: white;
}

.btn-customizado {
    background: transparent;
    border: 2px solid var(--brand-primary);
    color: var(--brand-primary);
}

.btn-customizado:hover {
    background: var(--brand-primary);
    color: white;
}

.preco-ideal {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.4;
    margin-top: auto;
}

.precos-garantia {
    text-align: center;
    margin-top: 2rem;
}

/* Meta copy do mais vendido */
.card-meta {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 0.3rem;
    margin-bottom: 0.8rem;
}

/* Seção Sob Medida */
.sob-medida-section {
    padding: 40px 0 80px;
    background: var(--bg-primary);
}

.sob-medida-card {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1.5rem;
    align-items: center;
    padding: 2rem;
    border-radius: var(--card-radius);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
}

.sob-medida-title { color: var(--text-primary); margin: 0 0 6px; }
.sob-medida-sub { color: var(--text-secondary); margin: 0 0 12px; }
.sob-medida-list { color: var(--text-secondary); display: grid; gap: 6px; padding-left: 0; list-style: none; }

@media (max-width: 1024px) {
    .precos-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .precos-grid { grid-template-columns: 1fr; }
    .sob-medida-card { grid-template-columns: 1fr; }
    /* Serviços: menos ruído visual */
    .servico-card .card-badge { display: none !important; }
    .servico-card .premium-badges { display: none !important; }
    .servico-card .price-value { font-size: 2rem; }
}


/* ========= MOBILE RESPONSIVE ENHANCEMENTS ========= */
@media (max-width: 768px) {
    /* Mostrar menu hambúrguer e preparar navegação */
    .nav-mobile { display: flex; }
    .nav-container { height: 64px; padding: 0 16px; }
    .nav-links { gap: 1.25rem; }

    /* Hero: 1 coluna e espaçamentos */
    .hero-premium { padding-top: 64px; }
    .hero-container { grid-template-columns: 1fr; gap: 2rem; }
    .hero-content { text-align: left; max-width: 100%; }
    .hero-visual-top { order: -1; }

    /* Título dinâmico pode quebrar linha em mobile */
    .title-dynamic { white-space: normal; max-width: 100%; }

    /* Subtítulo mais legível em telas pequenas */
    .hero-subtitle { font-size: 1.05rem; margin-bottom: 1.75rem; }

    /* Foto e círculo animado responsivos */
    .profile-image { width: clamp(160px, 45vw, 240px); height: clamp(160px, 45vw, 240px); }
    .animated-circle { width: calc(clamp(160px, 45vw, 240px) + 30px); height: calc(clamp(160px, 45vw, 240px) + 30px); top: -12px; left: -12px; }

    /* Badges flutuantes: reduzir impacto visual e evitar overflow */
    .floating-badge { transform: scale(0.85); min-width: 96px; padding: 8px 10px; }
    .floating-badge.badge-1 { top: -40px; left: -40px; }
    .floating-badge.badge-2 { top: 40px; right: -50px; }
    .floating-badge.badge-3 { bottom: -35px; left: -35px; }
    .floating-badge.badge-4 { bottom: -40px; right: -40px; }
}

@media (max-width: 480px) {
    /* Tipografia mais compacta */
    .hero-title { font-size: clamp(2rem, 7vw, 2.6rem); }
    .hero-subtitle { font-size: 1rem; }

    /* Badges flutuantes: ocultar para foco no conteúdo */
    .floating-badge.badge-1,
    .floating-badge.badge-2,
    .floating-badge.badge-3 { display: none; }
    .floating-badge.badge-4 { right: auto; left: 50%; transform: translateX(-50%) scale(0.9); bottom: -28px; }

    /* Ajustes do botão WhatsApp flutuante para não cobrir CTAs */
    .whatsapp-float { bottom: 18px; right: 18px; width: 52px; height: 52px; }
}
.garantia-box {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: var(--card-radius);
    padding: 2rem;
    max-width: 500px;
    margin: 0 auto;
}

.garantia-box h4 {
    color: var(--success);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.garantia-box p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.garantia-box strong {
    color: var(--text-primary);
}

/* Sections */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.title-accent {
    color: var(--brand-accent);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Resultados Section */
.resultados-section {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

.resultados-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.resultado-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--card-radius);
    padding: 2rem;
    backdrop-filter: var(--glass-backdrop);
    transition: var(--transition);
}

.resultado-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.resultado-card .card-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.resultado-card .card-icon.success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
}

.resultado-card .card-icon.primary {
    background: rgba(37, 99, 235, 0.1);
    color: var(--brand-primary);
}

.resultado-card .card-icon.warning {
    background: rgba(245, 158, 11, 0.1);
    color: var(--warning);
}

.resultado-card .card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.resultado-card .card-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.card-metric {
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 1.1rem;
    font-family: var(--font-mono);
}

/* CTA Final */
.cta-final {
    padding: var(--section-padding);
    background: var(--bg-primary);
    text-align: center;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.1rem;
}

.cta-guarantee {
    opacity: 0.8;
}

.cta-guarantee p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Footer */
.footer-premium {
    background: var(--bg-secondary);
    padding: 2rem 0;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.footer-copy p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .profile-image {
        width: 250px;
        height: 250px;
    }
    
    .animated-circle {
        width: 280px;
        height: 280px;
        top: -10px;
        left: -10px;
    }
    
    .problema-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-mobile {
        display: flex;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-content {
        text-align: center;
        order: 2;
    }
    
    .hero-visual-top {
        order: 1;
        margin-bottom: 20px;
    }
    
    .hero-title { flex-direction: column; align-items: center; gap: 0.1em; }
    .title-dynamic { min-width: auto; width: 100%; white-space: normal; }
    .title-highlight { white-space: normal; word-break: break-word; }
    
    .profile-image {
        width: 200px;
        height: 200px;
    }
    
    .animated-circle {
        width: 230px;
        height: 230px;
        top: -10px;
        left: -10px;
    }
    
    .floating-badge {
        position: relative;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        margin: 0.5rem;
        min-width: 100px;
        animation: none;
    }
    
    .hero-image {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .floating-badge.badge-1,
    .floating-badge.badge-2,
    .floating-badge.badge-3,
    .floating-badge.badge-4 {
        position: relative;
        display: inline-block;
        margin: 0.5rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .problema-side,
    .solucao-side {
        padding: 1.5rem;
    }
    
    .problema-title,
    .solucao-title {
        font-size: 1.5rem;
    }
    
    .precos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .card-premium {
        transform: none;
    }
    
    .card-premium:hover {
        transform: translateY(-5px);
    }
    
    .precos-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-visual-top {
        margin-bottom: 30px;
    }
    
    .profile-image {
        width: 180px;
        height: 180px;
    }
    
    .animated-circle {
        width: 210px;
        height: 210px;
        top: -10px;
        left: -10px;
    }
    
    .floating-badge {
        display: inline-flex;
        flex-direction: column;
        margin: 0.3rem;
        padding: 8px 12px;
        min-width: 90px;
        font-size: 0.8rem;
    }
    
    .badge-number {
        font-size: 0.9rem;
    }
    
    .badge-text {
        font-size: 9px;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .problema-item,
    .solucao-item {
        flex-direction: row;
        text-align: left;
    }
    
    .problema-icon,
    .solucao-icon {
        font-size: 1.2rem;
    }
    
    .preco-card {
        padding: 2rem;
    }
    
    .preco-numero {
        font-size: 2.5rem;
    }
    
    .garantia-box {
        padding: 1.5rem;
    }
    
    /* Grid de Preços Mobile */
    .precos-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .card-empresarial,
    .card-customizado {
        transform: none;
        z-index: auto;
    }
}

/* Tablet - Cards Premium Exclusivos */
@media (min-width: 769px) and (max-width: 1200px) {
    .precos-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .card-empresarial,
    .card-customizado {
        transform: scale(1.02);
        z-index: 2;
    }
}

/* === Portfolio Section === */
.portfolio-section {
    padding: 80px 0;
    background: #1a1a2e;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.project-card {
    background: rgba(34, 38, 49, 0.65);
    backdrop-filter: blur(18px) saturate(1.2);
    -webkit-backdrop-filter: blur(18px) saturate(1.2);
    border-radius: 1.2rem;
    border: 2px solid #00c6fb;
    padding: 2rem;
    color: #f3f6fa;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.project-card:hover {
    transform: translateY(-8px) scale(1.025);
    box-shadow: 0 12px 40px rgba(0, 196, 251, 0.15);
    border-color: #3a7bd5;
}

.project-image {
    width: 100%;
    height: 200px;
    border-radius: 0.8rem;
    object-fit: cover;
    margin-bottom: 1.5rem;
}

.project-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #00c6fb;
    margin-bottom: 1rem;
}

.project-description {
    color: #b6c2d1;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.project-tag {
    background: linear-gradient(90deg, #ffb300 0%, #ff6a00 100%);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 1rem;
    font-size: 0.85rem;
    font-weight: 500;
}

/* === Metodologia Section === */
.metodologia-section {
    padding: 80px 0;
    background: rgba(26, 26, 46, 0.9);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pillar-card {
    background: rgba(34, 38, 49, 0.65);
    backdrop-filter: blur(18px) saturate(1.2);
    -webkit-backdrop-filter: blur(18px) saturate(1.2);
    padding: 2.5rem 2rem;
    border-radius: 1.2rem;
    border: 2px solid #3a7bd5;
    color: #f3f6fa;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.pillar-card:hover {
    transform: translateY(-8px) scale(1.025);
    box-shadow: 0 12px 40px rgba(58, 123, 213, 0.15);
    border-color: #00c6fb;
}

.pillar-icon {
    font-size: 2.5rem;
    color: #00c6fb;
    margin-bottom: 1.5rem;
}

.pillar-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #00c6fb;
    margin-bottom: 1rem;
}

.pillar-description {
    color: #b6c2d1;
    line-height: 1.6;
}

.warning-text {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 179, 0, 0.1);
    border: 2px solid #ffb300;
    border-radius: 1rem;
    text-align: center;
}

.warning-text p {
    color: #ffb300;
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.6;
    font-weight: 600;
}

/* === Depoimentos Section === */
.depoimentos-section {
    padding: 80px 0;
    background: #1a1a2e;
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.depoimento-card {
    background: rgba(34, 38, 49, 0.65);
    backdrop-filter: blur(18px) saturate(1.2);
    -webkit-backdrop-filter: blur(18px) saturate(1.2);
    padding: 2rem;
    border-radius: 1.2rem;
    border: 2px solid #3a7bd5;
    color: #f3f6fa;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.depoimento-card:hover {
    transform: translateY(-5px) scale(1.015);
    box-shadow: 0 12px 40px rgba(58, 123, 213, 0.15);
    border-color: #00c6fb;
}

.depoimento-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.cliente-foto {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
    border: 2px solid #00c6fb;
}

.cliente-nome {
    font-size: 1.2rem;
    font-weight: 700;
    color: #00c6fb;
    margin: 0;
}

.cliente-cargo {
    color: #b6c2d1;
    font-size: 0.9rem;
    margin: 0.2rem 0 0 0;
}

.stars {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #ffb300;
}

.depoimento-texto {
    color: #e6e6e6;
    line-height: 1.6;
    font-style: italic;
    margin: 0;
}

/* === Quem Sou Eu Section === */
.quem-sou-section {
    padding: 80px 0;
    background: rgba(26, 26, 46, 0.9);
}

.quem-sou-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.quem-sou-image {
    text-align: center;
}

.raylander-foto {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #00c6fb;
    box-shadow: 0 8px 30px rgba(0, 196, 251, 0.2);
}

.raylander-nome {
    font-size: 2.2rem;
    font-weight: 700;
    color: #00c6fb;
    margin-bottom: 0.5rem;
}

.raylander-cargo {
    font-size: 1.2rem;
    color: #ffb300;
    margin-bottom: 2rem;
    font-weight: 600;
}

.raylander-bio p {
    color: #b6c2d1;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.raylander-skills {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.skill-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: rgba(34, 38, 49, 0.65);
    backdrop-filter: blur(18px) saturate(1.2);
    -webkit-backdrop-filter: blur(18px) saturate(1.2);
    border: 1px solid #3a7bd5;
    border-radius: 0.8rem;
    color: #f3f6fa;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.skill-icon {
    font-size: 1.2rem;
    color: #ffb300;
}

.raylander-numbers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.number-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(34, 38, 49, 0.65);
    backdrop-filter: blur(18px) saturate(1.2);
    -webkit-backdrop-filter: blur(18px) saturate(1.2);
    border: 2px solid #3a7bd5;
    border-radius: 1rem;
    color: #f3f6fa;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.number-value {
    font-size: 1.4rem; /* Menor para acomodar texto */
    font-weight: 700;
    color: #00c6fb;
    line-height: 1.2;
    text-align: center;
}

.number-label {
    font-size: 0.9rem;
    color: #b6c2d1;
    margin-top: 0.5rem;
}

/* === Serviços Section === */
.servicos-section {
    padding: 80px 0;
    background: #1a1a2e;
}

@media (max-width: 768px) {
    .servicos-section { padding: 48px 0; }
    .servicos-section .section-header { margin-bottom: 24px; }
    .servicos-section .section-title { font-size: 1.6rem; }
    .servicos-section .section-subtitle { font-size: 0.95rem; }
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.servico-card {
    background: rgba(34, 38, 49, 0.65);
    backdrop-filter: blur(18px) saturate(1.2);
    -webkit-backdrop-filter: blur(18px) saturate(1.2);
    padding: 2.5rem 2rem;
    border-radius: 1.2rem;
    border: 2px solid #3a7bd5;
    color: #f3f6fa;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.servico-card:hover {
    transform: translateY(-8px) scale(1.025);
    box-shadow: 0 12px 40px rgba(58, 123, 213, 0.15);
    border-color: #00c6fb;
}

.servico-icon {
    font-size: 3rem;
    color: #00c6fb;
    margin-bottom: 1.5rem;
}

.servico-titulo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #00c6fb;
    margin-bottom: 1rem;
}

.servico-descricao {
    color: #b6c2d1;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.servico-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.servico-features li {
    color: #e6e6e6;
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.servico-features li:before {
    content: "✓";
    color: #ffb300;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.servico-preco {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffb300;
    background: rgba(255, 179, 0, 0.1);
    padding: 0.8rem;
    border-radius: 0.5rem;
    margin-top: 1.5rem;
    border: 1px solid #ffb300;
}

/* === FAQ Section === */
.faq-section {
    padding: 80px 0;
    background: rgba(26, 26, 46, 0.9);
}

.faq-container {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background: rgba(34, 38, 49, 0.65);
    backdrop-filter: blur(18px) saturate(1.2);
    -webkit-backdrop-filter: blur(18px) saturate(1.2);
    border: 2px solid #3a7bd5;
    border-radius: 1rem;
    margin-bottom: 1rem;
    color: #f3f6fa;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item:hover {
    border-color: #00c6fb;
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(0, 198, 251, 0.05);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #00c6fb;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffb300;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 2rem 1.5rem;
}

.faq-answer p {
    color: #b6c2d1;
    line-height: 1.6;
    margin: 0;
}

/* === New Servicos Section Styles === */
.servico-card.featured {
    position: relative;
    border-color: #ffb300;
    box-shadow: 0 4px 20px rgba(255, 179, 0, 0.15);
}

.servico-card.featured .card-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #ffb300 0%, #ff6a00 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(255, 179, 0, 0.3);
}

.servico-pricing {
    margin: 20px 0;
    text-align: left !important;
    border-left: 4px solid var(--accent-color);
    padding-left: 15px;
}

.price-option {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    text-align: left;
    flex: none;
}

.price-option:hover {
    border: none;
    background: transparent;
}

.price-option.premium {
    border: none;
    background: transparent;
}

.price-option.premium:hover {
    border: none;
    background: transparent;
}

.price-label {
    display: none;
}

.price-value {
    display: block;
    font-size: 3em;
    color: var(--accent-color);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 5px;
}

.price-option.premium .price-value {
    color: var(--accent-color);
}

.price-installment {
    display: block;
    font-size: 1rem;
    color: #666;
    margin-top: 5px;
}

/* Features com alinhamento à esquerda */
.servico-features {
    text-align: left !important;
    list-style: none;
    padding-left: 20px;
    margin: 20px 0;
}

.servico-features li {
    text-align: left !important;
    padding: 6px 0;
    position: relative;
    border-bottom: 1px dotted rgba(204, 204, 204, 0.3);
}

.servico-features li:before {
    content: "✓";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: -20px;
}

.bonus-item:before {
    content: "🎁";
    left: -25px;
}

.bonus-item {
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.1), rgba(255, 140, 0, 0.1));
    border-radius: 5px;
    padding: 8px;
    margin: 8px 0;
    font-weight: 600;
}

/* Botões discretos dos serviços */
.btn-servico-discrete {
    display: inline-block;
    padding: 12px 24px;
    background: transparent;
    border: 2px solid rgba(44, 115, 210, 0.3);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 500;
    margin-top: 20px;
    cursor: pointer;
}

.btn-servico-discrete:hover {
    border-color: var(--primary-color);
    background: rgba(44, 115, 210, 0.05);
    transform: translateY(-2px);
}

.btn-servico-discrete.featured {
    border-color: rgba(255, 165, 0, 0.5);
    color: var(--accent-color);
}

.btn-servico-discrete.featured:hover {
    border-color: var(--accent-color);
    background: rgba(255, 165, 0, 0.05);
}

/* Destaque do suporte */
.suporte-destaque {
    margin: 40px auto;
    text-align: center;
    max-width: 600px;
}

.suporte-box {
    background: linear-gradient(135deg, rgba(34, 139, 34, 0.1), rgba(46, 125, 50, 0.15));
    border: 2px solid rgba(34, 139, 34, 0.3);
    border-radius: 15px;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    box-shadow: 0 8px 32px rgba(34, 139, 34, 0.1);
}

.suporte-icon {
    font-size: 2em;
    opacity: 0.8;
}

.suporte-content p {
    margin: 0;
    font-size: 1rem;
    color: #228b22;
    font-weight: 600;
}

.servicos-extras {
    margin-top: 4rem;
    text-align: center;
}

.extras-title {
    font-size: 1.8rem;
    color: #00c6fb;
    margin-bottom: 2rem;
    font-weight: 700;
}

.extras-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.extra-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    padding: 1.5rem;
    background: rgba(34, 38, 49, 0.65);
    backdrop-filter: blur(18px) saturate(1.2);
    -webkit-backdrop-filter: blur(18px) saturate(1.2);
    border: 1px solid #3a7bd5;
    border-radius: 1rem;
    color: #f3f6fa;
    transition: all 0.3s ease;
}

.extra-item:hover {
    border-color: #00c6fb;
    transform: translateY(-5px);
}

.extra-item i {
    font-size: 2rem;
    color: #ffb300;
}

.garantia-section {
    margin-top: 3rem;
}

.garantia-section .garantia-box {
    background: rgba(255, 179, 0, 0.1);
    border: 2px solid #ffb300;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
}

.garantia-section .garantia-box h4 {
    color: #ffb300;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.garantia-section .garantia-box p {
    color: #e6e6e6;
    line-height: 1.6;
    margin: 0;
}

/* === Section Headers Styling === */
.section-header .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #00c6fb;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.section-header .section-subtitle {
    font-size: 1.2rem;
    color: #b6c2d1;
    margin-bottom: 0;
    font-weight: 500;
}

/* Estilo específico para seções com fundo escuro */
.portfolio-section .section-title,
.depoimentos-section .section-title,
.servicos-section .section-title {
    color: #00c6fb;
}

.portfolio-section .section-subtitle,
.depoimentos-section .section-subtitle,
.servicos-section .section-subtitle {
    color: #b6c2d1;
}

/* Estilo específico para seções com fundo alternativo */
.metodologia-section .section-title,
.quem-sou-section .section-title,
.faq-section .section-title {
    color: #00c6fb;
}

.metodologia-section .section-subtitle,
.quem-sou-section .section-subtitle,
.faq-section .section-subtitle {
    color: #b6c2d1;
}
@media (max-width: 992px) {
    .portfolio-grid,
    .pillars-grid,
    .depoimentos-grid,
    .servicos-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
    
    .quem-sou-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .raylander-skills {
        justify-content: center;
    }
    
    .extras-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .servico-pricing {
        flex-direction: column;
        gap: 0.8rem;
    }
}

@media (max-width: 768px) {
    .portfolio-grid,
    .pillars-grid,
    .depoimentos-grid,
    .servicos-grid {
        grid-template-columns: 1fr;
    }
    
    .raylander-foto {
        width: 200px;
        height: 200px;
    }
    
    .raylander-skills {
        grid-template-columns: 1fr;
    }
    
    .raylander-numbers {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .faq-question {
        padding: 1rem 1.5rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1rem;
    }
    
    .extras-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .extras-title {
        font-size: 1.5rem;
    }
    
    .pillar-card,
    .servico-card,
    .depoimento-card,
    .project-card {
        padding: 1.5rem;
    }
}

/* ==========================================
   CTA PREMIUM SECTION - REFINADO E PREMIUM
   ========================================== */

.cta-premium-section {
    position: relative;
    background: linear-gradient(135deg, 
        #0f1419 0%,
        #1a1f2e 20%,
        #16213e 40%,
        #1a1f2e 60%,
        #0f1419 100%
    );
    padding: 120px 0 0 0;
    overflow: hidden;
    min-height: 100vh;
}

.cta-premium-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 198, 251, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 179, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(58, 123, 213, 0.05) 0%, transparent 50%);
    animation: backgroundPulse 10s ease-in-out infinite;
}

.cta-premium-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #00c6fb 20%, 
        #ffb300 40%, 
        #3a7bd5 60%, 
        #00c6fb 80%, 
        transparent 100%
    );
    animation: topBorder 3s ease-in-out infinite;
}

@keyframes backgroundPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

@keyframes topBorder {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

/* Particles Background */
.particles-container-cta {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.6;
}

.floating-elements-cta {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.floating-particle {
    position: absolute;
    border-radius: 50%;
    animation: floatingParticles 8s linear infinite;
}

.particle-1 {
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, #00c6fb, #3a7bd5);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    filter: blur(0.5px);
}

.particle-2 {
    width: 4px;
    height: 4px;
    background: linear-gradient(135deg, #ffb300, #ff8c42);
    top: 40%;
    right: 15%;
    animation-delay: 2s;
}

.particle-3 {
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #3a7bd5, #00c6fb);
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
    filter: blur(1px);
}

.particle-4 {
    width: 3px;
    height: 3px;
    background: linear-gradient(135deg, #ffb300, #00c6fb);
    top: 60%;
    right: 25%;
    animation-delay: 1s;
}

.particle-5 {
    width: 5px;
    height: 5px;
    background: linear-gradient(135deg, #00c6fb, #ffb300);
    bottom: 60%;
    right: 10%;
    animation-delay: 3s;
}

.particle-6 {
    width: 7px;
    height: 7px;
    background: linear-gradient(135deg, #3a7bd5, #ffb300);
    top: 80%;
    left: 50%;
    animation-delay: 5s;
    filter: blur(0.8px);
}

@keyframes floatingParticles {
    0% {
        transform: translateY(0px) translateX(0px) scale(1) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    25% {
        transform: translateY(-20px) translateX(10px) scale(1.2) rotate(90deg);
    }
    50% {
        transform: translateY(-40px) translateX(-15px) scale(0.8) rotate(180deg);
        opacity: 0.8;
    }
    75% {
        transform: translateY(-60px) translateX(25px) scale(1.5) rotate(270deg);
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100px) translateX(0px) scale(0.5) rotate(360deg);
        opacity: 0;
    }
}

/* CTA Content */
.cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 60px;
    position: relative;
    z-index: 10;
    padding: 0 2rem;
}

.cta-text {
    max-width: 800px;
}

.cta-title {
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    font-weight: 900;
    margin-bottom: 24px;
    line-height: 1.2;
    background: linear-gradient(135deg, 
        #ffffff 0%, 
        #e5e7eb 30%, 
        #ffffff 60%, 
        #f3f4f6 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

.cta-highlight {
    background: linear-gradient(135deg, 
        #00c6fb 0%, 
        #3a7bd5 25%, 
        #ffb300 50%, 
        #00c6fb 75%, 
        #3a7bd5 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 300% 300%;
    animation: gradientShift 4s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(0, 198, 251, 0.3));
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.cta-description {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #d1d5db;
    font-weight: 400;
}

.cta-no-pressure {
    font-size: 1.1rem;
    color: #a3e635;
    font-weight: 500;
    margin-top: 15px;
    opacity: 0.9;
    font-style: italic;
}

/* Professional Card */
.professional-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    max-width: 600px;
    width: 100%;
}

.professional-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, 
        rgba(0, 198, 251, 0.3) 0%, 
        rgba(58, 123, 213, 0.3) 25%, 
        rgba(255, 179, 0, 0.3) 50%, 
        rgba(0, 198, 251, 0.3) 75%, 
        rgba(58, 123, 213, 0.3) 100%
    );
    background-size: 300% 300%;
    animation: gradientShift 6s ease-in-out infinite;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: xor;
    -webkit-mask-composite: xor;
}

.card-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(circle, 
        rgba(0, 198, 251, 0.1) 0%, 
        transparent 70%
    );
    border-radius: 30px;
    z-index: -1;
    animation: cardGlow 3s ease-in-out infinite;
}

@keyframes cardGlow {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.05); }
}

.professional-name {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 24px;
    color: #ffffff;
    text-align: center;
}

.professional-details {
    display: grid;
    gap: 16px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
}

.detail-icon {
    font-size: 1.2rem;
    width: 28px;
    text-align: center;
}

.detail-item span {
    color: #e5e7eb;
    font-size: 1.1rem;
}

.detail-item strong {
    color: #ffffff;
    font-weight: 600;
}

/* MEGA CTA BUTTON */
.mega-cta-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

/* Shimmer Effects */
.shimmer-effect {
    position: absolute;
    width: 4px;
    height: 200px;
    background: linear-gradient(0deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.8) 50%, 
        transparent 100%
    );
    border-radius: 2px;
    animation: shimmerMove 3s ease-in-out infinite;
}

.shimmer-1 {
    left: 20%;
    animation-delay: 0s;
}

.shimmer-2 {
    right: 20%;
    animation-delay: 1s;
}

.shimmer-3 {
    left: 50%;
    animation-delay: 2s;
}

@keyframes shimmerMove {
    0%, 100% {
        transform: translateY(-50px) scaleY(0);
        opacity: 0;
    }
    50% {
        transform: translateY(0) scaleY(1);
        opacity: 1;
    }
}

/* Main CTA Button */
.mega-cta-button {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, 
        #25D366 0%, 
        #128C7E 50%, 
        #25D366 100%
    );
    background-size: 300% 300%;
    color: #ffffff;
    padding: 24px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    min-width: 320px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: gradientShift 4s ease-in-out infinite;
    box-shadow: 
        0 10px 30px rgba(37, 211, 102, 0.3),
        0 20px 60px rgba(37, 211, 102, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    z-index: 5;
}

.button-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        transparent 50%, 
        rgba(255, 255, 255, 0.1) 100%
    );
    border-radius: 50px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.button-shine {
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    height: 50%;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.3) 0%, 
        rgba(255, 255, 255, 0.1) 50%, 
        transparent 100%
    );
    border-radius: 50px 50px 100px 100px;
}

.button-content {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 2;
}

.button-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.button-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.button-main-text {
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1;
}

.button-sub-text {
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0.9;
    margin-top: 2px;
}

.mega-cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 15px 40px rgba(37, 211, 102, 0.4),
        0 25px 80px rgba(37, 211, 102, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.mega-cta-button:hover .button-bg {
    opacity: 1;
}

.mega-cta-button:hover .button-icon {
    transform: scale(1.2) rotate(10deg);
}

.mega-cta-button:active {
    transform: translateY(-2px) scale(1.02);
}

/* Integrated Footer */
.integrated-footer {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 0;
    margin-top: 80px;
    position: relative;
    z-index: 5;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
}

.footer-links {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 198, 251, 0.1) 0%, 
        rgba(58, 123, 213, 0.1) 100%
    );
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.footer-links a:hover::before {
    opacity: 1;
}

.footer-info {
    color: #9ca3af;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-info p {
    margin: 8px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cta-premium-section {
        padding: 80px 0 0 0;
    }
    
    .cta-content {
        gap: 40px;
        padding: 0 1rem;
    }
    
    .cta-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .cta-description {
        font-size: 1.1rem;
    }
    
    .professional-card {
        padding: 30px;
        margin: 0 1rem;
    }
    
    .professional-name {
        font-size: 1.6rem;
    }
    
    .mega-cta-button {
        flex-direction: column;
        gap: 12px;
        padding: 20px 30px;
        text-align: center;
        min-width: 280px;
    }
    
    .button-content {
        flex-direction: column;
        gap: 12px;
    }
    
    .button-text {
        align-items: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 16px;
    }
    
    .mega-cta-container {
        padding: 20px;
    }
}

/* === Responsividade dos Serviços === */
@media (max-width: 768px) {
    .suporte-box {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px;
    }
    
    .price-value {
        font-size: 2.2em;
    }
    
    .servico-features {
        padding-left: 15px;
    }
    
    .servico-features li:before {
        left: -15px;
    }
    
    .bonus-item:before {
        left: -20px;
    }
    
    .servico-pricing {
        padding-left: 10px;
    }
    
    .floating-badge.badge-4 {
        border-radius: 25px;
        font-size: 0.8rem;
        padding: 6px 12px;
        min-width: 100px;
    }
    
    .floating-badge.badge-4 .badge-text {
        font-size: 0.8rem;
    }
}

/* ===========================================
   MOBILE OTIMIZADO - VERSÃO COMPACTA
   =========================================== */

/* Botão Ver Preços - oculto no desktop */
.mobile-cta-secondary {
    display: none;
}

/* Quebra de objeção mobile - oculta no desktop */
.mobile-objection-breaker {
    display: none;
}

.objection-point {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0;
    font-size: 0.9rem;
    color: #e2e8f0;
}

.objection-icon {
    font-size: 1.2rem;
    min-width: 24px;
}

.objection-text {
    line-height: 1.4;
}

.btn-precos-mobile {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #FF6B35 0%, #F97316 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-precos-mobile:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn-arrow {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

/* Mobile: Layout Compacto */
@media (max-width: 768px) {
    /* Hero container mais compacto */
    .hero-container {
        gap: 1.5rem;
        padding: 20px 0;
    }
    
    /* Foto menor no mobile */
    .profile-image {
        width: 160px !important;
        height: 160px !important;
    }
    
    /* Hero image container menor */
    .hero-image {
        width: 160px;
        height: 160px;
        position: relative;
    }
    
    /* Badges reorganizados - laterais da foto */
    .floating-badge.badge-1 {
        top: 20px;
        left: -60px;
        animation-delay: 0s;
    }
    
    .floating-badge.badge-2 {
        top: 50%;
        right: -60px;
        transform: translateY(-50%);
        animation-delay: 1s;
    }
    
    .floating-badge.badge-3 {
        bottom: 20px;
        left: -60px;
        animation-delay: 2s;
    }
    
    .floating-badge.badge-4 {
        bottom: -10px;
        right: -40px;
        animation-delay: 3s;
    }
    
    /* Badges menores no mobile */
    .floating-badge {
        padding: 8px 12px !important;
        font-size: 0.75rem !important;
        min-width: 100px;
        max-width: 120px;
    }
    
    .floating-badge .badge-number {
        font-size: 1rem;
    }
    
    .floating-badge .badge-text {
        font-size: 0.7rem !important;
        line-height: 1.2;
    }
    
    /* Mostra botão Ver Preços no mobile */
    .mobile-cta-secondary {
        display: block;
        margin-top: 20px;
        text-align: center;
    }
    
    /* Mostra quebra de objeção no mobile */
    .mobile-objection-breaker {
        display: block;
        margin: 20px 0;
        padding: 15px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 12px;
        border-left: 3px solid #FF6B35;
    }
    
    /* Ajusta o espaço do hero visual */
    .hero-visual-top {
        margin-bottom: 30px;
        position: relative;
        z-index: 10;
    }
    
    /* Texto hero mais compacto */
    .hero-title {
        font-size: 1.8rem !important;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
        margin-bottom: 20px;
        line-height: 1.5;
    }
    
    /* CTA box mais compacto */
    .quick-cta-box {
        padding: 20px !important;
        margin-bottom: 15px;
    }
    
    .quick-cta-title {
        font-size: 1.1rem !important;
    }
    
    .quick-cta-sub {
        font-size: 0.85rem !important;
    }
    
    /* Badges de confiança mais compactos */
    .quick-cta-badges {
        gap: 8px !important;
        margin-bottom: 0;
    }
    
    .quick-cta-badge {
        font-size: 0.75rem !important;
        padding: 6px 12px !important;
    }
}

/* Mobile pequeno - ainda mais compacto */
@media (max-width: 480px) {
    .profile-image {
        width: 140px !important;
        height: 140px !important;
    }
    
    .hero-image {
        width: 140px;
        height: 140px;
    }
    
    /* Badges ainda mais próximos */
    .floating-badge.badge-1 {
        left: -50px;
        top: 15px;
    }
    
    .floating-badge.badge-2 {
        right: -50px;
    }
    
    .floating-badge.badge-3 {
        left: -50px;
        bottom: 15px;
    }
    
    .floating-badge.badge-4 {
        right: -35px;
    }
    
    .floating-badge {
        padding: 6px 10px !important;
        font-size: 0.7rem !important;
        min-width: 90px;
        max-width: 110px;
    }
    
    .hero-title {
        font-size: 1.6rem !important;
    }
}

/* ===========================================
   MOBILE CONVERSION OVERRIDES (<=768px)
   Prioriza clareza e lead no WhatsApp
   =========================================== */
@media (max-width: 768px) {
    /* Remove elementos distrativos */
    .animated-circle { display: none !important; }
    .floating-badge { display: none !important; }

    /* Hierarquia mais enxuta */
    .hero-container { gap: 1rem !important; }
    .hero-title { font-size: clamp(1.7rem, 6.5vw, 2.1rem) !important; margin-bottom: 8px !important; }
    .hero-subtitle { font-size: 0.98rem !important; margin-bottom: 12px !important; line-height: 1.5 !important; }
    .quick-cta-box { padding: 12px 14px !important; }
    .quick-cta-badges { gap: 6px !important; }
    .quick-cta-badge { font-size: 0.72rem !important; padding: 6px 10px !important; }

    /* Foco em um único CTA: WhatsApp */
    .mobile-cta-secondary { display: none !important; }

    /* Evita redundância: esconde a bolinha do WhatsApp no mobile */
    .whatsapp-float { display: none !important; }
}

/* ===========================================
   WHATSAPP BOTTOM BAR (Mobile)
   =========================================== */
.whatsapp-bottom-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 25, 47, 0.9);
    border-top: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 9997;
    display: none;
}

.whatsapp-bottom-bar .bar-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.whatsapp-bottom-bar .bar-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.whatsapp-bottom-bar .bar-title {
    color: #e5f4ed;
    font-weight: 800;
    font-size: 0.95rem;
    line-height: 1.1;
}

.whatsapp-bottom-bar .bar-sub {
    color: #9fb3c8;
    font-size: 0.8rem;
}

.whatsapp-bottom-bar .bar-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: #0b2313 !important;
    padding: 10px 16px;
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(37,211,102,0.25);
}

.whatsapp-bottom-bar .bar-cta img { width: 18px; height: 18px; object-fit: contain; }

@media (max-width: 768px) {
    .whatsapp-bottom-bar { display: block; }
    body { padding-bottom: 64px; }
}