:root {
    --primary: #22C55E;          /* Verde moderno vibrante */
    --primary-hover: #16A34A;    /* Verde mais forte no hover */

    --secondary: #0F172A;        /* Azul escuro elegante */
    --secondary-light: #1E293B;

    --accent: #10B981;           /* Verde água moderno */

    --background: #F8FAFC;       /* Fundo clean */
    --surface: #FFFFFF;

    --text-main: #0F172A;
    --text-muted: #64748B;
    --text-inverted: #FFFFFF;

    --border: #E2E8F0;

    --success: #22C55E;
    --error: #EF4444;

    --font-heading: 'Manrope', sans-serif;
    --font-body: 'Inter', sans-serif;

    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1.25rem;

    --shadow-card: 0 4px 6px -1px rgba(34, 197, 94, 0.05),
                   0 2px 4px -1px rgba(34, 197, 94, 0.03);

    --shadow-card-hover: 0 10px 15px -3px rgba(34, 197, 94, 0.08),
                         0 4px 6px -2px rgba(34, 197, 94, 0.04);

    --shadow-floating: 0 20px 25px -5px rgba(34, 197, 94, 0.1),
                       0 10px 10px -5px rgba(34, 197, 94, 0.04);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-main);
    background-color: var(--background);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;

      color: var(--text-inverted); /* Branco */
}



.btn-primary:hover {
    background-color: var(--primary-hover);
    color: var(--text-inverted); /* Mantém branco */
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.logo-subtitle {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--secondary);
    letter-spacing: 0.1em;
}

.logo a img{
    object-fit: cover;
    width: 200px;
    height:50px;
}

.nav-list {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    color: var(--text-main);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-contact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    border: 2px solid var(--secondary);
    border-radius: var(--radius-sm);
    font-weight: 600;
    color: var(--secondary);
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background: var(--secondary);
    color: var(--surface);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--secondary);
}


/* Hero Section */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    background-image: 
    linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%),
    url('images/slider2.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;

    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 24, 39, 0.5);
    z-index: 2;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 3;
}

.hero-content {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 1rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-inverted);
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    max-width: 600px;
    margin: 0 auto;
}

/* Search Wrapper */
.search-wrapper {
    position: relative;
    z-index: 3;
    margin-top: auto;
    padding-bottom: 3rem;
}

/* Search Box - Desktop */
.search-box {
    max-width: 800px;
    margin: 0 auto;
    background: var(--surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-floating);
    padding: 2rem;
}

/* Search Tabs */
.search-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--border);
    padding-bottom: 0.5rem;
}

.search-tab {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-tab i {
    font-size: 1.25rem;
}

.search-tab:hover {
    background: var(--background);
    color: var(--text-main);
}

.search-tab.active {
    background: var(--primary);
    color: var(--secondary);
}

/* Search Form */
.search-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Search Grid - 3 colunas no desktop */
.search-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

/* Form Group */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-main);
}

.form-group select,
.form-group input {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-main);
    transition: all 0.3s ease;
}

.form-group select:focus,
.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 214, 0, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%236B7280' d='M4.427 6.427l3.396 3.396a.25.25 0 00.354 0l3.396-3.396A.25.25 0 0011.396 6H4.604a.25.25 0 00-.177.427z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

/* Search Button */
.btn-search {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--primary);
    color: #FFF;
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-search:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-card-hover);
}

.btn-search i {
    font-size: 1.5rem;
}

/* ==========================================
   RESPONSIVO - TABLET
   ========================================== */
@media (max-width: 768px) {
    .hero {
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    /* Grid com 2 colunas em tablet */
    .search-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .search-box {
        padding: 1.5rem;
    }
}

/* ==========================================
   RESPONSIVO - MOBILE
   ========================================== */
@media (max-width: 640px) {
    .hero {
        min-height: auto;
        padding-top: 80px;
    }
    
    /* Ocultar hero-content no mobile */
    .hero-content {
        display: none;
    }
    
    .search-wrapper {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    
    /* Search Box centralizado */
    .search-box {
        padding: 1.25rem;
        margin: 0 1rem;
    }
    
    /* Grid com 1 coluna - inputs 100% */
    .search-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Tabs responsivos */
    .search-tabs {
        flex-direction: row;
        justify-content: center;
    }
    
    .search-tab {
        flex: 1;
        justify-content: center;
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
    
    .search-tab i {
        font-size: 1.125rem;
    }
    
    /* Button responsivo */
    .btn-search {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        color:#fff;
    }
    
    .btn-search i {
        font-size: 1.25rem;
    }
}

/* Mobile pequeno */
@media (max-width: 375px) {
    .container {
        padding: 0 1rem;
    }
    
    .search-box {
        margin: 0 0.5rem;
        padding: 1rem;
    }
    
    .search-tab {
        padding: 0.625rem 0.75rem;
        font-size: 0.8125rem;
        gap: 0.25rem;
        color:#fff;
    }
}


/* Sections */
.section-properties,
.section-why,
.section-agents,
.section-contact {
    padding: 5rem 0 5rem;
}

.section-bg {
    background: var(--surface);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    margin-bottom: 0.75rem;
    color: var(--secondary);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
}

.section-properties{
    width:100%;
    padding: 60px 0;
}

/* Grid de imóveis */
.properties-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 4 colunas fixas */
    gap: 2rem;
    width: 100%;
}

/* Card ocupa 100% da coluna */


.property-card {
    width: 100%;
    background: var(--surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
}

.property-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
}

.property-images {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.property-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-imovel {
    width: 100% !important;
    height: 280px !important;
    object-fit: cover !important ; /* corta */
}

.property-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    background: var(--primary);
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: var(--radius-sm);
    z-index: 10;
}

.badge-rental {
    background: var(--accent);
    color: var(--surface);
}

.badge-sale {
    background: var(--accent);
    color: var(--surface);
}

.card-swiper .swiper-button-prev,
.card-swiper .swiper-button-next {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
}

.card-swiper .swiper-button-prev::after,
.card-swiper .swiper-button-next::after {
    font-size: 14px;
    color: var(--secondary);
    font-weight: 700;
}

.card-swiper .swiper-pagination-bullet {
    background: var(--surface);
    opacity: 0.7;
}

.card-swiper .swiper-pagination-bullet-active {
    background: var(--primary);
    opacity: 1;
}

.property-content {
    padding: 1.5rem;
}

.property-header {
    display: flex;
    flex-wrap:wrap;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.property-title {
    font-size: 1.2rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
    width:100%;
}

.property-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    white-space: nowrap;
}

.property-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.property-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 1.5rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.775rem;
    color: var(--text-muted);
}

.feature i {
    font-size: 1.25rem;
    color: var(--secondary);
}


.btn-details {
    display: block;
    text-align: center;
    padding: 0.875rem;
    background: var(--primary-hover);
    color: var(--text-inverted);
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-details:hover {
    background: var(--primary);
}

/* Why Section */
.section-why {
    background: var(--secondary);
    color: var(--text-inverted);
}

.section-why .section-title {
    color: var(--text-inverted);
}

.section-why .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.why-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--secondary-light);
    border-radius: var(--radius-lg);
    transition: transform 0.3s ease;
}

.why-card:hover {
    transform: translateY(-4px);
}

.why-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 50%;
}

.why-icon i {
    font-size: 2.5rem;
    color: var(--secondary);
}

.why-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-inverted);
}

.why-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Agents Section */
.agents-swiper {
    padding: 2rem 1rem;
}

.agent-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
}

.agent-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
}

.agent-image {
    height: 300px;
    overflow: hidden;
}

.agent-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.agent-content {
    padding: 1.5rem;
    text-align: center;
}

.agent-name {
    font-size: 1.375rem;
    margin-bottom: 0.375rem;
    color: var(--secondary);
}

.agent-role {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.agent-contact {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
}

.agent-phone,
.agent-email {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.625rem 1rem;
    background: var(--background);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 500;
    transition: background 0.3s ease;
}

.agent-phone:hover,
.agent-email:hover {
    background: var(--primary);
}

/* Contact Section */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info .section-title {
    text-align: left;
    margin-bottom: 1rem;
}

.contact-text {
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.5rem;
    color: var(--secondary);
}

.contact-item h4 {
    margin-bottom: 0.25rem;
    color: var(--secondary);
}

.contact-item a {
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary);
}

.contact-form {
    background: var(--surface);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem 2rem;
    background: var(--primary);
    color: var(--secondary);
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1.125rem;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: var(--primary-hover);
}

/* Footer */
.footer {
    background: var(--secondary);
    color: var(--text-inverted);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col .logo {
    margin-bottom: 1rem;
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.footer-title {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--text-inverted);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a, .footer-links li {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-links a:hover, .footer-links li:hover {
    color: var(--primary);
}

.footer-links i {
    margin-right: 0.5rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* Property Detail Page */
.property-detail {
    padding: 7rem 0 5rem;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    color: var(--text-muted);
    font-weight: 500;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: var(--primary);
}

.property-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 2rem;
}

.property-detail-title {
    font-size:2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.property-detail-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 1rem;
}

.property-detail-price {
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--primary);
    white-space: nowrap;
}

.property-gallery {
    margin-bottom: 3rem;
}

.gallery-main {
    height: 500px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 1rem;
    cursor: pointer;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-main:hover img {
    transform: scale(1.05);
}

/*
.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.gallery-thumbs a {
    height: 120px;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}

.gallery-thumbs img {
    width: 280px;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
*/

.gallery-thumbs {
    display: flex;
    flex-wrap:wrap;
    justify-content:flex-start;
    align-items:center;
    width:100%;
    gap: 1rem;
}

.gallery-thumbs a {
    height: 115px;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}

.gallery-thumbs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}


.gallery-thumbs a:hover img {
    transform: scale(1.1);
}


.property-detail-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
}

.property-features-large {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding: 2rem;
    background: var(--surface);
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    box-shadow: var(--shadow-card);
}

.feature-large {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-large i {
    font-size: 2.5rem;
    color: var(--primary);
}

.feature-value {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--secondary);
}

.feature-label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.property-description {
    background: var(--surface);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    box-shadow: var(--shadow-card);
}

.property-description h2 {
    margin-bottom: 1rem;
    color: var(--secondary);
}

.property-description p {
    margin-bottom: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.property-amenities {
    background: var(--surface);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

.property-amenities h2 {
    margin-bottom: 1.5rem;
    color: var(--secondary);
}

.amenities-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.amenities-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-main);
}

.amenities-list i {
    font-size: 1.25rem;
    color: var(--success);
}

.contact-card {
    background: var(--surface);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    margin-bottom: 2rem;
    position: sticky;
    top: 6rem;
}

.contact-card h3 {
    margin-bottom: 0.75rem;
    color: var(--secondary);
}

.contact-card > p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.quick-contact-form .form-group {
    margin-bottom: 1rem;
}

.quick-contact-form input,
.quick-contact-form textarea {
    width: 100%;
}

.contact-divider {
    text-align: center;
    color: var(--text-muted);
    margin: 1.5rem 0;
    position: relative;
}

.contact-divider::before,
.contact-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: var(--border);
}

.contact-divider::before {
    left: 0;
}

.contact-divider::after {
    right: 0;
}

.btn-whatsapp,
.btn-call {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.btn-whatsapp {
    background: #25D366;
    color: var(--surface);
}

.btn-whatsapp:hover {
    background: #20BA5A;
}

.btn-call {
    background: var(--secondary);
    color: var(--text-inverted);
}

.btn-call:hover {
    background: var(--secondary-light);
}

.agent-info-card {
    background: var(--surface);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

.agent-info-header {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.agent-info-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.agent-info-header h4 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
    color: var(--secondary);
}

.agent-info-header p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.agent-info-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.agent-info-details p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.agent-info-details i {
    color: var(--primary);
}

@media (max-width: 1200px){
    .properties-grid{
        grid-template-columns: repeat(3, 1fr);
    }
}


/* Responsive */ 
@media (max-width: 1024px) {
    .property-detail-content {
        grid-template-columns: 1fr;
    }
    
    .contact-card {
        position: static;
    }
    
    .property-features-large {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 992px){
    .properties-grid{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 5rem;
        left: -100%;
        width: 100%;
        background: var(--surface);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        padding: 2rem;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .btn-contact span {
        display: none;
    }


    .section-properties,
    .section-why,
    .section-agents,
    .section-contact {
        padding: 4rem 0 3rem;
    }
    
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .property-detail-header {
        flex-direction: column;
    }
    
    .gallery-main {
        height: 300px;
    }
    
    .property-features-large {
        grid-template-columns: 1fr;
    }
    
    .amenities-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px){
    .properties-grid{
        grid-template-columns: 1fr;
    }

    .gallery-thumbs a {
    width:calc(33.333% - 1rem);  
    height: 100px;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}


}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .search-tabs {
        flex-direction: column;
    }

    .search-tabs.active{
        
    }
    
    .property-header {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .property-price {
        font-size: 1.25rem;
    }
    
    .property-features {
        flex-direction: column;
    }
}


.pagination-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 60px 0;
    flex-wrap: wrap;
}

.page-btn {
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    border-radius: var(--radius-md);
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text-main);
    font-family: var(--font-body);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: var(--shadow-card);
}

.page-btn:hover {
    background: var(--primary);
    color: var(--secondary);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-card-hover);
}

.page-btn.active {
    background: var(--primary);
    color: var(--secondary);
    border-color: var(--primary);
    box-shadow: var(--shadow-floating);
}

.form-group textarea{
    font-size: 16px;        /* Tamanho da letra */
    line-height: 1.5;       /* Espaçamento entre linhas */
    padding: 12px;          /* Espaço interno */
    border-radius: 8px;     /* Cantos arredondados */
    border: 1px solid #ccc; /* Borda suave */
    resize: vertical;       /* Permite aumentar só na vertical */
}


 /* Estilos para Redes Sociais */
        .social-media-section {
            margin-top: 2px;
            padding-top: 2px;
        }

        .social-media-title {
            font-size: 1.125rem;
            font-weight: 600;
            color: var(--text-main);
            margin-bottom: 16px;
        }

        .social-media-links {
            display: flex;
            gap: 16px;
            align-items: center;
        }

        .social-icon-link {
            width: 48px;
            height: 48px;
            background-color: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .social-icon-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: var(--primary-hover);
            transform: scale(0);
            transition: transform 0.3s ease;
            border-radius: 50%;
        }

        .social-icon-link:hover::before {
            transform: scale(1);
        }

        .social-icon-link i {
            font-size: 24px;
            color: var(--secondary);
            position: relative;
            z-index: 1;
            transition: transform 0.3s ease;
        }

        .social-icon-link:hover i {
            transform: scale(1.1);
        }

        .social-icon-link:hover {
            box-shadow: 0 4px 12px rgba(255, 214, 0, 0.3);
            transform: translateY(-2px);
        }

        /* Responsividade */
        @media (max-width: 768px) {
            .section-title {
                font-size: 2rem;
            }

            .contact-text {
                font-size: 1rem;
            }

            .social-icon-link {
                width: 44px;
                height: 44px;
            }

            .social-icon-link i {
                font-size: 22px;
            }
        }


        /* =======================================
   SEÇÃO DE VÍDEO DO IMÓVEL
   ======================================= */
.property-video-section {
    background: var(--surface);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    margin-top: 2rem;
}

.property-video-section h2 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.video-description {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* Aspect ratio 16:9 */
    background: var(--secondary);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-card-hover);
}

.video-container iframe,
.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: var(--radius-md);
}

.video-container video {
    object-fit: cover;
}

/* Efeito hover no container */
.property-video-section:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

/* Responsivo - Tablet */
@media (max-width: 768px) {
    .property-video-section {
        padding: 1.5rem;
    }
    
    .property-video-section h2 {
        font-size: 1.5rem;
    }
    
    .video-description {
        font-size: 0.9375rem;
    }
}

/* Responsivo - Mobile */
@media (max-width: 480px) {
    .property-video-section {
        padding: 1.25rem;
    }
    
    .property-video-section h2 {
        font-size: 1.375rem;
    }
    
    .video-description {
        font-size: 0.875rem;
        margin-bottom: 1rem;
    }
    
    .video-container {
        border-radius: var(--radius-sm);
    }
}

/* =======================================
   PÁGINA DE POLÍTICA DE PRIVACIDADE
   ======================================= */
.privacy-policy-section {
    padding: 8rem 0 5rem;
    background: var(--background);
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 3px solid var(--primary);
}

.privacy-header h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.privacy-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 500;
}

.privacy-intro {
    background: var(--surface);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary);
    margin-bottom: 3rem;
    box-shadow: var(--shadow-card);
}

.privacy-intro p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-main);
    margin: 0;
}

.privacy-section {
    background: var(--surface);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
}

.privacy-section:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-2px);
}

.privacy-section h2 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.privacy-section h2 i {
    font-size: 2rem;
    color: var(--primary);
}

.privacy-section h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--secondary);
    margin: 1.5rem 0 1rem 0;
}

.privacy-section p {
    color: var(--text-main);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.privacy-section p a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: underline;
}

.privacy-section p a:hover {
    color: var(--primary-hover);
}

.privacy-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.privacy-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: var(--text-main);
    line-height: 1.6;
}

.privacy-list li i {
    font-size: 1.25rem;
    color: var(--success);
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.privacy-list li strong {
    color: var(--secondary);
    font-weight: 600;
}

.privacy-contact-box {
    background: var(--background);
    padding: 2rem;
    border-radius: var(--radius-md);
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item-privacy {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item-privacy i {
    font-size: 2rem;
    color: var(--primary);
    margin-top: 0.25rem;
}

.contact-item-privacy strong {
    display: block;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-item-privacy p {
    color: var(--text-muted);
    margin: 0;
}

.contact-item-privacy a {
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.contact-item-privacy a:hover {
    color: var(--primary);
}

.privacy-consent {
    background: var(--primary);
    padding: 2rem;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-top: 3rem;
}

.privacy-consent i {
    font-size: 3rem;
    color: var(--secondary);
    flex-shrink: 0;
}

.privacy-consent p {
    color: var(--secondary);
    font-size: 1.125rem;
    line-height: 1.7;
    font-weight: 500;
    margin: 0;
}

/* Responsivo - Tablet */
@media (max-width: 768px) {
    .privacy-policy-section {
        padding: 6rem 0 4rem;
    }
    
    .privacy-header h1 {
        font-size: 2.25rem;
    }
    
    .privacy-intro {
        padding: 1.5rem;
    }
    
    .privacy-intro p {
        font-size: 1rem;
    }
    
    .privacy-section {
        padding: 2rem;
    }
    
    .privacy-section h2 {
        font-size: 1.5rem;
    }
    
    .privacy-section h2 i {
        font-size: 1.75rem;
    }
    
    .privacy-contact-box {
        padding: 1.5rem;
    }
}

/* Responsivo - Mobile */
@media (max-width: 480px) {
    .privacy-policy-section {
        padding: 5rem 0 3rem;
    }
    
    .privacy-header {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }
    
    .privacy-header h1 {
        font-size: 1.875rem;
    }
    
    .privacy-intro {
        padding: 1.25rem;
        margin-bottom: 2rem;
    }
    
    .privacy-intro p {
        font-size: 0.9375rem;
    }
    
    .privacy-section {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .privacy-section h2 {
        font-size: 1.25rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .privacy-section h3 {
        font-size: 1.125rem;
    }
    
    .privacy-list li {
        font-size: 0.9375rem;
    }
    
    .privacy-contact-box {
        padding: 1.25rem;
        gap: 1.25rem;
    }
    
    .contact-item-privacy {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .contact-item-privacy i {
        font-size: 1.75rem;
    }
    
    .privacy-consent {
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .privacy-consent i {
        font-size: 2.5rem;
    }
    
    .privacy-consent p {
        font-size: 1rem;
    }
}


.ver_todos{
    padding:2rem;
    display:flex;
    justify-content:center !important;
    align-items:center;
    flex-wrap:wrap;
    width:100%;
}