/* Global Styles */
:root {
    --primary-color: #B16A44; /* Marrom queimado */
    --secondary-color: #7A8561; /* Verde oliva */
    --dark-color: #333; /* Mantido para contraste com texto escuro */
    --light-color: #E8E3D8; /* Bege claro */
    --white: #F5F2EB; /* Off-white / creme */
    --black: #000;
    --gray: #777;
    --light-gray: #eaeaea;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.container-full {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.btn {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-weight: 600;
}

.btn:hover {
    background: var(--secondary-color);
    color: var(--white);
}

.section-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
    color: var(--primary-color);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--secondary-color);
}

/* Top Bar */
.top-bar {
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.9rem;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info span {
    margin-right: 15px;
}

.contact-info i {
    margin-right: 5px;
}

.social-icons a {
    color: var(--white);
    margin-left: 10px;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--secondary-color);
}

/* Header */
.header {
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    background: var(--secondary-color);
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Ajustes de logo */
#logo.catalogo-logo { 
    display: flex; 
    align-items: center; 
    gap: 15px; 
    position: relative;
    padding: 10px 15px;
    background: var(--secondary-color);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

#logo.catalogo-logo:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.logo__bg { display:none; }
.logo-dark { 
    height: 70px !important; 
    width: auto !important; 
    display: block; 
    object-fit: contain;
    filter: drop-shadow(0 3px 8px rgba(0,0,0,0.2));
    transition: all 0.3s ease;
    border-radius: 8px;
}

.logo-dark:hover {
    filter: drop-shadow(0 5px 12px rgba(0,0,0,0.25));
    transform: scale(1.05);
}
.logo-creci { margin-left: 6px; margin-top: 2px; font-size: 0.9rem; font-weight: 700; color: #2d2d2d; letter-spacing: 0.6px; opacity: 0.95; }
.logo h1 { font-size: 1.8rem; color: var(--primary-color); }
.logo h1 span { color: var(--primary-color); }

/* Credenciais do logo */
.logo-credentials {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-left: 0;
    padding: 10px 15px;
    background: transparent;
    border-radius: 10px;
    border-left: 4px solid var(--white);
    font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
    transition: all 0.3s ease;
}

.logo-credentials:hover {
    border-left-color: var(--light-color);
}

.credential-group {
    display: flex;
    flex-direction: column;
    gap: 1px;
    line-height: 1.2;
    position: relative;
}

.credential-group:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, #e0e6ed 0%, transparent 100%);
}

.credential-title {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 1px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.credential-number {
    font-size: 0.64rem;
    font-weight: 600;
    color: var(--light-color);
    letter-spacing: 0.4px;
    margin-left: 1px;
    font-family: 'Courier New', monospace;
    background: rgba(255, 255, 255, 0.2);
    padding: 1px 4px;
    border-radius: 3px;
    display: inline-block;
    max-width: fit-content;
}

.main-nav ul {
    display: flex;
}

.main-nav ul li {
    margin-left: 20px;
}

.main-nav ul li a {
    color: var(--white);
    font-weight: 600;
    transition: color 0.3s ease;
}

.main-nav ul li a:hover {
    color: var(--primary-color);
}

.main-nav ul li a.active {
    color: var(--primary-color);
    font-weight: 700;
}

.mobile-menu {
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
    color: var(--white);
}

/* Home Slider - Estilo Attuale */
.home-slider {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 420px;
    background: #f7f7f7;
    padding: 40px 0 20px 0;
}

.slick-custom-wrapper {
    position: relative;
}

.slick-main {
    width: 100%;
    margin: 0 auto;
}

.slick-list, .slick-track {
    height: 100%;
}

.slick-slide {
    position: relative;
    height: 100%;
    outline: none;
}

.slick-main__banner {
    display: block;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    text-decoration: none;
}

.slick-main__text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slick-main__opacity {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 100%);
}

.slick-main__container {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--secondary-color);
    max-width: 800px;
    padding: 0 20px;
}

.slick-main__flex-group {
    margin-bottom: 30px;
}

.slick-main__title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    line-height: 1.2;
}

.slick-main__residential {
    font-size: 1.3rem;
    color: var(--light-color);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    font-weight: 600;
}

.slick-main__residential i {
    color: var(--white);
    font-size: 1.4rem;
}

.slick-main__simple-text {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    opacity: 0.9;
}

/* Botão Customizado no estilo Attuale */
.btn-custom {
    position: relative;
    display: inline-block;
    padding: 15px 30px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    background: none;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-custom__grey {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid white;
    transition: all 0.3s ease;
}

.btn-custom__grey--green {
    border-color: var(--secondary-color);
    opacity: 0;
    transform: scale(0.8);
}

.btn-custom__grey-line {
    position: absolute;
    background: white;
    transition: all 0.3s ease;
}

.btn-custom__grey-line--top-bottom {
    width: 2px;
    height: 0;
    left: 50%;
    transform: translateX(-50%);
}

.btn-custom__grey-line--top {
    top: 0;
}

.btn-custom__grey-line--bottom {
    bottom: 0;
}

.btn-custom__grey-line--left {
    width: 0;
    height: 2px;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}

.btn-custom__grey-line--right {
    width: 0;
    height: 2px;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
}

.btn-custom:hover .btn-custom__grey--green {
    opacity: 1;
    transform: scale(1);
}

.btn-custom:hover .btn-custom__grey-line--top-bottom {
    height: 100%;
}

.btn-custom:hover .btn-custom__grey-line--left,
.btn-custom:hover .btn-custom__grey-line--right {
    width: 100%;
}

/* Slick Dots */
.slick-dots {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.slick-dots li {
    display: inline-block;
}

.slick-dots button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.5);
    text-indent: -9999px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.slick-dots li button:before {
    font-size: 14px;
    color: #4CAF50;
    opacity: 0.7;
}

.slick-dots li.slick-active button:before {
    color: #388e3c;
    opacity: 1;
}

.slick-dots .slick-active button {
    background: var(--secondary-color);
}

/* Custom Arrows */
.custom-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.3);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-arrows:hover {
    background: var(--primary-color);
}

.custom-arrows--prev {
    left: 30px;
}

.custom-arrows--next {
    right: 30px;
}

.custom-arrows__img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.force-img-white {
    filter: brightness(0) invert(1) !important;
}

/* Search Box */
.search-box {
    background: var(--white);
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.search-box form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--light-gray);
    border-radius: 5px;
}

.btn-search {
    background: var(--secondary-color);
    color: var(--white);
    width: 100%;
}

/* Featured Properties */
.featured-properties {
    padding: 80px 0;
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.property-card {
    background: var(--white);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    position: relative;
}

.property-card:hover {
    transform: translateY(-10px);
}

.property-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 3px;
    font-weight: 600;
    font-size: 0.8rem;
    z-index: 1;
}

.property-card img {
    height: 200px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.property-card:hover img {
    transform: scale(1.05);
}

.property-info {
    padding: 20px;
}

.property-info h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.property-info h3 a {
    color: inherit;
    text-decoration: none;
}

.property-info h3 a:hover {
    color: var(--secondary-color);
}

.property-address {
    color: var(--gray);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.property-residential {
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.property-residential i {
    color: var(--primary-color);
    font-size: 1rem;
}

.property-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    color: var(--gray);
    font-size: 0.9rem;
}

.property-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.view-all {
    text-align: center;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: var(--light-color);
}

.about-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image img {
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.about-content p {
    margin-bottom: 20px;
}

/* Services */
.services {
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: var(--light-color);
    text-align: center;
}

.testimonial {
    background: var(--white);
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    max-width: 800px;
    margin: 0 auto;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 20px;
}

.client-info h4 {
    color: var(--primary-color);
}

/* Contact CTA */
.contact-cta {
    position: relative;
    padding: 80px 0;
    text-align: center;
    color: var(--white);
    background: url('../images/contato.png') center/cover no-repeat fixed;
    min-height: 320px;
}

.contact-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.contact-cta .container {
    position: relative;
    z-index: 1;
}

.contact-cta h2 {
    margin-bottom: 15px;
    font-size: 2rem;
}

.contact-cta p {
    margin-bottom: 25px;
    font-size: 1.05rem;
}

@media (max-width: 768px) {
    .contact-cta {
        background-attachment: scroll; /* melhora desempenho e compatibilidade em mobile */
        padding: 60px 0;
    }
}

/* Footer */
.footer {
    background: var(--primary-color); /* Mantém cor original da marca */
    color: #ffffff; /* Branco puro para máximo contraste */
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #ffffff; /* Títulos em branco para destaque */
    font-weight: 700; /* Mais peso para melhor visibilidade */
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3); /* Sombra sutil para destaque */
}

.footer-col p {
    margin-bottom: 20px;
    color: #f5f5f5; /* Branco suave para melhor leitura */
    font-weight: 500; /* Peso ligeiramente maior */
    line-height: 1.7; /* Espaçamento aumentado */
    text-shadow: 0px 1px 1px rgba(0,0,0,0.2); /* Sombra sutil */
}

.footer-social a {
    display: inline-block;
    color: #ffffff;
    background: rgba(0,0,0,0.3); /* Fundo escuro translúcido */
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.2); /* Borda sutil */
}

.footer-social a:hover {
    background: var(--secondary-color); /* Hover na cor secundária */
    color: #ffffff;
    transform: translateY(-2px);
    border-color: rgba(255,255,255,0.5);
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #f5f5f5; /* Branco suave para links */
    transition: color 0.3s ease;
    font-weight: 600; /* Peso maior para melhor visibilidade */
    text-decoration: none;
    text-shadow: 0px 1px 1px rgba(0,0,0,0.2);
}

.footer-col ul li a:hover {
    color: #ffffff; /* Branco puro no hover */
    text-shadow: 1px 1px 2px rgba(0,0,0,0.4);
}

.contact-info li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    color: var(--secondary-color); /* Verde oliva do carrossel para melhor visibilidade */
    font-weight: 600; /* Peso maior para melhor leitura */
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.4); /* Sombra mais forte para contraste */
}

.contact-info i {
    margin-right: 12px;
    margin-top: 2px;
    color: var(--light-color); /* Bege claro do carrossel para ícones */
    min-width: 18px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.4); /* Sombra mais forte para destaque */
}

.footer-bottom {
    background: rgba(0,0,0,0.4); /* Fundo escuro translúcido */
    padding: 20px 0;
    text-align: center;
    color: #ffffff; /* Branco para o copyright */
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.4);
}

/* Page Header */
.page-header {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/properties-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
    color: var(--white);
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

/* Property Filters */
.property-filters {
    padding: 30px 0;
    background: var(--light-color);
}

.filter-form {
    background: var(--white);
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.filter-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    align-items: end;
}

.filter-group {
    margin-bottom: 0;
}

.filter-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
}

.filter-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--light-gray);
    border-radius: 5px;
}

.btn-filter {
    background: var(--primary-color);
    color: var(--white);
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-filter:hover {
    background: var(--secondary-color);
    color: var(--white);
}

.btn-clear {
    display: inline-block;
    width: 100%;
    text-align: center;
    margin-top: 10px;
    color: var(--primary-color);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-clear:hover {
    color: var(--secondary-color);
}
/* Busca: Paginação */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.page-link {
    display: inline-block;
    padding: 8px 12px;
    border: 1px solid var(--light-gray);
    border-radius: 5px;
    background: var(--white);
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.page-link:hover {
    background: var(--light-color);
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.page-link.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    pointer-events: none;
}

.page-link.disabled {
    opacity: 0.55;
    pointer-events: none;
}

/* Property List */
.property-list {
    padding: 60px 0;
}

.no-results {
    text-align: center;
    padding: 50px 0;
}

.no-results i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.no-results h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.no-results p {
    margin-bottom: 25px;
    color: var(--gray);
}

.property-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}

.btn-contact {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white);
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Busca: Inputs de texto/número nos filtros */
.filter-group input[type="text"],
.filter-group input[type="number"] {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--light-gray);
    border-radius: 5px;
    font-size: 0.9rem;
    background: var(--white);
    color: var(--dark-color);
}

.filter-group input::placeholder {
    color: #999;
}

.filter-group select:focus,
.filter-group input[type="text"]:focus,
.filter-group input[type="number"]:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(122, 133, 97, 0.15); /* secondary rgba */
}

/* Breadcrumb */
.breadcrumb {
    padding: 15px 0;
    background: var(--light-color);
    font-size: 0.9rem;
}

.breadcrumb ul {
    display: flex;
    flex-wrap: wrap;
}

.breadcrumb li {
    margin-right: 10px;
}

.breadcrumb li:not(:last-child)::after {
    content: '›';
    margin-left: 10px;
    color: var(--gray);
}

/* Property Details */
.property-details {
    padding: 40px 0;
}

.property-header {
    margin-bottom: 30px;
    border-bottom: 1px solid var(--light-gray);
    padding-bottom: 20px;
}

.property-header h1 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.property-header .property-residential {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.property-header .property-residential i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.property-address {
    color: var(--gray);
    margin-bottom: 15px;
}

.property-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.property-badge {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 3px;
    font-weight: 600;
    font-size: 0.8rem;
}

/* Gallery */
.property-gallery {
    margin-bottom: 40px;
}

.main-image {
    margin-bottom: 15px;
}

.main-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
}

.thumbnail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px;
}

.thumbnail img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 3px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.thumbnail img:hover {
    transform: scale(1.05);
}

/* Property Content */
.property-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.details-section {
    margin-bottom: 30px;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.detail-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px;
    background: var(--light-color);
    border-radius: 5px;
}

.detail-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.detail-item span {
    font-size: 0.9rem;
    color: var(--gray);
}

.detail-item strong {
    margin-top: 5px;
    font-size: 1.1rem;
}

.description-section {
    margin-bottom: 30px;
}

.description-section p {
    line-height: 1.8;
    margin-top: 15px;
}

/* Contact Form */
.contact-section {
    background: var(--light-color);
    padding: 20px;
    border-radius: 5px;
}

.property-contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.property-contact-form .form-group {
    margin-bottom: 0;
}

.property-contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.property-contact-form input,
.property-contact-form select,
.property-contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--light-gray);
    border-radius: 5px;
}

.property-contact-form textarea {
    min-height: 100px;
}

/* Similar Properties */
.similar-properties {
    padding: 60px 0;
    background: var(--light-color);
}

/* Search Filters */
.search-filters {
    padding: 30px 0;
    background: var(--light-color);
}

.filter-form {
    background: var(--white);
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.filter-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    align-items: end;
}

.filter-group {
    margin-bottom: 0;
}

.filter-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.9rem;
}

.filter-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--light-gray);
    border-radius: 5px;
    font-size: 0.9rem;
}

.btn-filter {
    background: var(--primary-color);
    color: var(--white);
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-filter:hover {
    background: var(--secondary-color);
    color: var(--white);
}

.btn-clear {
    display: inline-block;
    width: 100%;
    text-align: center;
    margin-top: 10px;
    color: var(--primary-color);
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-clear:hover {
    color: var(--secondary-color);
}

/* Search Results */
.search-results {
    padding: 40px 0 60px;
}

/* Busca: Agrupamento dos botões de ação no filtro */
.filter-form .filter-row .filter-group:last-child {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.no-results {
    text-align: center;
    padding: 50px 0;
    background: var(--white);
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.no-results i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.no-results h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.no-results p {
    margin-bottom: 25px;
    color: var(--gray);
}

/* Contact Section */
.contact-section {
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info {
    background: var(--light-color);
    padding: 30px;
    border-radius: 5px;
}

.contact-info h2 {
    margin-bottom: 30px;
    color: var(--primary-color);
}

.info-item {
    display: flex;
    margin-bottom: 25px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 15px;
    margin-top: 5px;
}

.info-item h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.info-item p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

.contact-form {
    background: var(--white);
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-form h2 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.contact-form p {
    color: var(--gray);
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--light-gray);
    border-radius: 5px;
}

.form-group textarea {
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.has-error input,
.has-error select,
.has-error textarea {
    border-color: #e74c3c;
}

.error-message {
    display: block;
    color: #e74c3c;
    font-size: 0.8rem;
    margin-top: 5px;
}

.alert {
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.alert.success {
    background: #e8f8f0;
    color: #27ae60;
}

.alert i {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.alert h3 {
    margin-bottom: 10px;
}

/* Map Section */
.map-section {
    padding: 0 0 60px;
}

.map-section h2 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.map-container {
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* About Section */
.about-section {
    padding: 80px 0;
}

.about-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image img {
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.mv-item {
    background: var(--light-color);
    padding: 20px;
    border-radius: 5px;
    text-align: center;
}

.mv-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.mv-item h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background: var(--light-color);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-10px);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon i {
    color: var(--white);
    font-size: 1.5rem;
}

.value-item h3 {
    color: var(--primary-color);
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../assets/images/stats-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.stat-item h3 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.stat-item p {
    font-size: 1.1rem;
}

/* Team Section */
.team-section {
    padding: 80px 0;
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    background: var(--white);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.7);
    display: flex;
    justify-content: center;
    padding: 15px 0;
    transition: bottom 0.3s ease;
}

.team-member:hover .member-social {
    bottom: 0;
}

.member-social a {
    color: var(--white);
    margin: 0 10px;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.member-social a:hover {
    color: var(--secondary-color);
}

.member-info {
    padding: 20px;
    text-align: center;
}

.member-info h3 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.member-info p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: var(--light-color);
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial {
    background: var(--white);
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    margin-bottom: 30px;
    display: none;
}

.testimonial i {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.testimonial p {
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 20px;
}

.client-info h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.client-info p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    padding: 60px 0;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    margin-bottom: 20px;
}

.cta-section p {
    margin-bottom: 30px;
    font-size: 1.2rem;
}

.cta-section .btn {
    background: var(--secondary-color);
    color: var(--white);
    padding: 12px 30px;
    font-size: 1.1rem;
}

.cta-section .btn:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* Lightbox */
#lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

#lightbox.active {
    opacity: 1;
    pointer-events: all;
}

#lightbox img {
max-width: 90%;
max-height: 90%;
}

.lightbox-close {
position: absolute;
top: 20px;
right: 20px;
color: white;
font-size: 2.5rem;
cursor: pointer;
}

.lightbox-nav {
position: absolute;
top: 50%;
transform: translateY(-50%);
color: white;
font-size: 2.5rem;
cursor: pointer;
padding: 0 20px;
}

.lightbox-prev {
left: 0;
}

.lightbox-next {
right: 0;
}

/* Últimos Cadastros */
.latest-properties {
    padding: 60px 20px;
    background: #f9f9f9;
}

.latest-properties .section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 40px;
    color: #333;
    position: relative;
}

.latest-properties .section-title::after {
    content: "";
    width: 60px;
    height: 3px;
    background: #666; /* cor destaque */
    display: block;
    margin: 10px auto 0;
    border-radius: 3px;
}

.latest-properties .properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.latest-properties .property-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.latest-properties .property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.latest-properties .property-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.latest-properties .property-info {
    padding: 15px;
}

.latest-properties .property-info h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #222;
}

.latest-properties .property-info h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.latest-properties .property-info h3 a:hover {
    color: #666;
}

.latest-properties .property-address {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 12px;
}

.latest-properties .property-address i {
    margin-right: 5px;
    color: #666;
}

.latest-properties .property-details {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.latest-properties .property-details span {
    display: flex;
    align-items: center;
    gap: 5px;
    background: #f1f1f1;
    padding: 5px 10px;
    border-radius: 6px;
    color: #444;
    font-size: 0.85rem;
}

.latest-properties .property-details i {
    color: #666;
}

.latest-properties .property-price {
    font-size: 1.1rem;
    font-weight: bold;
    color: #666;
    margin-bottom: 15px;
}

.latest-properties .btn {
    display: inline-block;
    padding: 10px 18px;
    background: #666;
    color: #fff;
    border-radius: 8px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background 0.3s;
}

.latest-properties .btn:hover {
    background: #666;
}

.latest-properties .view-all {
    text-align: center;
    margin-top: 40px;
}

/* Slick Slider Customization */

/* Form Validation */
.error {
border-color: #e74c3c !important;
}

.error-message {
display: block;
color: #e74c3c;
font-size: 0.8rem;
margin-top: 5px;
}

/* Mobile Menu */
.main-nav {
transition: all 0.3s ease;
}


/* Responsive Styles */
@media (max-width: 1200px) {
.slick-main__title {
font-size: 3rem;
}

text
.slick-main__simple-text {
    font-size: 1.3rem;
}
}

@media (max-width: 992px) {
.about-section .container {
grid-template-columns: 1fr;
}

text
.about-image {
    order: -1;
}

.mission-vision {
    grid-template-columns: 1fr;
}

.property-content {
    grid-template-columns: 1fr;
}

.main-image img {
    height: 350px;
}

.contact-grid {
    grid-template-columns: 1fr;
}

.contact-info {
    order: 2;
}

.contact-form {
    order: 1;
}

.filter-row {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}
}

@media (max-width: 768px) {
.mobile-menu {
display: block;
}

text
.main-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100vh;
    background: var(--white);
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    z-index: 1001;
    padding: 30px;
    overflow-y: auto;
}

.main-nav.active {
    left: 0;
}

.main-nav ul {
    flex-direction: column;
}

.main-nav ul li {
    margin: 15px 0;
}

.mobile-menu.active {
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 1001;
}

.hero h2 {
    font-size: 2rem;
}

.search-box form {
    grid-template-columns: 1fr;
}

.slick-main {
    height: 60vh;
    min-height: 400px;
}

.slick-main__title {
    font-size: 2.2rem;
}

.slick-main__simple-text {
    font-size: 1.1rem;
}

.custom-arrows {
    width: 40px;
    height: 40px;
}

.custom-arrows--prev {
    left: 15px;
}

.custom-arrows--next {
    right: 15px;
}

.slick-dots {
    bottom: 20px;
}

.filter-row {
    grid-template-columns: 1fr 1fr;
}

.property-actions {
    flex-direction: column;
}

.property-actions a {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
}

.property-actions a:last-child {
    margin-bottom: 0;
}

.property-contact-form .form-row {
    grid-template-columns: 1fr;
}

.main-image img {
    height: 250px;
}

.form-row {
    grid-template-columns: 1fr;
}

.contact-info, .contact-form {
    padding: 20px;
}

.stats-grid {
    grid-template-columns: 1fr 1fr;
}

.team-grid {
    grid-template-columns: 1fr 1fr;
}
}

@media (max-width: 576px) {
.top-bar .container {
flex-direction: column;
text-align: center;
}

text
.contact-info {
    margin-bottom: 10px;
}

.hero {
    height: 60vh;
}

.hero h2 {
    font-size: 1.8rem;
}

.section-title {
    font-size: 1.5rem;
}

.slick-main {
    height: 50vh;
    min-height: 300px;
}

.slick-main__title {
    font-size: 1.8rem;
}

.slick-main__simple-text {
    font-size: 1rem;
}

.btn-custom {
    padding: 12px 25px;
    font-size: 1rem;
}

.filter-row {
    grid-template-columns: 1fr;
}

.page-header h1 {
    font-size: 1.8rem;
}

.properties-grid {
    grid-template-columns: 1fr;
}

.details-grid {
    grid-template-columns: 1fr 1fr;
}

.property-header h1 {
    font-size: 1.5rem;
}

.property-price {
    font-size: 1.2rem;
}

.no-results i {
    font-size: 2.5rem;
}

.no-results h3 {
    font-size: 1.3rem;
}

.info-item {
    flex-direction: column;
}

.info-item i {
    margin-bottom: 10px;
}

.stats-grid {
    grid-template-columns: 1fr;
}

.team-grid {
    grid-template-columns: 1fr;
}
}

/* Ajuste responsivo para tablets */
@media (max-width: 768px) {
    .logo-credentials {
        gap: 6px;
        margin-left: 10px;
        padding: 6px 10px;
        border-radius: 6px;
    }
    
    .credential-title {
        font-size: 0.65rem;
        letter-spacing: 0.5px;
    }
    
    .credential-number {
        font-size: 0.58rem;
        letter-spacing: 0.3px;
        padding: 1px 3px;
    }
}

/* Ajuste responsivo adicional para o logo no mobile */
@media (max-width: 576px) {
    .logo-dark { height: 48px !important; }
    .logo-creci { font-size: 0.8rem; }
    
    .logo-credentials {
        gap: 5px;
        margin-left: 8px;
        padding: 5px 8px;
        border-radius: 5px;
        border-left-width: 2px;
    }
    
    .credential-group {
        gap: 0px;
    }
    
    .credential-title {
        font-size: 0.58rem;
        letter-spacing: 0.4px;
        margin-bottom: 0px;
    }
    
    .credential-number {
        font-size: 0.52rem;
        letter-spacing: 0.2px;
        padding: 0px 3px;
    }
    
    .credential-group:not(:last-child)::after {
        bottom: -2px;
    }
}

/* Ajuste para telas muito pequenas */
@media (max-width: 480px) {
    #logo.catalogo-logo {
        gap: 6px;
    }
    
    .logo-credentials {
        margin-left: 6px;
        gap: 4px;
        padding: 4px 6px;
        border-radius: 4px;
    }
    
    .credential-title {
        font-size: 0.52rem;
        letter-spacing: 0.3px;
    }
    
    .credential-number {
        font-size: 0.46rem;
        letter-spacing: 0.1px;
        padding: 0px 2px;
    }
}

/* Ajuste extra para telas muito pequenas (landscape mobile) */
@media (max-width: 420px) {
    .logo-credentials {
        margin-left: 4px;
        padding: 3px 5px;
        gap: 3px;
    }
    
    .credential-title {
        font-size: 0.48rem;
        letter-spacing: 0.2px;
    }
    
    .credential-number {
        font-size: 0.42rem;
        letter-spacing: 0.1px;
    }
    
    .credential-group:not(:last-child)::after {
        display: none;
    }
}