/* Reset e Variáveis */
/* Cores ajustadas para combinar com a logo (laranja e azul escuro) */
:root {
    --primary-blue: #005580; /* Azul escuro da logo */
    --secondary-blue: #0077B3;
    --dark-blue: #003d5c;
    --light-blue: #E6F5FF;
    --accent-blue: #005580;
    --primary-orange: #F1751E; /* Laranja da logo */
    --secondary-orange: #D9641A;
    --light-orange: #FFF4EB;
    --white: #FFFFFF;
    --gray-light: #F5F5F5;
    --gray-medium: #CCCCCC;
    --gray-dark: #666666;
    --text-dark: #333333;
    --success-green: #25D366;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-hover: rgba(0, 0, 0, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    min-height: 100vh;
}

/* Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.header.scrolled {
    padding: 0.75rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

/* Header Transparente */
.header-transparent {
    background: rgba(255, 255, 255, 0);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 1001;
}

.header-transparent.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    position: fixed;
}

.header-transparent .nav a,
.header-transparent .nav-menu a {
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.header-transparent.scrolled .nav a,
.header-transparent.scrolled .nav-menu a {
    color: var(--text-dark);
    text-shadow: none;
}

.header-transparent .mobile-menu-toggle span {
    background: var(--white);
}

.header-transparent.scrolled .mobile-menu-toggle span {
    background: var(--primary-blue);
}

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

.logo a {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    background: transparent !important;
    background-color: transparent !important;
}

.logo {
    background: transparent !important;
    background-color: transparent !important;
}

.logo-img {
    height: 80px;
    width: auto;
    display: block;
    background: transparent !important;
    mix-blend-mode: normal;
    background-color: transparent !important;
    -webkit-background-size: auto;
    background-size: auto;
    background-image: none !important;
}

/* Garantir que logo PNG com transparência funcione */
.header-transparent .logo-img {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    mix-blend-mode: normal;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    -webkit-filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.header-transparent .logo,
.header-transparent .logo a {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
}

.header-transparent.scrolled .logo-img {
    filter: none;
    -webkit-filter: none;
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
}

/* Forçar transparência em todos os estados */
.header .logo-img,
.header-transparent .logo-img,
.header-transparent.scrolled .logo-img {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
}

.logo-text {
    font-size: 1.5rem;
    color: var(--primary-blue);
    font-weight: 700;
    display: none; /* Esconde texto quando logo está visível */
}

.logo h1 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    font-weight: 700;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
    align-items: center;
}

.nav-menu li {
    margin: 0;
    padding: 0;
}

.nav a,
.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
    display: block;
}

.nav a:hover,
.nav-menu a:hover {
    color: var(--primary-blue);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-blue);
    border-radius: 2px;
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-orange) 100%);
    color: var(--white);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

/* Hero com Imagem de Fundo */
.hero-with-image {
    min-height: 100vh;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-background-gradient {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-orange) 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    opacity: 0.5;
    animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% {
        opacity: 0.3;
    }
    100% {
        opacity: 0.6;
    }
}

.slogan-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--primary-orange);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: fadeInUp 0.8s ease 0.1s both;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: var(--white);
}

.slogan-badge .badge-icon {
    width: 20px;
    height: 20px;
    color: var(--white);
    flex-shrink: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 2rem;
    padding-top: 8rem; /* Espaçamento para afastar da logo */
}

/* Mensagem Animada do Hero */
.hero-animated-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    margin-top: 2rem; /* Espaçamento adicional */
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease-out;
}

.hero-animated-message.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.hero-message-part {
    font-size: clamp(2rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    display: block;
}

.hero-message-blue {
    color: var(--primary-blue);
    animation: fadeInUp 1s ease-out 0.3s both;
    -webkit-text-stroke: 2px var(--white);
    text-stroke: 2px var(--white);
    text-shadow: 
        0 0 10px rgba(255, 255, 255, 0.8),
        0 0 20px rgba(255, 255, 255, 0.6),
        0 4px 20px rgba(0, 0, 0, 0.5);
    paint-order: stroke fill;
}

.hero-message-orange {
    color: var(--primary-orange);
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--white);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    margin-bottom: 2.5rem;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease 0.2s both;
    font-weight: 400;
    line-height: 1.6;
    color: var(--white);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Search Section */
.hero-search-section {
    max-width: 1200px;
    margin: 2rem auto 0;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-search-section .search-tabs {
    justify-content: center;
    padding-left: 0;
    margin-bottom: 2rem;
}

.hero-search-section .search-tab {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    backdrop-filter: blur(10px);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 8px;
    margin-right: 0.5rem;
    font-family: 'Inter', sans-serif;
}

.hero-search-section .search-tab:hover {
    background: rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.hero-search-section .search-tab.active {
    background: var(--primary-orange);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(241, 117, 30, 0.4);
}

.hero-search-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    max-width: 100%;
}

.hero-search-form .search-field label {
    color: var(--text-dark);
}

.hero-search-form .search-select,
.hero-search-form .search-input {
    padding: 1rem 1.25rem;
    border: 2px solid var(--gray-medium);
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    background: var(--white);
    color: var(--text-dark);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.hero-search-form .search-select:not(.smart-select-wrapper select) {
    cursor: pointer;
}

/* Selects nativos mantidos como fallback */
.hero-search-form .search-select:not(.smart-select-wrapper select):not(.custom-select-wrapper select) {
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.hero-search-form .search-input {
    background-image: none;
    padding-right: 1.25rem;
}

.hero-search-form .search-select:focus,
.hero-search-form .search-input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 153, 219, 0.15);
    background-color: var(--white);
}

.hero-search-form .search-select:hover,
.hero-search-form .search-input:hover {
    border-color: var(--primary-blue);
}

.hero-search-form .search-submit-btn {
    background: var(--primary-orange);
    color: var(--white);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
    height: fit-content;
    box-shadow: 0 4px 15px rgba(241, 117, 30, 0.3);
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
}

.hero-search-form .search-submit-btn:hover {
    background: var(--secondary-orange);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(241, 117, 30, 0.4);
}

.hero-search-form .search-submit-btn:active {
    transform: translateY(0);
}

.hero-search-form .search-field label {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
}

.hero-search-form .search-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.hero-search-form .search-field {
    display: flex;
    flex-direction: column;
}

.hero-search-form .search-field-range {
    grid-column: span 1;
}

.hero-search-form .range-inputs {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hero-search-form .range-inputs .search-input {
    flex: 1;
}

.hero-search-form .range-separator {
    color: var(--gray-dark);
    font-weight: 500;
    font-size: 0.9rem;
    white-space: nowrap;
}

.hero-search-form .search-field-button {
    display: flex;
    align-items: flex-end;
}

/* Quick Search */
.quick-search {
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.search-box {
    display: flex;
    background: var(--white);
    border-radius: 50px;
    padding: 0.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.search-box:focus-within {
    box-shadow: 0 15px 50px rgba(0, 102, 204, 0.25);
    transform: translateY(-2px);
    border-color: rgba(0, 102, 204, 0.2);
}

.search-box input {
    flex: 1;
    border: none;
    outline: none;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    border-radius: 50px;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.search-box input:focus {
    color: var(--primary-blue);
}

.search-box input::placeholder {
    color: var(--gray-dark);
}

.search-btn {
    background: var(--primary-blue);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--white);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.search-btn:hover {
    background: var(--primary-orange);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(241, 117, 30, 0.4);
}

.search-btn:active {
    transform: scale(0.95);
}

/* Filters Section */
.filters-section {
    background: var(--white);
    padding: 2rem 0;
    box-shadow: 0 2px 10px var(--shadow);
}

/* Filtros no Hero - Sobrepostos */
.hero-filters-overlay {
    margin-top: 2.5rem;
    animation: fadeInUp 0.8s ease 0.9s both;
    width: 100%;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.filters-hero {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.filters-hero-form {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.5rem;
    width: 100%;
}

/* Garantir que os filtros hero não sejam afetados por outros estilos */
.filters-hero .filters-hero-form {
    display: flex !important;
    flex-direction: column !important;
}

.filters-hero .filters-hero-form .filters-row {
    display: grid !important;
    flex-direction: row !important;
}

.filters-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    width: 100%;
    margin: 0;
    padding: 0;
}

.filters-row-top {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    width: 100%;
    margin-bottom: 0;
}

.filters-row-bottom {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    width: 100%;
    margin-bottom: 0;
}

.filters-row-button {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    margin-top: 0;
    padding: 0;
}

.filter-group-hero {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 0;
}

.filter-group-hero.filter-group-slider {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.filter-group-hero label {
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-group-hero .filter-select {
    background: var(--white);
    border: 2px solid var(--gray-medium);
    padding: 1rem 1.25rem;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    transition: all 0.3s;
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.filter-group-hero .filter-select:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 85, 128, 0.15);
}

/* Sliders */
.filter-group-slider {
    position: relative;
}

.filter-group-slider label {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.filter-slider {
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: var(--gray-light);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    margin: 1rem 0 0.5rem;
    cursor: pointer;
}

.filter-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary-orange);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.filter-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 12px rgba(241, 117, 30, 0.4);
}

.filter-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary-orange);
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.filter-slider::-moz-range-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 12px rgba(241, 117, 30, 0.4);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--gray-dark);
    margin-top: 0.25rem;
}

.filter-btn-hero {
    background: var(--primary-orange);
    color: var(--white);
    border: none;
    padding: 1.25rem 2.5rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 20px rgba(241, 117, 30, 0.4);
    width: 100%;
    grid-column: 1 / -1;
    margin: 0;
}

.filter-btn-hero:hover {
    background: var(--secondary-orange);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(241, 117, 30, 0.5);
}

/* Filtros no Hero (mantido para compatibilidade) */
.hero-filters {
    margin-top: 2.5rem;
    animation: fadeInUp 0.8s ease 0.6s both;
    width: 100%;
    display: block;
}

.hero-filters .filters-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    max-width: 1200px;
    margin: 0 auto;
    display: block;
    visibility: visible;
    opacity: 1;
}

.hero-filters .filters {
    gap: 1rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    align-items: end;
}

.hero-filters .filter-group {
    display: flex;
    flex-direction: column;
}

.hero-filters .filter-group label {
    color: var(--text-dark);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.hero-filters .filter-select {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0.75rem;
    border-radius: 8px;
    font-size: 1rem;
}

.hero-filters .filter-btn {
    background: var(--primary-orange);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(241, 117, 30, 0.3);
    width: 100%;
    grid-column: 1 / -1;
}

.hero-filters .filter-btn:hover {
    background: var(--secondary-orange);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(241, 117, 30, 0.4);
}

/* Filtros Completos (página de imóveis) */
.filters-complete {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.filters-complete .filters {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    align-items: end;
}

.filters-complete .filter-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-size: 0.9rem;
    display: block;
}

.filters-complete .filter-select {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid var(--gray-medium);
    border-radius: 8px;
    font-size: 1rem;
    background: var(--white);
    color: var(--text-dark);
    transition: all 0.3s;
}

.filters-complete .filter-select:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 85, 128, 0.1);
}

.filters-actions {
    grid-column: 1 / -1;
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    justify-content: center;
}

.filter-btn-secondary {
    background: var(--gray-medium) !important;
    color: var(--text-dark) !important;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.filter-btn-secondary:hover {
    background: var(--gray-dark) !important;
    color: var(--white) !important;
    transform: translateY(-2px);
}

/* Breadcrumb */
.breadcrumb {
    padding: 1.5rem 0;
    font-size: 0.9rem;
    color: var(--gray-dark);
    margin-bottom: 2rem;
}

.breadcrumb a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: var(--secondary-blue);
    text-decoration: underline;
}

.breadcrumb span {
    margin: 0 0.5rem;
    color: var(--gray-medium);
}

/* Página Individual do Imóvel */
.property-single {
    max-width: 1200px;
    margin: 1.5rem auto 0;
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

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

/* Carrossel de Imagens */
.property-gallery-carousel {
    position: relative;
}

.gallery-main {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 16px;
    overflow: hidden;
    background: var(--gray-light);
    margin-bottom: 1rem;
}

.gallery-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    z-index: 1;
}

.gallery-slide.active {
    opacity: 1;
    z-index: 2;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10;
    color: var(--text-dark);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.gallery-nav:hover {
    background: var(--white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.gallery-prev {
    left: 1rem;
}

.gallery-next {
    right: 1rem;
}

.gallery-counter {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 10;
}

.gallery-thumbnails {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 0.75rem;
    margin-top: 1rem;
}

.gallery-thumb {
    position: relative;
    width: 100%;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s;
    opacity: 0.6;
}

.gallery-thumb:hover,
.gallery-thumb.active {
    opacity: 1;
    border-color: var(--primary-blue);
    transform: scale(1.05);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.property-main-image {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.property-featured-image {
    width: 100%;
    height: auto;
    display: block;
}

.property-header {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--gray-light);
}

.property-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.property-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    color: var(--gray-dark);
}

.property-type,
.property-zona {
    background: var(--light-blue);
    color: var(--primary-blue);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.property-price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-orange);
    margin-top: 1rem;
}

.property-price-large .sob-consulta,
.property-price .sob-consulta {
    color: var(--primary-blue);
    font-style: italic;
    font-weight: 600;
}

.property-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    padding: 2rem;
    background: var(--gray-light);
    border-radius: 12px;
    margin-bottom: 2rem;
}

.feature-item {
    font-size: 1.1rem;
    color: var(--text-dark);
}

.feature-item strong {
    color: var(--primary-blue);
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.property-characteristics {
    margin-bottom: 3rem;
    background: var(--gray-light);
    padding: 2rem;
    border-radius: 12px;
}

.property-characteristics h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
    font-weight: 700;
}

.characteristics-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.85rem 1.25rem;
    padding: 0;
    margin: 0;
}

.characteristics-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1rem;
    color: var(--text-dark);
}

.characteristics-list .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary-orange);
    display: inline-block;
    flex-shrink: 0;
    box-shadow: 0 0 0 4px rgba(241, 117, 30, 0.15);
}

.property-description h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.property-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.property-location-section,
.property-contact-section {
    background: var(--gray-light);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.property-location-section h2,
.property-contact-section h2 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.property-location-section p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.filters-title {
    text-align: center;
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.filter-group-large {
    grid-column: span 2;
}

.filters {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    align-items: end;
}

/* Evitar que estilos de .filters afetem os filtros hero */
.filters-hero-form.filters {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: none !important;
}

.filter-group {
    display: flex;
    flex-direction: column;
}

.filter-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.filter-select {
    padding: 0.75rem;
    border: 2px solid var(--gray-medium);
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    background: var(--white);
    color: var(--text-dark);
    cursor: pointer;
    transition: border-color 0.3s;
}

.filter-select:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.filter-btn {
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    height: fit-content;
}

.filter-btn:hover {
    background: var(--secondary-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow-hover);
}

/* Banner Imóveis */
.properties-header-banner {
    background: var(--primary-blue);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.properties-header-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    opacity: 0.5;
}

.properties-header-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--white);
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Seção de Listagem de Imóveis */
.properties-listing-section {
    padding: 4rem 0;
    background: var(--white);
}

.properties-listing-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 3rem;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
}

/* Sidebar de Filtros */
.properties-filters-sidebar {
    position: sticky;
    top: 2rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 0;
    height: fit-content;
    max-height: calc(100vh - 4rem);
    overflow-y: auto;
    border: 1px solid var(--gray-light);
}

.filters-sidebar-content {
    padding: 2rem;
}

.filters-sidebar-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--gray-light);
}

.filters-sidebar-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.filter-group-sidebar {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.filter-group-sidebar label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-select-sidebar {
    padding: 0.875rem 1rem;
    border: 2px solid var(--gray-medium);
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    background: var(--white);
    color: var(--text-dark);
    transition: all 0.3s;
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.filter-select-sidebar:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 85, 128, 0.15);
}

.filter-select-sidebar:hover {
    border-color: var(--primary-blue);
}

/* Slider de Preço na Sidebar */
.filter-group-slider-sidebar {
    position: relative;
}

.filter-group-slider-sidebar label {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-range-slider {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 1rem 0 0.5rem;
}

.filter-slider-sidebar {
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: var(--gray-light);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
}

.filter-slider-sidebar::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-orange);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.filter-slider-sidebar::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 12px rgba(241, 117, 30, 0.4);
}

.filter-slider-sidebar::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-orange);
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.filter-slider-sidebar::-moz-range-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 12px rgba(241, 117, 30, 0.4);
}

.slider-labels-sidebar {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--gray-dark);
    margin-top: 0.25rem;
}

/* Filtro de Quartos */
.bedrooms-filter {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.bedroom-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--gray-medium);
    border-radius: 8px;
    background: var(--white);
    color: var(--text-dark);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.bedroom-btn:hover {
    border-color: var(--primary-blue);
    background: var(--light-blue);
    color: var(--primary-blue);
}

.bedroom-btn.active {
    background: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
}

.bedroom-input {
    flex: 1;
    min-width: 80px;
    padding: 0.75rem;
    border: 2px solid var(--gray-medium);
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    text-align: center;
}

.bedroom-input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 85, 128, 0.15);
}

.filter-btn-sidebar {
    background: var(--primary-orange);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
    box-shadow: 0 4px 15px rgba(241, 117, 30, 0.3);
    margin-top: 0.5rem;
}

.filter-btn-sidebar:hover {
    background: var(--secondary-orange);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(241, 117, 30, 0.4);
}

/* Área Principal de Imóveis */
.properties-main-content {
    min-width: 0;
}

.properties-grid-listing {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Card de Imóvel Reformulado */
.property-card-listing {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.property-card-listing:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 153, 219, 0.3);
    border-color: rgba(0, 153, 219, 0.3);
}

.property-card-listing .property-image {
    width: 100%;
    height: 250px;
    position: relative;
    overflow: hidden;
}

.property-card-listing .property-image-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.property-card-listing:hover .property-image-img {
    transform: scale(1.05);
}

/* Banner de Preço */
.property-price-banner {
    background: var(--primary-blue);
    color: var(--white);
    padding: 1rem 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
}

/* Características do Imóvel */
.property-features-listing {
    padding: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    border-bottom: 1px solid var(--gray-light);
}

.property-features-listing .feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.property-features-listing .feature-item svg {
    flex-shrink: 0;
    color: var(--primary-blue);
}

/* Botão Ver Detalhes */
.property-action-listing {
    padding: 1.5rem;
    padding-top: 1rem;
}

.btn-view-details {
    display: block;
    width: 100%;
    padding: 1rem;
    background: var(--primary-orange);
    color: var(--white);
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(241, 117, 30, 0.3);
}

.btn-view-details:hover {
    background: var(--secondary-orange);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(241, 117, 30, 0.4);
    color: var(--white);
}

/* Paginação */
.pagination-wrapper {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

.pagination-wrapper .page-numbers {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    padding: 0;
    margin: 0;
    align-items: center;
    flex-wrap: wrap;
}

.pagination-wrapper .page-numbers li {
    margin: 0;
}

.pagination-wrapper .page-numbers a,
.pagination-wrapper .page-numbers span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.75rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    color: var(--text-dark);
    background: var(--white);
    border: 2px solid var(--gray-medium);
    font-size: 1rem;
}

.pagination-wrapper .page-numbers a:hover {
    background: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
    transform: translateY(-2px);
}

.pagination-wrapper .page-numbers .current {
    background: var(--primary-orange);
    color: var(--white);
    border-color: var(--primary-orange);
    box-shadow: 0 2px 8px rgba(241, 117, 30, 0.3);
}

.pagination-wrapper .page-numbers .prev,
.pagination-wrapper .page-numbers .next {
    font-size: 1.5rem;
    font-weight: 700;
    min-width: 45px;
}

.pagination-wrapper .page-numbers .dots {
    border: none;
    background: transparent;
    cursor: default;
}

.pagination-wrapper .page-numbers .dots:hover {
    background: transparent;
    transform: none;
}

/* Properties Section */
.properties-section {
    padding: 4rem 0;
    background: var(--white);
}

.properties-section .container {
    max-width: 1400px;
}

/* Properties Layout com Sidebar */
.properties-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 2rem;
    align-items: start;
}

/* Filters Sidebar */
.filters-sidebar {
    position: sticky;
    top: 2rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 0;
    height: fit-content;
    max-height: calc(100vh - 4rem);
    overflow-y: auto;
}

.filters-sidebar-content {
    padding: 1.5rem;
}

.filters-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--gray-light);
}

.sidebar-search-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-label {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-select,
.filter-input {
    padding: 0.875rem 1rem;
    border: 2px solid var(--gray-medium);
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    background: var(--white);
    color: var(--text-dark);
    transition: all 0.3s;
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

/* Selects nativos mantidos como fallback */
.filter-select:not(.smart-select-wrapper select):not(.custom-select-wrapper select) {
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.filter-select:focus,
.filter-input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 153, 219, 0.15);
}

.filter-select:hover,
.filter-input:hover {
    border-color: var(--primary-blue);
}

.filter-group .range-inputs {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.filter-group .range-inputs .filter-input {
    flex: 1;
}

.filter-group .range-separator {
    color: var(--gray-dark);
    font-weight: 500;
    font-size: 0.9rem;
    white-space: nowrap;
}

.filter-submit-btn {
    background: var(--primary-orange);
    color: var(--white);
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
    box-shadow: 0 4px 15px rgba(241, 117, 30, 0.3);
    margin-top: 0.5rem;
}

.filter-submit-btn:hover {
    background: var(--secondary-orange);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(241, 117, 30, 0.4);
}

.filter-submit-btn:active {
    transform: translateY(0);
}

/* Properties Content */
.properties-content {
    min-width: 0;
}

.properties-content .section-title {
    margin-bottom: 2rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-dark);
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-orange));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-dark);
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.section-heading {
    text-align: center;
    margin-bottom: 2rem;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(0, 85, 128, 0.12);
    color: var(--primary-blue);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.75rem;
    margin-bottom: 0.75rem;
}

.section-subtitle-white {
    color: rgba(255, 255, 255, 0.86);
}

.section-eyebrow-white {
    background: rgba(255, 255, 255, 0.14);
    color: var(--white);
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.featured-properties-section .properties-grid {
    margin-top: 0 !important;
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)) !important;
    gap: 2rem !important;
    width: 100%;
}

.property-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.property-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.property-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 153, 219, 0.3);
    border-color: rgba(0, 153, 219, 0.3);
}

.property-card:hover::before {
    transform: scaleX(1);
}

.property-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-orange));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 3rem;
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.property-image-icon {
    z-index: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.property-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--gray-light) 100%);
    position: relative;
    z-index: 1;
}

.property-type-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 1rem;
    text-align: center;
}

.property-image-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

/* Remover estilo de link visitado (roxo) das imagens dos imóveis */
.property-image a,
.property-image a:visited,
.property-image a:link,
.property-image a:hover,
.property-image a:active,
.property-image a:focus {
    color: inherit !important;
    text-decoration: none !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    background: transparent !important;
}

.property-image a img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

/* Garantir que não apareça borda roxa ao clicar */
.property-image a:focus img,
.property-image a:active img,
.property-image a:visited img,
.property-image a:link img {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    background: transparent !important;
}

/* Remover qualquer indicador visual de link visitado */
.property-card .property-image a::after,
.property-card .property-image a:visited::after {
    display: none !important;
    content: none !important;
}

/* Garantir que imagens não tenham borda ao serem clicadas */
.property-image a:focus-visible {
    outline: none !important;
    border: none !important;
}

/* Quando há imagem, ajusta o estilo */
.property-image.has-image {
    background: #f0f0f0;
}

.property-image.has-image .property-image-icon {
    display: none;
}

.property-image.has-image::before {
    display: none;
}

.property-image::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><rect width="60" height="60" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.property-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
    background: var(--white);
    color: var(--primary-blue);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
}

.property-info {
    padding: 1.75rem;
    transition: all 0.3s ease;
}

.property-card:hover .property-info {
    padding-top: 1.5rem;
}

.property-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

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

.property-features {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    color: var(--gray-dark);
    font-size: 0.9rem;
}

.property-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.icon-inline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.property-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.property-card:hover .property-price {
    transform: scale(1.05);
}

.property-contact {
    display: flex;
    gap: 0.5rem;
}

.contact-property-btn {
    flex: 1;
    padding: 0.75rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    font-size: 0.9rem;
}

.contact-property-btn .icon-inline svg {
    width: 16px;
    height: 16px;
}

.contact-property-btn.phone {
    background: var(--light-blue);
    color: var(--primary-blue);
}

.contact-property-btn.phone:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.contact-property-btn.whatsapp {
    background: var(--success-green);
    color: var(--white);
}

.contact-property-btn.whatsapp:hover {
    background: #20BA5A;
    transform: scale(1.05);
}

.property-map {
    margin: 1rem 0;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-medium);
}

.property-map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.property-map-link:hover {
    color: var(--secondary-blue);
    transform: translateX(5px);
}

.property-map-link span {
    font-size: 1.2rem;
}

.no-results {
    text-align: center;
    padding: 3rem;
    color: var(--gray-dark);
    font-size: 1.1rem;
}

/* Skeleton Loaders */
.skeleton-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    animation: skeleton-pulse 1.5s ease-in-out infinite;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.skeleton-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(90deg, var(--gray-light) 25%, var(--gray-medium) 50%, var(--gray-light) 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.5s infinite;
}

.skeleton-content {
    padding: 1.5rem;
}

.skeleton-line {
    height: 1rem;
    background: linear-gradient(90deg, var(--gray-light) 25%, var(--gray-medium) 50%, var(--gray-light) 75%);
    background-size: 200% 100%;
    border-radius: 4px;
    margin-bottom: 0.75rem;
    animation: skeleton-shimmer 1.5s infinite;
}

.skeleton-title {
    height: 1.5rem;
    width: 80%;
    margin-bottom: 1rem;
}

.skeleton-subtitle {
    height: 1rem;
    width: 60%;
    margin-bottom: 1rem;
}

.skeleton-text {
    height: 0.875rem;
    width: 100%;
}

.skeleton-price {
    height: 1.75rem;
    width: 40%;
    margin-top: 1rem;
}

@keyframes skeleton-shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

@keyframes skeleton-pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

/* Loading State */
.loading .skeleton-card {
    display: block;
}

.properties-grid.loading .property-card {
    display: none;
}

/* Navigation Active State */
.nav a.active {
    color: var(--primary-blue);
    font-weight: 600;
    position: relative;
}

.nav a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-blue);
}

/* Contact Links */
.contact-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    transition: all 0.3s;
    color: var(--white);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    white-space: nowrap;
}

.contact-link.whatsapp {
    background: var(--success-green);
}

.contact-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    opacity: 0.95;
}

.contact-link svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.contact-link span {
    display: inline-block;
}

/* Compatibilidade com social-link (mantido para não quebrar estilos existentes) */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
    color: var(--white);
}

.social-link.whatsapp {
    background: var(--success-green);
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Form Styles */
.form-section {
    padding: 4rem 0;
    background: var(--gray-light);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-orange));
}

.form-container:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--gray-medium);
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:hover,
.form-group textarea:hover,
.form-group select:hover {
    border-color: var(--primary-blue);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-dark);
    opacity: 0.6;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 153, 219, 0.1);
    transform: translateY(-1px);
}

.form-group input.error,
.form-group textarea.error,
.form-group select.error {
    border-color: #dc3545;
    background-color: #fff5f5;
    animation: shake 0.3s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.field-error {
    display: block;
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    animation: slideDown 0.3s ease-out;
}

.field-error::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.25rem;
    width: 16px;
    height: 16px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23dc3545' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cline x1='12' y1='8' x2='12' y2='12'%3E%3C/line%3E%3Cline x1='12' y1='16' x2='12.01' y2='16'%3E%3C/line%3E%3C/svg%3E") no-repeat center;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-error-general {
    background: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #856404;
    font-weight: 500;
    animation: slideDown 0.3s ease-out;
}

.form-error-general svg {
    flex-shrink: 0;
    stroke: #856404;
}

.form-group input:valid:not(:placeholder-shown),
.form-group textarea:valid:not(:placeholder-shown),
.form-group select:valid {
    border-color: var(--success-green);
    background-color: #f0fff4;
}

.form-group input:valid:not(:placeholder-shown) + .field-error,
.form-group textarea:valid:not(:placeholder-shown) + .field-error {
    display: none;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-group small {
    display: block;
    margin-top: 0.25rem;
    color: var(--gray-dark);
    font-size: 0.875rem;
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: var(--primary-blue);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    border: none;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(0, 153, 219, 0.3);
}

.btn-primary:hover {
    background: var(--primary-orange);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(241, 117, 30, 0.4);
    color: var(--white);
}

.btn-secondary {
    background: var(--gray-medium);
    color: var(--text-dark);
}

.btn-secondary:hover {
    background: var(--gray-dark);
    color: var(--white);
}

/* Institutional Pages */
.page-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-orange) 100%);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.25rem;
    opacity: 0.9;
}

.page-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-top: 0.5rem;
}

/* Banner Quem Somos */
.about-header-banner {
    background: var(--primary-blue);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-header-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    opacity: 0.5;
}

.about-header-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--white);
    margin: 0;
    position: relative;
    z-index: 1;
}

.about-header-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--white);
    margin: 1rem 0 0 0;
    opacity: 0.95;
    position: relative;
    z-index: 1;
    font-weight: 400;
}

/* Seção Principal: Nossa História */
.about-main-section {
    padding: 5rem 0;
    background: var(--white);
}

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

.about-story-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-main-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.about-image-wrapper {
    position: relative;
    width: 100%;
}

.about-main-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

.about-image-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-orange));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    font-weight: 700;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.about-main-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-main-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 1rem 0;
}

.about-description {
    line-height: 1.8;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.about-description p {
    margin-bottom: 1.5rem;
}

/* Lista com Checkmarks */
.about-features-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-features-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.about-features-list li svg {
    flex-shrink: 0;
    color: var(--success-green);
    width: 24px;
    height: 24px;
}

.about-features {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--gray-light);
}

.features-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin: 0 0 1.5rem 0;
}

/* Seção CTA Quem Somos */
.about-cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--white);
    text-align: center;
}

.about-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--white);
    margin: 0 0 1rem 0;
}

.cta-text {
    font-size: 1.2rem;
    color: var(--white);
    opacity: 0.95;
    margin: 0 0 2.5rem 0;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-buttons .btn-primary {
    background: var(--primary-orange);
    color: var(--white);
    border: 2px solid var(--primary-orange);
}

.cta-buttons .btn-primary:hover {
    background: var(--secondary-orange);
    border-color: var(--secondary-orange);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(241, 117, 30, 0.3);
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cta-buttons .btn-secondary:hover {
    background: var(--white);
    color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.about-section {
    padding: 4rem 0;
}

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

.about-story {
    line-height: 1.8;
}

.story-paragraph {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.values-section {
    padding: 4rem 0;
    background: var(--gray-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-dark);
    line-height: 1.6;
}

.contact-info-section {
    padding: 4rem 0;
    background: var(--white);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-item {
    text-align: center;
    padding: 2rem;
    background: var(--gray-light);
    border-radius: 12px;
}

.contact-info-item h3 {
    color: var(--primary-blue);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.contact-info-item p {
    color: var(--text-dark);
    font-size: 1.1rem;
}

.contact-info-item a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info-item a:hover {
    color: var(--secondary-blue);
}

/* Seção Nossa Equipe */
.team-section {
    padding: 5rem 0;
    background: var(--gray-light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.team-member {
    text-align: center;
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.team-member-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary-blue);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.team-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-orange));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 3rem;
    font-weight: 700;
}

.team-member-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin: 0 0 1rem 0;
}

.team-member-description {
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

/* Seção Depoimentos */
.testimonials-section {
    padding: 5rem 0;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.testimonial-bubble {
    background: var(--gray-light);
    padding: 2rem;
    border-radius: 20px;
    position: relative;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-bubble::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid var(--gray-light);
}

.testimonial-text {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

.testimonial-author {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0;
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 3rem;
}

.testimonials-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-medium);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonials-dots .dot.active {
    background: var(--primary-blue);
    transform: scale(1.2);
}

.testimonials-dots .dot:hover {
    background: var(--primary-orange);
}

.content-section {
    padding: 4rem 0;
}

.content-section:nth-child(even) {
    background: var(--gray-light);
}

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

.content-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.content-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 85, 128, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.content-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 50px rgba(0, 85, 128, 0.2);
    border-color: rgba(0, 85, 128, 0.15);
}

.content-card:hover::before {
    transform: scaleX(1);
}

.content-card:hover::after {
    opacity: 1;
}

.content-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.content-card:hover h3 {
    color: var(--primary-orange);
    transform: scale(1.05);
}

.content-card p {
    color: var(--gray-dark);
    line-height: 1.8;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

.content-card a {
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 85, 128, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(0, 85, 128, 0.1);
    position: relative;
    z-index: 1;
    margin-top: 0.5rem;
}

.content-card a:hover {
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-orange));
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 85, 128, 0.3);
}

.content-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-orange) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(0, 85, 128, 0.2);
}

.content-card-icon::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-orange));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    filter: blur(8px);
}

.content-card:hover .content-card-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 10px 30px rgba(0, 85, 128, 0.4);
}

.content-card:hover .content-card-icon::before {
    opacity: 0.6;
}

.content-card-icon svg {
    width: 40px;
    height: 40px;
    stroke-width: 2;
    transition: transform 0.3s ease;
}

.content-card:hover .content-card-icon svg {
    transform: scale(1.1);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px var(--shadow);
    text-align: center;
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow-hover);
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.service-card ul {
    list-style: none;
    text-align: left;
    margin-top: 1rem;
}

.service-card ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
    background: var(--white);
}

.contact-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--gray-dark);
    margin-bottom: 2.5rem;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px var(--shadow);
}

.phone-btn {
    background: var(--primary-blue);
    color: var(--white);
}

.phone-btn:hover {
    background: var(--secondary-blue);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px var(--shadow-hover);
}

.whatsapp-btn {
    background: var(--success-green);
    color: var(--white);
}

.whatsapp-btn:hover {
    background: #20BA5A;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px var(--shadow-hover);
}

/* Carrossel de Imóveis em Destaque */
.featured-properties-carousel {
    background: var(--primary-blue);
    color: var(--white);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.featured-properties-carousel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    opacity: 0.5;
    animation: heroGlow 8s ease-in-out infinite alternate;
}

.section-title-white {
    color: var(--white) !important;
}

.section-title-white::after {
    background: linear-gradient(90deg, var(--white), var(--primary-orange));
}

.properties-carousel-wrapper {
    position: relative;
    overflow: hidden;
    padding: 0 3rem;
    min-height: 400px; /* Garantir altura mínima para exibir cards */
    width: 100%;
    max-width: 100%;
}

.properties-carousel-wrapper .container {
    position: relative;
}

.properties-carousel-wrapper .no-results {
    text-align: center;
    padding: 3rem;
    color: var(--white);
    font-size: 1.1rem;
    width: 100%;
}

.properties-carousel {
    display: flex !important;
    gap: 2rem;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    min-height: 400px; /* Garantir altura mínima */
    width: 100%;
    transform: translateX(0) !important; /* Posição inicial */
}

.properties-carousel .property-card {
    flex: 0 0 calc(25% - 1.5rem);
    min-width: 280px; /* Largura mínima para garantir visibilidade */
    max-width: calc(25% - 1.5rem);
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    flex-shrink: 0;
    position: relative;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 100;
    color: var(--primary-blue);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    pointer-events: auto;
}

.carousel-nav:hover:not(:disabled):not(.disabled) {
    background: var(--white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.carousel-nav:disabled,
.carousel-nav.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.properties-carousel.active {
    cursor: grabbing;
    user-select: none;
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

/* Partnership Section */
.partnership-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.partnership-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.partnership-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(-30px) translateX(20px);
    }
}

.partnership-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    align-items: center;
}

.partnership-text {
    color: var(--white);
}

.partnership-text .section-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.partnership-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    line-height: 1.6;
}

.partnership-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.25rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-orange), var(--primary-blue));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.benefit-item:hover::before {
    transform: scaleY(1);
}

.benefit-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--white);
}

.benefit-icon svg {
    width: 24px;
    height: 24px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-item:hover .benefit-icon svg {
    transform: scale(1.15) rotate(5deg);
}

.benefit-item h3 {
    color: var(--white);
    margin-bottom: 0.4rem;
    font-size: 0.95rem;
    font-weight: 600;
}

.benefit-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    line-height: 1.5;
}

.partnership-cta {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.partnership-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.partnership-visual {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.partnership-visual::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.partnership-visual:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.visual-icon {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.visual-icon svg {
    width: 48px;
    height: 48px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.partnership-visual:hover .visual-icon svg {
    transform: scale(1.1) rotate(10deg);
}

.visual-text h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 0.4rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.visual-title-highlight {
    background: linear-gradient(135deg, var(--primary-orange), #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.8rem !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.8rem !important;
    text-shadow: 0 0 30px rgba(241, 117, 30, 0.5);
    position: relative;
    z-index: 1;
}

.visual-title-highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-orange), transparent);
    border-radius: 2px;
}

.visual-subtitle {
    color: var(--white) !important;
    font-size: 1.4rem !important;
    font-weight: 700 !important;
    margin-bottom: 1rem !important;
    position: relative;
    z-index: 1;
}

.visual-badge {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
    position: relative;
    z-index: 1;
}

.visual-badge span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.visual-badge span:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateX(5px);
}

.partnership-visual:hover .visual-text h3 {
    transform: translateY(-5px);
}

.visual-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 600;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--dark-blue) 0%, #002d47 100%);
    color: var(--white);
    padding: 3rem 0 1rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-orange), var(--primary-blue), var(--primary-orange));
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

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

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-section h3 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    border-bottom: 2px solid var(--primary-orange);
    padding-bottom: 0.5rem;
    display: inline-block;
    width: auto;
}

.footer-section p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
    font-size: 0.9rem;
    line-height: 1.6;
    display: block;
    width: 100%;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    padding: 0.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
}

.footer-contact-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.footer-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--primary-orange);
    opacity: 1;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-contact-item:hover .footer-icon {
    color: var(--white);
    transform: scale(1.15);
    opacity: 1;
}

.footer-contact-item a,
.footer-contact-item span {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    transition: all 0.3s ease;
    flex: 1;
    font-size: 0.9rem;
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
    min-width: 0;
    max-width: 100%;
}

.footer-contact-item:hover a,
.footer-contact-item:hover span {
    color: var(--white);
}

.footer-section a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.25rem 0;
    position: relative;
}

.footer-section a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-orange), var(--primary-blue));
    transition: width 0.3s ease;
}

.footer-section a:hover {
    color: var(--white);
    transform: translateX(3px);
}

.footer-section a:hover::after {
    width: 100%;
}

/* Links rápidos com estilo especial */
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-menu li {
    margin: 0;
    padding: 0;
}

.footer-menu a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    padding: 0.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-menu a::before {
    content: '→';
    color: var(--primary-orange);
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
}

.footer-menu a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
    padding-left: 0.75rem;
}

.footer-menu a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

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

.footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    font-weight: 500;
    overflow: hidden;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-orange), var(--primary-blue));
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-links a::after {
    content: '→';
    position: absolute;
    right: 1rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--primary-orange);
    font-weight: bold;
    font-size: 1.1rem;
}

.footer-links a:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.footer-links a:hover::before {
    transform: scaleY(1);
}

.footer-links a:hover::after {
    opacity: 1;
    transform: translateX(0);
}

/* Contato com ícones */
.footer-section p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    margin-bottom: 0.4rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-height: 2.5rem;
    box-sizing: border-box;
    width: 100%;
}

.footer-section p:has(a) {
    align-items: center;
    justify-content: flex-start;
}

/* E-mail sem link também precisa estar alinhado */
.footer-section p:not(:has(a)) {
    align-items: center;
    justify-content: flex-start;
}

.footer-section p:has(a) {
    cursor: pointer;
}

.footer-section p:has(a):hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.footer-section p svg {
    flex-shrink: 0;
    opacity: 0.9;
    transition: all 0.3s ease;
    width: 16px;
    height: 16px;
    width: 20px;
    height: 20px;
}

.footer-section p:has(a):hover svg {
    opacity: 1;
    transform: scale(1.15);
    color: var(--primary-orange);
}

.footer-section p a {
    flex: 1;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section p:has(a):hover a {
    color: var(--white);
}

.footer-section p:not(:has(a)) {
    cursor: default;
    color: rgba(255, 255, 255, 0.8);
    display: block;
}

.footer-section p:not(:has(a)):hover {
    transform: none;
    background: rgba(255, 255, 255, 0.05);
}

/* Alinhamento específico para e-mail no rodapé */
.footer-section p {
    display: flex;
    align-items: center;
    min-height: 2.5rem;
}

/* Garantir que newsletter fique alinhado */
.footer-section .newsletter {
    width: 100%;
    margin-top: 0.5rem;
    display: flex;
    flex-direction: column;
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
    font-size: 0.8rem;
}

.footer-bottom p {
    margin-bottom: 0.25rem;
}

.footer-bottom small {
    font-size: 0.75rem;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-with-image {
        min-height: 80vh;
    }
    
    .hero-content {
        padding-top: 6rem; /* Menos espaçamento no mobile */
    }
    
    .hero-animated-message {
        margin-bottom: 2rem;
        margin-top: 1rem;
    }
    
    .hero-message-part {
        font-size: clamp(1.5rem, 8vw, 3rem);
    }
    
    .filters-hero {
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    .filters-row,
    .filters-row-top,
    .filters-row-bottom {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .filters-row-button {
        margin-top: 0;
    }
    
    .properties-carousel-wrapper {
        padding: 0 1rem;
    }
    
    .properties-carousel .property-card {
        flex: 0 0 calc(50% - 1rem);
    }
    
    /* Remover estilo de link visitado em mobile também */
    .property-image a,
    .property-image a:visited,
    .property-image a:link {
        border: none !important;
        outline: none !important;
        box-shadow: none !important;
    }

    .carousel-nav {
        width: 40px;
        height: 40px;
    }
    
    .carousel-prev {
        left: -10px;
    }
    
    .carousel-next {
        right: -10px;
    }

    .search-box {
        flex-direction: column;
        border-radius: 12px;
    }

    .search-box input {
        border-radius: 12px;
    }

    .search-btn {
        border-radius: 12px;
        width: 100%;
        margin-top: 0.5rem;
    }

    .filters {
        grid-template-columns: 1fr;
    }
    
    /* Quem Somos - Responsivo */
    .about-header-banner {
        padding: 3rem 0;
    }
    
    .about-header-subtitle {
        font-size: 1rem;
        margin-top: 0.75rem;
    }
    
    .about-main-section {
        padding: 3rem 0;
    }
    
    .about-story-content {
        padding: 0 1rem;
    }
    
    .about-description {
        font-size: 1rem;
    }
    
    .story-paragraph {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }
    
    .about-features {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
    
    .features-title {
        font-size: 1.5rem;
    }
    
    .about-features-list {
        gap: 0.75rem;
    }
    
    .about-features-list li {
        font-size: 1rem;
    }
    
    .about-cta-section {
        padding: 3rem 1rem;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
    
    .cta-text {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cta-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .filter-group-large {
        grid-column: span 1;
    }

    .properties-grid {
        grid-template-columns: 1fr;
    }
    
    /* Responsive: Página de Imóveis */
    .properties-listing-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .properties-filters-sidebar {
        position: relative;
        top: 0;
        max-height: none;
    }
    
    .properties-grid-listing {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    /* Responsive: Partnership Section */
    .partnership-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .partnership-benefits {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .partnership-cta {
        flex-direction: column;
    }
    
    .partnership-cta .btn {
        width: 100%;
        text-align: center;
        font-size: 1rem;
        padding: 0.875rem 2rem;
    }
    
    .visual-title-highlight {
        font-size: 1.4rem !important;
    }
    
    .visual-subtitle {
        font-size: 1.2rem !important;
    }
    
    .visual-badge {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.4rem;
    }
    
    .visual-badge span {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
    
    /* Responsive: Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-link {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
    
    .contact-link span {
        display: inline-block;
    }
    
    .footer-contact-item {
        font-size: 0.9rem;
        flex-wrap: wrap;
    }
    
    .footer-contact-item a,
    .footer-contact-item span {
        word-break: break-word;
        overflow-wrap: anywhere;
    }
    
    .footer-icon {
        width: 16px;
        height: 16px;
    }
    
    .featured-properties-section {
        padding: 3rem 0;
    }
    
    .featured-properties-section .section-subtitle {
        text-align: center;
        padding-left: 0;
    }

    .contact-buttons {
        flex-direction: column;
    }

    .contact-btn {
        width: 100%;
        justify-content: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .partnership-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .partnership-benefits {
        grid-template-columns: 1fr;
    }
    
    .partnership-cta {
        flex-direction: column;
    }
    
    .partnership-cta .btn {
        width: 100%;
        text-align: center;
    }
    
    .visual-title-highlight {
        font-size: 1.4rem !important;
    }
    
    .visual-subtitle {
        font-size: 1.2rem !important;
    }
    
    .visual-badge {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .visual-badge span {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-contact-item {
        font-size: 0.9rem;
    }

    .partnership-benefits {
        grid-template-columns: 1fr;
    }

    .partnership-cta {
        flex-direction: column;
    }

    .partnership-cta .btn {
        width: 100%;
        text-align: center;
    }
    
    /* Responsive: Quem Somos */
    .about-main-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-image-wrapper {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Newsletter */
.newsletter {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.25rem;
    border-radius: 12px;
    margin-top: 0.75rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.newsletter h4 {
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: stretch;
}

.newsletter-form input {
    flex: 1;
    width: 100%;
    min-width: 200px;
    padding: 0.75rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-size: 0.9rem;
    outline: none;
    color: var(--text-dark);
    background: rgba(255, 255, 255, 0.95);
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    border-color: var(--primary-orange);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(241, 117, 30, 0.2);
}

.newsletter-form input::placeholder {
    color: rgba(0, 0, 0, 0.5);
}

.newsletter-form button {
    width: 100%;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-orange), #FF8C00);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-sizing: border-box;
    margin-top: 0.5rem;
    box-shadow: 0 4px 15px rgba(241, 117, 30, 0.3);
}

.newsletter-form button:hover {
    background: linear-gradient(135deg, #FF8C00, var(--primary-orange));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(241, 117, 30, 0.4);
}

.newsletter-form button:active {
    transform: translateY(0);
}

/* Lightbox/Image Zoom */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: var(--white);
    font-size: 2.5rem;
    font-weight: bold;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    width: 40px;
    height: 40px;
    line-height: 1;
}

.lightbox-close:hover {
    opacity: 0.7;
}

.property-image {
    cursor: pointer;
    transition: transform 0.3s;
}

.property-image:hover {
    transform: scale(1.05);
}

/* Blog Styles */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.blog-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px var(--shadow);
    transition: all 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow-hover);
}

.blog-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: var(--gray-light);
}

.blog-card-content {
    padding: 1.5rem;
}

.blog-card-meta {
    color: var(--gray-dark);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.blog-card-title {
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.blog-card-excerpt {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blog-card-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s;
}

.blog-card-link:hover {
    color: var(--secondary-blue);
}

/* Sitemap Styles */
.sitemap-section {
    padding: 2rem 0;
    border-bottom: 1px solid var(--gray-medium);
}

.sitemap-section:last-child {
    border-bottom: none;
}

.sitemap-section h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.sitemap-links {
    list-style: none;
    padding: 0;
}

.sitemap-links li {
    margin-bottom: 0.5rem;
}

.sitemap-links a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.sitemap-links a:hover {
    color: var(--primary-blue);
}

@media (max-width: 480px) {
    .hero {
        padding: 3rem 0;
    }

    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-with-image {
        min-height: 70vh;
    }
    
    .hero-message-part {
        font-size: clamp(1.25rem, 10vw, 2.5rem);
    }
    
    .filters-hero {
        padding: 1.25rem;
    }
    
    .properties-carousel .property-card {
        flex: 0 0 100%;
    }
    
    .carousel-nav {
        width: 35px;
        height: 35px;
    }

    .logo-img {
        height: 60px;
    }
    
    .logo-text {
        display: block;
        font-size: 1rem;
    }
    
    .logo h1 {
        font-size: 1.25rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }

    .slogan-badge {
        font-size: 0.95rem;
        padding: 0.6rem 1.2rem;
    }

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

    .sitemap-section {
        background: var(--white);
        padding: 2rem;
        border-radius: 16px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }

    .sitemap-section h3 {
        color: var(--primary-blue);
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        font-weight: 700;
        border-bottom: 2px solid var(--light-blue);
        padding-bottom: 0.75rem;
    }

    .sitemap-links {
        list-style: none;
        padding: 0;
    }

    .sitemap-links li {
        margin-bottom: 0.75rem;
    }

    .sitemap-links a {
        color: var(--text-dark);
        text-decoration: none;
        transition: color 0.3s ease;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .sitemap-links a:hover {
        color: var(--primary-blue);
        padding-left: 5px;
    }

    .sitemap-links a::before {
        content: '';
        width: 6px;
        height: 6px;
        background: var(--primary-blue);
        border-radius: 50%;
        transition: transform 0.3s ease;
    }

    .sitemap-links a:hover::before {
        transform: scale(1.5);
    }

    .hero-title {
        font-size: 2rem;
    }

    .filter-btn {
        width: 100%;
        padding: 1rem;
        font-size: 1.1rem;
    }

    .property-map-link {
        font-size: 0.9rem;
        padding: 0.75rem;
        display: flex;
        justify-content: center;
    }

    .partnership-visual {
        padding: 2rem;
    }

    .visual-icon {
        font-size: 3.5rem;
    }
    
    /* Responsive: Quem Somos Mobile */
    .about-header-banner {
        padding: 3rem 0;
    }
    
    .about-header-title {
        font-size: 2rem;
    }
    
    .about-main-section {
        padding: 3rem 0;
    }
    
    .about-main-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-image-wrapper {
        max-width: 100%;
    }
    
    .about-main-title {
        font-size: 1.75rem;
    }
    
    .about-description {
        font-size: 1rem;
    }
    
    .about-features-list {
        margin-top: 1.5rem;
        gap: 0.75rem;
    }
    
    .about-features-list li {
        font-size: 1rem;
    }
    
    .team-section,
    .testimonials-section {
        padding: 3rem 0;
    }
    
    .team-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
    }
    
    .team-member-image {
        width: 150px;
        height: 150px;
    }
    
    .team-member-name {
        font-size: 1.25rem;
    }
    
    .testimonial-bubble {
        min-height: 120px;
        padding: 1.5rem;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
    }
    
    /* Responsive: Página de Imóveis Mobile */
    .properties-listing-section {
        padding: 2rem 0;
    }
    
    .properties-listing-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .properties-filters-sidebar {
        position: relative;
        top: 0;
        max-height: none;
    }
    
    .properties-grid-listing {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .property-price-banner {
        font-size: 1.25rem;
        padding: 0.875rem 1rem;
    }
    
    .property-features-listing {
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .bedrooms-filter {
        flex-direction: column;
        align-items: stretch;
    }
    
    .bedroom-btn {
        width: 100%;
    }
}
