@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&family=Bebas+Neue&display=swap');
html {
    scroll-behavior: smooth;
}
body {
    font-family: "Archivo", sans-serif;
    font-optical-sizing: auto;
    font-size: 11pt;
}

.title {
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 24pt;
    color: #000097;
}

.text-separate {
    font-size: 36pt;
    font-family: "Bebas Neue", sans-serif;
}

#SecBanner {
    height: 500px;
    max-height: 500px;
    background-image: url('../../../img/banner.png');
    background-size: cover;
    border-bottom-width:15px;
    border-bottom-color: rgba(255, 193, 7, 1);
    border-bottom-style: solid;
    border-top-width:15px;
    border-top-color: #000097;
    border-top-style: solid;
    
}

#SecAbout{
    border-bottom-width:15px;
    border-bottom-color: #000097;
    border-bottom-style: solid;
}
.item-menu {
    font-family: "Bebas Neue", sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 18pt;
}

.imgAbout {}

.imgmini {
    width: 78px;
    height: 40px;
}

.custom-room-card {
    position: relative;
    height: 210px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(255, 193, 7, 1);
    cursor: pointer;
    border: none;
    margin-bottom: 30px;
    /* Adicionado para criar o espaçamento inferior no Bootstrap 4 */
}

/* Imagem de Fundo */
.card-image-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Efeito Zoom na Imagem ao passar o mouse */
.custom-room-card:hover .card-image-bg {
    transform: scale(1.08);
}

/* Overlay escuro translúcido baseado no modelo real enviado */
.card-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 191, 0.5);
    /* Tom azul-escuro translúcido */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 24px;

    /* Estado Inicial: Oculto */
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* Revela o overlay no hover */
.custom-room-card:hover .card-hover-overlay {
    opacity: 1;
}

/* Efeito de deslizar do texto */
.card-hover-title {
    font-family: "Archivo", sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 2px;
    color: #ffffff;
    margin-bottom: 12px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.card-hover-desc {
    font-size: 0.95rem;
    color: #bdc3c7;
    line-height: 1.6;
    max-width: 90%;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.05s;
}

/* Move os textos de volta para a posição original no hover */
.custom-room-card:hover .card-hover-title,
.custom-room-card:hover .card-hover-desc {
    transform: translateY(0);
}

/* Ajuste fino para telas mobile bem pequenas */
@media (max-width: 576px) {
    .custom-room-card {
        height: 320px;
    }
}

.gallery-item {
    position: relative;
    height: 200px;
    /* Altura menor para manter o foco compacto */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    cursor: pointer;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.06);
    filter: brightness(1.1);
}

/* Customização das setas de controle do carrossel para ficarem visíveis nas laterais */
.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.8));
}

/* Estilo do modal */
.modal-content {
    background-color: transparent;
    border: none;
}

.modal-body img {
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}

/*************FORM**************/

#SecContact {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(rgba(0, 0, 151, 0.78), rgba(0, 0, 151, 0.85)),
        url('../../../img/banner.png') no-repeat center center fixed;
    background-size: cover;
}

.main-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Lado Esquerdo - Texto de Apresentação */
.hero-text-side {
    color: #ffffff;
    padding: 40px;
}

.hero-text-side h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-text-side p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

/* Lado Direito - Caixa do Formulário Alinhada */
.form-side-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 40px;
}

.form-box {
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    padding: 40px;
    width: 100%;
    max-width: 780px;
    /* Mantém o formulário compacto e elegante */
    color: #333333;
}

/* Títulos do Formulário */
.form-box h2 {
    color: #000097;
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 6px;
}

.form-box p {
    color: #666666;
    font-size: 0.9rem;
    margin-bottom: 25px;
}

/* Estilização dos Inputs */
.form-control {
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    padding: 12px 14px;
    height: auto;
    transition: all 0.3s ease;
}

/* Efeito de Foco com a cor #000097 */
.form-control:focus {
    color: #333333;
    background-color: #fff;
    border-color: #000097;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 151, 0.25);
}

label {
    font-weight: 600;
    color: #4a5568;
    font-size: 0.85rem;
    margin-bottom: 5px;
}

/* Botão estilizado */
.btn-submit {
    background-color: #000097;
    color: #ffffff;
    font-weight: 600;
    padding: 12px;
    border-radius: 8px;
    border: none;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 151, 0.3);
}

.btn-submit:hover {
    background-color: #000066;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 151, 0.4);
}



/**********depoimentos**********/

/* Fundo claro para dar destaque aos cards brancos */
.testimonials-section {
    background-color: rgba(255, 193, 7, 1);
    padding: 80px 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.section-title {
    color: #000097;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Estilização do Card de Depoimento */
.testimonial-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 40px;
    margin: 20px auto;
    max-width: 700px; /* Mantém o texto em um bloco confortável para leitura */
    position: relative;
    text-align: center;
    border: 1px solid #e2e8f0;
}

/* Ícone de Aspas usando CSS */

.testimonial-text {
    font-size: 1.15rem;
    color: #4a5568;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 25px;
}

.client-info h5 {
    color: #1e293b;
    font-weight: 700;
    margin-bottom: 4px;
}

.client-info p {
    color: #64748b;
    font-size: 0.9rem;
    text-uppercase: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

/* Estrelas de Avaliação no seu tom azul */
.rating-stars {
    color: #000097;
    font-size: 1.2rem;
}

/* Customização dos Indicadores (Bolinhas de navegação abaixo) */
.carousel-indicators {
    bottom: -50px;
}

.carousel-indicators li {
    background-color: rgba(0, 0, 151, 0.3);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    transition: all 0.3s ease;
}

.carousel-indicators .active {
    background-color: #000097;
    width: 28px; /* Efeito alongado na bolinha ativa */
    border-radius: 6px;
}

/* Setas de navegação laterais */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(13%) sepia(93%) saturate(6284%) modulate(0.5) hue-rotate(234deg) brightness(85%) contrast(115%);
    /* Esse filtro converte a seta padrão branca do Bootstrap para o tom exato de #000097 */
}

/********rodape******/
.main-footer {
    color: #1e293b; /* Texto cinza escuro para contraste impecável no fundo amarelo */
    font-family: "Bebas Neue", sans-serif;
    font-size: 0.95rem;
    letter-spacing: 1px;
}

.footer-title {
    color: #000097; /* Seu azul institucional nos títulos das colunas */
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* Estilização dos Links em Lista */
.footer-links-list {
    list-style: none;
    padding-left: 0;
}

.footer-links-list li {
    margin-bottom: 10px;
}

.footer-links-list a {
    color: #1e293b;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links-list a:hover {
    color: #000097; /* Destaca em azul ao passar o mouse */
    padding-left: 5px; /* Efeito sutil de deslocamento */
}

/* Grade de Fotos do Instagram */
.insta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    max-width: 240px; /* Mantém a proporção idêntica à imagem */
}

.insta-box {
    aspect-ratio: 1;
    background-color: #ffffff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.insta-box:hover {
    transform: scale(1.05);
}

.insta-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Linha divisória inferior */
.footer-divider {
    border-top: 1px solid rgba(0, 0, 151, 0.15);
    margin-top: 40px;
    margin-bottom: 20px;
}

.bottom-footer-link {
    color: #1e293b;
    text-decoration: none;
    font-size: 0.9rem;
}

.bottom-footer-link:hover {
    color: #000097;
    text-decoration: underline;
}

/* Responsividade para Celulares e Tablets menores */
@media (max-width: 767.98px) {
    .main-wrapper {
        padding: 40px 20px;
    }

    .hero-text-side {
        text-center: center;
        padding: 20px 10px 40px 10px;
    }

    .hero-text-side h1 {
        font-size: 2rem;
    }

    .form-side-container {
        padding: 0;
        justify-content: center;
    }

    .form-box {
        padding: 30px 20px;
    }
}