.hero {
    height: 100vh; 
    min-height: 600px;
    position: relative;
    background-image: url('../img/imagem-home1.jpg');
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px; 
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(16, 42, 67, 0.4) 0%, rgba(8, 24, 38, 0.85) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--color-ivory);
    padding: 40px;
    max-width: 1000px;
    animation: fadeInUp 1.2s ease-out forwards;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: 88px;
    font-weight: 400;
    letter-spacing: 4px;
    margin-bottom: 30px;
    line-height: 1.1;
    color: var(--color-ivory);
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-title span {
    color: var(--color-gold);
    font-style: italic;
}

.hero-subtitle {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 60px;
    color: var(--color-gold);
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    border-top: 1px solid rgba(197, 157, 95, 0.5);
    border-bottom: 1px solid rgba(197, 157, 95, 0.5);
    display: inline-block;
    padding: 15px 40px;
}

.hero-divider {
    display: none;
}

.search-section {
    padding: 100px 0 60px;
    background-color: var(--color-cream);
    border-bottom: 1px solid rgba(197, 157, 95, 0.2); 
}

.section-title {
    font-family: var(--font-primary);
    font-size: 56px;
    font-weight: 400;
    color: var(--color-hunter-green);
    text-align: center;
    margin-bottom: 15px;
}

.section-subtitle {
    font-family: var(--font-secondary);
    font-size: 24px;
    color: var(--color-taupe);
    text-align: center;
    font-style: italic;
    margin-bottom: 70px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.search-filters {
    max-width: 900px;
    margin: 0 auto;
    background: transparent;
}

.search-box {
    margin-bottom: 40px;
    text-align: center;
}

.search-box input {
    width: 100%;
    max-width: 600px;
    padding: 15px 10px;
    font-family: var(--font-primary);
    font-size: 24px;
    color: var(--color-hunter-green);
    background-color: transparent;
    border: none;
    border-bottom: 2px solid var(--color-gold);
    text-align: center;
    transition: all 0.3s ease;
}

.search-box input::placeholder {
    color: var(--color-taupe);
    opacity: 0.6;
    font-style: italic;
}

.search-box input:focus {
    outline: none;
    border-bottom-color: var(--color-hunter-green);
    transform: scale(1.02);
}

.filter-group {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.filter-label {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-hunter-green);
    margin-right: 10px;
}

.filter-btn {
    padding: 10px 25px;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background-color: transparent;
    border: 1px solid var(--color-taupe);
    color: var(--color-taupe);
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.4s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--color-hunter-green);
    color: var(--color-ivory);
    border-color: var(--color-hunter-green);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(16, 42, 67, 0.2);
}

.btn-clear {
    margin-left: 15px;
    font-family: var(--font-secondary);
    font-size: 16px;
    font-style: italic;
    color: var(--color-burgundy);
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.btn-clear:hover {
    border-bottom-color: var(--color-burgundy);
}

.properties-section {
    padding: 50px 0 120px;
    background-color: var(--color-cream);
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 60px;
}

.property-card {
    background-color: var(--color-ivory);
    border: none;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05); 
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    top: 0;
}

.property-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(16, 42, 67, 0.15);
}

.property-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    position: relative;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.property-card:hover .property-image img {
    transform: scale(1.1);
}

.property-content {
    padding: 35px;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.03);
}

.property-title {
    font-family: var(--font-primary);
    font-size: 28px;
    font-weight: 400;
    color: var(--color-hunter-green);
    margin-bottom: 8px;
}

.property-location {
    font-family: var(--font-sans);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-gold-dark);
    margin-bottom: 25px;
}

.property-features {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    border-bottom: none;
    padding-bottom: 0;
}

.feature-tag {
    font-family: var(--font-secondary);
    font-size: 16px;
    font-style: italic;
    color: var(--color-taupe);
    background: none;
    border: none;
    padding: 0;
    text-transform: none;
    letter-spacing: 0;
}

.feature-tag:not(:last-child)::after {
    content: '•';
    margin-left: 15px;
    color: var(--color-gold);
}

.property-specs {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    padding: 15px 0;
    background-color: transparent;
    border-radius: 0;
    border-top: 1px solid rgba(197, 157, 95, 0.3);
    border-bottom: 1px solid rgba(197, 157, 95, 0.3);
}

.spec {
    text-align: center;
    flex: 1;
    border-right: 1px solid rgba(197, 157, 95, 0.15);
}

.spec:last-child {
    border-right: none;
}

.spec-value {
    display: block;
    font-family: var(--font-primary);
    font-size: 22px;
    font-weight: 400;
    color: var(--color-hunter-green);
    line-height: 1.2;
}

.spec-label {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-taupe);
}

.property-price {
    font-family: var(--font-primary);
    font-size: 32px;
    font-weight: 400;
    color: var(--color-hunter-green);
    margin-bottom: 25px;
    letter-spacing: 0;
    text-shadow: none;
}

.btn-schedule {
    width: 100%;
    padding: 18px 0;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    background-color: var(--color-hunter-green);
    color: var(--color-ivory);
    border: 1px solid var(--color-hunter-green);
    cursor: pointer;
    transition: all 0.4s ease;
}

.btn-schedule:hover {
    background-color: transparent;
    color: var(--color-hunter-green);
    transform: none;
    box-shadow: none;
}

.no-results {
    text-align: center;
    padding: 80px 20px;
}

.no-results p {
    font-family: var(--font-secondary);
    font-size: 24px;
    color: var(--color-burgundy);
    font-style: italic;
}

.about-section {
    padding: 160px 0; 
    background: linear-gradient(180deg, var(--color-hunter-green) 0%, #050f16 100%);
    border-top: 1px solid var(--color-gold);
    color: var(--color-cream);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '1892';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-primary);
    font-size: 400px;
    color: var(--color-gold);
    opacity: 0.03;
    pointer-events: none;
    z-index: 0;
}

.about-content {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center;
}

.about-text {
    margin-bottom: 100px;
}

.about-section .section-title {
    font-size: 64px;
    color: var(--color-gold);
    margin-bottom: 20px;
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.about-text p {
    font-family: var(--font-secondary);
    font-size: 24px;
    line-height: 1.8;
    color: var(--color-beige);
    max-width: 800px;
    margin: 0 auto 30px;
    text-align: center;
    font-weight: 300;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid rgba(197, 157, 95, 0.3);
    border-bottom: 1px solid rgba(197, 157, 95, 0.3);
}

