/* ============================================
   PÁGINA RETREATS - HERO BANNER
   ============================================ */

.retreats-hero-banner {
    position: relative;
    height: 130vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.retreats-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.retreats-video-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.retreats-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;
}

.retreats-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;
}

.retreats-scroll-down {
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.retreats-scroll-arrow {
    width: 40px;
    height: 40px;
    animation: bounce 2s infinite;
}

.retreats-booking-widget {
    position: absolute;
    top: 120px;
    right: 40px;
    z-index: 3;
}

.retreats-booking-badge {
    background: #003580;
    color: white;
    padding: 15px;
    border-radius: 8px;
    font-family: Arial, sans-serif;
    width: 180px;
}

.retreats-award-text {
    font-size: 10px;
    display: block;
    opacity: 0.8;
}

.retreats-hotel-name {
    font-size: 14px;
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}

.retreats-score-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.retreats-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) {
    .retreats-hero-title {
        font-size: 1.8rem;
    }

    .retreats-hero-banner {
        height: 80vh;
    }

    .retreats-booking-widget {
        display: none;
    }

    .retreats-video-container img {
        object-position: 50% 20%;
    }
}

/* ============================================
   RECREIO SECTION
   ============================================ */

.retreats-recreio-section {
    padding: var(--spacing-2xl) var(--spacing-lg);
    background-color: var(--color-white);
    margin-top: 110px;
    margin-bottom: 100px;
}

.retreats-recreio-container {
    max-width: 1190px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.retreats-recreio-content {
    padding-right: var(--spacing-lg);
}

.retreats-recreio-text {
    font-family: 'Mrs Eaves OT', serif;
    font-size: 1.7rem;
    color: var(--color-text-dark);
    line-height: 1;
    margin-bottom: 90px;
}

.retreats-recreio-text strong {
    font-weight: 700;
}

.retreats-recreio-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
}

.retreats-recreio-image {
    margin-left: 0;
    width: 60%;
}

.retreats-recreio-illustration img {
    max-width: 100%;
    height: auto;
}

.retreats-recreio-contact-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 12px 28px;
    background-color: #ffffff;
    font-family: 'Mrs Eaves OT', serif;
    font-size: 1rem;
    color: #000000;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
    width: fit-content;
    cursor: pointer;
    border: 1px solid black;
    border-radius: 5px;
}

.retreats-recreio-contact-btn:hover {
    background-color: #517DBB;
    color: #ffffff;
    border-color: #517DBB;
}

@media (max-width: 768px) {
    .retreats-recreio-container {
        grid-template-columns: 1fr;
    }

    .retreats-recreio-content {
        padding-right: 0;
    }

    .retreats-recreio-text {
        font-size: var(--font-size-base);
        text-align: center;
    }

    .retreats-recreio-contact-btn {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .retreats-options-section {
        padding: 60px 30px;
    }

    .retreats-options-title {
        font-size: 1.3rem;
        margin-bottom: 30px;
    }

    .retreats-options-grid {
        flex-direction: column !important;
        align-items: center;
        gap: 30px !important;
    }

    .retreats-option {
        width: 100%;
        max-width: 280px;
        gap: 12px;
    }

    .retreats-option-btn {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
        font-size: 1.2rem !important;
    }

    .retreats-option-text {
        font-size: 1rem;
        width: auto;
        line-height: 1.4;
    }
}


/* ============================================
   ROLLING PHRASES
   ============================================ */

.retreats-rolling-phrases {
    background-color: var(--color-primary-blue);
    padding: var(--spacing-lg) 0;
    overflow: hidden;
    width: 100%;
}

.retreats-rolling-phrases-content {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: scroll-left 20s linear infinite; /* 👈 faltava isso */
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.retreats-rolling-phrase {
    color: var(--color-white);
    font-family: var(--font-family-primary);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.retreats-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;
}

/* ============================================
   RETREATS - OPTIONS SECTION
   ============================================ */

.retreats-options-section {
    background-color: #e8eae8;
    padding: 74px 60px;
    text-align: center;
}

.retreats-options-title {
    font-family: 'Mrs Eaves OT', serif;
    font-size: 1.9rem;
    font-weight: bold;
    color: var(--color-text-dark);
    margin-bottom: 60px;
}

.retreats-options-grid {
    display: flex;
    justify-content: center;
    gap: 370px;
}

.retreats-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    max-width: 260px;
}

.retreats-option-btn {
    display: inline-block;
    padding: 16px 48px;
    font-family: 'Mrs Eaves OT', serif;
    font-size: 1.2rem;
    font-weight: bold;
    letter-spacing: 2px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 5px;
}

.retreats-option-btn--active {
    background-color: white;
    color: black;
    border: 2px solid black;
    font-size: 2rem;
}

.retreats-option-btn--outline {
    background-color: #ffffff;
    color: var(--color-text-dark);
    border: 2px solid var(--color-text-dark);
    font-size: 2rem;
}

.retreats-option-btn--active:hover {
    background-color: #3f6399;
    color: white;
}

.retreats-option-btn--outline:hover {
    background-color: #3f6399;
    color: #ffffff;
}

.retreats-option-text {
    font-family: 'Mrs Eaves OT', serif;
    font-size: 1.8rem;
    color: var(--color-text-dark);
    line-height: 1.6;
    text-align: center;
    width: max-content;
}

/* ============================================
   RETREATS - FAQ ACCORDION
   ============================================ */

.retreats-faq-section {
    max-width: 1233px;
    margin: 0 auto;
    text-align: center;
    padding: 150px 0;
}

.retreats-faq-title {
    font-family: 'Mrs Eaves OT', serif;
    font-size: 2rem;
    font-weight: bold;
    color: var(--color-text-dark);
    margin-bottom: 120px;
}

.retreats-faq-list {
    text-align: left;
    border-top: 1px solid #ccc;
}

.retreats-faq-item {
    border-bottom: 1px solid #ccc;
}

.retreats-faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 18px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Mrs Eaves OT', serif;
    font-size: 1.5rem;
    color: var(--color-text-dark);
    cursor: pointer;
    text-align: left;
}

.retreats-faq-icon {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.retreats-faq-icon .icon-down {
    display: block;
    width: 16px;
    height: 16px;
}

.retreats-faq-icon .icon-up {
    display: none;
    width: 16px;
    height: 16px;
}

.retreats-faq-item.active .retreats-faq-icon .icon-down {
    display: none;
}

.retreats-faq-item.active .retreats-faq-icon .icon-up {
    display: block;
}

.retreats-faq-answer {
    display: none;
    padding: 0 0 18px 0;
    font-family: 'Mrs Eaves OT', serif;
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.7;
    text-align: left;
}

.retreats-faq-item.active .retreats-faq-answer {
    display: block;
}

.retreats-faq-answer {
    font-size: 1.2rem;
}

.retreats-faq-btn {
    display: inline-block;
    margin-top: 100px;
    padding: 24px 70px;
    background-color: #ffffff;
    color: #000000;
    font-family: 'Mrs Eaves OT', serif;
    font-size: 1.2rem;
    text-decoration: none;
    border-radius: 4px;
    border: 1px solid black;
    transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.retreats-faq-btn:hover {
    background-color: #517DBB;
    color: #ffffff;
    border-color: #517DBB;
}

/* ============================================
   FAQ - RESPONSIVE MOBILE
   ============================================ */
@media (max-width: 768px) {
    .retreats-faq-section {
        padding: 50px 20px;
        max-width: 100%;
    }

    .retreats-faq-title {
        font-size: 1.4rem;
        margin-bottom: 40px;
    }

    .retreats-faq-question {
        font-size: 1rem;
        padding: 14px 0;
    }

    .retreats-faq-answer {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .retreats-faq-btn {
        margin-top: 40px;
        padding: 14px 30px;
        font-size: 1rem;
    }
}

/* ============================================
   RETREATS - WHO WE ARE
   ============================================ */

.retreats-team-section {
    background-color: #e8eae8;
    padding: 150px 60px;
    text-align: center;
}

.retreats-team-title {
    font-family: 'Mrs Eaves OT', serif;
    font-size: 2rem;
    font-weight: bold;
    color: var(--color-text-dark);
    margin-bottom: 100px;
}

.retreats-team-grid {
    display: flex;
    justify-content: center;
    gap: 170px;
    max-width: 1100px;
    margin: 0 auto;
}

.retreats-team-card {
    flex: 1;
    max-width: 460px;
    text-align: center;
}

.retreats-team-photo {
    width: 220px;
    height: 280px;
    margin: 0 auto 24px;
    border-radius: 110px 110px 0 0;
    overflow: hidden;
    border: 3px solid var(--color-primary-blue);
}

.retreats-team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.retreats-team-name {
    font-family: 'Mrs Eaves OT', serif;
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--color-text-dark);
    margin-bottom: 20px;
    margin-top: 60px;

}

.retreats-team-bio {
    font-family: 'Mrs Eaves OT', serif;
    font-size: 1.2rem;
    color: var(--color-text-dark);
    line-height: 1.3;
    text-align: justify;
}

/* ============================================
   WHO WE ARE - RESPONSIVE MOBILE
   ============================================ */
@media (max-width: 768px) {
    .retreats-team-section {
        padding: 60px 24px;
    }

    .retreats-team-title {
        font-size: 1.4rem;
        margin-bottom: 40px;
    }

    .retreats-team-grid {
        flex-direction: column;
        gap: 60px;
        align-items: center;
    }

    .retreats-team-card {
        max-width: 100%;
    }

    .retreats-team-photo {
        width: 160px;
        height: 200px;
        border-radius: 80px 80px 0 0;
    }

    .retreats-team-name {
        font-size: 1.3rem;
        margin-top: 20px;
        margin-bottom: 12px;
    }

    .retreats-team-bio {
        font-size: 0.95rem;
        line-height: 1.6;
        text-align: center;
    }
}

/* ============================================
   RETREATS - SOUL JOURNEYS
   ============================================ */

.retreats-soul-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

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

.retreats-soul-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.retreats-soul-content {
    position: absolute;
    top: 50%;
    left: 200px;
    transform: translateY(-50%);
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.retreats-soul-title {
    font-family: 'Mrs Eaves OT', serif;
    font-size: 2.4rem;
    font-weight: bold;
    color: #ffffff;
    letter-spacing: 2px;
}

.retreats-soul-text {
    font-family: 'Mrs Eaves OT', serif;
    font-size: 1.7rem;
    font-weight: bold;
    color: #ffffff;
    line-height: 1;
    width: 450px;
}

.retreats-soul-btn {
    display: inline-block;
    padding: 14px 40px;
    background-color: #ffffff;
    color: var(--color-text-dark);
    font-family: 'Mrs Eaves OT', serif;
    font-size: 1rem;
    text-decoration: none;
    width: fit-content;
    transition: background 0.3s;
    border-radius: 3px;
    border: 1px solid black;
}

.retreats-soul-btn:hover {
    background-color: #517DBB;
    
}

/* ============================================
   SOUL JOURNEYS - RESPONSIVE MOBILE
   ============================================ */
@media (max-width: 768px) {
    .retreats-soul-section {
        height: 80vh;
    }

    .retreats-soul-image img {
        object-position: 50% 50%;
    }

    .retreats-soul-content {
        left: 50%;
        top: 21%;
        transform: translate(-50%, -50%);
        width: 85%;
        max-width: 100%;
        align-items: center;
        text-align: center;
    }

    .retreats-soul-image{
        height: 120%;
    }

    .retreats-soul-title {
        font-size: 1.6rem;
    }

    .retreats-soul-text {
        font-size: 1.1rem;
        width: auto;
    }
}

/* ============================================
   RETREATS DIVE DEEPER
   ============================================ */

.retreats-dive-section {
    padding: 120px 60px;
    display: flex;
    justify-content: center;
}

.retreats-dive-card {
    display: flex;
    width: 60%;
    border: 1px solid var(--color-primary-blue);
    overflow: hidden;
}

.retreats-dive-image {
    flex: 1;
}

.retreats-dive-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.retreats-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;
}

.retreats-dive-card:hover .retreats-dive-content {
    background-color: var(--color-primary-blue);
}

.retreats-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;
}

.retreats-dive-card:hover .retreats-dive-text {
    color: #ffffff;
}

.retreats-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;
}

.retreats-dive-card:hover .retreats-dive-link {
    color: #ffffff;
}

/* ============================================
   DIVE DEEPER - RESPONSIVE MOBILE
   ============================================ */
@media (max-width: 768px) {
    .retreats-dive-section {
        padding: 40px 20px;
    }

    .retreats-dive-card {
        flex-direction: column;
        width: 92%;
        border-radius: 4px;
        border: 1px solid #000000;
    }

    .retreats-dive-image {
        width: 100%;
        height: 55vw;
        max-height: 280px;
    }

    .retreats-dive-image img {
        border-radius: 4px 4px 0 0;
    }

    .retreats-dive-content {
        padding: 24px 20px;
    }

    .retreats-option-text {
        font-size: 1.2rem;
        line-height: 1.4;
    }

    .retreats-dive-text {
        font-size: 1.2rem;
        line-height: 1.3;
    }

    .retreats-dive-link {
        font-size: 1rem;
    }
}