@import url('https://fonts.googleapis.com/css2?family=Playwrite+NZ+Basic+Guides&display=swap');

:root {
    --primary: #000000;
    --secondary: #ffffff;
    --accent: #c9a227;
    --dark: #000000;
    --light: #ffffff;
}

.esconder{
    display: none;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.esconder2{
    display: none;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

/* BOTAO VER MAIS */

.btn_vermais{
    display: flex;
    justify-content: center;
    padding-top: 80px;
}
.btn_vermais_ver {
    display: inline-block;
    color: #000000;
    padding: 12px 18px;
    border-radius: 8px;
    font-weight: bold;
    transition: 0.3s;
}



/* ------------- */

.material-symbols-outlined{
    color: var(--accent);
}

html{
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: var(--secondary);
    color: var(--dark);
}

/* SECTION ESPECIALISTA */

.especialista {
    background: linear-gradient(135deg, #000000, #1a1a1a);
    padding: 70px 8%;
    margin-top: 60px;
    border-radius: 15px;
    max-width: 80%;
    margin: 0 auto;
}

.especialista-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.especialista-texto h2 {
    color: #e6c65c;
    font-size: 30px;
    margin-bottom: 15px;
}

.especialista-texto p {
    color: #ffffff;
    max-width: 500px;
    line-height: 1.6;
}

.btn-especialista {
    background: #e6c65c;
    color: #000;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.btn-especialista:hover {
    background: #ffffff;
}


/* MENU HAMBURGUER */

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: #e6c65c;
    transition: 0.3s;
}

/* MOBILE */
@media(max-width: 768px) {

    .menu-toggle {
        display: flex;
    }

    nav {
        position: absolute;
        top: 90px;
        right: 0;
        background: #000;
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 25px;
        padding: 30px 0;
        display: none;
    }

    nav a {
        font-size: 18px;
    }

    nav.active {
        display: flex;
    }
}



/* HEADER */

header {
    background: #000000;
    padding: 0px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 60px;
}
@media(max-width:768px) {
    .logo-img {
    height: 80px;
    }
}

/* NAV */

/* MENU PREMIUM DOURADO */

nav {
    display: flex;
    gap: 40px;
}

nav a {
    position: relative;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    color: #e6c65c; /* dourado claro */
    letter-spacing: 0.5px;
    transition: 0.3s ease;
}

/* Efeito ao passar o mouse */
nav a:hover {
    color: #ffffff;
}

/* Linha animada elegante */
nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: #e6c65c;
    transition: 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}


/* BANNER */

.banner {
    background: linear-gradient(rgb(0,0,0,0.5)),url(img/banner2.jpg) center/cover no-repeat;
    background-position: 0% 80%;
    height: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgb(255, 255, 255);
    text-align: center;
}

.banner h1 {
    font-size: 42px;
    padding: 25px 40px;
    border-radius: 12px;
    font-weight: 400;
    font-style: normal;
    color: #feeaa9f4;
}

.banner p {
    padding: 0 18px 0 18px; 
    color: #ffffffd8;
}


/* SEÇÕES */

.section {
    padding: 70px 8%;
}

.section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 30px;
}

/* IMÓVEIS */

.imoveis {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.card {
    background: var(--light);
    width: 300px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-8px);
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 25px;
    flex: 1;
}

.card-content h3 {
    margin-bottom: 10px;
}

.price {
    font-weight: bold;
    color: var(--accent);
    margin: 15px 0;
    font-size: 18px;
}

/* BOTÕES DOURADOS */

.btn {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    padding: 12px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn:hover {
    background: #e6c65c;
}

/* CONTATO */

.contato {
    text-align: center;
}

/* FOOTER BRANCO ELEGANTE */

footer {
    background: #ffffff;
    border-top: 1px solid #e5e5e5;
    margin-top: 70px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 60px 8%;
    gap: 40px;
	background-color: black;
	color: white;
}

.footer-col {
    flex: 1 1 220px;
}

.footer-col h4 {
    margin-bottom: 20px;

}

.footer-col p {
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-col a {
    text-decoration: none;
    color: white;
    font-size: 14px;
}

.footer-col a:hover {
    color: var(--accent);
}

.footer-logo {
    height: 55px;
    margin-bottom: 15px;
}

.footer-bottom {
    text-align: center;
    padding: 20px;
    font-size: 14px;
    color: #ffffff84;
	background-color: black;
}

/* RESPONSIVO */

@media(max-width: 768px) {

    .imoveis {
        flex-direction: column;
        align-items: center;
    }

    header {
        position: relative;
    }

    .menu-toggle {
        display: flex;
    }

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        background: #000;
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 25px;
        padding: 30px 0;
        display: none;
    }

    nav.active {
        display: flex;
    }

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 2rem;
    background-color: black;
    color: white;
    text-align: center;
}

.footer-col {
    width: 220px; /* tamanho fixo */
}

.footer-col h4 {
    margin-bottom: 12px;
}

.footer-col p {
    margin-bottom: 6px;
}

.especialista{
    text-align: center;
}
.btn-especialista {
    margin: 0 auto;
}


}


/* WHATSAPP FLUTUANTE */

.whatsapp-float {
    position: fixed;
    width: 65px;
    height: 65px;
    bottom: 25px;
    right: 25px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: white;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    z-index: 100;
}

/* SOBRE */

.sobre {
    padding: 10rem 2rem;
    background: #ffffff;
    color: #000000;
}

@media(min-width: 768px){
    .sobre {
       padding: 10rem 10rem;     
    }
}

.sobre-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}

.sobre-texto {
    flex: 1 1 500px;
}

.sobre-texto h2 {
    font-size: 32px;
    color: var(--accent);
    margin-bottom: 25px;
}

.sobre-texto p {
    margin-bottom: 18px;
    line-height: 1.7;
    font-size: 15px;

}

.sobre-texto strong {
    color: var(--accent);
}

.sobre-destaques {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
}

.destaque h3 {
    font-size: 48px;
    color: var(--accent);
    margin-bottom: 5px;
}

.destaque span {
    font-size: 14px;
    letter-spacing: 1px;
    color: #634f26af;
}

/* RESPONSIVO */
@media(max-width: 768px) {
    .sobre-container {
        flex-direction: column;
        text-align: center;
    }

    .sobre-destaques {
        flex-direction: row;
        justify-content: center;
        gap: 50px;
    }
}


@media(min-width:1200px){
    .center_fa{
        text-align: center;
    }
}