/* --- 1. IMPORTACIÓN DE TIPOGRAFÍAS --- */
@import url('https://fonts.googleapis.com/css2?family=Bangers&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

/* --- 2. VARIABLES DE COLOR (DARK GOURMET - PALETA PERSONALIZADA) --- */
:root {
    --bg-dark: #121214;
    --bg-card: #1E1B24;
    --bg-card-hover: #262230;
    --text-light: #F4F3F7;
    --text-muted: #B8B3C4;
    
    /* Tonos extraídos de tu paleta */
    --purple-deep: #4A3A6B;
    --purple-main: #735D9E;
    --purple-light: #9C83CC;

    --accent-orange: #E68A1B;
    --accent-orange-hover: #F29D38;
    --cocoa-brown: #664639;
    
    --green-whatsapp: #25D366;
    --global-radius: 2px;
    --purple-glow: #7f3f98;
    --purple-glow2: #662d91;
    --orange-glow: #e58d25;
    --orange-glow2: #f15a2b;
}

/* --- EFECTO GLOW LILA PARA TÍTULOS --- */
.title-glow {
    color: var(--purple-light);
    text-shadow: 0 0 10px rgba(137, 72, 212, 0.5),  0 0 20px rgba(48, 0, 102, 0.4);
}

/* Clases de tipografía rápida */
.fredoka-font, .hero-title, .section-title, .product-title, footer h4 { 
    font-family: 'Bangers', cursive, sans-serif; 
    letter-spacing: 1.5px; 
}
.caveat-font { font-family: 'Caveat', cursive, sans-serif; }
.poppins-font { font-family: 'Poppins', sans-serif; }
.text-center { text-align: center; }

/* --- 3. RESET Y BASE --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    overflow-x: hidden;
    scroll-behavior: smooth;
    line-height: 1.6;
}

button:active, a:active {
    transform: scale(0.97);
}

/* --- 4. HEADER --- */
header {
    position: fixed; top: 0; left: 0; width: 100%;
    background: linear-gradient(180deg, var(--purple-glow), var(--purple-glow2));
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex; justify-content: space-between; align-items: center;
    padding: 14px 6%;
    border-bottom: 1px solid rgba(156, 131, 204, 0.15);
}

.logo-container { text-decoration: none; display: flex; align-items: center; }
.logo-img { max-height: 40px; width: auto; transition: transform 0.3s ease; }

.desktop-logo { display: block; }
.mobile-logo { display: none; }

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 1.6rem;
    cursor: pointer;
}

nav {
    transition: max-height 0.3s ease-in-out;
}

nav ul { list-style: none; display: flex; gap: 25px; align-items: center; }
nav ul li a {
    text-decoration: none; color: var(--text-light);
    font-weight: 500; font-size: 0.95rem;
    transition: color 0.3s ease;
}
nav ul li a:hover { color: var(--accent-orange); }

.btn-nav-wa {
    background-color: var(--green-whatsapp) !important;
    color: #FFFFFF !important;
    border: 0px solid #FFFFFF;
    padding: 8px 18px;
    border-radius: var(--global-radius);
    font-weight: 600;
    transition: all 0.3s ease !important;
}
.btn-nav-wa:hover {
    background-color: #FFFFFF !important;
    color: var(--bg-dark) !important;
}

/* --- 5. HERO SECTION --- */
.hero {
    padding: 160px 8% 90px 8%;
    background: radial-gradient(circle at 70% 30%, rgba(74, 58, 107, 0.3) 0%, rgba(18, 18, 20, 1) 70%);
    display: flex; align-items: stretch; justify-content: space-between;
    gap: 50px;
    min-height: 90vh;
}

.hero-content { 
    flex: 1; 
    max-width: 600px; 
    display: flex; 
    flex-direction: column; 
    justify-content: center;
}

.badge-limited {
    display: flex;
    align-items: center;
    background-color: rgba(115, 93, 158, 0.3);
    color: var(--purple-light);
    padding: 8px 16px;
    border-radius: var(--global-radius);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    width: fit-content;
    max-width: 100%;
    align-self: flex-start;
    border: 1px solid var(--purple-glow2);
    box-sizing: border-box;
    cursor: pointer;
    transition: all 0.3s ease;
}

.badge-limited span {
    color: var(--text-light);
}

.badge-limited:hover {
    background-color: rgba(115, 93, 158, 0.5);
    border-color: var(--accent-orange);
}

.hero-title {
    font-size: 3.4rem; color: var(--text-light);
    line-height: 1.1; margin-bottom: 20px;
}
.hero-title span { color: var(--purple-glow2); }

.hero-subtitle {
    font-size: 2rem; color: var(--purple-light);
    margin-bottom: 15px; font-weight: 600;
    line-height: 1.2;
}

.hero-description {
    font-size: 1rem; color: var(--text-muted);
    margin-bottom: 25px;
}

.hero-buttons { display: flex; gap: 15px; align-items: center; flex-wrap: wrap; }

.btn-main {
    background:linear-gradient(180deg, var(--orange-glow), var(--orange-glow2));
    color: #FFFFFF; 
    border: 2px solid var(--accent-orange);
    padding: 12px 26px;
    border-radius: var(--global-radius); 
    font-size: 1.1rem;
    text-decoration: none; 
    font-weight: 600;
    font-family: 'Bangers', cursive, sans-serif;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
}
.btn-main:hover {
    background-color: var(--accent-orange-hover);
    border-color: var(--accent-orange-hover);
}

.btn-secondary {
    color: var(--purple-light); 
    font-size: 1.3rem;
    text-decoration: none; 
    font-weight: 600;
    transition: color 0.3s ease;
}
.btn-secondary:hover { color: var(--accent-orange); }

.hero-img-container { 
    flex: 1; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    position: relative; 
}
.hero-cookie-img {
    width: 100%; max-width: 380px;
    height: auto;
    max-height: 420px;
    object-fit: cover;
    border-radius: var(--global-radius);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(156, 131, 204, 0.2);
}

/* --- 6. SECCIÓN "NOSOTROS" (STORY) --- */
.story {
    padding: 90px 8%;
    background-color: #17151C;
    text-align: center;
    border-top: 1px solid rgba(156, 131, 204, 0.1);
    border-bottom: 1px solid rgba(156, 131, 204, 0.1);
}
.story-content { max-width: 800px; margin: 0 auto; }
.section-title { 
    font-size: 2.8rem; color: var(--text-light); 
    margin-bottom: 15px; 
}
.story-content p { color: var(--text-muted); }

.story-icons {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px; margin-top: 35px;
}
.story-icon-item {
    background: var(--bg-card); padding: 25px 20px;
    border-radius: var(--global-radius); border: 1px solid rgba(156, 131, 204, 0.15);
}
.story-icon-item i { font-size: 2rem; color: var(--accent-orange); margin-bottom: 10px; }
.story-icon-item span { display: block; font-size: 1.3rem; color: var(--text-light); font-weight: 600; }

/* --- 7. SECCIÓN PRODUCTOS --- */
.products {
    padding: 90px 8%;
    background-color: var(--bg-dark);
}
.section-subtitle { font-size: 1rem; color: var(--text-muted); margin-bottom: 40px; }

.product-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}
.product-card {
    background: var(--bg-card); border-radius: var(--global-radius); overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    border: 1px solid rgba(156, 131, 204, 0.15);
    transition: all 0.3s ease;
    display: flex; flex-direction: column; justify-content: space-between;
    text-decoration: none;
    color: inherit;
}
.product-card:hover { border-color: var(--purple-light); transform: translateY(-4px); background: var(--bg-card-hover); }
.product-img { width: 100%; height: 220px; object-fit: cover; border-radius: var(--global-radius) var(--global-radius) 0 0; }
.product-info { padding: 22px; display: flex; flex-direction: column; flex-grow: 1; justify-content: space-between; }
.product-title { 
    font-size: 1.6rem; color: var(--text-light); 
    margin-bottom: 8px; 
}
.product-desc { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 20px; }

.btn-card {
    background:linear-gradient(180deg, var(--purple-glow), var(--purple-glow2)); 
    color: #FFFFFF;
    border: 2px solid var(--purple-glow2);
    padding: 10px 18px; 
    border-radius: var(--global-radius); 
    text-decoration: none;
    font-size: 1rem; 
    font-weight: 600; 
    font-family: 'Bangers', cursive, sans-serif;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%; 
    margin-top: 15px;
    text-align: center;
}

.product-card:hover .btn-card {
    background-color: var(--orange-glow); 
    border-color: var(--orange-glow2);
}

/* --- 8. SECCIÓN REGALOS --- */
.gifts {
    padding: 90px 8%;
    background-color: #17151C;
    border-top: 1px solid rgba(156, 131, 204, 0.1);
}
.gifts-container { max-width: 700px; margin: 0 auto; }

.gift-box-card {
    background: linear-gradient(rgba(18, 18, 20, 0.85), rgba(18, 18, 20, 0.85)), 
                url('img/caja-con-cookies.webp');
    background-size: cover;
    background-position: center;
    border-radius: var(--global-radius); 
    padding: 35px; 
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(156, 131, 204, 0.2);
}

.gift-info .product-title { font-size: 2rem; color: var(--text-light); margin-bottom: 10px; }
.gift-info .product-desc { 
    font-size: 0.95rem; 
    color: var(--text-muted); 
    margin-bottom: 0; 
}

.gift-card-wrapper {
    display: block;
    text-decoration: none !important;
    color: inherit;
    max-width: 100%;
}

.gift-btn-outside {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%; 
    background-color: var(--accent-orange);
    color: #FFFFFF;
    border: 2px solid var(--accent-orange);
    border-radius: var(--global-radius); 
    padding: 12px 26px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Bangers', cursive, sans-serif;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-align: center;
    box-sizing: border-box;
    margin-top: 15px; 
}

.gift-card-wrapper:hover .gift-btn-outside {
    background-color: var(--accent-orange-hover);
    border-color: var(--accent-orange-hover);
}

/* --- 9. SECCIÓN TESTIMONIOS --- */
.testimonials {
    padding: 90px 8%;
    background: var(--bg-dark);
}
.testimonial-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px; margin-top: 30px; max-width: 900px; margin-left: auto; margin-right: auto;
}
.testimonial-card {
    background: var(--bg-card); padding: 25px; border-radius: var(--global-radius);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    display: flex; flex-direction: column; justify-content: space-between;
    border: 1px solid rgba(156, 131, 204, 0.15);
}
.testimonial-card p { font-style: italic; color: var(--text-muted); margin-bottom: 15px; font-size: 0.9rem; }
.testimonial-card span { font-size: 1.3rem; color: var(--accent-orange); font-weight: 700; text-align: right; }

/* --- 10. FOOTER MODERNO Y ELEGANTE --- */
footer {
    background: #0D0C0F;
    color: var(--text-light);
    padding: 40px 8% 20px 8%;
    border-top: 2px solid var(--purple-main);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 25px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-col {
    flex: 1;
    min-width: 220px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo-img {
    max-height: 40px;
    width: auto;
    margin-bottom: 8px;
}

.footer-tagline {
    font-size: 1.1rem;
    color: var(--purple-light);
    opacity: 0.9;
    line-height: 1.2;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--accent-orange);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.footer-col ul.footer-social-list {
    display: flex;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.footer-col ul.footer-social-list li {
    margin-bottom: 0;
}

.footer-col ul.footer-social-list li a {
    background: rgba(156, 131, 204, 0.1);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: white !important;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.footer-col ul.footer-social-list li a:hover {
    background: var(--purple-main);
}

.footer-col ul.footer-social-list li a i {
    color: var(--accent-orange) !important;
    font-size: 1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(156, 131, 204, 0.15);
    padding-top: 15px;
    text-align: center;
}

.footer-copy {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* --- 11. WHATSAPP FLOTANTE CON PULSACIÓN SUTIL --- */
@keyframes pulse-whatsapp {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        transform: scale(1.06);
        box-shadow: 0 4px 28px rgba(37, 211, 102, 0.7);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

.whatsapp-float {
    position: fixed !important; 
    bottom: 25px !important; 
    right: 25px !important;
    background-color: var(--green-whatsapp) !important; 
    color: white !important;
    width: 60px !important; 
    height: 60px !important; 
    border-radius: 50% !important;
    display: flex !important; 
    align-items: center !important; 
    justify-content: center !important;
    font-size: 32px !important; 
    z-index: 9999999 !important; 
    text-decoration: none !important;
    animation: pulse-whatsapp 2.5s infinite ease-in-out !important;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4) !important;
    -webkit-tap-highlight-color: transparent;
}
.whatsapp-float:hover { 
    transform: scale(1.12) !important; 
    animation: none !important;
}

/* --- 12. RESPONSIVE Y MEDIA QUERIES --- */
@media (min-width: 360px) and (max-width: 440px) {
    header { padding: 12px 4%; }
    
    .hero {
        padding: 130px 4% 60px 4%;
        gap: 30px;
    }

    .hero-title {
        font-size: 2.3rem;
        line-height: 1.15;
    }

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

    .hero-description {
        font-size: 0.95rem;
    }

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

    .product-grid, .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .hero-img-container {
        margin-top: 10px;
    }
}

@media (max-width: 968px) {
    .desktop-logo { display: none !important; }
    .mobile-logo { display: block !important; max-height: 38px; }

    .menu-toggle {
        display: block;
    }

    .badge-limited {
        align-self: center !important;
    }

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-card);
        box-shadow: 0 10px 15px rgba(0,0,0,0.5);
        max-height: 0;
        overflow: hidden;
        border-bottom: 1px solid rgba(156, 131, 204, 0.2);
    }

    nav.active {
        max-height: 380px;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        gap: 15px;
    }

    header { padding: 12px 5%; }
    
    .hero { 
        flex-direction: column; 
        text-align: center; 
        padding-top: 130px; 
        padding-left: 5%;
        padding-right: 5%;
        align-items: center;
    }
    
    .hero-buttons { 
        justify-content: center; 
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .hero-buttons .btn-main, 
    .hero-buttons .btn-secondary {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    footer {
        padding: 30px 6% 90px 6%;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
        margin-bottom: 20px;
    }

    .footer-brand {
        align-items: center;
    }

    .footer-col ul.footer-social-list {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 15px;
    }

    .whatsapp-float {
        bottom: 20px !important; 
        right: 20px !important;
        width: 55px !important;
        height: 55px !important;
        font-size: 28px !important;
    }
}

/* --- 13. ESTILOS DEL MODAL Y CALENDARIO (DARK GOURMET) --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 18, 20, 0.85);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--bg-card);
    border: 1px solid var(--purple-main);
    border-radius: var(--global-radius);
    width: 100%;
    max-width: 440px;
    max-height: 90vh; /* Solución para que no se desborde en pantallas bajas o emuladores */
    overflow-y: auto;  /* Permite scroll interno si es necesario */
    padding: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
    color: var(--text-light);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(156, 131, 204, 0.2);
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.modal-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.modal-logo {
    max-height: 32px;
    width: auto;
}

.modal-brand h3 {
    font-size: 1.5rem;
    color: var(--purple-light);
    margin: 0;
}

.modal-close {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

/* --- ESTILOS PARA LOS INPUTS Y CAJA DE PAGO EN MODAL --- */
.client-inputs-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 10px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.input-group label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.input-group input {
    background: var(--bg-dark);
    border: 1px solid rgba(156, 131, 204, 0.3);
    border-radius: var(--global-radius);
    padding: 10px 12px;
    color: var(--text-light);
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    outline: none;
    transition: all 0.3s ease;
}

.input-group input:focus {
    border-color: var(--accent-orange);
    box-shadow: 0 0 8px rgba(230, 138, 27, 0.25);
}

.input-group input::placeholder {
    color: rgba(184, 179, 196, 0.4);
}

.payment-box {
    margin-top: 20px;
    background: rgba(43, 30, 61, 0.6);
    border: 1px dashed rgba(156, 131, 204, 0.4);
    border-radius: var(--global-radius);
    padding: 14px;
}

.payment-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-orange);
    margin-bottom: 10px;
}

.copy-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-dark);
    padding: 8px 12px;
    border-radius: 8px;
    margin-bottom: 8px;
}

.copy-row:last-child {
    margin-bottom: 0;
}

.copy-info {
    display: flex;
    flex-direction: column;
    font-size: 0.8rem;
}

.copy-label {
    color: var(--text-muted);
}

.copy-val {
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.btn-copy {
    background: rgba(156, 131, 204, 0.15);
    border: 1px solid var(--accent-purple);
    color: var(--text-light);
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-copy:hover {
    background: var(--accent-purple);
    color: #fff;
}



.modal-close:hover {
    color: var(--accent-orange);
}

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

.calendar-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(115, 93, 158, 0.1);
    padding: 8px 15px;
    border-radius: var(--global-radius);
    margin-bottom: 15px;
    border: 1px solid rgba(156, 131, 204, 0.15);
}

.calendar-nav button {
    background: transparent;
    border: 1px solid var(--purple-main);
    color: var(--text-light);
    width: 30px;
    height: 30px;
    border-radius: var(--global-radius);
    cursor: pointer;
    transition: all 0.3s ease;
}

.calendar-nav button:hover {
    background: var(--purple-main);
}

.calendar-nav h4 {
    font-size: 1.2rem;
    color: var(--text-light);
    margin: 0;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.calendar-weekdays .disabled-col {
    color: rgba(184, 179, 196, 0.25);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
    margin-bottom: 20px;
}

.cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-dark);
    border: 1px solid rgba(156, 131, 204, 0.15);
    border-radius: var(--global-radius);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cal-day:hover:not(.disabled):not(.empty) {
    border-color: var(--accent-orange);
    background: rgba(230, 138, 27, 0.15);
    color: var(--accent-orange);
}

.cal-day.disabled, .cal-day.empty {
    opacity: 0.2;
    cursor: not-allowed;
    background: transparent;
    border-color: transparent;
}

.cal-day.selected {
    background: var(--accent-orange) !important;
    border-color: var(--accent-orange) !important;
    color: #FFFFFF;
    font-weight: 600;
}

.time-slot-container {
    border-top: 1px solid rgba(156, 131, 204, 0.2);
    padding-top: 15px;
    margin-top: 15px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.slots-grid {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.time-btn {
    flex: 1;
    background: rgba(115, 93, 158, 0.15);
    border: 1px solid var(--purple-main);
    color: var(--text-light);
    padding: 8px;
    border-radius: var(--global-radius);
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.2s ease;
}

.time-btn:hover {
    border-color: var(--accent-orange);
}

.time-btn.selected {
    background: var(--purple-main);
    border-color: var(--purple-light);
    color: #FFFFFF;
    font-weight: 600;
}

.modal-footer {
    border-top: 1px solid rgba(156, 131, 204, 0.2);
    padding-top: 15px;
}

.modal-footer .btn-main {
    width: 100%;
    text-align: center;
    cursor: pointer;
    box-sizing: border-box;
}

.modal-footer .btn-main:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background-color: var(--purple-deep);
    border-color: var(--purple-deep);
}


/* --- ESTILOS DEL WIZARD PASO A PASO --- */
.wizard-modal-content {
    max-width: 500px !important;
}

.wizard-progress-container {
    position: relative;
    background: rgba(156, 131, 204, 0.15);
    height: 6px;
    margin: 15px 25px 0 25px;
    border-radius: 3px;
}

.wizard-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: var(--accent-orange);
    width: 0%;
    transition: width 0.4s ease;
    border-radius: 3px;
}

.wizard-steps-indicators {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    padding: 0 10px;
}

.step-ind {
    width: 28px;
    height: 28px;
    background: var(--bg-dark);
    border: 2px solid rgba(156, 131, 204, 0.4);
    color: var(--text-muted);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.step-ind.active {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
    color: #fff;
}

.wizard-step {
    display: none;
}

.wizard-step.active {
    display: block;
    animation: fadeInStep 0.3s ease;
}

@keyframes fadeInStep {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

.step-title {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 8px;
}

.step-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.4;
    margin-bottom: 15px;
}

.recommendation-box {
    background: rgba(230, 138, 27, 0.1);
    border-left: 3px solid var(--accent-orange);
    padding: 10px;
    font-size: 0.8rem;
    color: var(--text-light);
    border-radius: 4px;
    margin-top: 12px;
}

.upload-container {
    border: 2px dashed rgba(156, 131, 204, 0.4);
    background: var(--bg-dark);
    padding: 25px;
    text-align: center;
    border-radius: var(--global-radius);
    cursor: pointer;
    transition: all 0.3s ease;
}

.upload-container:hover {
    border-color: var(--accent-orange);
}

.upload-label {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: var(--text-light);
    font-size: 0.85rem;
    cursor: pointer;
}

.upload-label i {
    font-size: 1.8rem;
    color: var(--accent-orange);
}

.summary-box {
    background: rgba(43, 30, 61, 0.7);
    padding: 15px;
    border-radius: var(--global-radius);
    font-size: 0.85rem;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border: 1px solid rgba(156, 131, 204, 0.2);
}

.wizard-footer {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}


.wizard-select {
    width: 100%;
    background: var(--bg-dark);
    border: 1px solid rgba(156, 131, 204, 0.3);
    color: var(--text-light);
    padding: 10px;
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.85rem;
    outline: none;
}
.wizard-select option {
    background: #2b1e3d;
    color: #fff;
}