 :root {
     --primary-gold: #d8cfaa;
     --dark-bg: #1a1a1a;
     --card-bg: #151515;
     --border-color: #333333;
 }

 /* ===== TÍTULO DA SEÇÃO DE LOCAÇÕES ===== */


.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.gold-text {
    color: var(--primary-gold);
    position: relative;
    display: inline-block;
}

.section-subtitle {
    font-size: 16px;
    color: #cccccc;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.6;
}

.section-divider {
    width: 80px;
    height: 3px;
    background: var(--primary-gold);
    margin: 15px auto 0;
}


 .properties-section {
    margin-top: 7rem;
    margin-bottom: 4rem;
 }
 .property-card {
     background-color: var(--card-bg);
     border-radius: 12px;
     overflow: hidden;
     transition: border-color 0.3s ease;
     border: 1px solid var(--border-color);
     height: 100%;
 }

 .property-card:hover {
     border-color: var(--primary-gold);
 }

 .property-card:hover .property-title {
     color: var(--primary-gold);
 }

 .card-image-wrapper {
     position: relative;
     overflow: hidden;
 }

 .card-image-wrapper img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .property-badge {
     position: absolute;
     top: 20px;
     left: 20px;
     background-color: var(--primary-gold);
     color: #000;
     padding: 3px 12px;
     font-size: 11px;
     font-weight: 700;
     letter-spacing: 1.5px;
     text-transform: uppercase;
     z-index: 2;
 }

 .carousel-indicators {
     bottom: 15px;
     margin: 0;
 }

 .carousel-indicators button {
     width: 8px;
     height: 8px;
     border-radius: 50%;
     margin: 0 4px;
     background-color: rgba(255, 255, 255, 0.5);
     border: none;
 }

 .carousel-indicators button.active {
     background-color: var(--primary-gold);
 }

 .carousel-control-prev,
 .carousel-control-next {
     width: 45px;
     height: 45px;
     background-color: rgba(0, 0, 0, 0.6);
     border-radius: 50%;
     top: 50%;
     transform: translateY(-50%);
     opacity: 0.8;
     transition: all 0.3s ease;
 }

 .carousel-control-prev {
     left: 15px;
 }

 .carousel-control-next {
     right: 15px;
 }

 .carousel-control-prev:hover,
 .carousel-control-next:hover {
     opacity: 1;
     background-color: rgba(0, 0, 0, 0.8);
 }

 .carousel-control-prev-icon,
 .carousel-control-next-icon {
     width: 18px;
     height: 18px;
 }

 .card-content {
     padding: 28px;
     background-color: var(--card-bg);
 }

 .location {
     display: flex;
     align-items: center;
     gap: 8px;
     color: var(--primary-gold);
     font-size: 12px;
     letter-spacing: 0.5px;
     text-transform: uppercase;
     margin-bottom: 12px;
 }

 .location i {
     color: var(--primary-gold);
     font-size: 14px;
 }

 .property-title {
     color: #ffffff;
     font-size: 18px;
     font-weight: 700;
     letter-spacing: 0.5px;
     text-transform: uppercase;
     margin-bottom: 20px;
     line-height: 1.3;
     padding-bottom: 20px;
     border-bottom: 1px solid var(--border-color);
     transition: color 0.3s ease;
 }

 .property-area {
     display: flex;
     align-items: center;
     gap: 10px;
     color: #ffffff;
     font-size: 15px;
     font-weight: 600;
     margin-bottom: 20px;
     padding-bottom: 20px;
     border-bottom: 1px solid var(--border-color);
 }

 .card-content .location,
.card-content .property-area,
.card-content .property-title {
    width: 100%;
}


 .property-area i {
     color: var(--primary-gold);
     font-size: 18px;
 }

 .view-details {
     display: flex;
     align-items: center;
     justify-content: space-between;
     color: #fff;
     text-decoration: none;
     font-size: 11px;
     font-weight: 700;
     letter-spacing: 1.5px;
     text-transform: uppercase;
     transition: all 0.3s ease;
     background: none;
     border: none;
     padding: 0;
 }

 .view-details:hover {
     color: var(--primary-gold);
 }

 .view-details i {
     font-size: 16px;
     transition: transform 0.3s ease;
 }

 .view-details:hover i {
     transform: translateX(8px);
 }

 @media (max-width: 768px) {
     .section-title {
        font-size: 26px;
    }
    
    .section-subtitle {
        font-size: 15px;
        padding: 0 20px;
    }
    
    .section-badge {
        font-size: 0.75rem;
        padding: 6px 14px;
        letter-spacing: 2px;
    }
     .card-image-wrapper {
         height: 250px;
     }

     .property-title {
         font-size: 16px;
     }

 }

 /* Telas médias-grandes (1600px - 1879px) - mantém 3 colunas mas com cards maiores */
 @media (min-width: 1600px) and (max-width: 1879px) {
    .section-title {
        font-size: 3.2rem;
    }
    
    .section-subtitle {
        font-size: 1.3rem;
        max-width: 800px;
    }
     .card-image-wrapper {
         height: 340px;
     }

     .card-content {
         padding: 30px;
     }

     .property-title {
         font-size: 19px;
     }

     .property-area {
         font-size: 16px;
     }
 }

 /* Telas grandes (1880px+) - reduz para 2 colunas para cards ficarem maiores em largura também */
 @media (min-width: 1880px) {
     .col-lg-4 {
         flex: 0 0 auto;
         width: 50%;
     }

     .card-image-wrapper {
         height: 380px;
     }

     .card-content {
         padding: 32px;
     }

     .property-title {
         font-size: 20px;
     }

     .property-area {
         font-size: 17px;
     }
 }