/* Telefone topo */
.header-phone {
    display: flex;
    align-items: center;
    margin-right: 18px;
}
.phone-link {
    display: flex;
    align-items: center;
    gap: 7px;
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.08rem;
    background: #e0f2fe;
    padding: 7px 16px 7px 12px;
    border-radius: 22px;
    border: 1px solid var(--border-color);
    transition: background 0.2s, box-shadow 0.2s;
}
.phone-link:hover {
    background: #bae6fd;
    box-shadow: 0 2px 8px rgba(14, 165, 233, 0.10);
}
.phone-icon {
    font-size: 1.25em;
    color: var(--secondary-color);
    margin-right: 3px;
}
.phone-number {
    letter-spacing: 0.01em;
}
@media (max-width: 768px) {
    .header-phone {
        margin-right: 0;
        justify-content: center;
        width: 100%;
        padding-bottom: 6px;
    }
    .navbar-container {
        flex-direction: column;
        align-items: stretch;
    }
    .phone-link {
        font-size: 1rem;
        width: 100%;
        justify-content: center;
        padding: 8px 0;
    }
}
/* Global Styles */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0f172a;
    --secondary-color: #0ea5e9;
    --accent-color: #0ea5e9;
    --accent-strong: #0284c7;
    --text-dark: #0b1220;
    --text-light: #5b6475;
    --bg-light: #e0f2fe;
    --bg-white: #f0f9ff;
    --border-color: #bae6fd;
    --shadow: 0 6px 18px rgba(14, 165, 233, 0.12);
    --shadow-large: 0 18px 50px rgba(14, 165, 233, 0.18);
    --gradient-hero: linear-gradient(135deg, #0f172a 0%, #0ea5e9 45%, #22d3ee 100%);
    --gradient-button: linear-gradient(120deg, #0ea5e9, #22d3ee);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 50%, #e0f2fe 100%);
    background-attachment: fixed;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */

.navbar {
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow);
    backdrop-filter: blur(8px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border-color);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--primary-color);
}

.logo-img {
    height: 44px;
    width: auto;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.02em;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 30px;
}


.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s, transform 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--secondary-color);
    transform: translateY(-1px);
}

/* Header Contact/WhatsApp */
.header-contact {
    display: flex;
    align-items: center;
}

.header-whatsapp {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #25d366;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 8px 16px;
    border-radius: 25px;
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.1), rgba(37, 211, 102, 0.05));
    border: 1px solid rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
}

.header-whatsapp:hover {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.2), rgba(37, 211, 102, 0.1));
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
}

.whatsapp-header-icon {
    width: 24px;
    height: 24px;
}

.header-whatsapp span {
    color: var(--text-dark);
}

/* Hero Section */
.hero {
    background: var(--gradient-hero);
    color: white;
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.12), transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.12), transparent 35%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 2.6rem;
    margin-bottom: 18px;
    letter-spacing: -0.03em;
}

.hero-content p {
    font-size: 1.1rem;
    opacity: 0.92;
    max-width: 780px;
    margin: 0 auto;
}

/* Search Section */
.search-section {
    background: rgba(255, 255, 255, 0.78);
    padding: 40px 20px;
    margin: -40px auto 80px;
    border-radius: 16px;
    box-shadow: var(--shadow-large);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    max-width: 1200px;
}

.search-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    align-items: flex-end;
}

@media (max-width: 768px) {
    .search-form {
        grid-template-columns: 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 14px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s, box-shadow 0.3s;
    background-color: #f8fafc;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.12);
}

.btn-search {
    background: var(--gradient-button);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    letter-spacing: 0.01em;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 12px 30px rgba(249, 115, 22, 0.24);
}

.btn-search:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 38px rgba(249, 115, 22, 0.3);
}

/* Featured Properties Section */
.featured-properties {
    padding: 70px 20px;
    background-color: var(--bg-white);
    margin-bottom: 70px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.featured-properties h2 {
    font-size: 2.6rem;
    margin-bottom: 10px;
    color: var(--primary-color);
    letter-spacing: -0.02em;
}

.section-subtitle {
    color: var(--text-light);
    margin-bottom: 38px;
    font-size: 1.05rem;
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 26px;
    margin-bottom: 40px;
}

.property-card {
    background-color: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    cursor: pointer;
    border: 1px solid var(--border-color);
}

.property-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: var(--shadow-large);
    border-color: rgba(14, 165, 233, 0.35);
}

.property-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.14), rgba(244, 63, 94, 0.16)),
        linear-gradient(120deg, #e5e7eb, #f8fafc);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    font-size: 0.9rem;
}

.property-content {
    padding: 22px;
}

.property-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.tag {
    background: linear-gradient(120deg, rgba(14, 165, 233, 0.14), rgba(14, 165, 233, 0.26));
    color: var(--primary-color);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    border: 1px solid rgba(14, 165, 233, 0.35);
}

.property-card h3 {
    color: var(--primary-color);
    margin-bottom: 8px;
    font-size: 1.1rem;
    letter-spacing: -0.01em;
}

.property-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 12px;
}

.property-details {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 16px;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 12px;
    align-items: center;
}

.property-detail {
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    min-width: fit-content;
}

.see-more {
    text-align: center;
}

.btn-primary {
    display: inline-block;
    background: var(--gradient-button);
    color: white;
    padding: 15px 40px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 16px 38px rgba(244, 63, 94, 0.25);
    letter-spacing: 0.01em;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 48px rgba(244, 63, 94, 0.32);
}

.cta-button {
    background: var(--gradient-button) !important;
    color: white !important;
    padding: 10px 20px !important;
    border-radius: 10px !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease !important;
    box-shadow: 0 12px 30px rgba(249, 115, 22, 0.2) !important;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 38px rgba(249, 115, 22, 0.28) !important;
}

/* Why Choose Section */
.why-choose {
    padding: 70px 20px;
    background: radial-gradient(circle at 15% 20%, rgba(14, 165, 233, 0.08), transparent 30%),
        radial-gradient(circle at 80% 10%, rgba(249, 115, 22, 0.06), transparent 28%),
        var(--bg-light);
    border-radius: 20px;
}

.why-choose h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--primary-color);
    letter-spacing: -0.02em;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-card {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 14px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid var(--border-color);
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-large);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.benefit-card h3 {
    color: var(--primary-color);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.benefit-card p {
    color: var(--text-light);
}

/* About Section - Sobre Nós */
.about-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.02) 0%, rgba(14, 165, 233, 0.06) 100%);
    border-radius: 20px;
    margin: 20px 0;
}

.about-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--primary-color);
    letter-spacing: -0.02em;
    text-align: center;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 50px;
    align-items: start;
}

.about-text p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.about-signature {
    margin-top: 30px;
    padding: 25px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e3a5f 100%);
    border-radius: 12px;
    color: white;
    text-align: center;
}

.about-signature strong {
    display: block;
    font-size: 1.3rem;
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

.about-signature span {
    font-size: 0.95rem;
    opacity: 0.9;
    font-style: italic;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 100px;
}

.highlight-item {
    background: var(--bg-white);
    padding: 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: transform 0.3s, box-shadow 0.3s;
}

.highlight-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-large);
}

.highlight-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(120deg, var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-text {
    color: var(--text-light);
    font-weight: 500;
    margin-top: 5px;
}

@media (max-width: 900px) {
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-highlights {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        position: static;
    }
    
    .highlight-item {
        flex: 1;
        min-width: 140px;
        max-width: 180px;
    }
}

@media (max-width: 600px) {
    .about-section h2 {
        font-size: 1.8rem;
    }
    
    .about-text p {
        font-size: 0.95rem;
        text-align: left;
    }
    
    .highlight-number {
        font-size: 2rem;
    }
}

/* How It Works Section */
.how-it-works {
    padding: 70px 20px;
    background-color: var(--bg-white);
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.how-it-works h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--primary-color);
    letter-spacing: -0.02em;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step {
    text-align: center;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #0ea5e9, #22d3ee);
    color: white;
    border-radius: 18px;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 12px 28px rgba(14, 165, 233, 0.25);
}

.step h3 {
    color: var(--primary-color);
    margin-bottom: 12px;
}

.step p {
    color: var(--text-light);
}

/* Contact Form Section */
.contact-form-section {
    padding: 70px 20px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.08), rgba(15, 23, 42, 0.08)), var(--bg-light);
    border-radius: 20px;
}

.contact-form-section h2 {
    font-size: 2.4rem;
    margin-bottom: 10px;
    color: var(--primary-color);
    letter-spacing: -0.02em;
}

.contact-form {
    max-width: 500px;
    margin: 40px auto 0;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
}

.contact-form button {
    width: 100%;
}

/* FAQ Section */
.faq-section {
    padding: 70px 20px;
    background-color: var(--bg-white);
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.faq-section h2 {
    font-size: 2.4rem;
    margin-bottom: 40px;
    color: var(--primary-color);
    text-align: center;
}

.faq-items {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-question {
    background-color: var(--bg-light);
    padding: 20px;
    cursor: pointer;
    color: var(--primary-color);
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s, color 0.3s;
}

.faq-question:hover {
    background-color: #edf2ff;
    color: var(--accent-color);
}

.faq-question::after {
    content: '▼';
    font-size: 0.8rem;
    transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 20px;
    display: none;
    background-color: var(--bg-white);
    color: var(--text-light);
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer ul {
    margin-left: 20px;
    margin-top: 10px;
}

.faq-answer li {
    margin-bottom: 8px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: #e2e8f0;
    padding: 50px 20px 30px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin-bottom: 40px;
}

/* Logo e Frase Atrativa */
.footer-brand {
    text-align: center;
    max-width: 100%;
}

.footer-logo {
    max-width: 180px;
    height: auto;
    margin: 0 auto 20px;
    display: block;
    filter: brightness(1.1);
}

.footer-tagline {
    font-size: 1rem;
    line-height: 1.6;
    color: #cbd5e1;
    margin: 0;
    font-weight: 400;
}

/* Seções do Footer */
.footer-section {
    text-align: center;
}

.footer-section h3 {
    margin-bottom: 18px;
    font-size: 1.15rem;
    font-weight: 600;
    color: #f1f5f9;
    letter-spacing: 0.02em;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: inline-block;
}

.footer-section a:hover {
    color: #ffffff;
    transform: translateX(3px);
}

/* Contato */
.footer-contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 14px;
}

.footer-icon {
    width: 20px;
    height: 20px;
    color: #0ea5e9;
    flex-shrink: 0;
}

.footer-contact-item a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-contact-item a:hover {
    color: #ffffff;
}

/* Redes Sociais */
.footer-social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 10px;
}

.social-icon {
    width: 42px;
    height: 42px;
    background: rgba(14, 165, 233, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(14, 165, 233, 0.3);
}

.social-icon svg {
    width: 20px;
    height: 20px;
    color: #0ea5e9;
    transition: color 0.3s ease;
}

.social-icon:hover {
    background: #0ea5e9;
    border-color: #0ea5e9;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.3);
}

.social-icon:hover svg {
    color: #ffffff;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.88rem;
    color: #94a3b8;
}

.footer-bottom p {
    margin-bottom: 8px;
}

.footer-bottom a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
    border-bottom: 1px solid transparent;
}

.footer-bottom a:hover {
    color: #ffffff;
    border-bottom-color: #ffffff;
}

/* Tablet e Desktop */
@media (min-width: 768px) {
    .footer {
        padding: 60px 30px 35px;
    }

    .footer-content {
        display: grid;
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 1200px;
        margin: 0 auto 50px;
    }

    .footer-brand {
        text-align: center;
        max-width: 500px;
        margin: 0 auto;
    }

    .footer-logo {
        max-width: 220px;
        margin-bottom: 22px;
    }

    .footer-tagline {
        font-size: 1.05rem;
    }

    /* Grid para menu, contato e redes sociais */
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        grid-template-areas: 
            "brand brand brand brand"
            ". menu contact social";
        text-align: left;
    }

    .footer-brand {
        grid-area: brand;
        text-align: center;
    }

    .footer-section:nth-child(2) {
        grid-area: menu;
        text-align: left;
    }

    .footer-section:nth-child(3) {
        grid-area: contact;
        text-align: left;
    }

    .footer-section:nth-child(4) {
        grid-area: social;
        text-align: left;
    }

    .footer-contact-item {
        justify-content: flex-start;
    }

    .footer-social-links {
        justify-content: flex-start;
    }

    .footer-section a:hover {
        transform: translateX(5px);
    }
}

@media (min-width: 1024px) {
    .footer-brand {
        max-width: 600px;
    }

    .footer-logo {
        max-width: 250px;
    }

    .footer-tagline {
        font-size: 1.1rem;
    }
}

/* Properties Page */

.properties-section {
    padding: 60px 20px 80px;
    background: radial-gradient(circle at 20% 20%, rgba(14, 165, 233, 0.08), transparent 30%), var(--bg-white);
    min-height: 100vh;
    border-radius: 20px;
}

.properties-section h1 {
    color: var(--primary-color);
    font-size: 2.6rem;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.pagination a,
.pagination span {
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s;
    background-color: #f8fafc;
}

.pagination a:hover {
    background: var(--gradient-button);
    color: white;
    border-color: transparent;
    box-shadow: 0 10px 24px rgba(249, 115, 22, 0.24);
}

.pagination .active {
    background: var(--gradient-button);
    color: white;
    border-color: transparent;
    box-shadow: 0 10px 24px rgba(249, 115, 22, 0.24);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    animation: none;
}

.whatsapp-icon {
    width: 60px;
    height: 60px;
    display: block;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .topbar-contact {
        padding: 8px 0;
    }
    
    .topbar-content {
        gap: 15px;
    }
    
    .topbar-item {
        font-size: 0.85rem;
    }
    
    .topbar-text {
        font-size: 0.9rem;
    }
    
    .topbar-icon {
        font-size: 1rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }

    .nav-menu ul {
        gap: 15px;
        font-size: 0.9rem;
    }

    .featured-properties h2,
    .why-choose h2,
    .how-it-works h2,
    .contact-form-section h2,
    .faq-section h2 {
        font-size: 1.8rem;
    }

    .properties-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .search-form {
        grid-template-columns: 1fr;
    }

    .btn-search {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .topbar-contact {
        padding: 6px 0;
    }
    
    .topbar-content {
        gap: 10px;
        justify-content: center;
    }
    
    .topbar-item {
        font-size: 0.8rem;
    }
    
    .topbar-text {
        font-size: 0.85rem;
    }
    
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .navbar-container {
        flex-direction: column;
        gap: 15px;
    }

    .properties-grid {
        grid-template-columns: 1fr;
    }

    .pagination {
        gap: 5px;
    }

    .pagination a,
    .pagination span {
        padding: 8px 12px;
        font-size: 0.9rem;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-icon {
        font-size: 1.5rem;
    }
}

/* =============================================================================
   SEO: Estilos para elementos de SEO - FAQ, Bairros, Breadcrumb
   Adicionado para otimização de conteúdo e conversão
   ============================================================================= */

/* SEO: Classe para elementos visualmente ocultos mas acessíveis */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* SEO: Hero Subtitle */
.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 20px auto 0;
    line-height: 1.7;
    font-weight: 400;
}

.hero-subtitle strong {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

/* SEO: Breadcrumb Navigation */
.breadcrumb {
    margin-bottom: 25px;
    padding: 0;
}

.breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.breadcrumb li::after {
    content: '›';
    margin-left: 8px;
    color: var(--text-light);
}

.breadcrumb li:last-child::after {
    content: '';
}

.breadcrumb a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* SEO: Section Intro Text */
.section-intro {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 900px;
}

.section-intro strong {
    color: var(--primary-color);
}

/* SEO: FAQ Section Styles */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
}

.faq-section h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 15px;
    letter-spacing: -0.02em;
}

.faq-section .section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-white);
    border-radius: 12px;
    margin-bottom: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-large);
}

.faq-item summary {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    user-select: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item summary h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.4;
}

.faq-answer {
    padding: 0 25px 25px;
    color: var(--text-light);
    line-height: 1.8;
}

.faq-answer p {
    margin-bottom: 15px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul,
.faq-answer ol {
    margin: 15px 0;
    padding-left: 25px;
}

.faq-answer li {
    margin-bottom: 8px;
}

.faq-answer strong {
    color: var(--primary-color);
}

.faq-answer a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
}

.faq-answer a:hover {
    text-decoration: underline;
}

/* SEO: Neighborhoods/Bairros Section */
.neighborhoods-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.neighborhoods-section h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 15px;
    letter-spacing: -0.02em;
}

.neighborhoods-section .section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}

.neighborhoods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.neighborhood-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 25px;
    text-decoration: none;
    color: inherit;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.neighborhood-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-large);
    border-color: var(--secondary-color);
}

.neighborhood-card h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.neighborhood-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.neighborhood-cta {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.2s;
}

.neighborhood-card:hover .neighborhood-cta {
    gap: 10px;
}

/* SEO: Responsive styles for new elements */
@media (max-width: 768px) {
    .hero-subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-section h2 {
        font-size: 1.6rem;
    }
    
    .faq-item summary {
        padding: 18px 20px;
    }
    
    .faq-item summary h3 {
        font-size: 0.95rem;
    }
    
    .faq-answer {
        padding: 0 20px 20px;
    }
    
    .neighborhoods-section {
        padding: 60px 0;
    }
    
    .neighborhoods-section h2 {
        font-size: 1.6rem;
    }
    
    .neighborhoods-grid {
        grid-template-columns: 1fr;
    }
    
    .breadcrumb {
        margin-bottom: 20px;
    }
    
    .breadcrumb ol {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .faq-item summary h3 {
        font-size: 0.9rem;
    }
    
    .neighborhood-card {
        padding: 20px;
    }
}
