:root {
    --bg-color: #050505;
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --accent-primary: #7c3aed;
    /* Violeta */
    --accent-secondary: #2563eb;
    /* Azul */
    --accent-highlight: #00ff9d;
    /* Verde Neon para destacar */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
  
}

html { 
    overscroll-behavior: none
    
   }

/* Background Gradients */
.bg-gradient-1,
.bg-gradient-2 {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.4;
    animation: float 20s infinite ease-in-out;
}

.bg-gradient-1 {
    top: -10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: var(--accent-primary);
}

.bg-gradient-2 {
    bottom: -10%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: var(--accent-secondary);
    animation-delay: -10s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(30px, 30px);
    }
}

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

/* Glassmorphism Classes */
.glass-header {
    background: rgba(5, 5, 5, 0.7);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1rem 0;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: var(--glass-shadow);
    padding: 2rem;
    transition: all 0.3s ease;

}


.glass-card.store-card{
display: flex;
flex-direction: column;
gap: 1rem;
}


.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.glass-input {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: white;
    font-family: inherit;
    font-size: 1rem;
    margin-top: 5px;
    transition: border-color 0.3s;
}

.glass-input:focus {
    outline: none;
    border-color: var(--accent-primary);
    background: rgba(255, 255, 255, 0.1);
}

/* Header */
.header-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;
}

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

.btn-call {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--accent-secondary);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s, background 0.3s;
}

.btn-call svg {
    width: 20px;
    height: 20px;
}

.btn-call:hover {
    transform: scale(1.05);
    background: #3b82f6;
}

/* Nav Container */
.glass-header nav {
    display: flex;
    align-items: center;
    gap: 8px;

}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    border-color: var(--accent-primary);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.2);
}

.btn-call:hover {
    transform: scale(1.05);
    background: #3b82f6;
}

/* Hero */
.hero {
    text-align: center;
    padding: 6rem 0 4rem;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.text-gradient {
    background: linear-gradient(to right, var(--accent-primary), var(--accent-secondary));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* Trust Bar */
.trust-bar {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid var(--glass-border);
    color: var(--accent-highlight);
}

.trust-item i {
    width: 18px;
    height: 18px;
}

/* How It Works Section */
.how-it-works {
    margin-bottom: 4rem;
    text-align: center;
}

.section-title {
    font-size: 2rem;
    margin-bottom: .5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.step-card {
    text-align: center;
    padding: 2rem;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.4);
}

.step-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.step-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Repair Section */
.repair-section {
    margin-bottom: 4rem;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-container h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

/* Grids */
.brand-grid,
.issue-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 10px;
}

.selection-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.selection-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(124, 58, 237, 0.2);
    /* Glow violeta sutil */
}

.selection-card.selected {
    border-color: var(--accent-primary);
    background: rgba(124, 58, 237, 0.2);
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.4);
}

.price-badge.consultar {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

/* Info Alert */
.info-alert {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 1.5rem;
    text-align: left;
}

.info-alert .alert-icon {
    color: #3b82f6;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.info-alert p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Buttons */
.btn-primary {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 15px;
    width: 100%;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:hover {
    background: #20BA5C;
    transform: scale(1.02);
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.4);
}

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

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

/* Terms */
.terms {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 10px;
}

/* Features/Stores */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding-bottom: 2rem;
    /* Reduced padding bottom */
}

.store-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Highlight for Home Service Card */
.highlight-card {
    border: 1px solid rgba(124, 58, 237, 0.5);
    /* Borde más visible */
    background: linear-gradient(145deg, rgba(124, 58, 237, 0.1), rgba(255, 255, 255, 0.05));
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
    animation: shine 3s infinite linear;
}

@keyframes shine {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.highlight-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 0 25px rgba(124, 58, 237, 0.3);
}

.btn-action {
    margin-top: auto;
    background: var(--accent-primary);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-action:hover {
    background: #6428c4;
}

.btn-map {
    margin-top: auto;
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: background 0.3s;
}

.btn-map:hover {
    background: var(--accent-primary);
}

.feature-icon {
    width: 40px;
    height: 40px;
    color: var(--accent-primary);
    margin-bottom: 15px;
}

/* Franchise Section */
.franchise {
    margin-bottom: 4rem;
}

.franchise-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.2));
    border: 1px dashed var(--glass-border);
}

.franchise-content {
    max-width: 70%;
}

.franchise-content h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
}

.btn-secondary {
    padding: 10px 20px;
    border: 1px solid white;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: white;
    color: black;
}

/* Modal Styles */
.modal {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.modal.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    width: 90%;
    max-width: 500px;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s;
    background: rgba(20, 20, 20, 0.95);
    /* Fondo más sólido para el modal */
}

.modal.show .modal-content {
    transform: scale(1);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover {
    color: white;
}

.modal-subtitle {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.modal-alert {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--accent-secondary);
    padding: 10px;
    border-radius: 8px;
    font-size: 0.85rem;
    margin-bottom: 15px;
    display: flex;
    gap: 10px;
    align-items: center;
}

/* Utilities */
.hidden {
    display: none;
}

.slide-in {
    animation: slideDown 0.4s ease-out forwards;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

footer {
    border-top: 1px solid var(--glass-border);
    padding: 2rem 0;
    background: rgba(0, 0, 0, 0.5);
    font-size: 0.9rem;
}

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

.payment-methods {
    display: flex;
    gap: 15px;
    color: var(--text-secondary);
}

.payment-methods i {
    width: 24px;
    height: 24px;
}

/* ================================
   MOBILE BURGER MENU
   ================================ */

/* Burger Button - Hidden on desktop */
.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.burger-line {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Burger Animation when open */
.burger-btn.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.burger-btn.active .burger-line:nth-child(2) {
    opacity: 0;
}

.burger-btn.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 24px;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
    width: 100%;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}

.mobile-nav-link:hover {
    background: rgba(124, 58, 237, 0.2);
    border-color: var(--accent-primary);
    transform: scale(1.05);
}

.mobile-nav-link i {
    width: 24px;
    height: 24px;
}

.mobile-nav-call {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border: none;
    color: white;
}

.mobile-nav-call:hover {
    background: linear-gradient(135deg, var(--accent-secondary), var(--accent-primary));
    transform: scale(1.05);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    /* Show burger, hide desktop nav */
    .burger-btn {
        display: flex;
    }
    
    .nav-desktop {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }

    .brand-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .float-whatsapp {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 24px;
    }

    .trust-bar {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .trust-item {
        width: 100%;
        justify-content: center;
    }

    .franchise-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .franchise-content {
        max-width: 100%;
    }

    .franchise-content h3 {
        justify-content: center;
    }

    .footer-content {
        flex-direction: column;
        gap: 15px;
    }

    /* Mobile Sticky Bar Space */
    body {
        padding-bottom: 60px;
    }

    .mobile-sticky-bar {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 20, 0.95);
        backdrop-filter: blur(12px);
        border-top: 1px solid var(--glass-border);
        padding: 12px 20px;
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        gap: 15px;
        z-index: 2000;
        box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
    }

    .btn-sticky {
        flex: 1;
        padding: 10px;
        border-radius: 8px;
        font-weight: 600;
        font-size: 0.95rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        text-decoration: none;
        color: white;
    }

    .btn-sticky.pickup {
        background: var(--accent-primary);
        box-shadow: 0 0 15px rgba(124, 58, 237, 0.3);
    }

    .btn-sticky.whatsapp {
        background: #25D366;
        flex: 0 0 50px;
        /* Square button for WA */

        font-size: 1.2rem;
    }

    /* Hide original floating button on mobile to avoid duplication/clutter */
    .float-whatsapp {
        display: none !important;
    }
}

/* Desktop: Hide sticky bar */
.mobile-sticky-bar {
    display: none;
}

.store-hours {
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 15px;
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 5px 10px;
    border-radius: 4px;
    border: 1px solid var(--glass-border);
}

.price-badge {
    background: var(--accent-highlight);
    color: #000;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 4px 8px;
    border-radius: 8px;
    margin-top: 5px;
    box-shadow: 0 0 10px rgba(0, 255, 157, 0.3);
}

.selection-card:hover .price-badge {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(0, 255, 157, 0.5);
}

/* Footer Styles */
.glass-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(10, 10, 20, 0.8);
    backdrop-filter: blur(10px);
    padding: 3rem 0 2rem;
    margin-top: 4rem;
}

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

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}

.footer-column h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-column p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 0.8rem;
    list-style: none;
    padding: 0;
}

.footer-links-grid a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}


/* Reviews Section */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 2rem;
}

.review-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 16px;
    text-align: left;
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-primary);
}

.stars {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.review-text {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.review-author {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 700;
    color: var(--text-primary);
}

.author-loc {

    font-size: 0.85rem;
    color: var(--accent-secondary);
    display: flex;
    flex-direction: row;
    gap: .3rem;
    margin-top: .5rem;
}

.badge-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 140px;
}

.logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: inherit;
}   

.color-white {
    color: white;
}


@media (max-width: 768px) {
    .hide-mobile {
        display: none;
    }
    .btn-call svg {
       display: none;
    }
}



.btn-group-sm{

    margin-top: 1rem;
}


.article-content h2{
    line-height: 1.2;
}

.author-loc svg{
    width: 16px !important;
    height: 16px;

}
