:root {
    --primary-purple: #9D8AB3;
    --primary-gold: #E6A902;
    --text-dark: #2D2D2D;
    --text-muted: #6B6B6B;
    --bg-light: #F8F6FA;
    --bg-white: #F9F5F4;
    --lavender-soft: #E8E2EF;
    --serif-font: 'Playfair Display', serif;
    --sans-font: 'Inter', sans-serif;
}

body {
    background-color: #FFFFFF;
    /* Cambiado a Blanco */
}

.serif-font {
    font-family: var(--serif-font);
}

.sans-font {
    font-family: var(--sans-font);
}

/* Hero Section */
.session-hero {
    position: relative;
    padding: 15px 0;
    background-image: url('img/fondo-hero-sesion.png');
    background-size: cover;
    background-position: center;
    overflow: visible;
    z-index: 5;
}

.hero-image-side {
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    z-index: 1;
}

.hero-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 1) 75%, rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 1) 75%, rgba(0, 0, 0, 0) 100%);
}

@media (max-width: 991px) {
    .session-hero {
        padding: 0; /* Reducir padding superior para que la imagen llegue al tope */
    }

    .hero-image-side {
        position: relative;
        width: 100%;
        height: 350px; /* Un poco más de altura para la imagen en móvil */
        margin-bottom: 0;
    }

    .hero-image-side img {
        -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 0) 100%);
        mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 0) 100%);
    }

    .hero-content {
        margin-top: -50px; /* Elevar el contenido para que solape ligeramente la imagen */
        padding-bottom: 40px;
    }
}

.main-hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 30px;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.badge-session {
    background: linear-gradient(135deg, #E8E2EF 0%, #D8CDE4 100%);
    color: #7A6991;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    margin-top: 12px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 15px rgba(157, 138, 179, 0.1);
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: #4A3A63;
    line-height: 1.1;
    margin-bottom: 15px;
    font-weight: 800;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 991px) {
    .hero-title {
        -webkit-line-clamp: unset;
    }
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 500px;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}

/* Pricing Card */
.pricing-card {
    background: var(--bg-white);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(74, 58, 99, 0.2);
    max-width: 650px;
    width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 100;
}

@media (min-width: 992px) {
    .pricing-card {
        transform: translateY(80px);
        margin-left: auto;
        margin-right: -190px;
    }
}

@media (max-width: 991px) {
    .pricing-card {
        margin: 20px auto 0;
        transform: none;
        box-shadow: 0 10px 30px rgba(74, 58, 99, 0.1);
    }
}

.pricing-header {
    background-color: #7A6991;
    color: white;
    padding: 25px 20px;
    border-radius: 0;
    text-align: center;
    margin-bottom: 0;
}

.price-tag {
    font-size: 2rem;
    font-weight: 700;
}

.price-unit {
    font-size: 1rem;
    opacity: 0.8;
}



.pricing-details {
    list-style: none;
    padding: 25px;
    margin: 0;
    display: flex;
    justify-content: space-between;
    gap: 15px;
    border-bottom: 1px solid #F0EBF5;
    flex-wrap: wrap;
}

@media (max-width: 575px) {
    .pricing-details {
        justify-content: center;
        padding: 20px 15px;
    }
    
    .pricing-details li {
        width: 100%;
        justify-content: center;
    }
}

.pricing-details li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.pricing-details li:last-child {
    border: none;
}

.pricing-details i {
    color: var(--primary-purple);
}

.btn-reserve {
    background: var(--primary-gold);
    color: white;
    border: none;
    padding: 18px;
    border-radius: 12px;
    width: calc(100% - 60px);
    margin: 30px;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    font-size: 0.9rem;
}

@media (max-width: 575px) {
    .btn-reserve {
        width: calc(100% - 30px);
        margin: 15px;
        padding: 15px;
        font-size: 0.85rem;
    }
}

.btn-reserve:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(230, 169, 2, 0.3);
}

.trust-badge {
    text-align: center;
    color: #A0A0A0;
    font-size: 0.8rem;
    margin-top: 0;
    padding-bottom: 25px;
}

/* Sessions Counter */
.sessions-counter {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.avatar-group {
    display: flex;
    margin-left: 10px;
}

.avatar-group img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -10px;
}

.counter-text {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.stars {
    color: var(--primary-gold);
    font-size: 0.8rem;
}

/* Benefits Section */
.benefit-item {
    text-align: center;
    padding: 10px 20px;
    transition: transform 0.3s;
}

.benefit-item img {
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    width: 90px;
    height: 90px;
    background: #F7F5FA;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: #4A3A63;
    font-size: 2.2rem;
}

.benefit-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #4A3A63;
    margin-bottom: 6px;
}

.benefit-desc {
    font-size: 0.95rem;
    color: #8E7DA1;
    margin: 0;
}

.benefit-column {
    border-right: 1px solid #F0EBF5;
}

.benefit-column:last-child {
    border-right: none;
}

/* Section Dividers */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 50px 0;
}

.divider-line {
    height: 1px;
    background: linear-gradient(to right, transparent, #D4AF37, transparent);
    width: 100px;
    position: relative;
}

.divider-line::after {
    content: '◆';
    position: absolute;
    color: #D4AF37;
    font-size: 8px;
    top: -6px;
}

.section-divider .divider-line:first-child::after { right: 0; }
.section-divider .divider-line:last-child::after { left: 0; }

/* Así es una sesión - Diseño Premium */
.session-preview-container {
    position: relative;
    border: 1px solid #D6CCE4;
    border-radius: 15px;
    background: #fff;
    transition: all 0.3s ease;
    padding: 60px 50px 50px !important;
    margin-bottom: 60px;
    margin-top: 50px;
}

.session-preview-header {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 0 15px;
    z-index: 10;
}

.session-preview-header h2 {
    margin: 0;
    color: #4A3A63;
    font-size: 2.2rem;
    white-space: nowrap;
}

.session-preview-container:hover {
    box-shadow: 0 15px 40px rgba(122, 105, 145, 0.08);
}

.media-wrapper {
    background: #f8f9fa;
    min-height: 250px;
    position: relative;
    border-radius: 12px;
}

.session-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.session-features-list li {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    font-size: 0.95rem;
    color: #4A3A63;
}

.session-features-list li span {
    font-weight: 600;
}

.feat-icon {
    width: 48px;
    height: 48px;
    background: #F3EEF9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8E7DA1;
    flex-shrink: 0;
    font-size: 1.3rem;
}

.session-quote-card {
    background: #F3EBF5;
    padding: 40px 25px;
    border-radius: 12px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.quote-mark {
    font-size: 3rem;
    color: #A694C1;
    font-family: serif;
    line-height: 1;
    display: block;
    margin-bottom: 5px;
}

.session-quote-card p {
    font-size: 1.05rem;
    color: #4A3A63;
    line-height: 1.5;
    margin: 10px 0;
    font-style: italic;
}

.quote-footer {
    color: #8E7DA1;
    font-size: 1.6rem;
    margin-top: 15px;
}

/* Testimonials - Diseño Horizontal */
.testimonial-card-v2 {
    background: white;
    border-radius: 20px;
    padding: 35px;
    display: flex;
    align-items: center;
    gap: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: all 0.3s ease;
}

.testimonial-card-v2:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(157, 138, 179, 0.12);
}

.testimonial-card-v2 img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 3px solid #F3EEF9;
}

.testimonial-content {
    flex-grow: 1;
}

.testimonial-card-v2 .stars {
    color: #E6A902;
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.testimonial-card-v2 p {
    font-size: 1rem;
    color: #4A3A63;
    line-height: 1.5;
    margin-bottom: 12px;
}

.testimonial-card-v2 h6 {
    color: #4A3A63;
    font-weight: 800;
    margin: 0;
    font-size: 1.1rem;
}

/* FAQ and Footer Info Box */
.faq-info-box {
    border: 1px solid #D6CCE4;
    border-radius: 20px;
    background: #fff;
    padding: 40px 30px;
}

.vertical-divider {
    width: 1px;
    background: #E0D6ED;
    height: 100%;
    margin: 0 auto;
}

.feat-icon-small {
    width: 45px;
    height: 45px;
    background: #F3EEF9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4A3A63;
    font-size: 1.4rem;
    flex-shrink: 0;
    position: relative;
    border: 1px dashed #7A6991;
}

.accordion-sessions .accordion-item {
    border: 1px solid #F0EBF5 !important;
    border-radius: 12px !important;
    margin-bottom: 12px;
    overflow: hidden;
    width: 100%;
}

.accordion-sessions .accordion-button {
    background: transparent;
    color: #4A3A63;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: none;
    padding: 18px 20px;
    width: 100%;
}

.accordion-sessions .accordion-button:not(.collapsed) {
    color: #7A6991;
    background-color: #FBF9FC;
    box-shadow: none;
}

.accordion-sessions .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%234A3A63'%3e%3cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3e%3c/svg%3e");
    background-size: 1.5rem;
}

.accordion-sessions .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%237A6991'%3e%3cpath fill-rule='evenodd' d='M2 8a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11A.5.5 0 0 1 2 8z'/%3e%3c/svg%3e");
}

.accordion-sessions .accordion-body {
    padding: 15px 20px 25px;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Footer CTA Box */
.footer-cta-box {
    background: #7A6991;
    color: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(122, 105, 145, 0.25);
    height: 100%;
}

.btn-reserve-gold {
    background: #E6B96B;
    color: #4A3A63;
    border: none;
    padding: 16px 30px;
    border-radius: 12px;
    font-weight: 800;
    letter-spacing: 1.2px;
    width: 100%;
    margin: 15px 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(230, 185, 107, 0.3);
    font-size: 0.9rem;
}

.color-purple {
    color: #7A6991;
}

.vertical-divider {
    width: 1px;
    background: #E0D6ED;
    height: 100%;
    margin: 0 auto;
    opacity: 0.6;
}

@media (max-width: 991px) {
    .hero-img-container {
        margin-bottom: 40px;
    }

    .session-preview {
        padding: 20px;
    }
}