/* ===================================
   VARIABLES Y ESTILOS GLOBALES
   =================================== */

/* ===================================
   VARIABLES Y ESTILOS GLOBALES
   =================================== */

:root {
    --primary-blue: #0066cc;
    --secondary-blue: #0052a3;
    --light-blue: #e6f2ff;
    --accent-blue: #3399ff;
    --dark-blue: #004499;
    --danger-red: #FF2D55;
    --fire-orange: #FF6B35;
    --urgency-yellow: #FFD60A;
    --success-green: #06D6A0;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --border-light: #e0e0e0;
    --shadow: 0 10px 30px rgba(0, 102, 204, 0.1);
    --shadow-danger: 0 10px 30px rgba(255, 45, 85, 0.25);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===================================
   NAVEGACIÓN
   =================================== */

.navbar {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 102, 204, 0.08);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.logo i {
    font-size: 2rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover {
    color: var(--primary-blue);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-blue));
    transition: var(--transition);
}

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

/* Botones de Navegación - Login/Dashboard */
.nav-auth {
    display: flex;
    gap: 10px;
    align-items: center;
}

.btn-nav-login,
.btn-nav-dashboard {
    padding: 10px 18px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.btn-nav-login {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: white;
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.2);
}

.btn-nav-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.3);
}

.btn-nav-dashboard {
    background: #e6f2ff;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-nav-dashboard:hover {
    background: var(--light-blue);
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 6px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-blue);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===================================
   SECCIÓN HERO
   =================================== */

.hero {
    background: linear-gradient(135deg, #f8f9ff 0%, #e6f2ff 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(51, 153, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-title::before {
    content: '';
    display: block;
    width: 80px;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-blue));
    margin-bottom: 1rem;
    border-radius: 3px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: white;
    box-shadow: 0 10px 20px rgba(0, 102, 204, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 102, 204, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
    background: var(--light-blue);
    transform: translateY(-3px);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

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

.stat {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.08);
    transition: var(--transition);
}

.stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 102, 204, 0.15);
}

.stat h3 {
    color: var(--primary-blue);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.stat p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
}

.floating-card {
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, var(--accent-blue), var(--primary-blue));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 120px;
    color: white;
    box-shadow: 0 20px 60px rgba(0, 102, 204, 0.3);
    animation: float 3s ease-in-out infinite;
}

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

/* ===================================
   SECCIÓN CARACTERÍSTICAS
   =================================== */

.features {
    padding: 100px 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 3rem;
    position: relative;
}

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

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: linear-gradient(135deg, #ffffff, #f8f9ff);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-light);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    border-color: var(--accent-blue);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--light-blue), rgba(51, 153, 255, 0.1));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    color: white;
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ===================================
   SECCIÓN BENEFICIOS
   =================================== */

.benefits {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #e6f2ff 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.benefit-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 2rem;
    align-items: start;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.08);
    transition: var(--transition);
    border-left: 5px solid var(--primary-blue);
}

.benefit-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow);
}

.benefit-image {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--light-blue), rgba(51, 153, 255, 0.15));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary-blue);
    flex-shrink: 0;
}

.benefit-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
    color: var(--text-dark);
}

.benefit-content p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ===================================
   SECCIÓN PRECIOS
   =================================== */

.pricing {
    padding: 100px 0;
    background: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.pricing-card {
    background: linear-gradient(135deg, #ffffff, #f8f9ff);
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid var(--border-light);
    transition: var(--transition);
    position: relative;
    text-align: center;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    border-color: var(--primary-blue);
}

.pricing-card.featured {
    transform: scale(1.05);
    border-color: var(--primary-blue);
    box-shadow: var(--shadow);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin: 1rem 0;
}

.price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light);
}

.plan-description {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.features-list {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.features-list li {
    padding: 0.7rem 0;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-light);
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list i {
    color: var(--primary-blue);
    margin-right: 0.8rem;
    font-weight: 600;
}

.features-list i.fa-times {
    color: #ccc;
}

.pricing-card .btn {
    width: 100%;
    margin-top: 2rem;
}

/* ===================================
   SECCIÓN TESTIMONIOS
   =================================== */

.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #e6f2ff 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.08);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.stars {
    color: #ffc107;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-style: italic;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.testimonial-author h4 {
    color: var(--text-dark);
    margin-bottom: 0.2rem;
}

.testimonial-author p {
    color: var(--text-light);
    font-size: 0.85rem;
    margin: 0;
}

/* ===================================
   SECCIÓN CTA
   =================================== */

.cta {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta .btn-primary {
    background: white;
    color: var(--primary-blue);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cta .btn-primary:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    background: #0a1f3f;
    color: #ccc;
    padding: 60px 0 20px;
}

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

.footer-section h4 {
    color: white;
    margin-bottom: 1.5rem;
}

.footer-section p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

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

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--accent-blue);
}

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

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

.social-links a:hover {
    background: var(--accent-blue);
    transform: translateY(-3px);
}

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

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
    }

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

    .hero .container {
        grid-template-columns: 1fr;
    }

    .hero-image {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }

    .benefit-item {
        grid-template-columns: 1fr;
    }

    .benefit-image {
        justify-self: center;
    }

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

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

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

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 50px 0;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-title::before {
        width: 60px;
    }

    .features-grid,
    .benefits-grid,
    .pricing-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .navbar-content {
        padding: 0.5rem 0;
    }

    .logo {
        font-size: 1.2rem;
    }

    .hero-buttons {
        gap: 1rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* ===================================
   ESTILOS CEREBRO REPTIL - URGENCIA Y EMOCIÓN
   =================================== */

/* Mensaje de urgencia */
.urgency-text {
    color: var(--danger-red);
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 1rem;
    animation: pulse-text 1.5s ease-in-out infinite;
}

@keyframes pulse-text {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Botones urgentes */
.btn-urgent {
    background: linear-gradient(135deg, var(--danger-red) 0%, var(--fire-orange) 100%);
    animation: button-pulse 2s ease-in-out infinite;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
}

.btn-urgent:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 45, 85, 0.4);
}

@keyframes button-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 45, 85, 0.7); }
    50% { box-shadow: 0 0 0 15px rgba(255, 45, 85, 0); }
}

.btn-pulse {
    animation: button-pulse 2s ease-in-out infinite;
}

/* Tarjetas de miedo (características) */
.fear-feature {
    background: linear-gradient(135deg, #f8f9ff 0%, #fff0f5 100%);
    border-left: 5px solid var(--danger-red);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.fear-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--danger-red), var(--fire-orange), var(--urgency-yellow));
}

.fear-feature:hover {
    border-left-color: var(--fire-orange);
    box-shadow: 0 15px 40px rgba(255, 45, 85, 0.2);
    transform: translateY(-5px);
}

.fear-feature .feature-icon {
    background: linear-gradient(135deg, var(--danger-red), var(--fire-orange));
    color: white;
    animation: icon-bounce 2s ease-in-out infinite;
}

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

/* Beneficios de supervivencia */
.survival-benefit {
    background: linear-gradient(135deg, #f0f9ff 0%, #f5f9ff 100%);
    border-top: 4px solid var(--success-green);
    position: relative;
}

.survival-benefit .benefit-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--urgency-yellow), var(--fire-orange));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1.5rem;
    animation: spin-reward 3s linear infinite;
}

@keyframes spin-reward {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.survival-benefit .benefit-image.profit {
    animation: none;
}

.survival-benefit h3 {
    color: var(--danger-red);
    font-size: 1.4rem;
    font-weight: 800;
}

.survival-benefit p {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

/* Precio y planes peligro */
.pricing-header-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.danger-featured {
    background: linear-gradient(135deg, var(--danger-red) 0%, var(--fire-orange) 100%);
    color: white;
    transform: scale(1.08);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(255, 45, 85, 0.4);
}

.danger-featured::before {
    content: '⚡ MEJOR OPCIÓN ⚡';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--urgency-yellow);
    color: #000;
    padding: 5px 20px;
    font-weight: 800;
    font-size: 0.8rem;
    animation: float-down 2s ease-in-out infinite;
}

@keyframes float-down {
    0% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(5px); }
    100% { transform: translateX(-50%) translateY(0); }
}

.danger-featured h3,
.danger-featured .price,
.danger-featured .plan-description {
    color: white;
}

.badge-danger, .badge-fire, .badge-gold {
    font-weight: 800;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.badge-danger {
    background: rgba(255, 45, 85, 0.2);
    color: var(--danger-red);
}

.badge-fire {
    background: linear-gradient(135deg, var(--danger-red), var(--fire-orange));
    color: white;
    animation: badge-flash 1.5s ease-in-out infinite;
}

@keyframes badge-flash {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.badge-gold {
    background: linear-gradient(135deg, var(--urgency-yellow), var(--fire-orange));
    color: white;
}

.fire {
    color: var(--danger-red);
    font-weight: 800;
}

.btn-fire {
    background: linear-gradient(135deg, var(--danger-red) 0%, var(--fire-orange) 100%);
    color: white;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: button-pulse 2s ease-in-out infinite;
}

.btn-fire:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 45, 85, 0.5);
}

.cta-subtext {
    font-size: 0.9rem;
    font-weight: 700;
    margin-top: 0.5rem;
}

.cta-subtext.fire {
    color: var(--danger-red);
    animation: pulse-text 1.5s ease-in-out infinite;
}

/* CTA de peligro */
.danger-cta {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.danger-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--danger-red), transparent);
    animation: scan-line 3s ease-in-out infinite;
}

@keyframes scan-line {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: -100%; }
}

.danger-cta h2 {
    color: var(--danger-red);
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(255, 45, 85, 0.5);
    animation: title-glow 2s ease-in-out infinite;
}

@keyframes title-glow {
    0%, 100% { text-shadow: 0 0 20px rgba(255, 45, 85, 0.5); }
    50% { text-shadow: 0 0 40px rgba(255, 45, 85, 0.8); }
}

.danger-cta p {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--urgency-yellow);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.final-urgency {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--fire-orange);
    animation: pulse-text 1s ease-in-out infinite;
}

/* Avatar éxito */
.author-avatar.success {
    background: linear-gradient(135deg, var(--success-green), var(--urgency-yellow));
    color: white;
    font-weight: 800;
}

/* Icono de fuego */
.fa-check.fire {
    color: var(--danger-red);
}

.fa-check.fire::before {
    animation: fire-flicker 0.8s ease-in-out infinite;
}

@keyframes fire-flicker {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% { opacity: 1; }
    20%, 24%, 55% { opacity: 0.5; }
}

/* Responsive para cerebro reptil */
@media (max-width: 768px) {
    .danger-cta h2 {
        font-size: 2rem;
    }
    
    .danger-featured {
        transform: scale(1.05);
    }
    
    .urgency-text {
        font-size: 1rem;
    }
    
    .btn-urgent {
        width: 100%;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}
