:root {
    --bg-dark: #050507; /* Ligeramente más rico */
    --bg-card: #0d0f12;
    --bg-card-light: #16181d;
    
    /* Azul eléctrico brillante estilo Neón/Premium */
    --accent: #00d2ff; 
    --accent-dark: #3a7bd5;
    --accent-hover: #5cdbfa;
    --accent-gradient: linear-gradient(135deg, #00d2ff 0%, #3a7bd5 100%);
    
    --text-main: #ffffff;
    --text-muted: #b0b5be;
    
    --border-color: rgba(255, 255, 255, 0.08);
    
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-family: var(--font-main);
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
}

.text-accent {
    color: var(--accent);
}

h1, h2, h3, h4, .logo {
    font-family: var(--font-heading);
}

/* Background Image with brighter Gradient Fade */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120vh;
    /* Imagen más brillante y de estudio de un coche húmedo/espuma */
    background-image: url('https://images.unsplash.com/photo-1550355291-bbee04a92027?q=80&w=1920&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Dejar pasar más luz en el centro/derecha. Sombras suaves. */
    background: radial-gradient(circle at 60% 40%, rgba(5,5,7,0.3) 0%, rgba(5,5,7,0.85) 60%, rgba(5,5,7,1) 100%);
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(5,5,7,0.9) 0%, rgba(5,5,7,0) 100%);
    transition: all 0.3s ease;
}

.logo {
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent);
    text-shadow: 0 0 10px rgba(0, 210, 255, 0.4);
}

.nav-contact .nav-phone {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s;
}
.nav-contact .nav-phone i {
    color: #25D366;
    font-size: 1.3rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-heading);
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-sm {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--accent-gradient);
    color: #050507;
    box-shadow: 0 4px 15px rgba(0, 210, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 210, 255, 0.5);
}

.btn-white {
    background: #ffffff;
    color: #050507;
}
.btn-white:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--text-main);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
}

.btn-full {
    width: 100%;
}

/* Hero Section */
.hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    padding: 10rem 5% 6rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    min-height: 90vh;
    align-items: center;
}

/* Left Content */
.reviews-badge {
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stars {
    color: var(--accent);
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.review-count {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.hero-title {
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
}

.hero-desc {
    color: var(--text-muted);
    font-size: 1.15rem;
    margin-bottom: 3rem;
    max-width: 85%;
}

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

.stats-container {
    display: flex;
    gap: 4rem;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 2rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--text-main);
    margin-bottom: 0.2rem;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Right Content: Packages */
.packages-header {
    text-align: right;
    margin-bottom: 2rem;
}

.packages-header h2 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.toggle-container {
    display: flex;
    justify-content: flex-end;
}

.toggle-bg {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    padding: 0.4rem;
    display: flex;
}

.toggle-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 0.6rem 1.5rem;
    border-radius: 100px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.toggle-btn.active {
    background: var(--text-main);
    color: var(--bg-dark);
}

.packages-cards {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-end;
    align-items: center;
}

/* Rediseño de las Tarjetas para que respiren */
.package-card {
    background: rgba(13, 15, 18, 0.85); /* Semi transparente */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    width: 320px;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

/* La tarjeta Popular ahora brilla de verdad */
.package-card.popular {
    background: var(--accent-gradient);
    border: none;
    padding: 3rem 2rem; /* Más alta */
    color: #050507;
    box-shadow: 0 20px 50px rgba(0, 210, 255, 0.25);
    z-index: 10;
}

.package-card.popular .package-sub, 
.package-card.popular .package-features li,
.package-card.popular .savings-note {
    color: rgba(0,0,0,0.7);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #050507;
    color: var(--text-main);
    padding: 0.4rem 1.2rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    font-family: var(--font-heading);
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.popular-badge i { color: var(--accent); }

.package-icon {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.package-price {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.package-price span {
    font-size: 1rem;
    font-weight: 500;
    font-family: var(--font-main);
}

.package-name {
    font-size: 1.4rem;
    margin-bottom: 0.2rem;
}

.package-sub {
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.package-features {
    font-size: 0.9rem;
    margin-bottom: 2.5rem;
}

.package-features ul {
    list-style: none;
}

.package-features li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
}

.package-features li::before {
    content: "✓";
    font-weight: bold;
    margin-right: 0.8rem;
}

.package-card.popular .package-features li::before {
    color: #050507;
}

.package-card.normal .package-features li::before {
    color: var(--accent);
}

.savings-note {
    text-align: center;
    font-size: 0.8rem;
    margin-top: 1.2rem;
    font-weight: 500;
}

/* Trust Section */
.trust-section, .how-it-works, .faq-section {
    padding: 8rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

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

.trust-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.trust-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.trust-overlay-card {
    position: absolute;
    bottom: 30px;
    right: -30px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.8);
    max-width: 280px;
    backdrop-filter: blur(10px);
}

.trust-overlay-card i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.tag-label {
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.trust-content h2 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.trust-content .lead {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.benefit-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-list li {
    display: flex;
    gap: 1.5rem;
}

.benefit-list .icon {
    background: rgba(0, 210, 255, 0.1);
    color: var(--accent);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.benefit-list .text strong {
    display: block;
    font-size: 1.2rem;
    font-family: var(--font-heading);
    margin-bottom: 0.3rem;
}

/* How It Works */
.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

.step-card {
    position: relative;
    background: transparent;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 20px;
    background: var(--accent-gradient);
    color: #050507;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    font-family: var(--font-heading);
    z-index: 2;
    box-shadow: 0 10px 20px rgba(0, 210, 255, 0.3);
}

.step-image {
    width: 100%;
    height: 250px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

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

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
}

.faq-question {
    padding: 1.8rem;
    font-weight: 600;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-question:hover {
    background: var(--bg-card-light);
}

.faq-answer {
    padding: 0 1.8rem;
    max-height: 0;
    overflow: hidden;
    color: var(--text-muted);
    transition: all 0.4s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.8rem 1.8rem;
    max-height: 300px;
}

/* Enhanced Footer */
.pro-footer {
    background: #020202;
    padding: 6rem 5% 2rem;
    margin-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.brand-col p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 400px;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--bg-card);
    color: var(--text-main);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1.2rem;
}

.social-links a:hover {
    background: var(--accent-gradient);
    color: #000;
    transform: translateY(-3px);
}

.footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.contact-list {
    list-style: none;
}

.contact-list li {
    display: flex;
    gap: 1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    align-items: center;
}

.contact-list i {
    color: var(--accent);
    font-size: 1.2rem;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* WhatsApp Floating */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50px;
    width: 65px;
    height: 65px;
    text-align: center;
    font-size: 35px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.6);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-section {
        grid-template-columns: 1fr;
        gap: 5rem;
        padding-top: 8rem;
    }
    
    .hero-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-desc {
        text-align: center;
    }
    
    .packages-header {
        text-align: center;
    }
    
    .toggle-container {
        justify-content: center;
    }
    
    .packages-cards {
        justify-content: center;
    }

    .trust-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .trust-image-wrapper {
        order: 2;
    }
    
    .trust-overlay-card {
        right: 20px;
    }

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

@media (max-width: 768px) {
    .nav-links, .nav-contact {
        display: none;
    }
    
    .stats-container {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .packages-cards {
        flex-direction: column;
    }
    
    .step-card {
        margin-bottom: 2rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
}
