/* ===================================================================
   1. ESTILOS GERAIS E HERO SECTION (HOTEIS)
=================================================================== */

.page-hero-interactive-hoteis {
    position: relative;
    /* Imagem de fundo será definida via PHP no template-hoteis.php */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 140px 20px;
    color: #fff;
    text-align: center;
}
/* Overlay de gradiente azul sobre a imagem */
.page-hero-interactive-hoteis::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(26,35,126,0.9), rgba(0,188,212,0.8));
    z-index: 0;
}
/* Overlay escuro adicional para melhor legibilidade do texto */
.page-hero-interactive-hoteis::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
    z-index: 0;
}
.page-hero-interactive-hoteis .section-tagline,
.page-hero-interactive-hoteis .section-title,
.page-hero-interactive-hoteis .title-underline {
    position: relative;
    z-index: 1; /* Garante que o texto fique acima dos overlays */
}
.page-hero-interactive-hoteis .section-tagline {
    color: #fff;
    letter-spacing: 2px;
    font-weight: 600;
    text-transform: uppercase;
}
.page-hero-interactive-hoteis .section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #fff;
    margin: 10px 0;
}
.title-underline {
    width: 80px;
    height: 4px;
    background-color: #00BCD4;
    margin: 20px auto 0;
    border-radius: 2px;
}

/* Seções e Títulos */
.section-fullwidth {
    padding: 80px 0;
}
.section-fullwidth.bg-light {
    background-color: #F8F9FA;
}
.container-hoteis { /* Classe de container específica para evitar conflitos */
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}
.section-header {
    text-align: center;
    margin-bottom: 50px;
}
.section-tagline-content {
    color: #00BCD4;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}
.section-title-content {
    font-size: 2.2rem;
    font-weight: 700;
    margin-top: 0;
    background: linear-gradient(90deg, #00BCD4, #1A237E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.section-subtitle-centered {
    text-align: center;
    max-width: 700px;
    margin: -30px auto 50px auto;
    color: #546E7A;
    font-size: 1.1rem;
}

/* Botão CTA */
.cta-container {
    text-align: center;
}
.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #00BCD4, #00acc1);
    color: white !important;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 188, 212, 0.4);
    border: none;
    margin-top: 15px;
    position: relative;
    overflow: hidden;
}
.cta-button:hover {
    background: linear-gradient(45deg, #00acc1, #00BCD4);
}
.cta-button i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}
.cta-button:hover i {
    transform: translateX(5px);
}

/* --- ESTILO DE ALTO CONTRASTE PARA CTA FINAL --- */
.section-fullwidth:last-of-type {
    background-color: #1A237E;
    color: #ffffff;
}
.section-fullwidth:last-of-type .section-tagline-content,
.section-fullwidth:last-of-type .section-title-content,
.section-fullwidth:last-of-type .section-subtitle-centered {
    color: #ffffff;
    -webkit-text-fill-color: #ffffff;
    background: none;
}

/* ===================================================================
   2. COMPONENTES REUTILIZÁVEIS (Cards, Layouts e Listas)
=================================================================== */

/* Grid Padrão */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.feature-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-top: 4px solid transparent;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-top-color 0.35s ease;
}
.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
    border-top-color: #00BCD4;
}
/* Ícones dos Cards de Destaque */
.feature-card .feature-card-icon {
    font-size: 3.5rem;
    color: #00BCD4; /* Cor ciano principal do tema */
    margin-bottom: 20px;
    display: block; /* Garante que o ícone tenha seu próprio espaço */
    transition: transform 0.3s ease;
}
.feature-card:hover .feature-card-icon {
    transform: scale(1.1); /* Efeito sutil ao passar o mouse */
}

.feature-card h3 {
    font-size: 1.25rem;
    color: #1A237E;
    margin-top: 0;
    margin-bottom: 10px;
}
.feature-card p {
    color: #546E7A;
    line-height: 1.6;
}

/* Layout de Duas Colunas */
.two-column-layout {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}
.two-column-layout.reverse-layout {
    flex-direction: row-reverse;
}
.column-text, .column-image {
    flex: 1;
    min-width: 300px;
}
.column-image {
    text-align: center;
}
.main-feature-image { /* Classe genérica para imagens de feature */
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: none;
}
.column-text .section-title-content {
    text-align: left;
    background: none;
    -webkit-text-fill-color: initial;
    color: #1A237E;
    margin-bottom: 15px;
}
.feature-subtitle { /* Classe genérica para subtitulo de feature */
    font-size: 1.2rem;
    color: #546E7A;
    margin-top: 0;
    margin-bottom: 30px;
}

/* Listas de Ícones */
.feature-icon-list {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.feature-icon-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}
.feature-icon-wrapper {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #e0f2f1;
    color: #00796b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}
.feature-icon-text h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1A237E;
    margin: 0 0 5px 0;
}
.feature-icon-text p {
    color: #546E7A;
    line-height: 1.6;
    margin: 0;
}

/* ===================================================================
   3. MEDIA QUERIES (RESPONSIVIDADE)
=================================================================== */

@media (max-width: 768px) {

    /* Redimensionamento de títulos para mobile */
    .section-title-content {
        font-size: 1.8rem;
    }
    .feature-subtitle {
        font-size: 1.1rem;
    }

    /* Ajuste do grid para mobile (1 coluna) */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Layout de Duas Colunas para mobile */
    .two-column-layout {
        flex-direction: column !important;
        gap: 30px !important;
    }
    .two-column-layout.reverse-layout {
        flex-direction: column-reverse !important;
    }
}