:root {
    --bg-dark: #000000;
    --bg-card: rgba(17, 17, 17, 0.6);
    --text-main: #F5F5F5;
    --text-muted: #888888;
    --red-glow: #FF1515;
    --glass-border: rgba(255, 255, 255, 0.05);
    
    --font-super: 'Syncopate', sans-serif;
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-heavy: 'Oswald', sans-serif;
    --font-brush: 'Permanent Marker', cursive;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    background-color: var(--bg-dark);
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.text-red { color: var(--red-glow); }
.container { max-width: 1300px; margin: 0 auto; padding: 0 2rem; }

/* Layout Global */
.section {
    padding: 4rem 0;
    position: relative; z-index: 10; background: var(--bg-dark); 
}

/* UI Carpeta / Solapa (Folder Tab & Sheet) */
.folder-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 1rem;
}
.folder-tab {
    background: #08080a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: none;
    border-radius: 20px 20px 0 0;
    padding: 1.5rem 4rem;
    text-align: center;
    width: fit-content;
    position: relative;
    z-index: 2;
    margin-bottom: -1px; /* Solapa perfectamente con el borde de la hoja */
    box-shadow: 0 -10px 30px rgba(230, 25, 25, 0.15), inset 0 15px 30px -10px rgba(255, 21, 21, 0.05);
}
.folder-sheet {
    background: #08080a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 4rem 3rem;
    width: 100%;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 40px rgba(230, 25, 25, 0.15), 0 30px 80px rgba(0,0,0,0.7), inset 0 0 50px rgba(0,0,0,0.5);
}

@media (max-width: 768px) {
    .folder-tab { width: 95%; padding: 1.5rem 1rem; }
    .folder-sheet { padding: 3rem 1.5rem; border-radius: 16px; }
}

/* Typography */
.massive-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 4rem;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}
.massive-text .text-red {
    text-shadow: 0 0 10px rgba(230, 25, 25, 0.4), 0 0 20px rgba(230, 25, 25, 0.15);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.section-title-main {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.1;
}

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

/* Navbar */
.navbar {
    position: fixed;
    top: 0; width: 100%;
    padding: 1.5rem 0;
    z-index: 999;
    background: rgba(5,5,5,0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
}
.navbar__container {
    display: flex; justify-content: space-between; align-items: center;
    max-width: 1400px; margin: 0 auto; padding: 0 2rem;
}
.navbar__logo {
    display: flex; align-items: center; gap: 15px; text-decoration: none; z-index: 100;
}
.navbar__logo-img { height: 50px; object-fit: contain; }

.navbar__center {
    display: flex; align-items: center; gap: 24px;
}
.navbar__link { 
    color: var(--text-main); 
    text-decoration: none; 
    font-weight: 500; 
    font-size: 1.1rem; 
    transition: all 0.3s ease; 
    padding: 8px 16px;
    border-radius: 12px 12px 0 0;
}
.navbar__link:hover, .navbar__link.active { 
    color: var(--red-glow); 
    background: rgba(230, 25, 25, 0.05);
    border-bottom: 2px solid var(--red-glow);
}

.navbar__status { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; font-weight: 600; color: #fff; margin-right: 20px; }
.status-dot { width: 8px; height: 8px; background: #00ff00; border-radius: 50%; box-shadow: 0 0 10px #00ff00; }

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 100;
}
.hamburger-line {
    width: 30px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

@media (max-width: 992px) {
    .hamburger { display: flex; }
    .navbar__center {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        transition: right 0.4s ease;
    }
    .navbar__center.active { right: 0; }
    .navbar__link { font-size: 2rem; margin-bottom: 2rem; }
    .navbar__contact-btn { font-size: 1.2rem; margin-top: 2rem; }
    
    /* Animación del botón hamburguesa activo */
    .hamburger.active .hamburger-line:nth-child(1) { transform: translateY(9px) rotate(45deg); }
    .hamburger.active .hamburger-line:nth-child(2) { opacity: 0; }
    .hamburger.active .hamburger-line:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
}

@keyframes pulse { 0% { opacity: 1; } 50% { opacity: 0.4; } 100% { opacity: 1; } }

/* Buttons */
.btn-glow {
    background: transparent; color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 10px 24px; border-radius: 50px;
    text-decoration: none; font-weight: 600; font-size: 0.9rem;
    transition: all 0.3s;
}
.btn-glow:hover {
    background: #fff; color: #000;
    box-shadow: 0 0 20px rgba(255,255,255,0.5);
}

/* Botones Principales (Landing y Formulario) */
.btn-solid, .btn-submit-glow {
    position: relative;
    display: inline-block;
    padding: 18px 36px;
    background: linear-gradient(180deg, #25D366 0%, #128C7E 100%); /* Verde WhatsApp */
    color: #fff;
    font-family: var(--font-super);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    overflow: hidden;
    /* Efecto 3D Real: Sombra sólida abajo + Resplandor verde + Brillo interior arriba */
    box-shadow: 
        0px 6px 0px #075E54, 
        0px 15px 25px rgba(37, 211, 102, 0.4),
        inset 0px 2px 2px rgba(255, 255, 255, 0.5);
    transition: transform 0.1s ease, box-shadow 0.1s ease;
}

.btn-solid:hover, .btn-submit-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4); /* Sombra verde hover */
}

.btn-solid:active, .btn-submit-glow:active {
    /* Efecto de presionar el botón 3D */
    transform: translateY(6px);
    box-shadow: 
        0px 0px 0px #075E54, 
        0px 5px 10px rgba(37, 211, 102, 0.4),
        inset 0px 2px 2px rgba(255, 255, 255, 0.5);
}

/* Efecto de Brillo Animado (Shine) de Izq a Der */
.btn-solid::after, .btn-submit-glow::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.7) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    animation: shine-3d 3.5s infinite;
}

@keyframes shine-3d {
    0% { left: -150%; }
    15% { left: 150%; }
    100% { left: 150%; }
}

/* Hero Dividido */
.hero {
    padding-top: 100px; /* Reducido de 150px para menos espacio arriba */
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
/* Volumetric Red Light (Cinematic Glow) */
.hero::before {
    content: ''; position: absolute;
    top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(255, 21, 21, 0.15) 0%, rgba(0,0,0,0) 70%);
    pointer-events: none; z-index: 1;
}

.hero-container {
    display: grid;
    /* Ratio aproximado 55/45 (headline takes 55%, phone takes 45% of available space) */
    grid-template-columns: 1.3fr 1fr;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 2;
}
@media (max-width: 992px) {
    .hero-container { grid-template-columns: 1fr; text-align: center; }
}
.hero-content { z-index: 2; }
.hero-badge {
    display: inline-block; border: 1px solid var(--red-glow); color: var(--red-glow);
    padding: 6px 16px; border-radius: 50px; font-size: 0.8rem; font-weight: 600;
    letter-spacing: 2px; margin-bottom: 2rem;
}
.hero-title {
    font-family: var(--font-super);
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1.1; text-transform: uppercase; margin-bottom: 1.5rem;
}

.hero-title-mockup {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}
.hero-headline-img {
    width: 100%;
    max-width: 650px;
    height: auto;
    display: block;
    mix-blend-mode: screen; /* Elimina el fondo negro de la imagen */
    filter: drop-shadow(0px 5px 15px rgba(255,21,21,0.2));
}
.text-heavy-italic {
    font-family: var(--font-heavy);
    font-weight: 700; /* Oswald Bold */
    text-transform: uppercase;
    font-size: clamp(4rem, 9vw, 7.5rem);
    line-height: 1;
    letter-spacing: 0px;
    margin-bottom: -5px;
    transform: skewX(-10deg);
    display: inline-block;
    position: relative;
    /* Improved Fake Speed Lines */
    text-shadow: 
        -4px 0px 0px rgba(255,255,255,0.15), 
        -8px 0px 0px rgba(255,255,255,0.05);
}
.text-brush {
    font-family: var(--font-brush);
    font-size: clamp(4rem, 10vw, 8rem);
    line-height: 0.9;
    white-space: nowrap;
    display: inline-block;
    text-shadow: 0px 10px 30px rgba(255,21,21,0.6);
    position: relative;
}
/* Paint stroke underline simulation */
.text-brush::after {
    content: '';
    position: absolute;
    bottom: 5%;
    left: -5%;
    width: 110%;
    height: 15%;
    background: var(--red-glow);
    border-radius: 50%;
    filter: blur(2px);
    opacity: 0.5;
    z-index: -1;
    transform: rotate(2deg);
}

.text-white { color: #fff; }
.hero-subtitle {
    font-size: 1.2rem; color: #ccc; margin-bottom: 2.5rem; line-height: 1.6;
}
.hero-buttons {
    display: flex; gap: 1rem;
    flex-wrap: wrap;
}
@media (max-width: 992px) {
    .hero-buttons { justify-content: center; }
}

/* Mockup Celular CSS Puro */
.hero-visual {
    display: flex; justify-content: center; align-items: center; position: relative;
}
.css-phone-mockup {
    position: relative;
    width: 320px;
    height: calc(320px * (16 / 9)); /* Aspecto 9:16 exacto */
    background: #000;
    border: 10px solid #050505; /* Bisel negro interno puro */
    border-radius: 48px;
    box-shadow: 
        /* Borde metálico (Luz fuerte pegando de la derecha) */
        0 0 0 1px #1c1c1e,
        3px 1.5px 4px 1px #d1d1d6, /* Brillo fuerte de aluminio en la derecha y abajo */
        -1.5px -1.5px 2px 1px #111111, /* Sombra en la izquierda */
        0 0 0 3px #3a3a3c, /* Grosor del metal */
        /* Sombra ambiental profunda */
        0 30px 60px rgba(0,0,0,0.9),
        0 10px 20px rgba(0,0,0,0.5);
    transform: perspective(800px) rotateY(-10deg) rotateX(5deg);
    transition: transform 0.5s ease;
}
/* Botones físicos laterales hiperrealistas */
.css-phone-mockup::before, .css-phone-mockup-flat::before {
    content: '';
    position: absolute;
    top: 100px;
    left: -13px; /* Borde de 10px + 3px de metal */
    width: 3px;
    height: 45px;
    background: linear-gradient(to bottom, #9a9a9c, #4a4a4c); /* Brillo metálico */
    border-radius: 4px 0 0 4px;
    box-shadow: 0 60px 0 0 #5a5a5c; /* Segundo botón de volumen */
}
.css-phone-mockup::after, .css-phone-mockup-flat::after {
    content: '';
    position: absolute;
    top: 130px;
    right: -13px;
    width: 3px;
    height: 70px;
    background: linear-gradient(to right, #d1d1d6, #ffffff); /* Botón muy iluminado por la luz derecha */
    border-radius: 0 4px 4px 0; /* Botón de encendido */
}
.css-phone-mockup:hover {
    transform: perspective(800px) rotateY(0deg) rotateX(0deg);
}

.css-phone-mockup-flat {
    position: relative;
    width: 320px;
    height: calc(320px * (16 / 9));
    background: #000;
    border: 10px solid #050505;
    border-radius: 48px;
    box-shadow: 
        0 0 0 1px #1c1c1e,
        3px 1.5px 4px 1px #d1d1d6, 
        -1.5px -1.5px 2px 1px #111111,
        0 0 0 3px #3a3a3c,
        0 30px 60px rgba(0,0,0,0.9);
    z-index: 10;
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--red-glow), #990000);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(255,21,21,0.4), inset 0 2px 5px rgba(255,255,255,0.3);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    animation: float-3d 6s ease-in-out infinite;
}
.badge-analytics {
    top: 50px;
    left: -50px;
    width: 85px;
    height: 85px;
    background: transparent;
    border: none;
    box-shadow: none;
    animation-delay: 0.5s;
}
.badge-views {
    bottom: 80px;
    right: -80px;
    padding: 15px 25px;
    border-radius: 50px;
    animation-delay: 1.5s;
}

@keyframes float-3d {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(3deg); }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 80px; /* Todavía menos espacio en celular */
        min-height: auto;
        padding-bottom: 40px;
    }
    .css-phone-mockup {
        width: 280px;
        height: calc(280px * (16 / 9));
        transform: perspective(800px) rotateY(0deg) rotateX(0deg);
        margin: 0 auto;
    }
    .badge-analytics {
        left: -10px;
        top: 20px;
        transform: scale(0.8);
    }
    .badge-views {
        left: -10px;
        right: auto;
        bottom: 60px;
        transform: scale(0.8);
    }
    .hero-visual {
        padding: 20px 0;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
    }
}

.css-phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 25px;
    background: #000;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    z-index: 10;
}
/* Parlante dentro del notch */
.css-phone-notch::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 4px;
    border-radius: 2px;
    background: #222;
}
.css-phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 36px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.5); /* Reflejo interno del vidrio */
}
.css-phone-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* Botón de Audio Overlay */
.audio-toggle-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    font-size: 1.2rem;
    transition: background 0.3s;
}
.audio-toggle-btn:hover {
    background: rgba(230,25,25,0.8);
}

/* Fondo Iluminado y Máquina de Escribir */
.problem-section {
    position: relative;
    background: radial-gradient(circle at 50% -20%, rgba(255, 21, 21, 0.15) 0%, transparent 60%);
}
.typewriter-text {
    border-right: 2px solid var(--red-glow);
    white-space: pre-wrap;
    animation: blink-cursor 0.75s step-end infinite;
    min-height: 80px; /* Para que la tarjeta no salte de tamaño mientras escribe */
}
.typewriter-text.done {
    animation: none;
    border-right: none;
}
@keyframes blink-cursor {
    from, to { border-color: transparent }
    50% { border-color: var(--red-glow) }
}

/* Problem Grid */
.problem-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem;
}
.problem-card {
    background: var(--bg-card); border: 1px solid var(--glass-border);
    padding: 3rem 2rem; border-radius: 16px; backdrop-filter: blur(20px);
}
.problem-number { font-family: var(--font-super); font-size: 3rem; color: var(--red-glow); opacity: 0.8; margin-bottom: 1rem; line-height: 1; text-shadow: 0 0 20px rgba(255, 21, 21, 0.4); }
.problem-card h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.problem-card p { color: var(--text-muted); }

/* Showcase Section */
.showcase-container {
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
@media (max-width: 992px) { .showcase-container { grid-template-columns: 1fr; } }
.badge-red { 
    color: #ffffff;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.8), 0 0 10px rgba(255, 255, 255, 0.4);
    font-weight: 900; 
    letter-spacing: 2.5px; 
    font-size: 1.1rem; 
    margin-bottom: 1rem; 
    display: inline-block;
    padding: 8px 18px;
    background: linear-gradient(135deg, #aa0000 0%, #ff1515 100%);
    border-radius: 6px;
    border: 1px solid #ff4d4d;
    box-shadow: 0 5px 20px rgba(255, 21, 21, 0.5), inset 0 2px 5px rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
}
.check-list { list-style: none; margin: 2rem 0; }
.check-list li { margin-bottom: 1rem; font-size: 1.1rem; display: flex; align-items: center; gap: 10px; }
.check { color: var(--red-glow); font-weight: bold; }

/* Instagram Mockup (Formato REEL) */
.showcase-visual { position: relative; display: flex; justify-content: center; }
.ig-reel-mockup {
    width: 100%; height: 100%; border-radius: 28px;
    overflow: hidden; position: relative;
}
.reel-video { width: 100%; height: 100%; object-fit: cover; }
.reel-overlay {
    position: absolute; bottom: 0; left: 0; width: 100%; height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%); pointer-events: none;
}
.reel-actions-right {
    position: absolute; right: 15px; bottom: 30px; display: flex; flex-direction: column; gap: 20px; align-items: center; z-index: 10;
}
.reel-action { display: flex; flex-direction: column; align-items: center; gap: 5px; color: #fff; cursor: pointer; }
.reel-action .icon { font-size: 1.5rem; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5)); }
.reel-action .count { font-size: 0.75rem; font-weight: 600; text-shadow: 0 1px 3px rgba(0,0,0,0.8); }
.reel-audio-track { width: 30px; height: 30px; border-radius: 5px; border: 2px solid #fff; overflow: hidden; margin-top: 10px; animation: spin 4s linear infinite; }
.reel-audio-track img { width: 100%; height: 100%; object-fit: cover; }
@keyframes spin { 100% { transform: rotate(360deg); } }

.reel-info-bottom {
    position: absolute; bottom: 20px; left: 15px; width: calc(100% - 70px); color: #fff; z-index: 10;
}
.reel-user { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.reel-avatar { width: 35px; height: 35px; border-radius: 50%; border: 2px solid #fff; overflow: hidden; }
.reel-avatar img { width: 100%; height: 100%; object-fit: cover; background: #fff;}
.reel-username { font-weight: 600; font-size: 0.95rem; text-shadow: 0 1px 3px rgba(0,0,0,0.8); }
.reel-follow { background: transparent; border: 1px solid #fff; color: #fff; border-radius: 5px; padding: 4px 10px; font-size: 0.75rem; font-weight: 600; cursor: pointer; }
.reel-caption { font-size: 0.85rem; line-height: 1.4; margin-bottom: 10px; text-shadow: 0 1px 3px rgba(0,0,0,0.8); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.reel-audio-name { font-size: 0.75rem; display: flex; align-items: center; gap: 5px; opacity: 0.9; }

.floating-sticker {
    position: absolute; background: rgba(230,25,25,0.9); color: #fff; font-weight: 700;
    padding: 10px 20px; border-radius: 50px; font-size: 0.9rem; transform: rotate(-5deg);
    box-shadow: 0 10px 20px rgba(230,25,25,0.3); backdrop-filter: blur(10px);
}
.sticker-1 { top: -20px; right: -20px; animation: float 4s ease-in-out infinite; }
.sticker-2 { bottom: 40px; left: -30px; transform: rotate(5deg); animation: float 5s ease-in-out infinite reverse; }
@keyframes float { 0%, 100% { transform: translateY(0) rotate(-5deg); } 50% { transform: translateY(-15px) rotate(0deg); } }

/* Avatar Selection Grid (Staff) */
.avatar-selection-grid {
    display: flex; justify-content: center; gap: 4rem; flex-wrap: wrap; margin-top: 3rem;
}
.avatar-item {
    display: flex; flex-direction: column; align-items: center; text-align: center; cursor: pointer; transition: transform 0.3s;
}
.avatar-item:hover { transform: translateY(-10px); }
.avatar-circle {
    width: 150px; height: 150px; border-radius: 50%; border: 3px solid var(--glass-border);
    overflow: hidden; margin-bottom: 1rem; position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5); transition: border-color 0.3s, box-shadow 0.3s;
}
.avatar-item:hover .avatar-circle {
    border-color: var(--red-glow); box-shadow: 0 10px 30px rgba(230,25,25,0.3);
}
.avatar-circle img {
    width: 100%; height: 100%; object-fit: cover; object-position: top;
    filter: grayscale(20%); transition: filter 0.3s;
}
.avatar-item:hover .avatar-circle img { filter: grayscale(0%); }

.custom-avatar-circle {
    display: flex; align-items: center; justify-content: center;
    background: rgba(230,25,25,0.1); border-color: rgba(230,25,25,0.5);
    transition: all 0.3s;
}
.avatar-item:hover .custom-avatar-circle { background: rgba(230,25,25,0.3); border-color: var(--red-glow); transform: scale(1.05); }

.avatar-name { font-family: var(--font-super); font-size: 1.2rem; margin-bottom: 0.3rem; }
.avatar-role { color: var(--text-muted); font-size: 0.9rem; font-weight: 600; }

@media (max-width: 768px) {
    .avatar-selection-grid { gap: 2rem; }
    .avatar-circle { width: 120px; height: 120px; }
}

/* CTA Footer */
.footer-premium { border-top: 1px solid var(--glass-border); padding-top: 6rem; }
.footer-cta { text-align: center; margin-bottom: 6rem; }
.footer-cta h2 { font-family: var(--font-heading); font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 700; text-transform: uppercase; margin-bottom: 3rem; }
.btn-giant {
    display: inline-block; font-size: clamp(1.5rem, 4vw, 2.5rem); font-family: var(--font-heading); color: #fff;
    text-decoration: none; background: transparent; border: none; border-bottom: 2px solid var(--red-glow); padding-bottom: 10px; transition: all 0.3s;
    cursor: pointer; text-transform: uppercase;
}
.btn-giant:hover { color: var(--red-glow); }
.arrow { display: inline-block; transition: transform 0.3s; }
.btn-giant:hover .arrow { transform: translateX(15px); }

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

/* Modal & Form Styles */
.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    background: rgba(0, 0, 0, 0.85); backdrop-filter: blur(10px);
    z-index: 1000; display: flex; justify-content: center; align-items: center;
    opacity: 0; visibility: hidden; transition: all 0.3s ease;
}
.modal-overlay.active { opacity: 1; visibility: visible; }

.modal-content {
    background: var(--bg-dark); border: 1px solid var(--glass-border);
    padding: 3rem; border-radius: 12px; width: 90%; max-width: 500px;
    position: relative; box-shadow: 0 20px 50px rgba(230,25,25,0.15);
    transform: translateY(20px); transition: all 0.4s ease;
}
.modal-overlay.active .modal-content { transform: translateY(0); }

.modal-close {
    position: absolute; top: 15px; right: 20px; background: none; border: none;
    color: #fff; font-size: 2rem; cursor: pointer; transition: color 0.3s;
}
.modal-close:hover { color: var(--red-glow); }

.modal-title { font-family: var(--font-super); font-size: 1.8rem; margin-bottom: 0.5rem; color: #fff; text-shadow: 0 0 10px rgba(230, 25, 25, 0.8), 0 0 20px rgba(230, 25, 25, 0.6), 0 0 30px rgba(230, 25, 25, 0.4); text-transform: uppercase; }
.modal-subtitle { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 2rem; line-height: 1.5; }

.lead-form .form-group { margin-bottom: 1.5rem; }
.lead-form label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 0.5rem; color: #ccc; }
.lead-form input, .lead-form select, .lead-form textarea {
    width: 100%; padding: 12px 15px; background: rgba(255,255,255,0.05);
    border: 1px solid var(--glass-border); border-radius: 6px;
    color: #fff; font-family: var(--font-body); font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus {
    outline: none; border-color: var(--red-glow); box-shadow: 0 0 10px rgba(230,25,25,0.2);
}
.lead-form select option { background: var(--bg-dark); color: #fff; }
.btn-full { width: 100%; text-align: center; margin-top: 1rem; }

@media (max-width: 768px) {
    .modal-content { padding: 2rem; }
}

.footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding: 2rem 0; border-top: 1px solid var(--glass-border);
}
.footer-brand { margin-bottom: 2rem; }
.footer-logo-wrapper { display: flex; align-items: center; margin-bottom: 15px; }
.footer-logo-img { height: 60px; object-fit: contain; }
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; }
.footer-socials { display: flex; gap: 20px; }
.footer-socials a { color: #fff; text-decoration: none; font-weight: 600; font-size: 0.9rem; }
.footer-socials a:hover { color: var(--red-glow); }

@media (max-width: 768px) {
    .footer-bottom { flex-direction: column; text-align: center; gap: 2rem; }
}

/* Wpp Neon */
.wpp-neon {
    position: fixed; bottom: 30px; right: 30px; width: 60px; height: 60px;
    background: #25d366; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: #fff; z-index: 1000; box-shadow: 0 0 20px rgba(37, 211, 102, 0.5);
    transition: transform 0.3s;
}
.wpp-neon svg { width: 35px; height: 35px; }
.wpp-neon:hover { transform: scale(1.1); }

/* Typewriter Effect */
.typewriter-text { color: #00e5ff; font-family: 'Courier New', Courier, monospace; font-size: 1.1rem; min-height: 80px; border-right: 2px solid #00e5ff; animation: blinkCursor 0.8s step-end infinite; }
@keyframes blinkCursor { 0%, 100% { border-color: transparent; } 50% { border-color: #00e5ff; } }

/* Nuevo Botn Contorno */
.btn-outline-glow { display: inline-block; padding: 12px 30px; border: 1px solid var(--red-glow); color: var(--text-main); text-decoration: none; border-radius: 30px; font-weight: 600; font-family: var(--font-heading); transition: all 0.3s ease; box-shadow: 0 0 15px rgba(230, 25, 25, 0.1); margin-top: 1rem; cursor: pointer; }
.btn-outline-glow:hover { background-color: rgba(230, 25, 25, 0.1); box-shadow: 0 0 25px rgba(230, 25, 25, 0.3); color: #fff; }

/* Custom Avatar Banner */
.custom-avatar-banner { margin-top: 5rem; padding: 3rem; text-align: center; background: rgba(255, 255, 255, 0.02); border: 1px solid var(--glass-border); border-radius: 16px; box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); }
.custom-avatar-banner h3 { font-family: var(--font-heading); font-size: 1.8rem; margin-bottom: 0.5rem; color: #fff; }
.custom-avatar-banner p { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 1.5rem; }

/* Social Icons */
.footer-socials { display: flex; gap: 1rem; align-items: center; }
.social-icon { display: flex; justify-content: center; align-items: center; width: 45px; height: 45px; border-radius: 50%; background: rgba(255, 255, 255, 0.05); color: #fff; transition: all 0.3s ease; border: 1px solid var(--glass-border); text-decoration: none; }
.social-icon:hover { background: rgba(230, 25, 25, 0.2); border-color: var(--red-glow); color: var(--red-glow); transform: translateY(-3px); box-shadow: 0 5px 15px rgba(230, 25, 25, 0.3); }

.social-link-flex { display: flex; align-items: center; color: var(--text-muted); text-decoration: none; transition: all 0.3s ease; }
.social-link-flex:hover, .social-link-flex:hover .social-text { color: var(--red-glow); }
.social-text { font-family: var(--font-heading); color: inherit; text-decoration: none; font-size: 1.1rem; transition: color 0.3s ease; }
.social-separator { color: var(--glass-border); margin: 0 0.5rem; }
.crea2-small-logo { height: 55px; width: auto; opacity: 1; transition: all 0.3s ease; display: block; }
.social-logo-link:hover .crea2-small-logo { transform: scale(1.05); }

/* Boton Subir Arriba */
.scroll-top-btn {
    position: fixed;
    bottom: 110px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    backdrop-filter: blur(10px);
}
.scroll-top-btn.visible { opacity: 1; visibility: visible; }
.scroll-top-btn:hover {
    background: rgba(230, 25, 25, 0.2);
    border-color: var(--red-glow);
    color: var(--red-glow);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(230, 25, 25, 0.3);
}

/* Boton Outline Secundario */
.btn-outline { background: transparent; color: var(--text-main); border: 1px solid rgba(255, 255, 255, 0.3); padding: 15px 35px; font-size: 1.1rem; font-weight: 600; border-radius: 30px; cursor: pointer; transition: all 0.3s ease; text-decoration: none; display: inline-flex; align-items: center; justify-content: center; }
.btn-outline:hover { border-color: var(--text-main); background: rgba(255, 255, 255, 0.1); }
