:root {
    --primary-color: #5d737e;
    --accent-color: #b59da4;
    --sand: #f4f1ea;
    --white: #ffffff;
    --text-main: #2c3e50;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;

    /* Semantic Colors */
    --success: #28a745;
    --success-light: rgba(40, 167, 69, 0.1);
    --danger: #dc3545;
    --danger-light: rgba(220, 53, 69, 0.1);
    --whatsapp: #25d366;

    /* Layout & Borders */
    --bg-light: #fafbfa;
    --bg-lighter: #f8f9fa;
    --bg-gray: #f0f0f0;
    --border-light: #eee;
    --border-dark: #ddd;
    --border-darker: #ccc;

    /* Text Muted */
    --text-muted: #6c757d;
    --text-muted-light: #adb5bd;
    --text-muted-dark: #495057;
}

/* --- Reseteo y Base --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: clip;
    /* clip never creates a new scroll context → no double scrollbar */
}

body {
    overflow-x: hidden;
    max-width: 100%;
    position: relative;
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--sand);
    line-height: 1.7;
}

/* --- Header & Nav --- */
.main-header {
    background: transparent;
    padding: 1rem 0;
    /* Keep consistent padding to prevent jumping */
    position: fixed;
    /* Changed from sticky to overlap hero */
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.4s ease;
}

.main-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--white);
    /* Start white */
    transition: color 0.4s ease;
}

.main-header.scrolled .logo-link {
    color: var(--primary-color);
}

.logo-img {
    height: 50px;
    width: auto;
    margin-right: 12px;
    /* Always render the logo in its original colors */
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
    /* Added shadow for contrast */
}

.main-header.scrolled .brand-title {
    text-shadow: none;
    /* Remove shadow when background is white */
}

.brand-subtitle {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-color);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    /* Added shadow for contrast */
}

.main-header.scrolled .brand-subtitle {
    text-shadow: none;
    /* Remove shadow when background is white */
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li a {
    text-decoration: none;
    color: var(--white);
    /* Start white */
    margin-left: 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: 0.3s;
}

.main-header.scrolled .nav-links li a {
    color: var(--text-main);
}

.nav-links li a.btn-contacto {
    border: 1px solid var(--white);
    padding: 0.6rem 1.2rem;
    border-radius: 5px;
}

.nav-links li a.btn-contacto:hover {
    background: var(--white);
    color: var(--text-main);
}

.main-header.scrolled .nav-links li a.btn-contacto {
    border-color: var(--text-main);
}

.main-header.scrolled .nav-links li a.btn-contacto:hover {
    background: var(--text-main);
    color: var(--white);
}

/* --- Hero --- */
.hero {
    height: 100vh;
    /* Adjust height based on mockup */

    /* background-position: X Y; 
       50% centra la imagen horizontalmente.
       15% obliga a que la parte superior de la foto se mantenga visible.
    */
    background-image: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.55)), url('../images/hero1.webp');
    background-size: cover;
    background-position: 50% 15%;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* Align contents to left */
    text-align: left;
    /* Text alignment left */
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    /* Same max width as map-container */
    width: 100%;
    margin: 0 auto;
    padding: 6rem 2rem 0;
    /* Matches nav padding, adds 6rem top to avoid header overlap */
}

.hero-content h1 {
    font-family: var(--font-heading);
    /* Large Serif */
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 400;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.2rem;
    max-width: 50%;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    /* Slightly smaller sizes */
    color: var(--white);
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0.5px;
    margin-bottom: 2rem;
    max-width: 50%;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.8);
}



/* --- Secciones Generales --- */
.features-bar {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 40px 20px;
    flex-wrap: wrap;
}

.feature {
    background: white;
    display: flex;
    align-items: center;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    flex: 1;
    min-width: 280px;
    max-width: 350px;
}

.feature-icon-img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    margin-right: 15px;
}

.feature h3 {
    font-size: 1rem;
    color: var(--primary-color);
}

.feature p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.section-divider {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, transparent, rgba(93, 115, 126, 0.3), transparent);
    margin: 20px 0;
}

/* --- Títulos Ornamentales --- */
.title-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 20px 0 2rem;
}

.section-title-ornamental {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 400;
}

.title-ornament {
    width: 45px;
    height: auto;
    opacity: 0.7;
}

/* --- Grid de Servicios --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

#propuestas {
    scroll-margin-top: 100px;
    padding-bottom: 6rem;
}

.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(93, 115, 126, 0.15);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* .card-text { padding: 1.5rem; text-align: center; } */

.card-text {
    padding: 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* Empuja el botón hacia abajo */
    height: 100%;
    /* Importante para que el flex funcione */
    min-height: 220px;
    /* Ajusta según el largo de tus textos */
}

/* Títulos de las propuestas más destacados */
.card-text h3 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

/* Párrafos con más aire */
.card-text p {
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}



/* --- Quote & Sobre Mí --- */
.quote-container {
    position: relative;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 4rem 0;
}

.quote-bg-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    z-index: 1;
}

.bg-column {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.quote-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(8px);
    border-radius: 15px;
    max-width: 700px;
}

blockquote {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-style: italic;
    color: var(--primary-color);
}

cite {
    display: block;
    margin-top: 1rem;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-color);
}

.about {
    padding: 4rem 20px;
    text-align: center;
}

.about-container {
    max-width: 750px;
    margin: 0 auto;
}

.about-text {
    font-size: 1.2rem;
    color: var(--text-main);
    font-style: italic;
    font-weight: 300;
    line-height: 1.9;
}

/* --- Footer --- */
footer {
    padding: 2.5rem 20px 1.5rem;
    background: white;
    text-align: center;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.newsletter-form {
    margin: 2rem 0;
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    padding: 12px 20px;
    border: 1px solid var(--border-dark);
    border-radius: 50px;
    width: 300px;
    font-family: var(--font-body);
}

.newsletter-form button {
    padding: 12px 25px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s;
}

.social-links {
    margin-bottom: 2rem;
}

.social-links a {
    text-decoration: none;
    color: var(--primary-color);
    margin: 0 1rem;
    font-weight: 600;
}

.footer-bottom {
    font-size: 0.8rem;
    color: var(--text-muted-light);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

/* AMGOtify developer credit */
.footer-dev-credit {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    text-decoration: none;
    color: var(--text-muted-light);
    font-size: 0.8rem;
    transition: opacity 0.2s;
    white-space: nowrap;
}

.footer-dev-credit:hover {
    opacity: 0.7;
}

.footer-dev-logo {
    height: 20px;
    width: auto;
}

.footer-dev-name {
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    color: var(--text-muted-light);
}

.footer-dev-tify {
    color: #0C244B;
}

/* --- WhatsApp Botón --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--whatsapp);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    transition: 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* --- Modal & Forms --- */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(93, 115, 126, 0.6);
    backdrop-filter: blur(5px);
    overflow-y: auto; /* Enable scrolling on the overlay */
    padding: 20px 0; /* Add some vertical space for the inner content */
}

.modal-content {
    background-color: var(--sand);
    margin: 5% auto;
    padding: 25px;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    /* cap height so content stays on screen */
    overflow-y: auto;
    /* scroll lives here, inside the white box */
    overflow-x: hidden;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary-color);
    z-index: 10;
    background: rgba(255, 255, 255, 0.8);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

.close-modal:hover {
    background: white;
    transform: scale(1.1);
}

.yoga-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-row {
    display: flex;
    gap: 15px;
}

.yoga-form input,
.yoga-form textarea {
    padding: 15px;
    border: 1px solid var(--border-dark);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    background: white;
}

/* --- Experiencias Modal overrides --- */
#experiencias-modal .modal-content {
    padding: 40px;
}

#valoraciones .section-title-ornamental {
    font-size: 2.2rem;
}

.valoraciones-section {
    padding: 4rem 20px;
    background-color: var(--sand);
}

.valoraciones-container {
    max-width: 1200px;
    margin: 0 auto;
}

.reviews-summary {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 3rem;
}

.reviews-score-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.btn-agregar-valoracion {
    height: fit-content;
}

.valoracion-form-wrapper {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
    overflow: hidden;
    animation: slideDown 0.4s ease-out;
}

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

.valoracion-form-inner {
    padding: 2.5rem;
}

.valoracion-form-title {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.form-field {
    margin-bottom: 1.2rem;
}

.form-field label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-main);
}


.reviews-score {
    display: inline-flex;
    align-items: center;
    gap: 15px;
}

.score-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1;
}

.score-details {
    text-align: left;
}

.stars-large {
    color: #00b67a;
    /* Trustpilot green */
    font-size: 1.5rem;
    letter-spacing: 2px;
}

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

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

@media (min-width: 1200px) {
    .reviews-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.review-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    /* Increased shadow for elevation */
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
}

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

.review-meta strong {
    font-size: 0.95rem;
    color: var(--text-main);
}

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

.review-stars-small {
    color: #00b67a;
    font-size: 1.1rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.review-text {
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.6;
    font-style: italic;
}

/* --- Animaciones --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.title-ornament:first-child {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.title-ornament:last-child {
    opacity: 0;
    transform: translateX(30px);
    transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.active .title-ornament {
    opacity: 0.7;
    transform: translateX(0);
    transition-delay: 0.3s;
}

/* --- Responsive & Menú Móvil --- */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-btn .bar {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: 0.3s;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--sand);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transition: right 0.4s ease-in-out;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        display: flex;
        /* Asegura visualización cuando está activa */
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li a {
        margin-left: 0;
        font-size: 1.2rem;
        color: var(--text-main);
        /* Ensure it is dark on mobile sand background */
    }

    .nav-links li a.btn-contacto {
        border-color: var(--text-main);
        /* Ensure button border is dark */
        color: var(--text-main);
    }

    /* Hero text: full width on mobile */
    .hero-content h1,
    .hero-subtitle {
        max-width: 100%;
    }

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

    .newsletter-form {
        flex-direction: column;
        width: 100%;
    }

    .newsletter-form input {
        width: 100%;
    }

    /* Animación X */
    .mobile-menu-btn.open .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .mobile-menu-btn.open .bar:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.open .bar:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -7px);
    }
}

@media (max-width: 600px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .modal-content {
        padding: 20px;
        margin: 10% auto;
        width: 95%;
    }

    .form-row {
        flex-direction: column;
        gap: 15px;
    }

    .yoga-form input,
    .yoga-form textarea {
        font-size: 16px;
    }

    .section-title-ornamental {
        font-size: 1.5rem;
    }

    .title-ornament {
        width: 30px;
    }
}

/* --- Sección de Valores Estilo Tarjetas Horizontales --- */
/* --- Sección de Valores Invertida --- */
.values-bar {
    padding: 60px 20px;
    background-color: var(--sand);
    /* Fondo con tonalidad arena */
}

.values-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.value-item {
    flex: 1;
    text-align: center;
    padding: 35px 20px;
    background: var(--white);
    /* Tarjetas blancas */
    border-radius: 15px;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* Sombra suave para que la tarjeta blanca respire sobre el fondo arena */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.value-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.value-bullet {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.value-item p {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--primary-color);
    margin: 0;
}

/* Adaptación para móviles (Stack vertical) */
@media (max-width: 768px) {
    .values-container {
        flex-direction: column;
        gap: 15px;
    }

    .value-item {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .hero {
        /* En móvil, a veces es mejor mostrar más arriba de la foto aún */
        background-position: 50% 10%;
        /* Si la cara sigue quedando muy grande, podemos reducir el alto del hero en móvil */
        height: 70vh;
    }
}

.btn-primary {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--primary-color);
    color: white !important;
    text-decoration: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-secondary {
    display: inline-block;
    padding: 0.8rem 2rem;
    border: 1px solid var(--accent-color);
    color: var(--primary-color) !important;
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    background-color: transparent;
    cursor: pointer;
    text-align: center;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(93, 115, 126, 0.2);
}

.btn-outline-cancel {
    background: transparent;
    border: 1px solid var(--text-muted-light);
    color: var(--text-muted);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-outline-cancel:hover {
    background: var(--bg-gray);
    color: var(--text-main);
}




/* --- Tarjeta como contenedor principal --- */
.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: 0.3s;

    /* Agregamos esto para que la tarjeta controle a sus hijos */
    display: flex;
    flex-direction: column;
    height: 100%;
    /* Para que todas las tarjetas del grid midan lo mismo */
}

.service-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    flex-shrink: 0;
    /* Evita que la imagen se achique */
}

/* --- Contenedor de texto corregido --- */
.card-text {
    padding: 2rem 1.5rem;
    text-align: center;

    /* Flexbox para distribuir el contenido interno */
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    /* Esto hace que el texto ocupe todo el espacio sobrante */
    justify-content: space-between;
    /* Empuja el botón al final y el título al inicio */
}

/* Ajuste opcional para los textos internos */
.card-text h3 {
    margin-bottom: 1rem;
}

.card-text p {
    flex-grow: 1;
    /* El párrafo toma el espacio central */
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    /* Centra el texto verticalmente si es corto */
    justify-content: center;
}

/* -------------------------------------
   CUSTOMER RESERVATION MODAL STYLES
------------------------------------- */
.modal-large .modal-content {
    max-width: 900px;
    padding: 0;
    overflow: hidden;
    /* Solo para que los bordes redondeados tapen la imagen */
    max-height: none;
    /* Let it grow naturally so .modal scrolls it */
    display: flex;
    flex-direction: column;
}

.modal-split {
    display: flex;
    flex-direction: row;
    /* Height is determined by content naturally in flex */
}

.modal-info-side {
    flex: 1.2;
    background-color: var(--bg-light);
    border-right: 1px solid var(--border-light);
    padding-bottom: 2rem;
}

.modal-hero-container {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--border-dark);
    /* Fallback */
}

.modal-hero-bg {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background-size: cover;
    background-position: center;
    filter: blur(15px) brightness(0.85);
    opacity: 0.7;
    z-index: 1;
}

.modal-hero-img {
    position: relative;
    z-index: 2;
    max-width: 100%;
    max-height: 100%;
    height: auto;
    object-fit: contain;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    /* Sombra para despegar la foto del fondo borroso */
}

.modal-info-text {
    padding: 2.5rem;
}

.service-subtitle {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    font-weight: 500;
}

.service-description p {
    font-size: 0.95rem;
    color: var(--text-muted-dark);
    margin-bottom: 1rem;
    line-height: 1.7;
    display: block;
}

.modal-booking-side {
    flex: 1;
    padding: 3rem 2.5rem;
    background-color: #fff;
}

/* Espaciado para los inputs del formulario de reserva */
#enrollment-form {
    margin-top: 20px;
}

#enrollment-form .form-row {
    margin-top: 25px;
    /* Ensures space above fields */
    margin-bottom: 20px;
}

#enrollment-form input,
#enrollment-form select {
    margin-bottom: 15px;
}

.available-classes {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.class-option {
    border: 1px solid var(--border-dark);
    border-radius: 8px;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    cursor: pointer;
    background-color: #fff;
}

.class-option:hover:not(.class-full) {
    border-color: var(--primary-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.class-option.class-full {
    opacity: 0.6;
    cursor: not-allowed;
    background-color: var(--bg-light);
}

.class-date-info strong {
    display: block;
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.class-date-info span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.class-status-badge {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
}

.status-available {
    background-color: var(--success-bg, #e6f4ea);
    /* Fallback si var vacia */
    color: var(--success);
}

.status-full {
    background-color: var(--danger-bg, #fce8e6);
    color: var(--danger);
}

.selected-class-summary {
    background-color: var(--bg-lighter);
    border-left: 4px solid var(--accent-color);
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 30px !important;
    /* Spacers */
}

@media (max-width: 768px) {
    .modal-split {
        flex-direction: column;
    }

    .modal-hero-container {
        height: 280px;
    }

    .modal-hero-img {
        max-height: 100%;
    }

    .modal-info-side {
        border-right: none;
        border-bottom: 1px solid var(--border-light);
    }

    .modal-booking-side {
        padding: 2rem 1.5rem;
    }

    .modal-content {
        margin: 10% auto;
        /* More margin on mobile */
    }
}

/* =============================================
   Gallery Lightbox
   ============================================= */

/* The outer .modal overlay is reused from the existing modal styles */
#gallery-modal {
    background-color: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

#gallery-modal.active {
    opacity: 1;
}

/* Inner container */
.gallery-lightbox {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90vw;
    max-width: 960px;
    max-height: 92vh;
    padding: 1rem;
    animation: galleryFadeIn 0.3s ease;
}

@keyframes galleryFadeIn {
    from {
        transform: scale(0.95);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Close button (top-right) */
.gallery-close {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
    z-index: 10;
}

.gallery-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Controls row: prev + stage + next */
.gallery-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
}

/* Navigation arrows */
.gallery-prev,
.gallery-next {
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.12);
    border: none;
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 2rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    user-select: none;
}

.gallery-prev:hover,
.gallery-next:hover {
    background: rgba(255, 255, 255, 0.28);
    transform: scale(1.1);
}

/* Image stage */
.gallery-stage {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 75vh;
    overflow: hidden;
}

#gallery-img {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
    transition: opacity 0.25s ease;
    display: block;
}

/* Counter  (N / Total) */
.gallery-counter {
    margin-top: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    letter-spacing: 1px;
    font-family: var(--font-body);
    user-select: none;
}

/* Responsive */
@media (max-width: 600px) {

    .gallery-prev,
    .gallery-next {
        width: 38px;
        height: 38px;
        font-size: 1.5rem;
    }

    .gallery-lightbox {
        width: 98vw;
        padding: 0.5rem;
    }
}

/* ══════════════════════════════════════════════════════
   SECCIÓN: Experiencias — Estilos del formulario
   de valoración y estados dinámicos del modal.
   Añadidos al final sin modificar estilos existentes.
══════════════════════════════════════════════════════ */

/* Layout fila del score + botón "Agregar valoración" */
.reviews-score-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

/* Botón "Agregar valoración" */
.btn-agregar-valoracion {
    font-size: 0.85rem;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    cursor: pointer;
    white-space: nowrap;
}

/* Contenedor del formulario de valoración */
.valoracion-form-wrapper {
    margin: 1.5rem 0;
    animation: fadeInDown 0.3s ease;
}

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

.valoracion-form-inner {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 14px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.valoracion-form-title {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-weight: 400;
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
}

/* Campos del formulario */
.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    flex: 1;
    min-width: 180px;
}

.form-field label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted-dark);
}

.form-field input,
.form-field textarea {
    padding: 12px 15px;
    border: 1px solid var(--border-dark);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    background: var(--bg-lighter);
    transition: border-color 0.2s;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-field textarea {
    resize: vertical;
    min-height: 90px;
}

/* Etiquetas de required/optional */
.req { color: var(--danger); }
.opt { color: var(--text-muted); font-size: 0.8rem; font-weight: 400; }

/* Estrellas interactivas del formulario */
.stars-input-group {
    display: flex;
    gap: 6px;
    margin-top: 4px;
}

.star-input {
    font-size: 2rem;
    color: var(--border-darker);
    cursor: pointer;
    transition: color 0.15s, transform 0.1s;
    user-select: none;
    line-height: 1;
}

.star-input:hover,
.star-input.active {
    color: #00b67a;
    transform: scale(1.15);
}

/* Acciones del formulario */
.valoracion-form-actions {
    display: flex;
    gap: 0.8rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

/* Mensajes de éxito/error del formulario */
.valoracion-msg-success {
    background: var(--success-light);
    color: var(--success);
    border: 1px solid rgba(40, 167, 69, 0.25);
    border-radius: 8px;
    padding: 14px 16px;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.valoracion-msg-error {
    background: var(--danger-light);
    color: var(--danger);
    border: 1px solid rgba(220, 53, 69, 0.25);
    border-radius: 8px;
    padding: 14px 16px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

/* Estado de carga y vacío del grid de reviews */
.reviews-loading {
    text-align: center;
    color: var(--text-muted);
    padding: 2rem;
    font-style: italic;
}

.reviews-empty-state {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--text-muted);
    padding: 2rem;
    font-style: italic;
}

/* Responsive del formulario de valoración */
@media (max-width: 600px) {
    .reviews-score-row {
        flex-direction: column;
        gap: 1rem;
    }

    .valoracion-form-inner {
        padding: 1rem;
    }

    .valoracion-form-actions {
        flex-direction: column;
    }

    .valoracion-form-actions button {
        width: 100%;
    }

    .star-input {
        font-size: 1.6rem;
    }
}

/* ════════════════════════════════════════════════
   NUEVAS FUENTES Y TOKENS
═══════════════════════════════════════════════ */
:root {
    --font-heading:   'Cormorant Garamond', 'Playfair Display', serif;
    --font-body:      'Jost', 'Montserrat', sans-serif;
    --gradient-brand: linear-gradient(135deg, var(--primary-color) 0%, #7a9aaa 100%);
}

/* ════════════════════════════════════════════════
   HERO CAROUSEL — Netflix Style
═══════════════════════════════════════════════ */
.hero-carousel {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background: #0a0a0a;
}

.carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.9s ease;
    pointer-events: none;
}

.carousel-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.carousel-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 20%;
    transform: scale(1.04);
    transition: transform 8s ease;
}

.carousel-slide.active .carousel-bg {
    transform: scale(1);
}

.carousel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.72) 0%,
        rgba(0,0,0,0.45) 55%,
        rgba(0,0,0,0.1)  100%
    );
}

/* (D) Noise/grain overlay for depth */
.carousel-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.3;
    pointer-events: none;
    mix-blend-mode: overlay;
}

.carousel-content {
    position: absolute;
    left: 0;
    bottom: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 620px;
    padding: 8rem 2rem 4rem 6rem;
    z-index: 2;
}

/* (C) Staggered entrance animation */
.carousel-slide .carousel-tag,
.carousel-slide .carousel-title,
.carousel-slide .carousel-desc,
.carousel-slide .carousel-actions,
.carousel-slide .carousel-trust {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.carousel-slide.active .carousel-tag     { opacity: 1; transform: translateY(0); transition-delay: 0.15s; }
.carousel-slide.active .carousel-title   { opacity: 1; transform: translateY(0); transition-delay: 0.3s; }
.carousel-slide.active .carousel-desc    { opacity: 1; transform: translateY(0); transition-delay: 0.45s; }
.carousel-slide.active .carousel-actions { opacity: 1; transform: translateY(0); transition-delay: 0.6s; }
.carousel-slide.active .carousel-trust   { opacity: 1; transform: translateY(0); transition-delay: 0.75s; }

.carousel-tag {
    display: inline-block;
    background: var(--accent-color);
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 1.2rem;
    width: fit-content;
}

.carousel-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 400;
    color: #fff;
    line-height: 1.15;
    margin: 0 0 1rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.carousel-desc {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: rgba(255,255,255,0.85);
    margin: 0 0 2rem;
    line-height: 1.6;
    font-weight: 300;
}

.carousel-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* (B) Unified glassmorphism hero buttons */
.btn-carousel-primary,
.btn-carousel-secondary {
    display: inline-block;
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 30px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-carousel-primary {
    background: rgba(255,255,255,0.2);
    border: 1.5px solid rgba(255,255,255,0.6);
}

.btn-carousel-secondary {
    background: rgba(255,255,255,0.08);
    border: 1.5px solid rgba(255,255,255,0.35);
}

.btn-carousel-primary:hover {
    background: rgba(255,255,255,0.35);
    border-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.25);
}

.btn-carousel-secondary:hover {
    background: rgba(255,255,255,0.18);
    border-color: rgba(255,255,255,0.7);
    transform: translateY(-2px);
}

/* (I) Trust signals below hero buttons */
.carousel-trust {
    display: flex;
    gap: 1.2rem;
    margin-top: 1.8rem;
    flex-wrap: wrap;
}

.carousel-trust-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: var(--font-body);
    font-size: 0.78rem;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.5px;
}

.carousel-trust-icon {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    color: rgba(255,255,255,0.9);
    flex-shrink: 0;
}

/* Controles del carrusel */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
    backdrop-filter: blur(6px);
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-50%) scale(1.08);
}

.carousel-prev { left: 1.5rem; }
.carousel-next { right: 1.5rem; }

/* (E) Progress bar indicators (replaces dots) */
.carousel-indicators {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    gap: 0;
    z-index: 10;
    height: 3px;
    background: rgba(255,255,255,0.1);
}

.carousel-dot {
    flex: 1;
    height: 100%;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    position: relative;
    overflow: hidden;
    transition: none;
}

.carousel-dot::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.5);
    transform: scaleX(0);
    transform-origin: left;
    transition: none;
}

.carousel-dot.active::after {
    transform: scaleX(1);
    transition: transform var(--dot-duration, 5s) linear;
}

.carousel-dot.done::after {
    transform: scaleX(1);
    background: rgba(255,255,255,0.25);
    transition: none;
}

/* ════════════════════════════════════════════════
   BOTÓN FLOTANTE ON-DEMAND
═══════════════════════════════════════════════ */
.ondemand-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary-color);
    color: white;
    height: 60px;
    padding: 0 22px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 6px 20px rgba(93,115,126,0.4);
    z-index: 1001;
    transition: all 0.3s ease;
}

.ondemand-float:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 28px rgba(93,115,126,0.5);
    background: #4a6673;
}

@media (max-width: 600px) {
    .ondemand-float {
        bottom: 20px;
        right: 20px;
        height: 52px;
        padding: 0 16px;
        font-size: 0.75rem;
    }
    .ondemand-float span { display: none; }
    .ondemand-float { border-radius: 50%; width: 52px; padding: 0; justify-content: center; }
}

/* ════════════════════════════════════════════════
   SECCIÓN EVENTOS
═══════════════════════════════════════════════ */
.events-section {
    padding: 4rem 1.5rem;
    background: var(--sand);
}

.events-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    justify-content: center;
}

.hidden-event {
    display: none !important;
}

.events-empty {
    grid-column: 1 / -1;
    text-align: center;
    font-style: italic;
    color: var(--text-muted);
    padding: 2rem;
}

/* Tarjeta de evento */
.event-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 32px rgba(0,0,0,0.12);
}

.event-card-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.event-card-body {
    padding: 1.2rem 1.4rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.event-card-badge {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 0.75rem;
}

.event-card-badge--future {
    background: rgba(93,115,126,0.12);
    color: var(--primary-color);
}

.event-card-badge--past {
    background: rgba(181,157,164,0.15);
    color: var(--accent-color);
}

.event-card-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--text-main);
    margin: 0 0 0.5rem;
}

.event-card-date {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.2rem;
}

.event-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    padding-top: 1.2rem;
    border-top: 1px solid var(--border-light);
    margin-top: auto;
}

.event-card-price {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
}

.btn-event-enroll {
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 10px 20px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-event-enroll:hover {
    background: #4a6673;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}



.event-card-media-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    margin-top: 0.8rem;
}

.event-media-thumb {
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 8px;
}

/* ════════════════════════════════════════════════
   SUBTÍTULO DE SECCIÓN
═══════════════════════════════════════════════ */
.section-subtitle {
    text-align: center;
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--text-muted);
    font-weight: 300;
    max-width: 560px;
    margin: -1rem auto 2.5rem;
    line-height: 1.7;
}

/* ════════════════════════════════════════════════
   SECCIÓN PACKS
═══════════════════════════════════════════════ */
.packs-section {
    position: relative;
    padding: 5rem 1.5rem;
    background: var(--bg-light);
    overflow: hidden;
}

.packs-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 80% 20%, rgba(181,157,164,0.12) 0%, transparent 55%),
                      radial-gradient(circle at 20% 80%, rgba(93,115,126,0.1) 0%, transparent 55%);
    pointer-events: none;
}

.packs-inner { position: relative; z-index: 1; }

.packs-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
    gap: 28px;
}

/* Skeleton loader */
.pack-card.skeleton,
.workshop-card.skeleton {
    height: 380px;
    background: linear-gradient(90deg, #eee 25%, #f5f5f5 50%, #eee 75%);
    background-size: 200% 100%;
    animation: shimmer 1.4s infinite;
    border-radius: 16px;
}

@keyframes shimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.pack-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    position: relative;
}

.pack-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(93,115,126,0.18);
}

.pack-card-header {
    background: var(--gradient-brand);
    padding: 2rem 1.8rem 1.5rem;
    color: #fff;
}

.pack-card-label {
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.85;
}

.pack-card-title {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 400;
    margin: 0.5rem 0 0;
}

.pack-card-body {
    padding: 1.4rem 1.8rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pack-description {
    font-size: 0.93rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

.pack-videos-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    flex: 1;
}

.pack-videos-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.92rem;
    color: var(--text-main);
}

.pack-video-item {
    display: flex;
    align-items: center;
    justify-content: space-between !important;
    gap: 0.8rem;
    width: 100%;
}

.pack-video-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-video-preview {
    background: rgba(93, 115, 126, 0.08);
    color: var(--primary-color);
    border: 1px solid rgba(93, 115, 126, 0.2);
    border-radius: 50px;
    padding: 4px 10px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 4px;
}

.btn-video-preview:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    transform: translateY(-1px);
}

.preview-clickable {
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.preview-clickable:hover {
    opacity: 0.7;
    background: rgba(93, 115, 126, 0.05);
}

.pack-videos-list li:last-child { border-bottom: none; }

.pack-video-icon {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    background: rgba(93,115,126,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.pack-video-icon svg { width: 14px; height: 14px; }

.pack-card-footer {
    padding: 1.2rem 1.8rem 1.8rem;
    border-top: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.pack-price {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
}

.pack-price-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: -4px;
}

.btn-buy-pack {
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 12px 24px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-buy-pack:hover {
    background: #4a6673;
    transform: scale(1.04);
}

.packs-access-link {
    text-align: center;
    margin-top: 2.5rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.packs-access-link a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s;
}

.packs-access-link a:hover { opacity: 0.7; }

/* Modal Preview Video */
#video-preview-modal {
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

#close-video-preview {
    transition: all 0.3s ease;
}

#close-video-preview:hover {
    background: var(--primary-color);
    transform: rotate(90deg) scale(1.1);
}

.video-preview-container {
    animation: modalAppear 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalAppear {
    from { opacity: 0; transform: scale(0.9) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

#video-preview-player iframe {
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
    display: block;
}

/* ════════════════════════════════════════════════
   SECCIÓN TALLERES
═══════════════════════════════════════════════ */
.workshops-section {
    padding: 5rem 1.5rem;
    background: var(--sand);
}

.workshops-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.workshop-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.workshop-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 36px rgba(93,115,126,0.17);
}

.workshop-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.workshop-card-img--placeholder {
    height: 200px;
    background: var(--gradient-brand);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
}

.workshop-card-body {
    padding: 1.4rem 1.6rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.workshop-card-date {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.workshop-card-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--text-main);
    margin: 0 0 0.7rem;
    line-height: 1.3;
}

.workshop-card-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    flex: 1;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.workshop-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    padding: 1rem 1.6rem 1.4rem;
    border-top: 1px solid var(--border-light);
    margin-top: auto;
}

.workshop-price {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--primary-color);
}

.btn-buy-workshop {
    background: transparent;
    color: var(--primary-color);
    border: 1.5px solid var(--primary-color);
    border-radius: 50px;
    padding: 10px 22px;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-buy-workshop:hover {
    background: var(--primary-color);
    color: #fff;
}

/* ════════════════════════════════════════════════
   MODAL DE COMPRA
═══════════════════════════════════════════════ */
.purchase-modal-content {
    max-width: 480px;
    width: 95%;
    max-height: 90vh;
    border-radius: 20px;
    padding: 0;
    overflow-y: auto;
    scrollbar-width: thin;
}

.purchase-step { padding: 2rem; }

.purchase-product-header {
    background: var(--gradient-brand);
    padding: 2rem;
    color: #fff;
}

.purchase-tag {
    display: inline-block;
    background: rgba(255,255,255,0.25);
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 0.8rem;
}

.purchase-product-name {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 400;
    margin: 0.3rem 0 0.5rem;
}

.purchase-product-price {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 600;
    margin: 0;
}

.purchase-label {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted-dark);
    margin-bottom: 8px;
    display: block;
}

.purchase-input {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--border-dark);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    background: var(--bg-lighter);
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.purchase-input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: #fff;
}

/* Grid de métodos de pago */
.payment-methods-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 0.5rem;
}

.payment-method-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0.85rem 0.5rem;
    border: 1.5px solid var(--border-dark);
    border-radius: 12px;
    background: var(--bg-lighter);
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-main);
    line-height: 1.2;
    text-align: center;
    transition: all 0.25s ease;
}

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

.payment-method-btn:hover,
.payment-method-btn.selected {
    border-color: var(--primary-color);
    background: rgba(93,115,126,0.08);
    color: var(--primary-color);
}

.purchase-error {
    color: var(--danger);
    font-size: 0.87rem;
    margin-top: 0.8rem;
    background: var(--danger-light);
    padding: 10px 14px;
    border-radius: 8px;
}

/* Step 2: transfer / prex */
.purchase-back-btn {
    background: none;
    border: none;
    color: var(--primary-color);
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    margin-bottom: 1.5rem;
    display: block;
    transition: opacity 0.2s;
}

.purchase-back-btn:hover { opacity: 0.7; }

.transfer-info-box,
.prex-info-box {
    background: var(--bg-lighter);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 1.2rem 1.4rem;
    margin-bottom: 1.4rem;
    font-size: 0.92rem;
}

.transfer-info-box h4,
.prex-info-box h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--primary-color);
    margin: 0 0 1rem;
}

.transfer-info-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
    gap: 4px;
}

.transfer-info-row strong {
    color: var(--text-muted-dark);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.prex-qr {
    display: block;
    max-width: 180px;
    margin: 0 auto 1rem;
    border-radius: 12px;
}

/* Proof upload */
.proof-label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-muted-dark);
    margin-bottom: 0.6rem;
}

.proof-dropzone {
    border: 2px dashed var(--border-darker);
    border-radius: 14px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s ease;
    color: var(--text-muted);
}

.proof-dropzone:hover,
.proof-dropzone.drag-over {
    border-color: var(--primary-color);
    background: rgba(93,115,126,0.05);
    color: var(--primary-color);
}

.proof-dropzone p {
    font-size: 0.92rem;
    margin: 0.7rem 0 0.3rem;
}

.proof-hint {
    font-size: 0.78rem;
    color: var(--text-muted-light);
}

.proof-preview {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 0.8rem;
    padding: 0.8rem;
    background: var(--bg-lighter);
    border-radius: 10px;
    font-size: 0.87rem;
}

/* Step 3: success */
.purchase-success {
    text-align: center;
    padding: 3rem 2rem;
}

.purchase-success-icon {
    margin-bottom: 1.2rem;
}

.purchase-success h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-main);
    margin: 0 0 0.8rem;
}

.purchase-success p {
    font-size: 1rem;
    color: var(--text-muted);
    margin: 0 0 2rem;
    line-height: 1.6;
}

.purchase-body { padding: 1.5rem 0 0.5rem; }

/* ════════════════════════════════════════════════
   BOTONES GLOBALES (btn-primary / btn-secondary)
═══════════════════════════════════════════════ */
.btn-primary {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 14px 30px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #4a6673;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(93,115,126,0.35);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary-color);
    padding: 12px 24px;
    border: 1.5px solid var(--primary-color);
    border-radius: 50px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: #fff;
}

.w-100 { width: 100%; }
.mt-2  { margin-top: 0.5rem; }
.mt-3  { margin-top: 1rem; }
.mt-4  { margin-top: 1.5rem; }

/* ════════════════════════════════════════════════
   (J) Mini-banner "¿Ya compraste?"
═══════════════════════════════════════════════ */
.packs-access-banner {
    max-width: 560px;
    margin: 2.5rem auto 0;
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 14px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.packs-access-banner:hover {
    box-shadow: 0 6px 24px rgba(93,115,126,0.12);
    transform: translateY(-2px);
}

.packs-access-banner div {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.packs-access-banner strong {
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: var(--text-main);
}

.packs-access-banner span {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.packs-access-btn {
    color: var(--primary-color);
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    padding: 8px 18px;
    border: 1.5px solid var(--primary-color);
    border-radius: 50px;
    transition: all 0.25s ease;
}

.packs-access-btn:hover {
    background: var(--primary-color);
    color: #fff;
}

/* ════════════════════════════════════════════════
   (G) Badge "Más vendido" en pack card
═══════════════════════════════════════════════ */
.pack-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255,255,255,0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
    z-index: 2;
}

/* ════════════════════════════════════════════════
   (H) CTA sticky mobile
═══════════════════════════════════════════════ */
.sticky-cta-mobile {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    padding: 12px 20px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    transform: translateY(100%);
    transition: transform 0.35s ease;
}

.sticky-cta-mobile.visible {
    transform: translateY(0);
}

.sticky-cta-text {
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.3;
}

.sticky-cta-text small {
    display: block;
    font-weight: 400;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.sticky-cta-btn {
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 10px 22px;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
}

.sticky-cta-btn:hover { background: #4a6673; }

/* ════════════════════════════════════════════════
   RESPONSIVE — NUEVAS SECCIONES
═══════════════════════════════════════════════ */
@media (max-width: 768px) {
    .carousel-content {
        padding: 6rem 1.5rem 3rem;
        max-width: 100%;
    }

    .carousel-btn { display: none; }

    .carousel-title { font-size: clamp(1.8rem, 7vw, 2.5rem); }

    .carousel-trust { gap: 0.6rem; }
    .carousel-trust-item { font-size: 0.7rem; }

    .packs-grid,
    .workshops-grid { grid-template-columns: 1fr; }

    .payment-methods-grid { grid-template-columns: 1fr 1fr; }

    .pack-card-footer {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .btn-buy-pack,
    .btn-buy-workshop { width: 100%; text-align: center; }

    .sticky-cta-mobile { display: flex; }

    .packs-access-banner {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }

    .packs-access-banner div { align-items: center; }
}

@media (max-width: 480px) {
    .payment-methods-grid { grid-template-columns: 1fr 1fr; }
    .carousel-actions { flex-direction: column; }
    .btn-carousel-primary,
    .btn-carousel-secondary { text-align: center; }
}

/* ════════════════════════════════════════════════
   GALERÍA CAPTION
   ═══════════════════════════════════════════════ */
.gallery-caption {
    width: 100%;
    color: #fff;
    text-align: center;
    padding: 1.2rem 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    background: rgba(0,0,0,0.6);
    letter-spacing: 0.5px;
    min-height: 1.2em;
    font-weight: 300;
}
/* ------------------------------------------------
   ACTIVITIES SECTION
   ----------------------------------------------- */
.activities-section {
    padding: 5rem 20px;
    background: var(--white);
    text-align: center;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 2rem auto 0;
}

.activity-card {
    background: var(--sand);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    text-align: left;
}

.activity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.activity-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.activity-card-body {
    padding: 1.5rem;
    flex-grow: 1;
}

.activity-card-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.activity-card-desc {
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.activity-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding: 1.2rem 1.5rem;
    background: rgba(255,255,255,0.3);
}

.activity-price {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-main);
}

.btn-reserve-activity {
    background: var(--primary-color);
    color: white !important;
    border: none;
    padding: 0.8rem 1.4rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-reserve-activity:hover {
    background: var(--text-main);
    transform: scale(1.05);
}

/* ------------------------------------------------
   PURCHASE MODAL: SESSIONS PICKER
   ----------------------------------------------- */
.sessions-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
    max-height: 200px;
    overflow-y: auto;
    padding: 5px;
}

.session-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: white;
    border: 2px solid var(--border-light);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
}

.session-option:hover {
    border-color: var(--accent-color);
    background: #fdfdfd;
}

.session-option.active {
    border-color: var(--primary-color);
    background: #f0f7f9;
}

.session-date {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-main);
}

.session-time {
    font-size: 0.85rem;
    color: var(--primary-color);
    background: rgba(93, 115, 126, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
}

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

.payment-method-btn[data-method="cash"] svg {
    color: #28a745;
}

@media (max-width: 768px) {
    .activities-grid { grid-template-columns: 1fr; }
    .activity-card-footer {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        gap: 1rem;
    }
    .btn-reserve-activity { width: 100%; text-align: center; }
}

/* ─── Conversion Notice (Purchase Modal) ──────────────────────────────── */

.conversion-notice {
    display: none;
    align-items: center;
    gap: 0.65rem;
    margin-top: 0.75rem;
    padding: 0.7rem 1rem;
    border-radius: 10px;
    background: rgba(255, 193, 7, 0.08);
    border: 1px solid rgba(255, 193, 7, 0.25);
    font-size: 0.85rem;
    line-height: 1.4;
    color: var(--text-color);
    animation: convNoticeIn 0.35s ease-out;
}

@keyframes convNoticeIn {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

.conversion-notice .conversion-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
}

.conversion-notice .conversion-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.conversion-notice .conversion-text span {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.conversion-notice .conversion-text strong {
    font-size: 1rem;
    color: var(--text-color);
}

/* Redirect notice (shown before MP redirect) */
.conversion-redirect-notice {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.2rem;
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 12px;
    margin: 1rem 0;
    animation: convNoticeIn 0.35s ease-out;
}

.conversion-redirect-notice .conversion-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
}

.conversion-redirect-notice p {
    margin: 0.25rem 0 0.35rem;
    font-size: 0.9rem;
}

.conversion-redirect-notice small {
    color: var(--text-muted);
    font-size: 0.75rem;
}

/* ─── Transfer International Section ──────────────────────────────────── */

.transfer-intl-section {
    margin-top: 0.75rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 0.75rem;
}

.transfer-intl-section details summary {
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--accent-color);
    user-select: none;
    padding: 0.3rem 0;
    transition: color 0.2s;
}

.transfer-intl-section details summary:hover {
    color: var(--primary-color);
}

.transfer-intl-body {
    margin-top: 0.5rem;
    padding: 0.75rem;
    background: rgba(255,255,255,0.03);
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.06);
}

.transfer-intl-note {
    display: block;
    margin-top: 0.5rem;
    color: var(--text-muted);
    font-size: 0.75rem;
    line-height: 1.4;
}

.transfer-amount-row span {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--primary-color);
}

/* ─── Transfer AR Section (future) ────────────────────────────────────── */

.transfer-ar-section {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.transfer-ar-section h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 0 0.75rem;
    color: var(--text-color);
}

/* ─── MP Country Picker ───────────────────────────────────────────────── */

.mp-country-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mp-country-wrapper .mp-main-btn {
    width: 100%;
}

.mp-country-picker {
    display: none;
    flex-direction: row;
    gap: 0.5rem;
    margin-top: 0.5rem;
    padding: 0.6rem 0.5rem 0.4rem;
    background: rgba(255,255,255,0.04);
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.08);
    animation: mpPickerIn 0.25s ease-out;
    width: 100%;
}

@keyframes mpPickerIn {
    from { opacity: 0; transform: translateY(-8px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.mp-country-label {
    width: 100%;
    text-align: center;
    font-size: 0.72rem;
    color: var(--text-muted);
    margin: 0 0 0.35rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.mp-country-btn {
    flex: 1;
    min-height: 52px !important;
    font-size: 0.78rem !important;
    padding: 0.4rem 0.25rem !important;
    line-height: 1.25;
}

.mp-country-btn small {
    display: block;
    font-size: 0.68rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-top: 1px;
}

.mp-country-btn .mp-flag {
    font-size: 1.3rem;
    display: block;
    margin-bottom: 0.15rem;
}

.mp-country-wrapper.expanded .mp-main-btn {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* ─────────────────────────────────────────────
   PREMIUM ENHANCEMENTS (v10)
   ───────────────────────────────────────────── */

/* Stagger reveal: cards appear sequentially, not all at once */
.services-grid .service-card.reveal:nth-child(2) { transition-delay: 0.1s; }
.services-grid .service-card.reveal:nth-child(3) { transition-delay: 0.2s; }
.services-grid .service-card.reveal:nth-child(4) { transition-delay: 0.3s; }

/* Social links subtle hover */
.social-links a {
    transition: color 0.3s, transform 0.3s;
    display: inline-block;
}
.social-links a:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
}

/* Newsletter focus glow */
.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(93, 115, 126, 0.12);
}

/* Trust badge (for social proof — mejora #3) */
.trust-badge {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    padding: 0.8rem 0;
    letter-spacing: 0.3px;
}

.trust-badge i,
.trust-badge svg {
    color: var(--accent-color);
}

/* Social proof counter */
.social-proof-banner {
    text-align: center;
    padding: 1rem 0 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted-dark);
    font-weight: 500;
}

.social-proof-banner span {
    color: var(--primary-color);
    font-weight: 700;
}

/* Scarcity indicator */
.scarcity-badge {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    color: #d35400;
    background: rgba(211, 84, 0, 0.08);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    margin-top: 0.5rem;
}

/* Image hover zoom on cards */
.service-card img {
    transition: transform 0.5s ease;
}
.service-card:hover img {
    transform: scale(1.03);
}
