﻿/* =========================================================
   EXPERIENCIA ESTRELLA - COLORES SUTILES COHERENTES
   Paleta: Beige/Crema suave + Ocre sutil
   ========================================================= */

#experiencia-estrella {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 80px 0;
    background: linear-gradient(135deg, #F9F7F4 0%, #F5F2EE 50%, #F0EDE8 100%);
    overflow: hidden;
}

    #experiencia-estrella::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 20% 30%, rgba(210, 140, 90, 0.04), transparent 40%), radial-gradient(circle at 80% 70%, rgba(190, 120, 70, 0.03), transparent 35%);
        pointer-events: none;
    }

/* ==================== BADGE RECOMENDADO ==================== */
.estrella-badge {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: linear-gradient(135deg, #8BC34A, #7CB342);
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    border-radius: 50px;
    box-shadow: 0 5px 0px rgba(123, 179, 66, 0.4), 0 10px 24px rgba(139, 195, 74, 0.35);
    z-index: 10;
    animation: badgePulse 2s ease-in-out infinite;
}

    .estrella-badge svg {
        width: 16px;
        height: 16px;
        filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
    }

@keyframes badgePulse {
    0%, 100% {
        transform: translateX(-50%) scale(1);
        box-shadow: 0 5px 0px rgba(123, 179, 66, 0.4), 0 10px 24px rgba(139, 195, 74, 0.35);
    }

    50% {
        transform: translateX(-50%) scale(1.05);
        box-shadow: 0 6px 0px rgba(123, 179, 66, 0.5), 0 14px 32px rgba(139, 195, 74, 0.45);
    }
}

/* ==================== CONTENEDOR COMPACTO ==================== */
.estrella-container {
    width: min(1200px, 92%);
    margin: 50px auto 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

/* ==================== CONTENIDO ==================== */
.estrella-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.estrella-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.estrella-season {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #D28C5A;
    padding: 4px 12px;
    background: rgba(210, 140, 90, 0.08);
    border-radius: 50px;
    width: fit-content;
    border: 1px solid rgba(210, 140, 90, 0.15);
}

.estrella-title {
    font-size: clamp(1.9rem, 2.8vw, 2.5rem);
    font-weight: 300;
    line-height: 1.15;
    color: #3D2E24;
    margin: 0;
}

    .estrella-title strong {
        font-weight: 800;
        background: linear-gradient(135deg, #D28C5A, #C47D4A);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.estrella-desc {
    font-size: 0.92rem;
    color: #6B5D52;
    line-height: 1.6;
    margin: 0;
}

/* ==================== GRID EXPERIENCIAS COMPACTO ==================== */
.estrella-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.exp-card {
    background: #FFFFFF;
    border: 1px solid rgba(210, 140, 90, 0.12);
    border-radius: 16px;
    padding: 20px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 3px 0px rgba(210, 140, 90, 0.08), 0 4px 12px rgba(61, 46, 36, 0.04);
}

    .exp-card:hover {
        transform: translateY(-6px);
        border-color: rgba(210, 140, 90, 0.25);
        background: #FFFBF8;
        box-shadow: 0 5px 0px rgba(210, 140, 90, 0.15), 0 10px 24px rgba(210, 140, 90, 0.12);
    }

.exp-time {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 0.75rem;
    font-weight: 800;
    color: #D28C5A;
    padding: 4px 10px;
    background: rgba(210, 140, 90, 0.08);
    border-radius: 50px;
    letter-spacing: 0.5px;
    border: 1px solid rgba(210, 140, 90, 0.15);
}

.exp-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, rgba(210, 140, 90, 0.1), rgba(196, 125, 74, 0.08));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D28C5A;
    margin-bottom: 12px;
    border: 1px solid rgba(210, 140, 90, 0.15);
}

    .exp-icon svg {
        width: 18px;
        height: 18px;
    }

.exp-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: #3D2E24;
    margin: 0 0 8px;
}

.exp-text {
    font-size: 0.82rem;
    color: #6B5D52;
    line-height: 1.5;
    margin: 0 0 12px;
}

.exp-duration {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    color: #3D2E24;
}

    .exp-duration svg {
        width: 14px;
        height: 14px;
        color: #D28C5A;
    }

/* ==================== INFO COMPACTA ==================== */
.estrella-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 20px;
    background: rgba(210, 140, 90, 0.06);
    border: 1px solid rgba(210, 140, 90, 0.12);
    border-radius: 14px;
}

.info-includes {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #6B5D52;
}

    .info-includes svg {
        width: 16px;
        height: 16px;
        color: #8BC34A;
        flex-shrink: 0;
    }

.info-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.price-label {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #8B7D72;
}

.price-value {
    font-size: 1.6rem;
    font-weight: 900;
    color: #D28C5A;
    line-height: 1;
    letter-spacing: -0.5px;
}

.price-pax {
    font-size: 0.7rem;
    color: #8B7D72;
    font-weight: 600;
}

/* ==================== CTA BUTTON ==================== */
.estrella-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #25D366, #1EBE5A);
    color: #FFFFFF;
    font-size: 0.88rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 4px 0px rgba(18, 150, 78, 0.3), 0 8px 20px rgba(37, 211, 102, 0.2);
    transition: all 0.3s ease;
}

    .estrella-cta svg {
        width: 18px;
        height: 18px;
    }

    .estrella-cta:hover {
        background: linear-gradient(135deg, #1EBE5A, #18A34F);
        transform: translateY(-3px);
        box-shadow: 0 6px 0px rgba(18, 150, 78, 0.4), 0 12px 28px rgba(37, 211, 102, 0.3);
    }

/* ==================== GALERÍA COMPACTA ==================== */
.estrella-gallery {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 100%;
    overflow: hidden;
}

.gallery-main {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 0px rgba(210, 140, 90, 0.12), 0 10px 28px rgba(61, 46, 36, 0.15);
    cursor: pointer;
    transition: transform 0.4s ease;
    width: 100%;
    max-width: 100%;
    border: 3px solid transparent;
    background: linear-gradient(#FFFFFF, #FFFFFF) padding-box, linear-gradient(135deg, #D28C5A, #C47D4A, #B87042, #D28C5A) border-box;
}

    .gallery-main:hover {
        transform: translateY(-4px);
        background: linear-gradient(#FFFFFF, #FFFFFF) padding-box, linear-gradient(135deg, #C47D4A, #B87042, #A66638, #C47D4A) border-box;
    }

    .gallery-main img {
        width: 100%;
        max-width: 100%;
        height: 380px;
        object-fit: cover;
        display: block;
    }

.gallery-play {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(61, 46, 36, 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-main:hover .gallery-play {
    opacity: 1;
}

.gallery-play svg {
    width: 60px;
    height: 60px;
    color: #FFFFFF;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

/* Thumbnails */
.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    max-width: 100%;
}

    .gallery-thumbs img,
    .gallery-more {
        aspect-ratio: 1;
        border-radius: 12px;
        overflow: hidden;
        cursor: pointer;
        transition: all 0.3s ease;
        object-fit: cover;
        width: 100%;
        max-width: 100%;
        height: auto;
        border: 2px solid transparent;
        background: linear-gradient(#FFFFFF, #FFFFFF) padding-box, linear-gradient(135deg, rgba(210, 140, 90, 0.4), rgba(196, 125, 74, 0.3), rgba(184, 112, 66, 0.4)) border-box;
    }

        .gallery-thumbs img:hover {
            transform: scale(1.08);
            background: linear-gradient(#FFFFFF, #FFFFFF) padding-box, linear-gradient(135deg, #D28C5A, #C47D4A, #B87042) border-box;
        }

.gallery-more {
    background: linear-gradient(135deg, rgba(210, 140, 90, 0.12), rgba(196, 125, 74, 0.08)) padding-box, linear-gradient(135deg, rgba(210, 140, 90, 0.5), rgba(196, 125, 74, 0.4), rgba(184, 112, 66, 0.5)) border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 900;
    color: #D28C5A;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .estrella-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .gallery-main img {
        height: 320px;
    }
}

@media (max-width: 768px) {
    #experiencia-estrella {
        padding: 60px 0;
    }

    .estrella-badge {
        top: 20px;
        font-size: 0.65rem;
        padding: 8px 18px;
        letter-spacing: 2.5px;
    }

        .estrella-badge svg {
            width: 14px;
            height: 14px;
        }

    .estrella-grid {
        grid-template-columns: 1fr;
    }

    .estrella-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .info-price {
        align-items: flex-start;
    }

    .gallery-main img {
        height: 280px;
    }
}

@media (max-width: 480px) {
    .estrella-title {
        font-size: 1.6rem;
    }

    .price-value {
        font-size: 1.4rem;
    }

    .exp-card {
        padding: 16px;
    }

    .gallery-thumbs {
        grid-template-columns: repeat(2, 1fr);
    }
}
