/* ==========================================================================
   OFFICE DAY - LOCAÇÃO POR HORA/DIA (BOOTSTRAP 5.3)
   ========================================================================== */

/* 1. GERAL E TIPOGRAFIA */
body {
    font-family: 'Open Sans', sans-serif;
    color: #444;
    background-color: #f8f9fa;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Libre Baskerville', serif;
    color: #222;
}

/* 2. BARRA DE NAVEGAÇÃO */
@media (min-width: 992px) {
    .navbar-nav .nav-link {
        font-size: 13px !important;
        padding: 10px 15px !important;
        font-weight: 700 !important;
        letter-spacing: 0.8px;
        text-transform: uppercase !important;
        transition: all 0.3s ease;
    }
}
.navbar-transparent .nav-link { color: #ffffff !important; text-shadow: 1px 1px 3px rgba(0,0,0,0.8); }
.navbar-scrolled { background-color: #ffffff !important; box-shadow: 0 2px 15px rgba(0,0,0,0.1); }
.navbar-scrolled .nav-link { color: #222222 !important; text-shadow: none !important; }
.navbar-scrolled .nav-link:hover { color: #A21416 !important; }

/* 3. REVOLUTION SLIDER (Banner Principal) */
.tp-caption.slider-title {
    font-size: 60px !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.6);
}
.tp-caption.slider-caption {
    font-size: 26px !important;
    font-weight: 700 !important;
    max-width: 800px;
    white-space: normal !important;
    color: #FFCE00; /* Amarelo ouro para destaque */
    text-shadow: 1px 1px 5px rgba(0,0,0,0.8);
}
.slider-button .btn-warning {
    color: #1a1a1a !important; 
    text-shadow: none !important; 
    transition: all 0.3s ease;
}
.slider-button .btn-warning:hover {
    background-color: #ffb300 !important; 
    color: #000000 !important; 
    transform: scale(1.05); 
}

/* 4. ESPECIFICAÇÕES (Amenities Premium) */
.amenity-box {
    background: #ffffff;
    padding: 25px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
    border-left: 4px solid transparent;
}
.amenity-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-left: 4px solid #A21416;
}
.amenity-icon {
    font-size: 30px;
    color: #A21416;
    margin-bottom: 15px;
}

/* 5. TABELAS DE PREÇO */
.pricing-card {
    border: none;
    border-radius: 15px;
    transition: all 0.3s ease;
    overflow: hidden;
}
.pricing-card:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15) !important;
}
.pricing-header {
    background: #222;
    color: #fff;
    padding: 30px 20px;
}
.pricing-header.popular {
    background: linear-gradient(135deg, #A21416 0%, #d32f2f 100%);
}
.price-value {
    font-size: 48px;
    font-weight: 800;
}
.price-currency {
    font-size: 24px;
    vertical-align: super;
}

/* 6. GALERIA DE FOTOS */
.carousel-inner img {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    width: 100%;
    max-height: 550px;
    object-fit: cover;
}

/* 7. BOTÃO FLUTUANTE WHATSAPP */
.float-btn {
    position: fixed; width: 65px; height: 65px; bottom: 30px; right: 30px;
    background-color: #25D366; color: #fff; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 32px; box-shadow: 0 5px 20px rgba(37,211,102,0.4);
    z-index: 9999; text-decoration: none !important; transition: all 0.3s ease;
}
.float-btn:hover { transform: scale(1.1); color: #fff; }

/* 8. UTILITÁRIOS E FOOTER */
.section-padding { padding: 90px 0; }
.bg-dark-custom { background-color: #1a1a1a; }
.text-gold { color: #FFCE00 !important; }
footer.bg-dark-custom p, footer.bg-dark-custom .text-muted { color: #e0e0e0 !important; }
footer.bg-dark-custom a i { color: #ffffff !important; transition: all 0.3s ease; }
footer.bg-dark-custom a:hover i { color: #FFCE00 !important; transform: scale(1.2); }

/* ==========================================================================
   FIX MOBILE: BANNER PRINCIPAL (Fim do Entroncamento)
   ========================================================================== */
@media (max-width: 768px) {
    .tp-caption.slider-title {
        font-size: 32px !important; 
        white-space: nowrap !important;
        margin-top: -30px !important;   
    }
    .tp-caption.slider-caption {
        font-size: 16px !important;
        line-height: 1.5 !important;
        white-space: normal !important;
        width: 95% !important;
        margin-top: 40px !important;    
    }
    .tp-caption.slider-button {
        margin-top: 95px !important;    
    }
    .slider-button .btn-warning {
        padding: 12px 25px !important;
        font-size: 14px !important;
    }
}