.hero-home {
    color: #fff;
    text-align: center;
    padding: 60px 0 40px 0;
    border-radius: 0 !important;
    box-shadow: none !important;
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
    position: relative;
    z-index: 1;
}
.hero-home > .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}
.hero-home img {
    max-width: 180px;
    height: auto;
    margin-bottom: 20px;
}
.hero-home h1 {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 10px;
    letter-spacing: 2px;
}
.hero-home h1::after {
    display: none !important;
    content: none !important;
}
.hero-home p {
    font-size: 1.2em;
    margin-bottom: 30px;
}
.btn-cta {
    background: #fff;
    color: #1A5FAA;
    border: none;
    padding: 14px 36px;
    font-size: 1.1em;
    border-radius: 30px;
    font-weight: bold;
    transition: background 0.2s, color 0.2s;
}
.btn-cta:hover {
    background: #5191FA;
    color: #fff;
}
.section {
    padding: 50px 0;
    background: #fff;
    text-align: center;
}
.section-title {
    color: #1A5FAA;
    font-family: 'Montserrat', sans-serif;
    font-size: 2em;
    margin-bottom: 30px;
}
.section-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}
.feature-box {
    background: #f5f5f5;
    border-radius: 16px;
    padding: 30px 20px;
    width: 260px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    transition: box-shadow 0.2s;
}
.feature-box:hover {
    box-shadow: 0 6px 24px rgba(26,95,170,0.10);
}
.feature-icon {
    font-size: 2.5em;
    color: #5191FA;
    margin-bottom: 15px;
}
@media (max-width: 767px) {
    .section-features {
        flex-direction: column;
        gap: 20px;
    }
    .feature-box {
        width: 100%;
    }
}
.hero-home #typewriter-title::after {
    display: none !important;
    content: none !important;
    background: none !important;
    height: 0 !important;
    margin: 0 !important;
    width: 0 !important;
}

/* Estilos para a seção "Sobre o Hotel" */
#sobreHotel {
    padding: 0 15px; /* Padding padrão para telas menores */
}

@media (min-width: 768px) {
    #sobreHotel {
        padding-left: 30px; /* Afasta o texto da imagem em telas médias */
        padding-right: 30px;
    }
}

@media (min-width: 1200px) {
    #sobreHotel {
        padding-left: 60px; /* Mais padding para telas maiores */
        padding-right: 0px; /* Definindo para 0px para aproximar o texto da imagem */
    }
    .about-hotel-image {
        max-width: 400px; /* Limita o tamanho da imagem em telas grandes */
    }
}