@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;500;700&family=Epilogue:wght@400;500&display=swap');

:root {
    --primary: #b93b89;
    --accent: #f1a1dd;
    --background: #ffffff;
    --surface: rgba(255, 255, 255, 0.7);
    --text-main: #2d2d2d;
    --text-dim: #6c757d;
    --glass-border: rgba(0, 0, 0, 0.05);
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}

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

body {
    font-family: 'Epilogue', sans-serif;
    background-color: var(--background);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: 'Space Grotesk', sans-serif;
    text-transform: uppercase;
}

/* Hero */
.hero {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: white;
    text-align: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.9) saturate(0.8);
    transition: background-image 1.5s ease-in-out;
    z-index: -1;
}

.hero h1 {
    font-size: 3rem;
    letter-spacing: 0.1em;
    color: #ffffff;
    text-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.hero p {
    color: #ffd8f0;
    letter-spacing: 0.3em;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Selector de Moneda */
.currency-selector {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1000;
    background: var(--surface);
    backdrop-filter: blur(20px);
    padding: 8px 16px;
    border-radius: 50px;
    display: flex;
    gap: 10px;
    align-items: center;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow);
}

.currency-btn {
    padding: 5px 15px;
    border: none;
    background: transparent;
    color: var(--text-main);
    cursor: pointer;
    border-radius: 20px;
    font-weight: 700;
    font-size: 11px;
    transition: 0.3s;
}

.currency-btn.active {
    background: var(--primary);
    color: white;
}

/* Container */
.container {
    max-width: 800px;
    margin: -40px auto 40px;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

.card {
    background: var(--surface);
    backdrop-filter: blur(25px);
    border-radius: 30px;
    padding: 2.5rem;
    border: 1px solid var(--glass-border);
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
}

.section-title {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
    border-left: 4px solid var(--primary);
    padding-left: 15px;
    letter-spacing: 0.1em;
}

/* Services */
.services-grid {
    display: grid;
    gap: 0.8rem;
}

.service-item {
    background: #fdfcfb;
    padding: 1.2rem 2rem;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: 0.3s;
    border: 2px solid #f0f0f0;
}

.service-item:hover {
    background: #ffffff;
    border-color: var(--accent);
}

/* ESTADO SELECCIONADO: Mucho más visible */
.service-item.selected {
    border-color: var(--primary);
    background: #fffdf9;
    box-shadow: 0 5px 15px rgba(212, 163, 115, 0.2);
}

.service-item h4 {
    font-size: 0.95rem;
    font-weight: 500;
}

.service-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.service-price {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    color: var(--primary);
}

/* Controles de Cantidad Stylized */
.quantity-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(212, 163, 115, 0.05);
    border: 1px solid rgba(212, 163, 115, 0.2);
    border-radius: 50px;
    padding: 6px 14px;
    transition: 0.3s;
}

.qty-btn {
    background: var(--primary);
    color: white;
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
    box-shadow: 0 4px 10px rgba(212, 163, 115, 0.3);
}

.qty-btn:hover {
    transform: scale(1.1);
    background: var(--text-main);
}

.qty-btn:active {
    transform: scale(0.9);
}

.qty-val {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--text-main);
    min-width: 20px;
    text-align: center;
}

/* Vertical Reel */
.vertical-reel-section {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 150px;
    padding: 0 20px;
    text-align: center;
}

.section-title-alt {
    font-size: 1.3rem;
    color: var(--text-main);
    margin-bottom: 2rem;
    letter-spacing: 0.3em;
    opacity: 0.6;
}

.vertical-slider-container {
    height: 600px;
    overflow: hidden;
    position: relative;
    border-radius: 30px;
    border: 1px solid var(--glass-border);
}

.vertical-slider-track {
    display: flex;
    flex-direction: column;
    animation: verticalScroll 45s linear infinite;
}

.vertical-slide {
    width: 100%;
    padding: 15px 0;
}

.vertical-slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
}

@keyframes verticalScroll {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(calc(-530px * 16));
    }
}

/* Total Bar */
.total-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--glass-border);
    z-index: 1000;
}

.total-info h3 {
    font-size: 1.8rem;
    color: var(--text-main);
}

.reserve-btn {
    background: var(--primary);
    color: white;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 12px;
    transition: 0.3s;
}

.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@media (max-width: 600px) {
    .hero h1 {
        font-size: 2rem;
    }

    .total-bar {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .vertical-slider-container {
        height: 450px;
    }

    .service-item {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .service-actions {
        flex-direction: column;
        gap: 5px;
    }
}