/* ============================================
   PÁGINA HOME - HERO BANNER
   ============================================ */

/* Hero Banner */
.hero-banner {
    position: relative;
    height: 130vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

#hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.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;
}

/* Seta de Scroll - CENTRALIZADA */
.scroll-down {
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.scroll-arrow {
    width: 40px;
    height: 40px;
    animation: bounce 2s infinite;
}

/* Widget do Booking */
.booking-widget {
    position: absolute;
    top: 120px;
    right: 40px;
    z-index: 3;
}

.booking-badge {
    background: #003580;
    color: white;
    padding: 15px;
    border-radius: 8px;
    font-family: Arial, sans-serif;
    width: 180px;
}

.award-text {
    font-size: 10px;
    display: block;
    opacity: 0.8;
}

.hotel-name {
    font-size: 14px;
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}

.score-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.score-value {
    background: #fff;
    color: #003580;
    padding: 5px;
    border-radius: 4px;
    font-weight: bold;
}

/* Wrapper do hero */
.hero-wrapper {
    position: relative;
}

/* Ícone Sticky - fixo no scroll */
.sticky-icon {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    cursor: pointer;
}

.sticky-icon img {
    transition: transform 0.2s ease;
}

.sticky-icon:hover img {
    transform: scale(1.1);
}

.sticky-icon img {
    width: 80px;
    height: auto;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

/* Animação da seta */
@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .hero-title {
        font-size: 1.8rem;
    }

    /* Troca da imagem do hero por hero-mobile.png via background */
    .video-container img,
    .video-container #hero-video {
        display: none;
    }

    .video-container {
        background-image: url('../img/hero-mobile.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    /* Oculta o badge azul Booking.com 9,8 no mobile */
    .booking-widget {
        display: none;
    }

    /* Oculta o ícone redondo de agenda no mobile (mantém desktop) */
    .sticky-icon {
        display: none;
    }
}