/* =====================================================================
   ESTILOS PARA A PÁGINA O HOTEL
   Usando variáveis de cores do Shalimar
   ===================================================================== */

/* ----- HERO SECTION (VÍDEO DE FUNDO) ----- */
.hotel-hero-section {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hotel-hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.hotel-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 60, 126, 0.3), rgba(0, 60, 126, 0.5));
}

.hotel-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--branco);
    padding: 0 20px;
}

.hotel-hero-title {
    font-family: var(--font-main), var(--font-fallback);
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.hotel-hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    opacity: 0.9;
}

/* ----- BARRA DE DIFERENCIAIS ----- */
.hotel-features-bar {
    background: var(--azul-navy);
    padding: 25px 0;
}

.features-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--branco);
}

.feature-item i {
    font-size: 1.2rem;
    color: var(--dourado-shalimar);
}

.feature-item span {
    font-size: 0.9rem;
    font-weight: 400;
}

/* ----- SEÇÃO SOBRE ----- */
.hotel-about-section {
    padding: 80px 0;
    background: var(--branco);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-img {
    width: 100%;
    height: 550px;
    border-radius: var(--radius-card);
    box-shadow: var(--sombra-media);
}

.about-content {
    padding: 20px 0;
}

.about-badge {
    display: inline-block;
    background: var(--azul-brand);
    color: var(--branco);
    padding: 5px 15px;
    border-radius: var(--radius-btn);
    font-size: 0.8rem;
    margin-bottom: 20px;
}

.about-title {
    font-family: var(--font-main), var(--font-fallback);
    font-size: 2.5rem;
    color: var(--azul-navy);
    margin-bottom: 20px;
    font-weight: 400;
}

.about-text {
    font-size: 1rem;
    color: var(--cinza-texto);
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-awards {
    margin-top: 30px;
}

.award-badge {
    height: 80px;
    width: auto;
}

/* ----- SEÇÃO ESTRUTURA ----- */
.hotel-structure-section {
    padding: 80px 0;
    background: var(--cinza-claro);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-family: var(--font-main), var(--font-fallback);
    font-size: 2.5rem;
    color: var(--azul-navy);
    margin-bottom: 10px;
    font-weight: 400;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--cinza-texto);
}

.structure-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.structure-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--branco);
    border-radius: var(--radius-card);
    transition: var(--transicao);
}

.structure-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--sombra-hover);
}

.structure-item i {
    font-size: 2.5rem;
    color: var(--azul-brand);
    margin-bottom: 15px;
}

.structure-item h3 {
    font-size: 1.2rem;
    color: var(--azul-navy);
    margin-bottom: 10px;
    font-weight: 500;
}

.structure-item p {
    font-size: 0.9rem;
    color: var(--cinza-texto);
    line-height: 1.6;
}

/* ----- SEÇÃO LOCALIZAÇÃO ----- */
.hotel-location-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.location-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.location-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 60, 126, 0.85);
}

.location-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--branco);
}

.location-title {
    font-family: var(--font-main), var(--font-fallback);
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 400;
}

.location-text {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
    opacity: 0.9;
}

.location-distances {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.distance-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.distance-item i {
    font-size: 2rem;
    color: var(--dourado-shalimar);
}

.distance-item span {
    font-size: 1rem;
    font-weight: 500;
}

.distance-item small {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* ----- SEÇÃO POR QUE ESCOLHER ----- */
.hotel-why-section {
    padding: 80px 0;
    background: var(--branco);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.why-item {
    text-align: center;
    padding: 30px 20px;
}

.why-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--azul-brand);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transicao);
}

.why-icon i {
    font-size: 2rem;
    color: var(--branco);
}

.why-item:hover .why-icon {
    background: var(--dourado-shalimar);
}

.why-item h3 {
    font-size: 1.2rem;
    color: var(--azul-navy);
    margin-bottom: 10px;
    font-weight: 500;
}

.why-item p {
    font-size: 0.9rem;
    color: var(--cinza-texto);
    line-height: 1.6;
}

/* ----- SEÇÃO CTA ----- */
.hotel-cta-section {
    padding: 80px 0;
    background: var(--azul-navy);
    text-align: center;
    color: var(--branco);
}

.cta-title {
    font-family: var(--font-main), var(--font-fallback);
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 400;
}

.cta-subtitle {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-cta {
    display: inline-block;
    padding: 15px 40px;
    background: var(--dourado-shalimar);
    color: var(--branco);
    text-decoration: none;
    border-radius: var(--radius-btn);
    font-size: 1rem;
    font-weight: 500;
    transition: var(--transicao);
}

.btn-cta:hover {
    background: #8a7550;
    transform: translateY(-3px);
    box-shadow: var(--sombra-hover);
}

/* =====================================================================
   RESPONSIVIDADE
   ===================================================================== */

@media (max-width: 992px) {
    .hotel-hero-title {
        font-size: 3rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .structure-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hotel-hero-section {
        height: 50vh;
        min-height: 400px;
    }
    
    .hotel-hero-title {
        font-size: 2.5rem;
    }
    
    .hotel-hero-subtitle {
        font-size: 1rem;
    }
    
    .features-container {
        gap: 20px;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
    
    .feature-item span {
        font-size: 0.8rem;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .location-distances {
        gap: 25px;
    }
    
    .cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hotel-hero-title {
        font-size: 2rem;
    }
    
    .structure-grid {
        grid-template-columns: 1fr;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .location-distances {
        flex-direction: column;
        gap: 20px;
    }
}
