/**
 * Premium Styles - Shekinah Theme
 * Estilos premium con sistema de reserva y diseño profesional
 */

/* ============================================
   HERO SECTION PREMIUM
   ============================================ */
.hero-section-premium {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #faf0f3 0%, #f5d5e0 30%, #f8e8f0 70%, #faf0f3 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Decoración floral */
.floral-decoration {
    position: absolute;
    width: 250px;
    height: 250px;
    opacity: 0.4;
    pointer-events: none;
    z-index: 1;
}

.floral-decoration img {
    width: 100%;
    height: 100%;
}

.floral-top-left {
    top: -50px;
    left: -50px;
    transform: rotate(-15deg);
}

.floral-top-right {
    top: -30px;
    right: -60px;
    transform: rotate(45deg);
}

.floral-bottom-left {
    bottom: -40px;
    left: -40px;
    transform: rotate(-45deg);
}

.floral-bottom-right {
    bottom: -50px;
    right: -30px;
    transform: rotate(15deg);
}

.hero-premium-content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 120px 0 80px;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Lado izquierdo - Texto */
.hero-text-side {
    padding-right: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(201, 169, 98, 0.15);
    border: 1px solid rgba(201, 169, 98, 0.3);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    color: var(--shekinah-gold-dark);
    margin-bottom: 2rem;
    font-weight: 500;
}

.hero-title-premium {
    margin-bottom: 1.5rem;
}

.hero-title-premium .title-small {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-style: italic;
    color: var(--shekinah-gold);
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.hero-title-premium .title-large {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 8vw, 5.5rem);
    color: var(--shekinah-black);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.02em;
}

.hero-description-premium {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--shekinah-gray-dark);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

/* Botones CTA */
.hero-cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn-reserva {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--shekinah-gold) 0%, var(--shekinah-gold-dark) 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(201, 169, 98, 0.3);
}

.btn-reserva:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(201, 169, 98, 0.4);
    color: white;
}

.btn-reserva .btn-icon {
    font-size: 1.5rem;
}

.btn-reserva .btn-text {
    display: flex;
    flex-direction: column;
    text-align: left;
    line-height: 1.2;
}

.btn-reserva .btn-text strong {
    font-size: 1rem;
}

.btn-reserva .btn-text small {
    font-size: 0.75rem;
    opacity: 0.9;
    font-weight: 400;
}

.btn-comprar {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    color: var(--shekinah-black);
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    border: 2px solid var(--shekinah-pink-dark);
    transition: all 0.3s ease;
}

.btn-comprar:hover {
    border-color: var(--shekinah-gold);
    color: var(--shekinah-gold);
    transform: translateY(-3px);
}

/* Estadísticas */
.hero-stats {
    display: flex;
    gap: 2.5rem;
}

.stat-item {
    text-align: left;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--shekinah-gold);
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--shekinah-gray);
    margin-top: 0.25rem;
}

/* Lado derecho - Imagen */
.hero-image-side {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.image-frame {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(201, 169, 98, 0.2);
    background: white;
    padding: 15px;
}

.image-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 3px solid var(--shekinah-gold);
    border-radius: 25px;
    z-index: 2;
    pointer-events: none;
}

.hero-main-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
}

/* Badges flotantes */
.floating-badge {
    position: absolute;
    background: white;
    padding: 1rem 1.25rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: float 3s ease-in-out infinite;
}

.floating-badge span {
    font-size: 1.5rem;
}

.floating-badge strong {
    display: block;
    font-size: 0.875rem;
    color: var(--shekinah-black);
}

.floating-badge small {
    font-size: 0.75rem;
    color: var(--shekinah-gray);
}

.badge-entrega {
    top: 20%;
    right: -20px;
    animation-delay: 0s;
}

.badge-garantia {
    bottom: 25%;
    left: -30px;
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: var(--shekinah-gold-dark);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--shekinah-gold);
    border-radius: 13px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--shekinah-gold);
    border-radius: 2px;
    animation: scroll 1.5s ease-in-out infinite;
}

@keyframes scroll {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(12px); opacity: 0; }
}

/* ============================================
   SECCIÓN RESERVA PREMIUM
   ============================================ */
.reserva-section {
    background: var(--shekinah-cream);
    padding: 6rem 0;
}

.reserva-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(201, 169, 98, 0.15);
}

.reserva-content {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.reserva-header {
    margin-bottom: 2.5rem;
}

.reserva-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b6b, #ee5a5a);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.reserva-title {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    color: var(--shekinah-black);
    margin-bottom: 0.5rem;
}

.reserva-subtitle {
    font-size: 1.125rem;
    color: var(--shekinah-gray);
    margin-bottom: 1rem;
}

.reserva-precio {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin-bottom: 2rem;
}

.precio-monto {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    color: var(--shekinah-gold);
    line-height: 1;
}

.precio-moneda {
    font-size: 1.5rem;
    color: var(--shekinah-gray);
    font-weight: 500;
}

.reserva-beneficios {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.beneficio-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--shekinah-pink-light);
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.beneficio-item:hover {
    transform: translateX(5px);
}

.beneficio-icon {
    font-size: 1.5rem;
}

.beneficio-text strong {
    display: block;
    font-size: 1rem;
    color: var(--shekinah-black);
}

.beneficio-text span {
    font-size: 0.875rem;
    color: var(--shekinah-gray);
}

.btn-reserva-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--shekinah-gold) 0%, var(--shekinah-gold-dark) 100%);
    color: white;
    padding: 1.25rem 2.5rem;
    border-radius: 15px;
    font-size: 1.125rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(201, 169, 98, 0.3);
}

.btn-reserva-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(201, 169, 98, 0.4);
    color: white;
}

.reserva-imagen {
    position: relative;
    min-height: 500px;
}

.reserva-imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reserva-imagen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, white 0%, transparent 30%);
    z-index: 2;
    pointer-events: none;
}

/* ============================================
   SECCIONES PREMIUM COMÚN
   ============================================ */
.section-header-premium {
    margin-bottom: 4rem;
}

.section-subtitle-premium {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--shekinah-gold);
    margin-bottom: 0.75rem;
}

.section-title-premium {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--shekinah-black);
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--shekinah-gold);
    font-size: 1.5rem;
}

.section-divider::before,
.section-divider::after {
    content: '';
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--shekinah-gold), transparent);
}

/* ============================================
   CATEGORÍAS PREMIUM
   ============================================ */
.categories-grid-premium {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.category-card-premium {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    aspect-ratio: 3/4;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.category-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(201, 169, 98, 0.2);
}

.category-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card-premium:hover .category-image img {
    transform: scale(1.1);
}

.category-overlay-premium {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
    transition: background 0.3s ease;
}

.category-card-premium:hover .category-overlay-premium {
    background: linear-gradient(to top, rgba(201, 169, 98, 0.8) 0%, rgba(201, 169, 98, 0.3) 100%);
}

.category-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    color: white;
    z-index: 2;
}

.category-info h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.category-count {
    display: block;
    font-size: 0.875rem;
    opacity: 0.8;
    margin-bottom: 0.75rem;
}

.category-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.category-card-premium:hover .category-link {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   PRODUCTOS PREMIUM
   ============================================ */
.bg-cream {
    background: var(--shekinah-cream);
}

.products-grid-premium {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.product-card-premium {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
}

.product-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(201, 169, 98, 0.15);
}

.product-badges {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.badge-sale {
    background: #e74c3c;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-hot {
    background: rgba(255, 255, 255, 0.95);
    color: var(--shekinah-black);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.product-image-premium {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--shekinah-pink-light);
}

.product-image-premium img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card-premium:hover .product-image-premium img {
    transform: scale(1.08);
}

.product-actions-premium {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.product-card-premium:hover .product-actions-premium {
    opacity: 1;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: none;
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.action-btn:hover {
    transform: scale(1.05);
}

.btn-reservar {
    background: linear-gradient(135deg, var(--shekinah-gold), var(--shekinah-gold-dark));
    color: white;
    flex-direction: column;
    padding: 0.5rem 1rem;
}

.btn-reservar span {
    font-weight: 600;
    font-size: 0.8rem;
}

.btn-reservar small {
    font-size: 0.65rem;
    opacity: 0.9;
}

.btn-ver {
    width: 45px;
    height: 45px;
    padding: 0;
    border-radius: 50%;
    color: var(--shekinah-black);
}

.product-info-premium {
    padding: 1.5rem;
}

.product-title-premium {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--shekinah-black);
}

.product-title-premium a {
    color: inherit;
    transition: color 0.3s ease;
}

.product-title-premium a:hover {
    color: var(--shekinah-gold);
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.product-category {
    font-size: 0.8rem;
    color: var(--shekinah-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-rating {
    color: var(--shekinah-gold);
    font-size: 0.875rem;
}

.product-price-premium {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.price-sale {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--shekinah-gold);
}

.price-regular {
    font-size: 1rem;
    color: var(--shekinah-gray);
    text-decoration: line-through;
}

.btn-add-cart {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--shekinah-black);
    color: white;
    padding: 1rem;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-add-cart:hover {
    background: var(--shekinah-gold);
    transform: scale(1.02);
}

.btn-outline-premium {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: transparent;
    color: var(--shekinah-black);
    padding: 1.25rem 2.5rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 500;
    border: 2px solid var(--shekinah-gold);
    transition: all 0.3s ease;
}

.btn-outline-premium:hover {
    background: var(--shekinah-gold);
    color: white;
}

/* ============================================
   BANNERS DE CONFIANZA
   ============================================ */
.section-padding-sm {
    padding: 3rem 0;
}

.trust-banners {
    background: white;
    border-top: 1px solid var(--shekinah-pink);
    border-bottom: 1px solid var(--shekinah-pink);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.trust-item:hover {
    background: var(--shekinah-pink-light);
    transform: translateY(-3px);
}

.trust-icon {
    font-size: 2rem;
}

.trust-text strong {
    display: block;
    font-size: 1rem;
    color: var(--shekinah-black);
    margin-bottom: 0.25rem;
}

.trust-text span {
    font-size: 0.875rem;
    color: var(--shekinah-gray);
}

/* ============================================
   TESTIMONIOS PREMIUM
   ============================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card-premium {
    background: white;
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.testimonial-card-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(201, 169, 98, 0.1);
}

.testimonial-rating {
    color: var(--shekinah-gold);
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
}

.testimonial-text {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--shekinah-gray-dark);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author-premium {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--shekinah-gold), var(--shekinah-gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
}

.author-info strong {
    display: block;
    font-size: 1rem;
    color: var(--shekinah-black);
}

.author-info span {
    font-size: 0.875rem;
    color: var(--shekinah-gray);
}

/* ============================================
   CTA FINAL
   ============================================ */
.cta-final {
    background: linear-gradient(135deg, var(--shekinah-gold) 0%, var(--shekinah-gold-dark) 100%);
    padding: 5rem 0;
}

.cta-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-reserva-gold {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: white;
    color: var(--shekinah-black);
    padding: 1rem 2.5rem;
    border-radius: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-reserva-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.btn-reserva-gold span {
    font-size: 1.125rem;
}

.btn-reserva-gold small {
    font-size: 0.875rem;
    color: var(--shekinah-gray);
}

.btn-white {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: white;
    padding: 1.25rem 2.5rem;
    border-radius: 15px;
    font-weight: 500;
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.btn-white:hover {
    background: white;
    color: var(--shekinah-gold);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-text-side {
        padding-right: 0;
        order: 2;
    }
    
    .hero-image-side {
        order: 1;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-cta-group {
        justify-content: center;
    }
    
    .categories-grid-premium {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid-premium {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .reserva-card {
        grid-template-columns: 1fr;
    }
    
    .reserva-imagen {
        min-height: 300px;
        order: -1;
    }
    
    .reserva-imagen::before {
        background: linear-gradient(to top, white 0%, transparent 30%);
    }
}

@media (max-width: 768px) {
    .floral-decoration {
        width: 150px;
        height: 150px;
        opacity: 0.2;
    }
    
    .hero-title-premium .title-large {
        font-size: 2.5rem;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }
    
    .floating-badge {
        display: none;
    }
    
    .categories-grid-premium {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .products-grid-premium {
        grid-template-columns: 1fr;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .reserva-content {
        padding: 2rem;
    }
    
    .precio-monto {
        font-size: 3rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

/* ============================================
   MODAL DE RESERVA MODERNO
   ============================================ */
.modal-reserva {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal-reserva.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 26, 0.7);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-reserva.active .modal-overlay {
    opacity: 1;
}

.modal-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    transform: scale(0.9) translateY(20px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 2;
}

.modal-reserva.active .modal-container {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    color: var(--shekinah-gray);
}

.modal-close:hover {
    background: var(--shekinah-gold);
    color: white;
    transform: rotate(90deg);
}

.modal-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    min-height: 600px;
}

.modal-left {
    padding: 3rem;
    display: flex;
    flex-direction: column;
}

.modal-header {
    margin-bottom: 2rem;
}

.modal-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--shekinah-gold), var(--shekinah-gold-dark));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.modal-header h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--shekinah-black);
    margin-bottom: 0.5rem;
}

.modal-header p {
    color: var(--shekinah-gray);
    font-size: 0.95rem;
}

.modal-form {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.form-fields {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group-modal {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group-modal label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--shekinah-black);
}

.form-group-modal input,
.form-group-modal select {
    padding: 0.875rem 1rem;
    border: 2px solid var(--shekinah-pink-dark);
    border-radius: 12px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group-modal input:focus,
.form-group-modal select:focus {
    outline: none;
    border-color: var(--shekinah-gold);
    box-shadow: 0 0 0 4px rgba(201, 169, 98, 0.1);
}

.form-row-modal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.modal-info-box {
    background: var(--shekinah-pink-light);
    padding: 1.25rem;
    border-radius: 15px;
    margin: 1.5rem 0;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--shekinah-pink-dark);
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    color: var(--shekinah-gray);
    font-size: 0.9rem;
}

.info-value {
    font-weight: 700;
    color: var(--shekinah-gold);
    font-size: 1.1rem;
}

.btn-modal-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--shekinah-gold), var(--shekinah-gold-dark));
    color: white;
    padding: 1.25rem;
    border-radius: 15px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(201, 169, 98, 0.3);
    margin-top: auto;
}

.btn-modal-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(201, 169, 98, 0.4);
}

/* Lado derecho del modal */
.modal-right {
    background: linear-gradient(135deg, var(--shekinah-pink-light), var(--shekinah-pink));
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-image-container {
    position: relative;
    margin-bottom: 2rem;
}

.modal-image-container img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.modal-float-card {
    position: absolute;
    bottom: -15px;
    right: -15px;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.float-icon {
    font-size: 1.5rem;
}

.float-text strong {
    display: block;
    font-size: 0.9rem;
    color: var(--shekinah-black);
}

.float-text span {
    font-size: 0.75rem;
    color: var(--shekinah-gray);
}

.modal-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    font-size: 0.9rem;
    color: var(--shekinah-black);
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.feature-icon {
    font-size: 1.25rem;
}

/* Botón flotante */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.btn-floating-reserva {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--shekinah-gold), var(--shekinah-gold-dark));
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(201, 169, 98, 0.4);
    transition: all 0.3s ease;
    animation: floatButton 3s ease-in-out infinite;
}

.btn-floating-reserva:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(201, 169, 98, 0.5);
}

@keyframes floatButton {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.floating-icon {
    font-size: 1.5rem;
}

.floating-text {
    display: flex;
    flex-direction: column;
    text-align: left;
    line-height: 1.2;
}

.floating-text strong {
    font-size: 0.95rem;
}

.floating-text small {
    font-size: 0.75rem;
    opacity: 0.9;
}

/* Responsive del modal */
@media (max-width: 1024px) {
    .modal-content {
        grid-template-columns: 1fr;
    }
    
    .modal-right {
        display: none;
    }
    
    .modal-left {
        padding: 2rem;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .modal-reserva {
        padding: 1rem;
    }
    
    .modal-container {
        border-radius: 20px;
    }
    
    .modal-left {
        padding: 1.5rem;
    }
    
    .form-row-modal {
        grid-template-columns: 1fr;
    }
    
    .floating-cta {
        bottom: 20px;
        right: 20px;
    }
    
    .btn-floating-reserva {
        padding: 0.75rem 1rem;
    }
    
    .floating-text {
        display: none;
    }
}
