/* VARIÃƒÂVEIS DE COR */
:root {
    --bg-dark: #121215;
    --bg-card: #1c1c21;
    --bg-lighter: #26262c;
    --accent-gold: #d4af37;
    --accent-gold-hover: #c9a227;
    --text-white: #ffffff;
    --text-gray: #a0a0a0;
    --font-main: 'Montserrat', sans-serif;
}

/* RESET BASICO */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-main);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: var(--text-white);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* BOTÃƒâ€¢ES GERAIS */
.btn-primary {
    background-color: var(--accent-gold);
    color: #000;
    font-weight: 600;
    border: none;
    padding: 12px 32px;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s;
    align-self: flex-start;
    min-width: 160px;
}

.btn-primary:hover {
    background-color: var(--accent-gold-hover);
}

.btn-outline {
    border: 1px solid var(--text-gray);
    padding: 10px 20px;
    border-radius: 4px;
    color: var(--text-white);
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.btn-outline-gold {
    border: 1px solid var(--accent-gold);
    background: transparent;
    color: var(--accent-gold);
    padding: 10px 30px;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s;
    font-size: 0.95rem;
}

.btn-outline-gold:hover {
    background: var(--accent-gold);
    color: #000;
}

/* HEADER */
header {
    background-color: var(--bg-dark);
    padding: 10px 0;
    border-bottom: 1px solid #333;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo{
    display: flex;
}

.logo img {
    height: 90px;
}

nav {
    display: flex;
    align-items: center;
}

nav ul {
    display: flex;
    gap: 30px;
}

nav ul li a {
    font-size: 0.9rem;
    font-weight: 500;
    transition: 0.3s;
}

nav ul li a:hover, nav ul li a.active {
    color: var(--accent-gold);
}

.nav-menu {
    position: static;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: 0.3s;
}

.menu-toggle:hover {
    color: var(--accent-gold);
}

/* HERO SECTION (BUSCA) */
.hero {
    background: linear-gradient(rgba(18, 18, 21, 0.5), rgba(18, 18, 21, 0.7)), url('../img/bg.jpeg') center/cover no-repeat;
    padding: 100px 0 80px;
    min-height: 550px;
    display: flex;
    align-items: center;
}

.hero-content {
    width: 100%;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 1.2;
    text-shadow: 0 2px 5px black;
}

/* SIMULAÃƒâ€¡ÃƒÆ’O DE FINANCIAMENTO */
.financing {
    padding: 70px 0;
}

.financing-container {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 320px;
    border-radius: 8px;
    overflow: hidden;
}

.financing-container::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(13, 13, 16, 1) 0%, rgba(13, 13, 16, 1) 40%,  rgba(13, 13, 16, 0.8) 60%,rgba(13, 13, 16, 0.1) 75%, transparent 100%);
    z-index: 1;
}

.financing-text {
    position: relative;
    z-index: 2;
    padding: 50px 40px;
    max-width: 480px;
}

.financing-text h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.financing-text h2 span {
    color: var(--accent-gold);
}

.financing-text p {
    color: var(--text-gray);
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.financing-image {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: flex-end;
}

.financing-image img {
    width: 75%;
    height: 100%;
    object-fit: cover;
}

/* CITAÃƒâ€¡ÃƒÆ’O SOBRE A EMPRESA */
.about-quote {
    padding: 50px 0;
    text-align: center;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

.quote-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.small-logo {
    width: 80px;
    height: 80px;
}

.quote-content p {
    font-size: 1.3rem;
    font-style: italic;
}

.quote-content p span {
    color: var(--accent-gold);
    font-weight: 700;
}

/* RODAPÃƒâ€° */
footer {
    background-color: #0d0d10;
    padding: 40px 0 20px;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.footer-left p, .footer-right p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-left p a, .footer-right p a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: inherit;
    transition: 0.3s;
}

.footer-left p a:hover, .footer-right p a:hover {
    color: #25D366;
}

.contact-info-footer {
    margin: 15px 0;
}

.socials {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.socials a {
    font-size: 1.2rem;
    color: var(--text-gray);
    transition: 0.3s;
}

.socials a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #222;
    padding-top: 20px;
    font-size: 0.8rem;
    color: #666;
}

/* RESPONSIVIDADE */
@media (max-width: 1024px) {
    .property-grid,
    .destaquesLinha1,
    .destaquesLinha2 {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .section-header h2 {
        font-size: 1.7rem;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .header-container {
        flex-wrap: wrap;
    }

    .nav-menu {
        display: none;
        width: 100%;
        background: var(--bg-card);
        padding: 20px 0;
        margin-top: 10px;
    }

    .nav-menu.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        gap: 15px;
        padding: 0 20px;
    }

    .header-contact {
        width: 100%;
        margin-top: 15px;
    }

    .hero {
        padding: 60px 0 50px;
        min-height: auto;
    }

    .hero h1 {
        font-size: 2rem;
        margin-bottom: 25px;
    }

    .search-box {
        padding: 20px;
    }

    .search-form {
        flex-direction: column;
    }

    .search-form select {
        width: 100%;
    }

    .property-grid,
    .destaquesLinha1,
    .destaquesLinha2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .property-card img,
    .destaquefotoImg {
        height: 150px;
    }

    .financing-container {
        min-height: 420px;
    }

    .financing-container::before {
        background: linear-gradient(to top, rgba(13, 13, 16, 0.97) 0%, rgba(13, 13, 16, 0.85) 55%, rgba(13, 13, 16, 0.2) 100%);
    }

    .financing-image img{
        width: 100%;
    }

    .financing-text {
        max-width: 100%;
        padding: 35px 25px;
        align-self: flex-end;
    }

    .financing-text h2 {
        font-size: 1.8rem;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .quote-content {
        flex-direction: column;
        gap: 15px;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .socials {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 80px;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .hero {
        padding: 40px 0 30px;
    }

    .search-box {
        padding: 15px;
    }

    .search-form {
        flex-direction: column;
    }

    .property-grid,
    .destaquesLinha1,
    .destaquesLinha2 {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .financing-text {
        padding: 25px 15px;
    }

    .financing-text h2 {
        font-size: 1.5rem;
    }

    .section-header h2 {
        font-size: 1.4rem;
    }

    .link-more {
        font-size: 0.85rem;
    }

    .quote-content p {
        font-size: 1.1rem;
    }

    footer {
        padding: 30px 0 15px;
    }

    .footer-left p, .footer-right p {
        font-size: 0.85rem;
    }
}

