/* =========================================
   ESTILO COMPLETO: CLON EXACTO + DISRUPCIÓN
   ========================================= */

/* --- 1. RESET Y VARIABLES GLOBALES --- */
* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --virgin-red: #E10A17;
    --virgin-dark: #1B2945;
    --gray-bg: #F5F5F5;
    --white: #FFFFFF;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--gray-bg);
    color: #333;
    padding-top: 110px; /* Espacio para el header */
    overflow-x: hidden;
}

/* --- 2. HEADER & LOGO --- */
.header {
    background-color: var(--white);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center; /* Centrado total del logo */
}

.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.logo { height: 80px !important; width: auto; display: block; }

/* --- 3. HERO SECTION: FONDO VIVO (Líquido) --- */
.hero-video {
    position: relative;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
    clip-path: ellipse(150% 100% at 50% 0%);
    margin-bottom: -50px;
    
    /* Gradiente Animado */
    background: linear-gradient(-45deg, #000000, #1B2945, #E10A17, #5c0000);
    background-size: 400% 400%;
    animation: gradientFlow 10s ease infinite;
    box-shadow: inset 0 0 50px rgba(0,0,0,0.5);
}

@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.video-bg, .video-overlay { display: none !important; }

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

.hero-content h1 {
    font-size: 2.8rem; font-weight: 900; text-transform: uppercase;
    letter-spacing: 1px; text-shadow: 0 5px 15px rgba(0,0,0,0.3);
    margin-bottom: 15px;
}
.hero-content p { font-size: 1.2rem; font-weight: 500; opacity: 0.9; }

/* --- 4. TARJETAS DE PAQUETES --- */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    padding: 10px;
}

.package-card {
    background: white;
    border-radius: 25px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex; flex-direction: column; border: none;
    position: relative; z-index: 1;
    opacity: 0; animation: fadeInUp 0.6s ease-out forwards;
}
.package-card:hover { transform: translateY(-10px); }

@keyframes fadeInUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
.package-card:nth-child(1) { animation-delay: 0.1s; }
.package-card:nth-child(2) { animation-delay: 0.2s; }
.package-card:nth-child(3) { animation-delay: 0.3s; }
.package-card:nth-child(4) { animation-delay: 0.4s; }
.package-card:nth-child(5) { animation-delay: 0.5s; }

.package-header {
    background-color: var(--virgin-red);
    padding: 20px; color: white;
    display: flex; justify-content: space-between; align-items: flex-start;
    position: relative;
    border-radius: 25px 25px 0 0;
}
.header-left { display: flex; flex-direction: column; }
.big-gb { font-size: 3rem; font-weight: 900; line-height: 1; }
.sub-rrss { font-size: 0.9rem; font-weight: 700; margin-bottom: 5px; }
.vigencia { font-size: 0.9rem; opacity: 0.9; font-weight: 400; }
.header-right { text-align: right; }
.price { font-size: 2.2rem; font-weight: 800; }

.package-body { 
    padding: 20px; flex-grow: 1; text-align: left;
    border-radius: 0 0 25px 25px; background-color: white;
}
.benefit-block { margin-bottom: 15px; }
.red-title { color: var(--virgin-red); font-size: 1.3rem; font-weight: 800; margin-bottom: 2px; }
.red-subtitle { color: var(--virgin-red); font-size: 1rem; font-weight: 500; }
.divider { border: 0; border-top: 1px solid #ffcccc; margin: 15px 0; }

.app-icons { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.app-icons img {
    width: 32px !important; height: 32px !important;
    object-fit: contain; filter: drop-shadow(0 2px 3px rgba(0,0,0,0.2));
    transition: transform 0.3s;
}

.featured { border: 3px solid var(--virgin-red); transform: scale(1.02); z-index: 10; }
.featured:hover { box-shadow: 0 15px 40px rgba(225, 10, 23, 0.25) !important; }
.badge {
    background: white; color: var(--virgin-red); padding: 5px 15px;
    border-radius: 15px; font-weight: bold; position: absolute;
    top: -12px; left: 50%; transform: translateX(-50%);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2); font-size: 0.8rem;
}

.btn-buy {
    display: block; width: 90%; margin: 0 auto 25px auto;
    padding: 15px; text-align: center; background-color: var(--virgin-red);
    color: white; text-decoration: none; border-radius: 50px;
    font-weight: 800; font-size: 1.1rem; transition: all 0.3s;
}
.btn-buy:hover { background-color: #c4000c; transform: scale(1.05); }

/* --- 5. EFECTOS DISRUPTIVOS EXTRA --- */
@keyframes pulse-red {
    0% { box-shadow: 0 0 0 0 rgba(225, 10, 23, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(225, 10, 23, 0); }
    100% { box-shadow: 0 0 0 0 rgba(225, 10, 23, 0); }
}
.featured .btn-buy { animation: pulse-red 2s infinite; }
.btn-buy:hover { animation: none; }

.package-card::before {
    content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg); transition: none; z-index: 2; pointer-events: none;
}
.package-card:hover::before { animation: shine 0.75s; }
@keyframes shine { 100% { left: 200%; } }

.package-card:hover .app-icons img { animation: float 2s ease-in-out infinite; }
.package-card:hover .app-icons img:nth-child(odd) { animation-duration: 2.2s; }
.package-card:hover .app-icons img:nth-child(even) { animation-duration: 1.8s; }
@keyframes float { 0% { transform: translateY(0px); } 50% { transform: translateY(-3px); } 100% { transform: translateY(0px); } }


/* --- 6. SECCIÓN HOLOGRAMAS (OSCURA) --- */
.holo-steps-section {
    background: radial-gradient(circle at center, #2a1a1a 0%, #000000 100%);
    padding: 80px 0; text-align: center; color: white; position: relative; overflow: hidden;
}
.holo-steps-section::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background-image: linear-gradient(rgba(225, 10, 23, 0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(225, 10, 23, 0.1) 1px, transparent 1px);
    background-size: 30px 30px; opacity: 0.3; z-index: 0;
}
.holo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; position: relative; z-index: 2; }
.holo-card {
    background: rgba(255, 255, 255, 0.05); backdrop-filter: blur(10px);
    border: 1px solid rgba(225, 10, 23, 0.3); border-radius: 20px;
    padding: 30px 20px; transition: all 0.4s ease; box-shadow: 0 0 20px rgba(225, 10, 23, 0.1);
}
.holo-card:hover {
    transform: translateY(-10px) scale(1.02); border-color: var(--virgin-red);
    box-shadow: 0 0 30px rgba(225, 10, 23, 0.4), inset 0 0 20px rgba(225, 10, 23, 0.2);
}
.holo-number {
    font-size: 3rem; font-weight: 900; color: var(--virgin-red);
    text-shadow: 0 0 15px rgba(225, 10, 23, 0.8); margin-bottom: 10px;
}
.holo-card h3 { font-size: 1.3rem; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 1px; }
.holo-card p { opacity: 0.8; font-size: 0.95rem; }
.holo-steps-section h2 {
    font-size: 2.2rem; text-transform: uppercase; letter-spacing: 2px;
    margin-bottom: 50px; position: relative; z-index: 2;
    text-shadow: 0 0 20px rgba(225, 10, 23, 0.5);
}

/* --- 7. FOOTER Y COBERTURA --- */
.coverage-section {
    padding: 60px 0;
    background-color: white;
    border-top: 1px solid #eee;
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.coverage-card {
    display: flex; flex-direction: column; align-items: center; text-align: center;
    padding: 25px; border: 1px solid #eee; border-radius: 15px;
    text-decoration: none; color: #333; transition: all 0.3s ease;
    background: #fff; box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.coverage-card:hover {
    transform: translateY(-5px); border-color: var(--virgin-red);
    box-shadow: 0 10px 25px rgba(225, 10, 23, 0.15);
}

.cov-icon { font-size: 2.5rem; margin-bottom: 15px; }
.coverage-card h3 { color: var(--virgin-dark); margin-bottom: 5px; font-weight: 800; }
.coverage-card p { font-size: 0.9rem; color: #666; }

.info-section { padding: 50px 0; background: white; }
.bg-gray { background-color: var(--gray-bg); }
h2 { text-align: center; color: var(--virgin-dark); margin-bottom: 30px; }
footer { background-color: var(--virgin-dark); color: white; text-align: center; padding: 40px 0; }

/* =========================================
   MEJORAS VISUALES - TRUST BADGES + TESTIMONIALES + BADGES
   ========================================= */

/* --- TRUST BADGES --- */
.trust-badges {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 30px 0;
    border-top: 3px solid #E10A17;
    border-bottom: 1px solid #dee2e6;
    margin-bottom: 40px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    align-items: center;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(225, 10, 23, 0.15);
}

.trust-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.trust-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.trust-text strong {
    color: #1B2945;
    font-size: 1rem;
    font-weight: 700;
}

.trust-text span {
    color: #6c757d;
    font-size: 0.85rem;
}

/* --- TESTIMONIALES --- */
.testimonials-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #1B2945;
    margin-bottom: 10px;
    font-weight: 800;
}

.section-header p {
    font-size: 1.1rem;
    color: #6c757d;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(225, 10, 23, 0.15);
    border-color: #E10A17;
}

.testimonial-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #E10A17, #ff6b6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.avatar-emoji {
    font-size: 1.8rem;
}

.testimonial-info {
    flex: 1;
}

.testimonial-info h4 {
    margin: 0;
    font-size: 1.1rem;
    color: #1B2945;
    font-weight: 700;
}

.testimonial-location {
    font-size: 0.85rem;
    color: #6c757d;
}

.testimonial-stars {
    font-size: 1rem;
}

.testimonial-body {
    margin: 15px 0;
    line-height: 1.6;
}

.testimonial-body p {
    color: #495057;
    font-size: 0.95rem;
    margin: 0;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #e9ecef;
}

.testimonial-package {
    background: linear-gradient(135deg, #E10A17, #c4000c);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.testimonial-time {
    color: #adb5bd;
    font-size: 0.8rem;
}

/* Stats Bar */
.testimonials-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    padding: 40px;
    background: linear-gradient(135deg, #E10A17, #c4000c);
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(225, 10, 23, 0.3);
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.95;
    font-weight: 500;
}

/* --- BADGES MEJORADOS --- */
.badge-popular {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #1B2945;
    padding: 10px 20px;
    font-weight: 800;
    font-size: 0.9rem;
    border-radius: 25px;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.6);
    z-index: 10;
    animation: pulse-popular 2s infinite;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.badge-valor {
    position: absolute;
    top: -15px;
    left: 20px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    padding: 10px 20px;
    font-weight: 800;
    font-size: 0.9rem;
    border-radius: 25px;
    box-shadow: 0 4px 20px rgba(76, 175, 80, 0.6);
    z-index: 10;
    animation: pulse-valor 2s infinite;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.package-card.popular {
    border: 3px solid #ffd700;
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.3);
    position: relative;
    z-index: 5;
}

.package-card.popular:hover {
    transform: scale(1.08);
    box-shadow: 0 15px 50px rgba(255, 215, 0, 0.4);
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .trust-item {
        padding: 12px;
    }
    
    .trust-icon {
        font-size: 2rem;
    }
    
    .trust-text strong {
        font-size: 0.9rem;
    }
    
    .trust-text span {
        font-size: 0.8rem;
    }
    
    .testimonials-section {
        padding: 50px 0;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .testimonials-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .badge-popular,
    .badge-valor {
        top: -10px;
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    .package-card.popular {
        transform: scale(1);
    }
    
    .package-card.popular:hover {
        transform: scale(1.02);
    }
}
