/* ========================================
   Loca Fácil - Estilos do Site
   ======================================== */

/* Variáveis CSS */
:root {
    --primary-color: #1a5f4a;
    --primary-dark: #134536;
    --primary-light: #2a7d6a;
    --secondary-color: #3498db;
    --accent-color: #2ecc71;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --gradient-start: #1a5f4a;
    --gradient-end: #3498db;
    --shadow-light: 0 4px 15px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 25px rgba(0, 0, 0, 0.12);
    --border-radius: 12px;
    --border-radius-sm: 8px;
    --transition: all 0.3s ease;
}

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Tipografia */
h1, h2, h3 {
    font-weight: 600;
    line-height: 1.3;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 15px auto 0;
    border-radius: 2px;
}

/* ========================================
   Header - Sticky
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    height: 80px;
}

.header.shrink {
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.header.shrink .logo-text {
    font-size: 1.3rem;
}

.header.shrink .logo-icon {
    font-size: 1.5rem;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    transition: var(--transition);
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-dark);
}

.logo-img {
    height: 80px;
    width: auto;
    transition: var(--transition);
}

.header.shrink .logo-img {
    height: 55px;
}

.logo-img-footer {
    height: 130px;
    width: auto;
    margin-bottom: 15px;
}


.logo-accent {
    color: var(--primary-color);
}

/* Navegação */
.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

/* ========================================
   Botão do WhatsApp no Menu
   ======================================== */
.nav-whatsapp {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #25D366; /* Cor oficial do WhatsApp */
    color: #ffffff;
    padding: 8px 18px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

.nav-whatsapp:hover {
    background-color: #128C7E; /* Verde mais escuro ao passar o mouse */
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    padding: 5px 0;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover::after {
    width: 100%;
}

/* Menu Toggle Mobile */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: var(--transition);
}


/* ========================================
   Hero Section
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 50px 80px;
    
    
    background-image: url('https://i.postimg.cc/SsPBF7sX/Fundo-Loca-Facil.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    overflow: hidden;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-logo {
    position: absolute;
    top: -150px; /* Distância do topo da tela (logo abaixo do menu branco) */
    left: 50%; /* Joga a logo para o meio */
    transform: translateX(-50%); /* Centraliza ela perfeitamente */
    height: 150px; /* Tamanho da logo */
    width: auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 5px 5px 15px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 2rem;
    text-shadow: 5px 5px 10px rgba(0, 0, 0, 0.9) !important;
}

/* Botões */
.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(26, 95, 74, 0.3);
    border: 2px solid #ffffff;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26, 95, 74, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary-color), #5dade2);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
}

/* ========================================
   Carrossel de Imóveis
   ======================================== */
.imoveis-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.carousel-track-container {
    overflow: hidden;
    border-radius: var(--border-radius);
}

.carousel-track {
    display: flex;
    list-style: none;
    transition: transform 0.5s ease;
}

.carousel-slide {
    min-width: 100%;
    padding: 10px;
}

.property-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.property-image {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.property-card:hover .property-image img {
    transform: scale(1.1);
}

.property-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.property-info {
    padding: 20px;
}

.property-info h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.property-location {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.property-location i {
    color: var(--primary-color);
    margin-right: 5px;
}

.property-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.property-features {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: var(--text-light);
}

.property-features span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.property-features i {
    color: var(--primary-color);
}

/* Setas do Carrossel */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-dark);
}

.carousel-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

.prev-btn {
    left: -25px;
}

.next-btn {
    right: -25px;
}

/* Indicadores */
.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.carousel-indicator.current-slide {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* ========================================
   Seção Institucional
   ======================================== */
.institutional-section {
    padding: 80px 0;
    background: var(--white);
}

.institutional-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.institutional-text {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.institutional-text strong {
    color: var(--primary-color);
}

.institutional-highlight {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.institutional-list {
    text-align: left;
    background: #f8fffe;
    padding: 25px 30px;
    border-radius: var(--border-radius);
    margin: 25px 0;
    border-left: 4px solid var(--primary-color);
}

.institutional-list p {
    margin-bottom: 10px;
    color: var(--text-dark);
}

.institutional-list p:first-child {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.institutional-cta {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-top: 25px;
}

/* ========================================
   Serviços
   ======================================== */
.services-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fffe 0%, #e8f4f8 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ========================================
   Seção Contato
   ======================================== */
.contact-section {
    padding: 80px 0;
    background: var(--white);
}

.contact-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-info {
    max-width: 500px;
}

.contact-card {
    margin-bottom: 30px;
}

.contact-card h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.creci {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    padding: 15px;
    background: var(--light-bg);
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
}

.contact-item:hover {
    background: #f0f5f3;
    transform: translateX(5px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.3rem;
    color: var(--white);
}

.contact-text {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 0.85rem;
    color: var(--text-light);
}

.contact-value {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
}

/* QR Code */
.qr-code-section {
    text-align: center;
}

.qr-code {
    width: 150px;
    height: 150px;
    background: var(--white);
    padding: 15px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    border: 3px solid var(--primary-color);
}

.qr-code img {
    width: 100%;
    height: 100%;
}

.qr-label {
    margin-top: 15px;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ========================================
   Artigos/Dicas
   ======================================== */
.articles-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.article-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.article-image {
    height: 200px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.article-card:hover .article-image img {
    transform: scale(1.1);
}

.article-content {
    padding: 25px;
}

.article-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.article-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

.article-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.article-link:hover {
    color: var(--secondary-color);
}

.article-link i {
    font-size: 0.8rem;
}

/* ========================================
   Botão "Saiba mais" - Cards de Imóveis
   ======================================== */
.btn-saiba-mais {
    display: inline-block;
    width: 100%;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(26, 95, 74, 0.3);
    margin-top: 15px;
}

.btn-saiba-mais:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 95, 74, 0.4);
}

.btn-saiba-mais:active {
    transform: translateY(0);
}

/* ========================================
   Página de Detalhes do Imóvel
   ======================================== */
.property-detail-page {
    display: none;
    padding: 100px 0 50px;
    min-height: 100vh;
    background: var(--light-bg);
    animation: fadeIn 0.5s ease;
}

.property-detail-page.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 20px;
    padding: 10px 20px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.back-button:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Galeria de Imagens */
.detail-gallery {
    position: relative;
    margin-bottom: 30px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.detail-gallery-main {
    width: 100%;
    height: 700px;
    background: #1F2937;
}

.detail-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-gallery-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.gallery-nav-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    pointer-events: auto;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.gallery-nav-btn:hover {
    background: var(--white);
    transform: scale(1.1);
}

/* Conteúdo dos Detalhes */
.detail-content {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
}

.detail-main {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

.detail-title {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.detail-location {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 20px;
}

.detail-features {
    display: flex;
    gap: 30px;
    padding: 20px;
    background: var(--light-bg);
    border-radius: 10px;
    margin-bottom: 25px;
}

.detail-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
    font-weight: 500;
}

.detail-feature i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.detail-description {
    margin-bottom: 25px;
}

.detail-description h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.detail-description p {
    color: var(--text-light);
    line-height: 1.8;
}

.detail-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.detail-info-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.detail-info-label {
    font-size: 0.85rem;
    color: var(--text-light);
}

.detail-info-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* Card Lateral */
.detail-sidebar {
    position: sticky;
    top: 100px;
}

.detail-price-card {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: var(--border-radius);
    padding: 30px;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(26, 95, 74, 0.3);
}

.detail-price-label {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 5px;
}

.detail-price-value {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.detail-price-info {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.detail-price-info p {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.detail-price-info span:first-child {
    opacity: 0.8;
}

.btn-contact-whatsapp {
    display: block;
    width: 100%;
    padding: 15px;
    background: var(--accent-color);
    color: var(--white);
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.4);
}

.btn-contact-whatsapp:hover {
    background: #27AE60;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 204, 113, 0.5);
}

/* Responsividade da Página de Detalhes */
@media (max-width: 992px) {
    .detail-content {
        grid-template-columns: 1fr;
    }
    
    .detail-sidebar {
        position: static;
    }
    
    .detail-gallery-main {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .detail-features {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .detail-feature {
        min-width: 45%;
    }
    
    .detail-info-grid {
        grid-template-columns: 1fr;
    }
    
    .detail-title {
        font-size: 1.4rem;
    }
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--text-dark);
    padding: 20px 0 30px;
}

.footer-content {
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-logo .logo-icon {
    color: var(--white);
}

.footer-logo .logo-text {
    color: var(--white);
    font-size: 1.5rem;
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* ========================================
   Responsividade
   ======================================== */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 20px;
        box-shadow: var(--shadow-medium);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-link {
        display: block;
        padding: 10px;
    }
    
    .hero {
        padding: 100px 20px 60px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .prev-btn {
        left: 10px;
    }
    
    .next-btn {
        right: 10px;
    }
    
    .contact-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    
    .qr-code-section {
        order: -1;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.7rem;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
    
    .services-grid,
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .property-features {
        flex-direction: column;
        gap: 8px;
    }
}
/* ========================================
   Área de Busca (Search Box)
   ======================================== */
.search-box {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    margin-top: 40px;
    text-align: left;
    width: 100%;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 10;
}

.search-title {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-title i {
    color: var(--text-dark);
}

.search-basic {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
}

.form-group {
    flex: 1;
    min-width: 200px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: var(--border-radius-sm);
    font-family: inherit;
    color: #555;
    font-size: 0.95rem;
    background-color: var(--white);
    transition: var(--transition);
    outline: none;
    appearance: none; /* Remove seta padrão do select em alguns navegadores */
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 15px;
}

input.form-control {
    background-image: none; /* Remove a setinha se for campo de texto */
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(26, 95, 74, 0.2);
}

.search-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-search {
    background: #2c3e50; /* Cor escura da imagem */
    color: white;
    padding: 12px 25px;
}

.btn-search:hover {
    background: #1a252f;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(44, 62, 80, 0.3);
}

.btn-advanced-toggle {
    background: #34495e; /* Um pouco mais claro */
    color: white;
    padding: 12px 25px;
}

.btn-advanced-toggle:hover {
    background: #2c3e50;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(52, 73, 94, 0.3);
}

/* --- Busca Avançada Oculta/Exibida --- */
.search-advanced {
    display: none; /* Fica escondido por padrão */
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.search-advanced.active {
    display: grid; /* Aparece quando a classe active é adicionada */
    animation: slideDown 0.3s ease forwards;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsividade da Busca */
@media (max-width: 768px) {
    .search-basic {
        flex-direction: column;
    }
    .form-group {
        width: 100%;
    }
    .search-buttons {
        width: 100%;
        flex-direction: column;
    }
    .search-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}


.developer-signature {
    margin-top: 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px; /* Espaço mínimo entre o texto e a logo */
}

.developer-signature p {
    color: #9ba4b5; 
    font-size: 0.85rem;
    margin: 0;
}

.developer-info {
    display: flex;
    align-items: center;
    gap: 10px; /* Espaço entre a sua logo e o WhatsApp */
}

.developer-logo {
    height: 50px !important; /* Forçando o tamanho máximo */
    width: auto !important;
}

.developer-info a {
    color: #9ba4b5; 
    font-size: 1.5rem; 
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.developer-info a:hover {
    color: var(--accent-color); 
    transform: translateY(-3px);
}

/* ========================================
   Ajuste de Largura do Cabeçalho
   ======================================== */
.header .container {
    max-width: 95%; /* Faz o cabeçalho esticar quase até a borda da tela */
}

.nav-menu {
    margin-left: auto; /* Força todo o bloco do menu a ser empurrado para a direita */
}