/* ----------------------------- */
/*      Hero                  */
/* ---------------------------- */

.hero {
    position: absolute; /* O hero usa posição relativa */
    top: 0; /* Começa no topo da página */
    width: 100%;
    height: 100vh; /* O hero ocupa 100% da altura da viewport */
    overflow: hidden;
    background-color: #363636; /* Fundo cinza escuro do hero */
    z-index: 1; /* O hero fica atrás da navbar */
}
.hero video {
    position: absolute; /* Para posicionar o vídeo dentro do hero */
    top: 50%; /* Centraliza verticalmente */
    left: 50%; /* Centraliza horizontalmente */
    width: 100%; /* O vídeo ocupa toda a largura */
    height: 100%; /* O vídeo ocupa toda a altura */
    object-fit: cover; /* Mantém a proporção e cobre a área */
    transform: translate(-50%, -50%); /* Centraliza o vídeo */
}

.hero-title {
    font-family: 'Bona Nova', serif;
    font-weight: 500;
    font-size: 60px;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 0 16px rgba(0, 0, 0, 1);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 50px; /* Fixa o título em 50px no mobile */
    }
}

.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 1;
    transform: translate(-50%, -50%);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* Overlay azul escuro */
    z-index: 2;
}

.hero-content {
    font-family: 'Bona Nova', serif;
    position: relative;
    z-index: 3;
    text-align: left;
    color: white;
    font-size: 2.5vw;
    margin-top:160px;
    text-shadow: 0 0 16px rgba(0, 0, 0, 1);
}

.cta-button {
    background-color:transparent;
    color:white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 30px;
    font-size: 22px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 2px 2px 24px rgba(0, 0, 0, 0.4);
    text-shadow: 0 0 16px rgba(0, 0, 0, 1);
    border-radius: 20px;
    border: 2px solid white;
    text-decoration: none;

}

.cta-button:hover {
    background-color: white;
    color: #363636;
    text-shadow: none;
}

.cta-button i{
    font-size: 40px;
    margin-right: 5px;
}
/* ----------------------------- */
/*      imoveis          */
/* ---------------------------- */

#imoveis h1{
    font-family: 'Cormorant Garamond', serif;
    font-size: 82px;
    font-weight: 400;
    font-style: normal;
    margin: 0;
    padding: 0;
}


.property-card {
    position: relative;
    margin: 0;
    padding: 0.5rem;
    overflow: hidden;
}

.property-link {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding:0;
    color: inherit;
    width: auto;
    height: 300px;
    background-size: cover;
    background-position: center;
}



.overlayer {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - 1rem);
    height: calc(100% - 1rem);
    background-color: rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    opacity: 0;
    transition: background-color 0.3s, opacity 0.3s;
    margin: 0.5rem;
    box-sizing: border-box;
    padding: 0;
}

.property-card:hover .overlayer {
    background-color: rgba(0, 0, 0, 0.4);
    opacity: 1;
}

.property-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 10px;
    text-align: center;
    text-shadow: 0 0 10px rgba(0, 0, 0, 1);

}
.property-text{
    color: white;
    margin-bottom: 10px;
    text-align: center;
    text-shadow: 0 0 10px rgba(0, 0, 0, 1);

}
.logo-overlayer{
    height: 50px;
}

.view-overlayer
{
    display: none;

}

.property-card:hover .view-overlayer
{
    display: inline-block;
}
.property-card:hover .no-over {
    display: none;
}

/* ----------------------------- */
/*      Lançamentos          */
/* ---------------------------- */


#lançamentos h1{
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px;
    font-weight: 400;
    font-style: normal;
    margin: 0;
    padding: 0;
    color: #f2f1f1;
}

.card-blog a {

    color: #22283C;
    text-decoration: none;


}
.card-blog a:hover {

    text-decoration:underline;
}


.card-blog {

    border: none;
}

.card-text{
    color: #363636;
}


/* ----------------------------- */
/*      Sobre          */
/* ---------------------------- */

.semititle-sobre{
    font-size: 24px;
    font-weight: 500;
    color: white;
    line-height: 0.7;

}
.sobre-title{
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 400;
    font-style: normal;
    color: white;
    line-height: 0.9;
}

.sub-title-sobre{
    color: white;
    font-size: 24px;
    font-weight: 600;
    font-style: normal;
    margin: 0;
    line-height: 1.2;
}
.formacao-sobre{
    color: white;
    font-size: 20px;
    font-weight: 500;
    font-style: normal;
    line-height: 1.2;

}

.texto-normal {
    color: white;
    font-size: 18px;
    line-height: 1.6;
}



#sobre  h5, p{
    color: white;
}



/* ----------------------------- */
/*      Blog          */
/* ---------------------------- */

#blog{
    background-color: #f4f4f4;
}
#blog h1{
    font-family: 'Cormorant Garamond', serif;
    font-size: 82px;
    font-weight: 400;
    font-style: normal;
    margin: 0;
    padding: 0;
    color: #f2f1f1;
}

/* ----------------------------- */
/*      Contato          */
/* ---------------------------- */

#contato h1{
    font-family: 'Cormorant Garamond', serif;
    font-size: 60px;
    font-weight: 400;
    font-style: normal;
    margin: 0;
    padding: 0;
    color: white;

}


#contato h3{
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    font-weight: 400;
    font-style: normal;
    margin: 0;
    padding: 0;
    color: #F4FFFB;

}

#contato .card{
    background-color: transparent;
    border: 1px solid #F4FFFB;
    color: #F4FFFB;

}
.img-contato{
height: auto;
width: 100%;
}

.btn-contato{
    background-color: transparent;
    border: 1px solid #F4FFFB;
    color: #F4FFFB;
    width: 100%;
}
.btn-contato:hover{
    background-color: #F4FFFB;
    color: #363636;
}

.contato-link-card {
    text-decoration: none;
    color: inherit; /* Para herdar a cor do texto */
}

.contato-link-card:hover .card {
    background-color: #F4FFFB !important; /* Use !important para sobrescrever */
    border: 1px solid #F4FFFB !important;
    color: #363636 !important; /* Para que a cor seja aplicada no hover */
}


.before-animate{
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate{
    opacity: 1;
    transform: translateY(0);
}
