/* ================= PRE LOADER ================= */
/* Preloader Container */
.loader-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    visibility: visible;
    opacity: 1;
    transition: opacity 0.3s ease;
}
/* Animação de aumento do logo e texto */
@keyframes increase-size {
    0% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.4);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}
/* Logotipo do preloader */
.logo-preloader {
    width: 40vh;
    height: auto;
    animation: increase-size 4s ease-in-out infinite;
    margin-bottom: 30px;
}
/* Texto do preloader */
.txt-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem; 
    font-weight: bold;
    animation: increase-size 4s ease-in-out infinite;
}
/* Estilo para as letras individuais */
.letters-loading {
    display: inline-block;
    animation: increase-size 4s ease-in-out infinite;
    opacity: 0;
    animation-delay: calc(0.1s * var(--i));
}
@keyframes fade-out {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
/* Quando o preloader terminar, esconder o loader */
.loader-wrap.hide {
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.5s ease;
}
.loader-wrap.hide .preloader {
    animation: fade-out 0.5s ease-out;
}




/* ================= HEADER ================= */
.botao_box {
    list-style: none; 
    display: inline-block;
    margin-right: 4rem;
} 
.botao_reservar {
    display: inline-block;
    padding: 0.9375rem 1.875rem;
    background-color: #98bcc1; 
    color: #fff !important;
    font-size: 1.2rem !important;
    font-weight: bold;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0px 0.5rem 0.9375rem rgba(0, 0, 0, 0.2);
} 
.botao_reservar:hover {
    background-color: white;
    color: #fff !important;
    box-shadow: 0px 0.75rem 1.25rem rgba(0, 0, 0, 0.3);
    transform: translateY(-4px);
} 
.botao_reservar:active {
    transform: translateY(2px);
    box-shadow: 0px 0.3125rem 0.625rem rgba(0, 0, 0, 0.2);
}
.current {
    color: #98bcc1 !important;
    font-weight: bold !important;
    position: relative;
}




/* ================= HOME ================= */
.sec-title-benefits h2 {
    font-size: 2.1875rem !important; 
    margin-bottom: 1.875rem;
    color: black !important;
    font-weight: bold !important; 
    text-align: center;
}
.benefits-list {
    display: flex;
    flex-wrap: wrap; 
    justify-content: center;
}
.benefit-item {
    display: flex;
    flex-direction: column; 
    align-items: center; 
    margin: 0.9375rem; 
    padding: 1.25rem; 
    text-align: center;
    border-radius: 0.625rem;
    box-shadow: 0 0.25rem 0.625rem rgba(0, 0, 0, 0.3); 
    transition: transform 0.3s, box-shadow 0.3s;
    background-color: #ffffff;
}
.benefit-item i {
    font-size: 2.25rem;
    color: #98bcc1; 
    margin-bottom: 0.625rem; 
}
.benefit-item h3 {
    font-size: 1.0625rem;
    color: black !important; 
    font-weight: bold !important;
    margin: 0 0 0.3125rem; 
}
.benefit-item p {
    font-size: 0.875rem;
    color: #555; 
    margin: 0;
}
/* Efeito ao passar o mouse */
.benefit-item:hover {
    transform: translateY(-0.3125rem);
    box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.15);
}
/* Remover borda do wrapper criado pelo plugin */
.field-input.retangulo .nice-select {
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
    height: 48px !important;
    line-height: 48px !important;
    padding: 0 15px !important;
}
/* Se o plugin adicionar borda no foco */
.field-input.retangulo .nice-select.open,
.field-input.retangulo .nice-select:focus,
.field-input.retangulo .nice-select:hover {
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
}
  
/* A borda real fica na .retangulo */
.field-input.retangulo {
    border: 2px solid #98bcc1 !important;
    border-radius: 8px !important;
    padding: 2px !important;
    transition: border-color 0.3s ease !important;
}
.field-input.retangulo:focus-within {
    border-color: #5DA77A !important;
    box-shadow: none !important;
    outline: none !important;
}
.retangulo input, .retangulo select {
    border: none;
    width: 100%; 
    padding: 8px;
    font-size: 16px;
    outline: none; 
}
.retangulo:focus-within {
    border-color: #5DA77A;   
    box-shadow: none;
    outline: none;
}
.nice-select {
    height: 48px !important;
    line-height: 48px !important;
    border: 2px solid #98bcc1 !important;
    border-radius: 8px !important;
    padding: 0 15px !important;
    font-size: 16px !important;
}




/* ================= REVIEWS ================= */
.carousel-indicators {
    bottom: -30px !important;
    position: relative !important;
    display: flex !important;
    justify-content: center !important;
    padding-left: 0 !important;
    margin-top: 1rem !important;
}
.carousel-indicators li {
    background-color: #98bcc1 !important;
    width: 10px !important;
    height: 10px !important;
    border-radius: 50% !important;
    margin: 0 5px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}
.carousel-indicators .active {
    background-color: #2b7a78 !important;
}
.reviews-section {
    margin-top: -6.25rem !important;
}
/* Estilos para cada item de review */
.review-item {
    background-color: #ffffff !important;
    padding: 2rem !important;
    border-radius: 1rem !important;
    box-shadow: 0px 0.25rem 0.75rem rgba(0, 0, 0, 0.3) !important;
    max-width: 50rem !important;
    margin: 1rem auto !important;
    transition: transform 0.3s ease !important;
    text-align: center !important;
}
/* Hover para o review-item */
.review-item:hover {
    transform: scale(1.03) !important;
}
/* Estilos para a imagem de perfil */
#reviewsCarousel img {
    width: 6.25rem !important;
    height: 6.25rem !important;
    object-fit: cover !important;
    border-radius: 50% !important;
    margin: 0 auto 1rem auto !important;
}
/* Estilos para o título e descrição */
.carousel-item h3 {
    font-size: 1.5rem !important;
    margin-top: 1rem !important;
}
.carousel-item p {
    font-size: 1rem !important;
    color: #6c757d !important;
    margin-top: 0.5rem !important;
}




/* ================= CATEGORIAS ================= */
.sec-title > h4{
    text-align: left !important;
    font-weight: bold !important;
}
.news-block-one .lower-content p{
    color: #a9a9a9; 
    font-size: 0.875rem; 
    margin-bottom: 0.625rem;
    margin-top: -0.9375rem;
}
.property_info_box{
    margin-left: 0.9375rem;
    color: black;
}
.property_info_box > i{
    width: 1rem; 
    vertical-align: middle;
}
.property_info_box > span{
    margin-left: 0.3125rem;
}




/* ================= CARROSSEL ================= */
.gallery-style-two{
    margin-top: -6.25rem;
}
.fig_caption_houses{
    text-decoration: none;
    color: inherit;
    font-size: 1.125rem;
}
.fig_caption_houses:hover{
    font-size: 1.35rem;
    color: #98bcc1;
    text-decoration: underline;
}




/* ================= FAQS ================= */
.faq-page-section{
    margin-top: -6.25rem;
}




/* ================= PROPRIETÁRIO ================= */
.section-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 20px;
}
.section-text {
    font-size: 1.2rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}
.why-choose-us {
    padding: 60px 0;
}
.why-choose-us h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 40px;
}
.why-choose-us .card {
    background-color: #fff;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1) !important;
}
.why-choose-us .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2) !important;
}
.why-choose-us .card i {
    color: #98bcc1 !important;
}
.why-choose-us .card h5 {
    margin-top: 15px;
    font-size: 1.1rem;
    color: #333;
}


/* PROPRIETARIO - ANUNCIE CONNOSCO */
.missao-section {
    background-color: #f5f7f9;
    padding: 80px 20px;
    text-align: center;
}
.missao-section .section-title {
font-size: 2.5rem;
font-weight: 700;
color: #2b2b2b;
margin-bottom: 20px;
position: relative;
display: inline-block;
}
.missao-section .section-title::after {
content: '';
display: block;
width: 60px;
height: 4px;
background-color: #79939e;
margin: 12px auto 0;
border-radius: 2px;
}
.missao-section .section-text {
font-size: 1.1rem;
color: #4a4a4a;
max-width: 800px;
margin: 0 auto;
line-height: 1.6;
}
.owner-journey-section .journey-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    margin-top: 40px;
}
.owner-journey-section .step {
    background: #f5f9f8;
    border: 1px solid #d1e4e1;
    border-radius: 8px;
    padding: 20px;
    flex: 1 1 calc(33.33% - 20px);
    min-width: 150px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.owner-journey-section .step .number {
    display: inline-block;
    font-size: 24px;
    font-weight: bold;
    color: #6DA7A1;
    margin-bottom: 10px;
}
.owner-journey-section .step h5 {
    font-size: 16px;
    color: #333;
}




/* ================= SOBRE NÓS ================= */
/* Estilização Geral */
#missao-visao-valores {
    padding: 60px 20px;
    text-align: center;
    color: white;
}
#missao-visao-valores h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.missao-visao-valores h5{
    color: #98bcc1;
}
/* Grid para Missão e Visão */
.mvv-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto 40px;
}
.mvv-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1;
}
.mvv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.3);
}
/* Ícones */
.mvv-card i {
    font-size: 2.5em;
    color: #1e3a8a;
    margin-bottom: 15px;
}
.mvv-card h3 {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 10px;
    font-weight: bold;
}
.mvv-card p {
    font-size: 1em;
    color: #666;
}
/* Título para Valores */
#valores-title {
    font-size: 2em;
    margin-top: 40px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}
/* Grid para Valores (3 por linha) */
.valores-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: auto;
}
/* Responsividade */
@media (max-width: 768px) {
    .mvv-row {
        flex-direction: column;
    }

    .valores-container {
        grid-template-columns: 1fr;
    }
}



/* FOOTER */
/* Politica de Privacidade e Termos de Serviço */
.container_termos {
    margin-top: 50px;
    margin-bottom: 50px;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.h_termos {
    margin-bottom: 30px;
    text-align: center;
}
.term {
    margin-bottom: 20px;
    margin-left: 10px !important;
}



