/* ============================================
   PÁGINA EXPERIENCES - HERO BANNER
   ============================================ */

.experiences-hero-banner {
    position: relative;
    height: 130vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.experiences-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.experiences-video-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.experiences-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 618px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.experiences-hero-title {
    font-family: 'Mrs Eaves OT', serif;
    color: #ffffff;
    font-weight: 100;
    font-size: 3.4rem;
    line-height: 1.2;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    margin-bottom: 50px;
    margin-top: 170px;
}

.experiences-scroll-down {
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.experiences-scroll-arrow {
    width: 40px;
    height: 40px;
    animation: bounce 2s infinite;
}

.experiences-booking-widget {
    position: absolute;
    top: 120px;
    right: 40px;
    z-index: 3;
}

.experiences-booking-badge {
    background: #003580;
    color: white;
    padding: 15px;
    border-radius: 8px;
    font-family: Arial, sans-serif;
    width: 180px;
}

.experiences-award-text {
    font-size: 10px;
    display: block;
    opacity: 0.8;
}

.experiences-hotel-name {
    font-size: 14px;
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}

.experiences-score-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.experiences-score-value {
    background: #fff;
    color: #003580;
    padding: 5px;
    border-radius: 4px;
    font-weight: bold;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .experiences-hero-title {
        font-size: 1.8rem;
    }

    .experiences-booking-widget {
        display: none;
    }

    .experiences-hero-banner {
        height: 80vh;
    }

    .experiences-video-container img {
        object-position: 39% 20%;
    }
}

/* ============================================
   MAGIC SECTION
   ============================================ */

.experiences-magic-section {
    padding: var(--spacing-2xl) var(--spacing-lg);
    background-color: var(--color-white);
    margin-top: 110px;
    margin-bottom: 150px;
}

.experiences-magic-container {
    max-width: 990px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.experiences-magic-content {
    padding-right: var(--spacing-lg);
}

.experiences-magic-text {
    font-family: 'Mrs Eaves OT', serif;
    font-size: 1.7rem;
    color: var(--color-text-dark);
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
}

.experiences-magic-text strong {
    font-weight: 700;
}

.experiences-magic-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
}

.experiences-magic-image {
    margin-left: 0;
    width: 60%;
}

.experiences-magic-illustration img {
    max-width: 100%;
    height: auto;
}

.experiences-contact-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 12px 28px;
    background-color: var(--color-primary-blue);
    font-family: 'Mrs Eaves OT', serif;
    font-size: 1rem;
    color: #ffffff;
    text-decoration: none;
    transition: background 0.3s;
    width: fit-content;
    cursor: pointer;
    border: 1px solid black;
    border-radius: 5px;
}

.experiences-contact-btn:hover {
    background-color: #3f6399;
}

@media (max-width: 768px) {
    .experiences-magic-container {
        grid-template-columns: 1fr;
    }

    .experiences-magic-content {
        padding-right: 0;
        text-align: center;
    }

    .experiences-magic-illustration img {
        max-width: 100%;
        height: auto;
        margin-top: 90px;
        margin-bottom: -47px;
    }

    .experiences-contact-btn:hover {
        background-color: #3f6399;
    }

    .experiences-contact-btn {
        background-color: white;
        color: black;
    }

    .experiences-magic-text {
        font-size: var(--font-size-base);
    }
}

/* ============================================
   EXPERIENCES ROLLING PHRASES
   ============================================ */

.experiences-rolling-phrases {
    background-color: var(--color-primary-blue);
    padding: var(--spacing-lg) 0;
    overflow: hidden;
    width: 100%;
}

.experiences-rolling-phrases-content {
    display: flex;
    align-items: center;
    /* 👈 ESSENCIAL */
    white-space: nowrap;
    animation: scroll-left 10s linear infinite;
    gap: var(--spacing-md);
}

.experiences-rolling-phrase {
    color: var(--color-white);
    font-family: var(--font-family-primary);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.experiences-rolling-divider {
    width: 6px;
    height: 6px;
    background: var(--color-white);
    border-radius: 50%;

    display: inline-flex;
    /* 👈 importante */
    align-items: center;
    /* centraliza vertical */
    justify-content: center;

    margin: 0 12px;
    flex-shrink: 0;
}

/* ============================================
   CAROUSEL
   ============================================ */

.experiences-carousel-section {
    padding: 0;
}

.experiences-carousel-container {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
}

.experiences-carousel-slides {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.experiences-carousel-slide {
    flex: 1 0 50%;
    height: 100%;
    overflow: hidden;
}

@media (max-width: 768px) {
    .experiences-carousel-container {
        height: 50vh;
        min-height: 240px;
        touch-action: pan-y;
    }

    .experiences-carousel-slide {
        flex: 1 0 100%;
    }

    .experiences-carousel-btn {
        padding: 8px 10px;
        font-size: 18px;
    }

    .experiences-carousel-prev {
        left: 10px;
    }

    .experiences-carousel-next {
        right: 10px;
    }
}

.experiences-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.experiences-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 12px 16px;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s;
}

.experiences-carousel-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.experiences-carousel-prev {
    left: 20px;
}

.experiences-carousel-next {
    right: 20px;
}

.experiences-carousel-btn img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

/* ============================================
   DIVE DEEPER
   ============================================ */

.experiences-dive-section {
    padding: 120px 60px;
    display: flex;
    justify-content: center;
}

.experiences-dive-card {
    display: flex;
    width: 60%;
    border: 1px solid var(--color-primary-blue);
    overflow: hidden;
}

.experiences-dive-image {
    flex: 1;
}

.experiences-dive-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.experiences-dive-content {
    flex: 1;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    text-align: center;
    gap: 20px;
    transition: background-color 0.3s ease;
}

.experiences-dive-card:hover .experiences-dive-content {
    background-color: var(--color-primary-blue);
}

.experiences-dive-text {
    font-family: 'Mrs Eaves OT', serif;
    color: var(--color-text-dark);
    font-size: 1.6rem;
    line-height: 1;
    font-weight: bolder;
    transition: color 0.3s ease;
}

.experiences-dive-card:hover .experiences-dive-text {
    color: #ffffff;
}

.experiences-dive-link {
    font-family: 'Mrs Eaves OT', serif;
    color: var(--color-text-dark);
    font-size: 1.3rem;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.experiences-dive-card:hover .experiences-dive-link {
    color: #ffffff;
}

/* ============================================
   DIVE DEEPER - RESPONSIVE MOBILE
   ============================================ */
@media (max-width: 768px) {
    .experiences-dive-section {
        padding: 40px 20px;
    }

    .experiences-dive-card {
        flex-direction: column;
        width: 92%;
        border-radius: 4px;
        border: 1px solid #000000;
    }

    .experiences-dive-image {
        width: 100%;
        height: 55vw;
        max-height: 280px;
    }

    .experiences-dive-image img {
        border-radius: 4px 4px 0 0;
    }

    .experiences-dive-content {
        padding: 24px 20px;
    }

    .experiences-dive-text {
        font-size: 1.2rem;
        line-height: 1.3;
    }

    .experiences-dive-link {
        font-size: 1rem;
    }
}