/* ========================================
   Vivo Empresas - Premium Design 2025
   Design Magnífico em Roxo Escuro
   ======================================== */

/* Google Fonts - Fontes Premium Diferenciadas */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Manrope:wght@200..800&display=swap');

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

:root {
    /* Paleta Principal - Roxo Vivo Premium */
    --cor-primaria: #1A0A2E;
    --cor-secundaria: #2D1B4E;
    --cor-terciaria: #660099;
    --cor-destaque: #8B5CF6;
    --cor-accent: #A855F7;
    --cor-accent-light: #C084FC;
    --cor-accent-dark: #5B21B6;
    --cor-whatsapp: #25D366;
    --cor-whatsapp-dark: #128C7E;
    
    /* Tons de Roxo Extras */
    --roxo-profundo: #0F051A;
    --roxo-escuro: #1A0A2E;
    --roxo-medio: #3D1A5C;
    --roxo-vibrante: #7C3AED;
    --roxo-Vivo: #A78BFA;
    --roxo-suave: #DDD6FE;
    --roxo-glow: rgba(139, 92, 246, 0.5);
    
    /* Tons de Cinza com Roxo */
    --cor-texto-Vivo: #FAF5FF;
    --cor-texto: #6B7280;
    --cor-texto-escuro: #1F2937;
    
    /* Backgrounds */
    --bg-light: #FAFAFA;
    --bg-card: #FFFFFF;
    --bg-dark: linear-gradient(135deg, #0F051A 0%, #1A0A2E 50%, #2D1B4E 100%);
    --bg-gradient-hero: linear-gradient(135deg, #0F051A 0%, #1A0A2E 30%, #2D1B4E 60%, #3D1A5C 100%);
    --bg-gradient-section: linear-gradient(180deg, #1A0A2E 0%, #2D1B4E 100%);
    --bg-glass: rgba(139, 92, 246, 0.1);
    --bg-glass-dark: rgba(26, 10, 46, 0.95);
    
    /* Fontes */
    --fonte-principal: 'Sora', sans-serif;
    --fonte-display: 'Plus Jakarta Sans', sans-serif;
    --fonte-corpo: 'Manrope', sans-serif;
    
    /* Efeitos */
    --transicao: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transicao-rapida: all 0.2s ease;
    --sombra-suave: 0 4px 20px rgba(139, 92, 246, 0.08);
    --sombra-media: 0 8px 30px rgba(139, 92, 246, 0.12);
    --sombra-forte: 0 20px 60px rgba(26, 10, 46, 0.4);
    --sombra-glow: 0 0 40px rgba(139, 92, 246, 0.3);
    --sombra-glow-intense: 0 0 60px rgba(139, 92, 246, 0.5);
    --sombra-accent: 0 8px 32px rgba(168, 85, 247, 0.35);
    
    /* Bordas */
    --borda-radius-sm: 8px;
    --borda-radius: 16px;
    --borda-radius-lg: 24px;
    --borda-radius-xl: 32px;
    --borda-radius-full: 9999px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--fonte-corpo);
    font-size: 1rem;
    color: var(--cor-texto-escuro);
    line-height: 1.7;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    background: var(--bg-light);
}

.container {
    width: 92%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transicao);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    transition: var(--transicao);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--fonte-display);
    color: var(--cor-texto-escuro);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 1.25rem;
}

h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    margin-bottom: 0.75rem;
}

p {
    font-family: var(--fonte-corpo);
    line-height: 1.8;
}

/* ========================================
   Header - Glassmorphism Roxo Premium
   ======================================== */

#main-header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1.25rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(139, 92, 246, 0.15);
    box-shadow: 0 4px 30px rgba(26, 10, 46, 0.08);
    transition: var(--transicao);
}

#main-header.scrolled {
    padding: 0.75rem 0;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 30px rgba(139, 92, 246, 0.15);
}

#main-header .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-container {
    max-width: 200px;
    transition: var(--transicao);
}

.logo-container:hover {
    transform: scale(1.05);
}

#logo {
    width: 100%;
    height: auto;
    filter: brightness(1.1);
    display: block;
}

/* Navegação principal - OCULTA */
.main-nav,
#main-nav,
.desktop-nav {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

#main-nav ul {
    display: none !important;
}

#main-nav a {
    display: none !important;
}

.btn-call {
    background: linear-gradient(135deg, var(--roxo-escuro) 0%, var(--roxo-vibrante) 100%);
    padding: 0.75rem 1.5rem !important;
    border-radius: var(--borda-radius-full);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff !important;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.35);
    animation: pulse-glow 2s infinite;
}

.btn-call:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.5);
}

.btn-call::before {
    display: none;
}

/* Mobile Menu - OCULTO */
.mobile-menu-toggle {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

.mobile-menu {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

.mobile-menu ul {
    display: none !important;
}

.mobile-menu li {
    display: none !important;
}

.mobile-menu a {
    display: none !important;
}

/* ========================================
   Hero Section - Roxo Majestoso
   ======================================== */

.hero-section {
    background: var(--bg-gradient-hero);
    color: var(--cor-texto-Vivo);
    padding: 10rem 0 6rem;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    margin-top: 0;
}

/* Ajuste quando há header fixo */
body:has(#main-header) .hero-section {
    margin-top: 80px; /* altura do header */
    padding-top: 8rem;
}

/* Efeito de partículas luminosas */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 100% 80% at 50% -30%, rgba(139, 92, 246, 0.4) 0%, transparent 60%),
        radial-gradient(ellipse 80% 60% at 90% 70%, rgba(168, 85, 247, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse 60% 50% at 10% 80%, rgba(124, 58, 237, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 20% 30%, rgba(192, 132, 252, 0.15) 0%, transparent 30%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.2) 0%, transparent 25%);
    z-index: 0;
    animation: aurora 15s ease-in-out infinite;
}

@keyframes aurora {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

/* Grid geométrico sutil */
.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(139,92,246,0.06)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>'),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><circle cx="100" cy="100" r="1" fill="rgba(192,132,252,0.3)"/><circle cx="300" cy="200" r="1.5" fill="rgba(139,92,246,0.4)"/><circle cx="200" cy="350" r="1" fill="rgba(168,85,247,0.3)"/><circle cx="50" cy="280" r="1.2" fill="rgba(124,58,237,0.35)"/><circle cx="350" cy="50" r="0.8" fill="rgba(192,132,252,0.25)"/></svg>');
    opacity: 0.6;
    z-index: 0;
}

.hero-overlay {
    display: none;
}

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

.hero-text {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-text h1 {
    color: var(--cor-texto-Vivo) !important;
    font-size: clamp(2.5rem, 6vw, 4.5rem) !important;
    font-weight: 800 !important;
    margin-bottom: 1rem !important;
    line-height: 1.1;
    animation: fadeInUp 0.8s ease both;
    text-shadow: 0 4px 40px rgba(139, 92, 246, 0.5);
    background: linear-gradient(135deg, #ffffff 0%, var(--roxo-Vivo) 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text h2 {
    color: var(--roxo-Vivo) !important;
    font-size: clamp(1.5rem, 3vw, 2.25rem) !important;
    font-weight: 500 !important;
    margin-bottom: 1.5rem !important;
    animation: fadeInUp 0.8s ease 0.1s both;
}

.hero-text h3 {
    color: var(--cor-texto-Vivo) !important;
    font-size: clamp(1.25rem, 2vw, 1.75rem) !important;
    font-weight: 600 !important;
    margin-bottom: 1rem !important;
    animation: fadeInUp 0.8s ease 0.2s both;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-text p {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: clamp(1rem, 1.5vw, 1.25rem) !important;
    max-width: 700px;
    margin: 0 auto 2rem !important;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.planos-promo {
    background: linear-gradient(135deg, var(--roxo-vibrante) 0%, var(--cor-accent) 100%);
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: var(--borda-radius-full);
    font-weight: 700;
    font-family: var(--fonte-principal);
    animation: pulse-scale 2s infinite, fadeInUp 0.8s ease 0.4s both;
    box-shadow: 0 8px 40px rgba(139, 92, 246, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.85rem !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Novo Botão CTA Destaque na Hero */
.cta-destaque-hero {
    background: linear-gradient(135deg, rgba(249, 115, 22, 1) 0%, rgba(234, 88, 12, 1) 100%);
    display: inline-block;
    padding: 0.9rem 2.5rem;
    border-radius: var(--borda-radius-full);
    font-weight: 700;
    font-family: var(--fonte-principal);
    animation: pulse-glow-accent 2.5s infinite, fadeInUp 0.9s ease 0.45s both;
    box-shadow: 0 0 40px rgba(249, 115, 22, 0.6), 0 0 80px rgba(249, 115, 22, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.9rem !important;
    position: relative;
    overflow: hidden;
    color: white !important;
    text-decoration: none;
    margin-bottom: 1.5rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.cta-destaque-hero:hover {
    transform: translateY(-3px) scale(1.02);
}

.apartir {
    font-size: 1rem;
    margin-top: 2rem;
    opacity: 0.9;
}

.preco {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 0.5rem 0;
    font-family: var(--fonte-display);
}

.preco .cifrao {
    font-size: 1.5rem;
    vertical-align: super;
}

.preco .valor {
    font-size: 4rem;
    background: linear-gradient(135deg, var(--cor-texto-Vivo) 0%, var(--roxo-Vivo) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.apps-title {
    font-size: 1rem !important;
    font-weight: 500;
    margin-top: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    opacity: 0.8;
    animation: fadeInUp 0.8s ease 0.5s both;
    color: var(--roxo-Vivo);
}

.social-icons {
    margin: 1.5rem 0;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.social-icons img {
    max-width: 280px;
    margin: 0 auto;
    filter: brightness(1.1) drop-shadow(0 4px 20px rgba(139, 92, 246, 0.4));
}

.social-icons img:hover {
    transform: scale(1.08);
    filter: brightness(1.2) drop-shadow(0 8px 30px rgba(139, 92, 246, 0.6));
}

/* CTA Buttons - Hero (Unificado com hero-buttons) */
.cta-buttons,
.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.5rem;
    animation: fadeInUp 0.8s ease 0.7s both;
}

.btn-cta {
    font-family: var(--fonte-principal);
    font-size: 1rem;
    padding: 1rem 2rem;
    border-radius: var(--borda-radius-full);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
    color: var(--cor-texto-Vivo);
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transicao);
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.6s ease;
    pointer-events: none;
}

.btn-cta:hover::before {
    left: 100%;
}

.btn-cta:hover {
    transform: translateY(-4px);
}

.btn-cta-primary {
    background: linear-gradient(135deg, var(--roxo-escuro) 0%, var(--roxo-medio) 100%);
    box-shadow: 0 8px 30px rgba(26, 10, 46, 0.5);
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.btn-cta-primary:hover {
    box-shadow: 0 12px 45px rgba(139, 92, 246, 0.6);
}

.btn-cta-secondary {
    background: linear-gradient(135deg, var(--roxo-vibrante) 0%, var(--cor-accent) 100%);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.4);
}

.btn-cta-secondary:hover {
    box-shadow: 0 12px 45px rgba(168, 85, 247, 0.55);
}

.btn-cta-accent {
    background: linear-gradient(135deg, var(--cor-whatsapp) 0%, var(--cor-whatsapp-dark) 100%);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

.btn-cta-accent:hover {
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.55);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--cor-whatsapp) 0%, var(--cor-whatsapp-dark) 100%);
    color: var(--cor-texto-Vivo);
    padding: 1rem 2rem;
    border-radius: var(--borda-radius-full);
    font-family: var(--fonte-principal);
    font-weight: 600;
    font-size: 1rem;
    margin-top: 2rem;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
    animation: fadeInUp 0.8s ease 0.8s both;
    transition: var(--transicao);
}

.btn-whatsapp:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
}

/* Ícones nos botões - estilo consistente */
.hero-buttons i,
.cta-buttons i,
.btn-primary i,
.btn-secondary i,
.btn-outline i {
    font-size: 1.1rem;
}

/* ========================================
   Correção: Botões CTA Hero Unificados
   ======================================== */

/* Garantir que botões dentro de hero-buttons tenham o mesmo estilo dos btn-cta */
.hero-buttons .btn-primary,
.hero-buttons .btn-secondary,
.hero-buttons .btn-outline {
    font-family: var(--fonte-principal);
    font-size: 1rem;
    padding: 1rem 2rem;
    border-radius: var(--borda-radius-full);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transicao);
}

/* Efeito de brilho animado */
.hero-buttons .btn-primary::before,
.hero-buttons .btn-secondary::before,
.hero-buttons .btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.6s ease;
    pointer-events: none;
}

.hero-buttons .btn-primary:hover::before,
.hero-buttons .btn-secondary:hover::before,
.hero-buttons .btn-outline:hover::before {
    left: 100%;
}

.hero-buttons .btn-primary:hover,
.hero-buttons .btn-secondary:hover,
.hero-buttons .btn-outline:hover {
    transform: translateY(-4px);
}

/* Estilos específicos para cada variante no hero */
.hero-buttons .btn-primary {
    background: linear-gradient(135deg, var(--roxo-escuro) 0%, var(--roxo-medio) 100%);
    color: var(--cor-texto-Vivo);
    box-shadow: 0 8px 30px rgba(26, 10, 46, 0.5);
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.hero-buttons .btn-primary:hover {
    box-shadow: 0 12px 45px rgba(139, 92, 246, 0.6);
}

.hero-buttons .btn-secondary {
    background: linear-gradient(135deg, var(--roxo-vibrante) 0%, var(--cor-accent) 100%);
    color: white;
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.4);
}

.hero-buttons .btn-secondary:hover {
    box-shadow: 0 12px 45px rgba(168, 85, 247, 0.55);
}

.hero-buttons .btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.2);
}

.hero-buttons .btn-outline:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.4);
}

/* ========================================
   Ofertas Section
   ======================================== */

.ofertas-section {
    padding: 6rem 0;
    background: var(--bg-card);
    position: relative;
}

.ofertas-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--roxo-escuro), var(--roxo-vibrante), var(--cor-accent));
}

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

.ofertas-image {
    position: relative;
}

.ofertas-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    background: linear-gradient(135deg, var(--roxo-vibrante) 0%, var(--cor-accent) 100%);
    border-radius: var(--borda-radius-lg);
    z-index: 0;
    opacity: 0.25;
}

.ofertas-image img {
    border-radius: var(--borda-radius-lg);
    box-shadow: var(--sombra-forte);
    position: relative;
    z-index: 1;
}

.ofertas-image:hover img {
    transform: scale(1.03) rotate(1deg);
}

.ofertas-content h2 {
    color: var(--roxo-escuro);
    margin-bottom: 1.5rem;
    position: relative;
}

.ofertas-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--roxo-vibrante), var(--cor-accent));
    border-radius: 2px;
}

.ofertas-content p {
    margin-bottom: 1.25rem;
    color: var(--cor-texto);
    line-height: 1.9;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--cor-whatsapp) 0%, var(--cor-whatsapp-dark) 100%);
    color: var(--cor-texto-Vivo);
    padding: 1rem 2rem;
    border-radius: var(--borda-radius-full);
    font-family: var(--fonte-principal);
    font-weight: 600;
    margin-top: 1.5rem;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    position: relative;
    overflow: hidden;
    transition: var(--transicao);
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.6s ease;
    pointer-events: none;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.45);
}

/* ========================================
   Planos Section
   ======================================== */

.planos-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--bg-light) 0%, #F3E8FF 50%, var(--bg-light) 100%);
    position: relative;
}

.section-title {
    text-align: center;
    color: var(--roxo-escuro);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--roxo-vibrante), var(--cor-accent));
    margin: 1rem auto 0;
    border-radius: 2px;
}

.planos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.plano-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}

.plano-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}

.plano-card {
    background: var(--bg-card);
    border-radius: var(--borda-radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--sombra-suave);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(139, 92, 246, 0.08);
    transition: var(--transicao);
}

.plano-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--roxo-vibrante), var(--cor-accent));
    opacity: 0;
    transition: var(--transicao);
}

.plano-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transicao);
}

.plano-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--sombra-media), var(--sombra-glow);
    border-color: rgba(139, 92, 246, 0.2);
}

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

.plano-card:hover::after {
    opacity: 1;
}

.plano-card.featured {
    border: 2px solid var(--roxo-vibrante);
    background: linear-gradient(180deg, var(--bg-card) 0%, rgba(139, 92, 246, 0.05) 100%);
}

.plano-card.best {
    border: 2px solid var(--cor-accent);
    background: linear-gradient(180deg, var(--bg-card) 0%, rgba(168, 85, 247, 0.08) 100%);
    transform: scale(1.03);
}

.plano-card.best:hover {
    transform: scale(1.03) translateY(-10px);
}

.plano-card.best::before {
    background: linear-gradient(90deg, var(--cor-accent), var(--cor-accent-light));
    opacity: 1;
}

.plano-card h3 {
    color: var(--roxo-escuro);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.plano-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--roxo-vibrante) 0%, var(--cor-accent) 100%);
    color: #ffffff;
    padding: 0.4rem 1rem;
    border-radius: var(--borda-radius-full);
    font-family: var(--fonte-principal);
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.plano-badge.premium {
    background: linear-gradient(135deg, var(--roxo-escuro) 0%, var(--roxo-vibrante) 100%);
}

.plano-badge.best-offer {
    background: linear-gradient(135deg, var(--cor-accent) 0%, var(--cor-accent-light) 100%);
    font-weight: 700;
    animation: pulse-scale 2s infinite;
    box-shadow: 0 4px 20px rgba(168, 85, 247, 0.4);
}

.plano-preco {
    font-family: var(--fonte-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--roxo-escuro);
    margin: 1.25rem 0;
}

.plano-preco span:first-child {
    font-size: 1.25rem;
    vertical-align: super;
}

.plano-preco span:last-child {
    font-size: 1.25rem;
    color: var(--cor-texto);
}

.plano-feature {
    color: var(--cor-texto);
    margin: 1rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.plano-feature i {
    color: var(--roxo-vibrante);
}

.apps-inclusos {
    margin: 1rem 0;
    color: var(--roxo-escuro);
    font-weight: 600;
    font-size: 0.9rem;
}

.plano-card img {
    margin: 1.25rem auto;
    max-width: 180px;
    transition: var(--transicao);
}

.plano-card:hover img {
    transform: scale(1.08);
}

.plano-cta-text {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--cor-whatsapp) 0%, var(--cor-whatsapp-dark) 100%);
    color: var(--cor-texto-Vivo);
    padding: 1rem 2rem;
    border-radius: var(--borda-radius-full);
    font-family: var(--fonte-principal);
    font-weight: 600;
    font-size: 1rem;
    margin-top: 1.5rem;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    position: relative;
    overflow: hidden;
    transition: var(--transicao);
    border: none;
    cursor: pointer;
}

.plano-cta-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.6s ease;
    pointer-events: none;
}

.plano-card:hover .plano-cta-text::before {
    left: 100%;
}

.plano-card:hover .plano-cta-text {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.55);
}

.plano-cta-text {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--cor-whatsapp) 0%, var(--cor-whatsapp-dark) 100%);
    color: var(--cor-texto-Vivo);
    padding: 1rem 2rem;
    border-radius: var(--borda-radius-full);
    font-family: var(--fonte-principal);
    font-weight: 600;
    font-size: 1rem;
    margin-top: 1.5rem;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    position: relative;
    overflow: hidden;
    transition: var(--transicao);
    border: none;
    cursor: pointer;
}

.plano-cta-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.6s ease;
    pointer-events: none;
}

.plano-card:hover .plano-cta-text::before {
    left: 100%;
}

.plano-card:hover .plano-cta-text {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.55);
}

.btn-consultor {
    display: block;
    margin-top: 1.5rem;
    transition: var(--transicao);
}

.btn-consultor:hover {
    transform: scale(1.08);
}

.btn-consultor img {
    max-width: 160px;
    margin: 0 auto;
    filter: drop-shadow(0 4px 15px rgba(139, 92, 246, 0.2));
}

/* ========================================
   Consultor Section
   ======================================== */

.consultor-section {
    padding: 6rem 0;
    background: var(--bg-gradient-section);
    color: var(--cor-texto-Vivo);
    position: relative;
    overflow: hidden;
}

.consultor-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 80% 60% at 10% 90%, rgba(168, 85, 247, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse 60% 50% at 90% 20%, rgba(139, 92, 246, 0.2) 0%, transparent 50%);
    z-index: 0;
}

.consultor-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.consultor-content h2 {
    color: var(--cor-texto-Vivo);
    margin-bottom: 1.5rem;
    position: relative;
}

.consultor-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--roxo-Vivo), var(--cor-accent-light));
    border-radius: 2px;
}

.consultor-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.25rem;
    line-height: 1.9;
}

.consultor-note {
    font-size: 0.95rem;
    font-style: italic;
    opacity: 0.85;
    padding-left: 1rem;
    border-left: 3px solid var(--roxo-Vivo);
}

.consultor-image {
    position: relative;
}

.consultor-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, var(--roxo-vibrante) 0%, var(--cor-accent) 100%);
    border-radius: var(--borda-radius-lg);
    z-index: 0;
    opacity: 0.35;
}

.consultor-image img {
    border-radius: var(--borda-radius-lg);
    box-shadow: var(--sombra-forte);
    position: relative;
    z-index: 1;
}

.consultor-image:hover img {
    transform: scale(1.03) rotate(-1deg);
}

/* ========================================
   Portabilidade Section
   ======================================== */

.portabilidade-section {
    padding: 6rem 0;
    background: var(--bg-card);
    position: relative;
}

.section-title-center {
    text-align: center;
    color: var(--roxo-escuro);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
}

.section-title-center::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--roxo-vibrante), var(--cor-accent));
    margin: 1rem auto 0;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    max-width: 800px;
    margin: 1.5rem auto 3rem;
    line-height: 1.9;
    color: var(--cor-texto);
}

.portabilidade-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}

.portabilidade-text h2 {
    color: var(--roxo-escuro);
    margin-bottom: 1.5rem;
    position: relative;
}

.portabilidade-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--roxo-vibrante), var(--cor-accent));
    border-radius: 2px;
}

.portabilidade-banner {
    position: relative;
}

.portabilidade-banner::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 15px;
    right: -15px;
    bottom: 15px;
    background: linear-gradient(135deg, var(--roxo-vibrante) 0%, var(--cor-accent) 100%);
    border-radius: var(--borda-radius-lg);
    z-index: 0;
    opacity: 0.2;
}

.portabilidade-banner img {
    border-radius: var(--borda-radius-lg);
    box-shadow: var(--sombra-media);
    position: relative;
    z-index: 1;
}

.portabilidade-banner:hover img {
    transform: scale(1.02);
}

/* ========================================
   Dúvidas Section
   ======================================== */

.duvidas-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #F3E8FF 0%, var(--bg-light) 100%);
    position: relative;
}

.duvidas-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-top: 3rem;
}

.duvidas-image {
    position: relative;
}

.duvidas-image img {
    border-radius: var(--borda-radius-lg);
    box-shadow: var(--sombra-media);
}

.duvidas-image:hover img {
    transform: scale(1.02);
}

.btn-whatsapp-large {
    display: block;
    margin-top: 1.5rem;
    transition: var(--transicao);
}

.btn-whatsapp-large:hover {
    transform: scale(1.05);
}

.btn-whatsapp-large img {
    border-radius: var(--borda-radius);
    box-shadow: var(--sombra-suave);
}

.faq-item {
    background: var(--bg-card);
    padding: 1.75rem;
    border-radius: var(--borda-radius);
    margin-bottom: 1.25rem;
    box-shadow: var(--sombra-suave);
    border-left: 4px solid transparent;
    transition: var(--transicao);
}

.faq-item:hover {
    box-shadow: var(--sombra-media);
    border-left-color: var(--roxo-vibrante);
    transform: translateX(8px);
}

.faq-item h3 {
    color: var(--roxo-escuro);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.faq-item p {
    color: var(--cor-texto);
    line-height: 1.8;
}

.faq-item ul {
    list-style: none;
    padding-left: 0;
    margin-top: 0.75rem;
}

.faq-item li {
    padding: 0.5rem 0 0.5rem 1.75rem;
    position: relative;
    color: var(--cor-texto);
}

.faq-item li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--roxo-vibrante), var(--cor-accent));
    border-radius: 50%;
}

/* ========================================
   SEO Content Section
   ======================================== */

.seo-content-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--bg-card) 0%, #F3E8FF 50%, var(--bg-card) 100%);
}

.seo-content-section h2 {
    color: var(--roxo-escuro);
    margin-top: 3rem;
    margin-bottom: 1.25rem;
    font-size: 1.5rem;
    position: relative;
    padding-left: 1.25rem;
}

.seo-content-section h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--roxo-vibrante), var(--cor-accent));
    border-radius: 2px;
}

.seo-content-section h2:first-child {
    margin-top: 0;
}

.seo-content-section p {
    color: var(--cor-texto);
    margin-bottom: 1rem;
    line-height: 1.9;
}

.seo-content-section .btn-primary {
    margin-bottom: 2rem;
}

/* ========================================
   Footer
   ======================================== */

.main-footer {
    background: linear-gradient(180deg, #ffffff 0%, #F3E8FF 100%);
    color: var(--roxo-escuro);
    padding: 4rem 0 2rem;
    position: relative;
    border-top: 1px solid rgba(139, 92, 246, 0.15);
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--roxo-escuro), var(--roxo-vibrante), var(--cor-accent));
}

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

.footer-col img {
    max-width: 200px;
    filter: brightness(1.05);
}

.footer-col img:hover {
    transform: scale(1.05);
}

.footer-col h4 {
    color: var(--roxo-escuro);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-family: var(--fonte-display);
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--roxo-vibrante), var(--cor-accent));
    border-radius: 1px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin: 0.75rem 0;
}

.footer-col a {
    color: var(--roxo-escuro);
    display: inline-block;
    transition: var(--transicao);
}

.footer-col a:hover {
    color: var(--roxo-vibrante);
    padding-left: 8px;
}

.contato-list a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contato-list i {
    color: var(--roxo-vibrante);
    font-size: 1.1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(139, 92, 246, 0.15);
    padding-top: 2rem;
    margin-top: 2rem;
}

.footer-info p {
    font-size: 0.85rem;
    line-height: 1.8;
    margin-bottom: 0.75rem;
    opacity: 0.75;
    color: var(--roxo-escuro);
}

.footer-info strong {
    color: var(--roxo-escuro);
    opacity: 1;
}

/* ========================================
   WhatsApp Float & Botões Flutuantes
   ======================================== */

.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--cor-whatsapp) 0%, var(--cor-whatsapp-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cor-texto-Vivo);
    font-size: 1.5rem;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45);
    z-index: 1000;
    animation: float-bounce 3s ease-in-out infinite;
    border: 3px solid rgba(255, 255, 255, 0.25);
    transition: var(--transicao);
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--cor-whatsapp);
    animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
    opacity: 0.3;
}

.whatsapp-float:hover {
    transform: scale(1.15);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6);
}

.back-to-top {
    position: fixed;
    bottom: calc(5rem + 24px);
    right: 1.5rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--roxo-escuro) 0%, var(--roxo-vibrante) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
    transition: var(--transicao);
    border: 2px solid rgba(255, 255, 255, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(139, 92, 246, 0.55);
}

.back-to-top:active {
    transform: scale(0.95);
}

/* ========================================
   Animations
   ======================================== */

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(139, 92, 246, 0.35);
    }
    50% {
        box-shadow: 0 8px 40px rgba(139, 92, 246, 0.55);
    }
}

@keyframes pulse-scale {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes float-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

@keyframes ping {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

@keyframes glow-pulse {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.4));
    }
    50% {
        filter: drop-shadow(0 0 25px rgba(139, 92, 246, 0.7));
    }
}

@keyframes pulse-glow-accent {
    0%, 100% {
        box-shadow: 0 0 40px rgba(249, 115, 22, 0.6), 0 0 80px rgba(249, 115, 22, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 60px rgba(249, 115, 22, 0.8), 0 0 100px rgba(249, 115, 22, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3);
        transform: scale(1.05);
    }
}

/* Scroll Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transicao);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   Responsive
   ======================================== */

@media (max-width: 1024px) {
    .desktop-nav {
        display: none !important;
    }

    .mobile-menu-toggle {
        display: none !important;
    }

    .mobile-menu {
        display: none !important;
    }

    .hero-section {
        padding: 8rem 0 5rem;
        min-height: auto;
    }

    .ofertas-grid,
    .consultor-grid,
    .portabilidade-content,
    .duvidas-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .ofertas-image {
        order: -1;
    }

    .consultor-image {
        order: -1;
    }

    .portabilidade-content {
        grid-template-columns: 1fr;
    }

    .portabilidade-text {
        text-align: center;
    }

    .portabilidade-text h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-col img {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .logo-container {
        max-width: 160px;
    }

    .hero-section {
        padding: 7rem 0 4rem;
    }

    body:has(#main-header) .hero-section {
        padding-top: 10rem;
    }

    .hero-text h1 {
        font-size: clamp(2rem, 7vw, 3rem) !important;
        margin-top: 1rem;
    }

    .hero-text h2 {
        font-size: clamp(1.25rem, 4vw, 1.75rem) !important;
    }

    .cta-buttons,
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons a,
    .hero-buttons a,
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    body:has(#main-header) .hero-section {
        margin-top: 70px;
        padding-top: 6rem;
    }

    .planos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .plano-card.best {
        transform: none;
    }

    .plano-card.best:hover {
        transform: translateY(-10px);
    }

    .section-title,
    .section-title-center {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

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

    .duvidas-image {
        text-align: center;
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
        bottom: 1.2rem;
        right: 1.2rem;
    }

    .back-to-top {
        width: 45px;
        height: 45px;
        font-size: 1rem;
        bottom: calc(4.5rem + 24px);
        right: 1.2rem;
    }
}

@media (max-width: 480px) {
    .container {
        width: 94%;
    }

    .hero-section {
        padding: 6.5rem 0 3.5rem;
    }

    .hero-text h1 {
        font-size: 1.75rem !important;
    }

    .hero-text h2 {
        font-size: 1.1rem !important;
    }

    .hero-text p {
        font-size: 0.95rem !important;
    }

    .planos-promo {
        font-size: 0.75rem !important;
        padding: 0.5rem 1.25rem;
    }

    .btn-whatsapp,
    .btn-primary,
    .btn-secondary,
    .btn-outline,
    .btn-cta {
        font-size: 0.95rem;
        padding: 0.875rem 1.5rem;
    }

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

    .plano-preco {
        font-size: 2.5rem;
    }

    .faq-item {
        padding: 1.25rem;
    }

    .faq-item h3 {
        font-size: 1rem;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        bottom: 1rem;
        right: 1rem;
    }

    .back-to-top {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
        bottom: calc(4rem + 24px);
        right: 1rem;
    }
}

/* ========================================
   Accessibility & UX Improvements
   ======================================== */

/* Focus States */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--roxo-vibrante);
    outline-offset: 4px;
}

/* Reduce Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print Styles */
@media print {
    .whatsapp-float,
    #main-header,
    .mobile-menu,
    .btn-primary,
    .btn-whatsapp,
    .back-to-top {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    .hero-section {
        background: white;
        color: black;
        padding: 2rem 0;
    }

    .hero-text h1,
    .hero-text h2,
    .hero-text h3,
    .hero-text p {
        color: black !important;
        -webkit-text-fill-color: black !important;
    }
}

/* ========================================
   Efeitos Especiais Premium
   ======================================== */

/* Efeito de brilho nos cards */
.plano-card:hover,
.faq-item:hover {
    animation: glow-pulse 2s ease-in-out infinite;
}

/* Gradiente animado em textos especiais */
.hero-text h1 {
    background-size: 200% 200%;
    animation: gradient-shift 5s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Efeito de partículas nos botões CTA */
.btn-cta:hover::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
    transform: translate(-50%, -50%);
    animation: ripple 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple {
    from {
        opacity: 1;
        transform: translate(-50%, -50%) scale(0);
    }
    to {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1);
    }
}

/* Sombra suave em imagens com roxo */
.ofertas-image img,
.consultor-image img,
.portabilidade-banner img,
.duvidas-image img {
    box-shadow: 0 20px 50px rgba(139, 92, 246, 0.2);
}

/* Selection color roxo */
::selection {
    background: var(--roxo-vibrante);
    color: white;
}

::-moz-selection {
    background: var(--roxo-vibrante);
    color: white;
}

/* Scrollbar customizada em roxo */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--roxo-vibrante), var(--cor-accent));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--roxo-escuro), var(--roxo-vibrante));
}

/* ========================================
   Compatibilidade com Template Alternativo
   (Correção para páginas tipo plano-*.html)
   ======================================== */

/* Header Alternativo */
.header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(139, 92, 246, 0.15);
    box-shadow: 0 4px 30px rgba(26, 10, 46, 0.08);
}

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

.header .logo img {
    max-width: 180px;
    height: auto;
}

/* Navegação do header alternativo - OCULTA */
.header .nav,
.header .nav ul {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

.header .nav a {
    display: none !important;
}

.header-actions .btn {
    margin: 0;
}

/* Hero Alternativo */
.hero {
    background: var(--bg-gradient-hero);
    color: var(--cor-texto-Vivo);
    padding: 12rem 0 8rem;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 100% 80% at 50% -30%, rgba(139, 92, 246, 0.4) 0%, transparent 60%),
        radial-gradient(ellipse 80% 60% at 90% 70%, rgba(168, 85, 247, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse 60% 50% at 10% 80%, rgba(124, 58, 237, 0.3) 0%, transparent 50%);
    z-index: 0;
    animation: aurora 15s ease-in-out infinite;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero .hero-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    justify-content: space-between;
}

.hero .hero-text {
    flex: 1;
    max-width: 600px;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white !important;
    background: linear-gradient(135deg, #ffffff 0%, var(--roxo-Vivo) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 40px rgba(139, 92, 246, 0.5);
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.9) !important;
}

.hero .hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.hero .hero-image img {
    border-radius: var(--borda-radius-lg);
    box-shadow: var(--sombra-forte);
    max-width: 100%;
    height: auto;
    animation: fadeInUp 1s ease-out;
}

/* Removido - já definido junto com .cta-buttons acima */

/* Botões do Template Alternativo */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.875rem 1.75rem;
    border-radius: var(--borda-radius-full);
    font-weight: 600;
    font-family: var(--fonte-principal);
    transition: var(--transicao);
    border: none;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.6s ease;
    pointer-events: none;
}

.btn:hover::before {
    left: 100%;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-secondary {
    background: linear-gradient(135deg, var(--roxo-vibrante) 0%, var(--cor-accent) 100%);
    color: white;
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.4);
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.6s ease;
    pointer-events: none;
}

.btn-secondary:hover::before {
    left: 100%;
}

.btn-secondary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 45px rgba(168, 85, 247, 0.55);
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.6s ease;
    pointer-events: none;
}

.btn-outline:hover::before {
    left: 100%;
}

.btn-outline:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

/* Content Section (Conteúdo Principal) */
.content-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

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

.content-main h2 {
    color: var(--roxo-escuro);
    font-size: 1.75rem;
    margin: 2.5rem 0 1.25rem;
    position: relative;
    padding-left: 1.25rem;
}

.content-main h2:first-child {
    margin-top: 0;
}

.content-main h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--roxo-vibrante), var(--cor-accent));
    border-radius: 2px;
}

.content-main p {
    color: var(--cor-texto);
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Sidebar */
.content-sidebar {
    position: sticky;
    top: 120px;
    align-self: start;
}

.sidebar-widget {
    background: white;
    padding: 2rem;
    border-radius: var(--borda-radius);
    box-shadow: var(--sombra-suave);
    margin-bottom: 2rem;
    border: 1px solid rgba(139, 92, 246, 0.1);
}

.sidebar-widget h3 {
    color: var(--roxo-escuro);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--roxo-vibrante);
    padding-bottom: 0.75rem;
}

.sidebar-widget ul {
    list-style: none;
    padding: 0;
}

.sidebar-widget li {
    margin-bottom: 1rem;
}

.sidebar-widget li::before {
    content: '✓';
    color: var(--roxo-vibrante);
    font-weight: bold;
    margin-right: 0.5rem;
}

.sidebar-widget a {
    color: var(--cor-texto);
    font-weight: 500;
    display: block;
    padding: 0.5rem 0;
    transition: var(--transicao);
}

.sidebar-widget a:hover {
    color: var(--roxo-vibrante);
    padding-left: 8px;
}

/* Footer Alternativo */
.footer {
    background: var(--bg-gradient-section);
    color: var(--cor-texto-Vivo);
    padding: 5rem 0 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--roxo-escuro), var(--roxo-vibrante), var(--cor-accent));
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-section h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--roxo-vibrante), var(--cor-accent));
    border-radius: 1px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.9);
    transition: var(--transicao);
}

.footer-section a:hover {
    color: var(--roxo-Vivo);
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin-bottom: 0.75rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transicao);
}

.social-link:hover {
    background: var(--roxo-vibrante);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Ajustes no CTA Box dentro do conteúdo */
.cta-box {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(26, 10, 46, 0.05) 100%);
    padding: 2.5rem;
    border-radius: var(--borda-radius);
    text-align: center;
    margin: 3rem 0;
    border: 2px solid rgba(139, 92, 246, 0.2);
}

.cta-box .btn {
    margin-top: 1rem;
}

/* GBP Section */
.gbp-section {
    padding: 3rem 0;
    background: linear-gradient(180deg, #F3E8FF 0%, var(--bg-light) 100%);
}

.gbp-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.gbp-container iframe {
    border-radius: var(--borda-radius);
    box-shadow: var(--sombra-media);
}

/* WhatsApp Link no Footer */
.whatsapp-float .whatsapp-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
}

.whatsapp-text {
    font-size: 0.9rem;
    font-weight: 600;
}

/* Responsivo para Template Alternativo */
@media (max-width: 992px) {
    .hero .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero .hero-text {
        max-width: 100%;
    }

    .hero .hero-image {
        width: 100%;
        justify-content: center;
        margin-top: 2rem;
    }

    .hero-buttons {
        justify-content: center;
    }

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

    .content-sidebar {
        position: static;
    }

    .header .nav {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 10rem 0 6rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn,
    .hero-buttons a {
        width: 100%;
    }

    .content-main h2 {
        font-size: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-links {
        justify-content: center;
    }
}

/* Interlinking Styles */
.local-link, .content-link {
    color: var(--cor-destaque);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transicao);
}

.local-link:hover, .content-link:hover {
    color: var(--cor-primaria);
    text-decoration: underline;
}
