/* ============================================
   HOME UNIFIED - Eduardo Imóveis
   Combinação do melhor das 3 versões
   ============================================ */

/* ===== VARIÁVEIS ===== */
:root {
    --primary: #0F6B3A;
    --primary-dark: #0a4f2a;
    --primary-light: #3FA66A;
    --primary-gradient: linear-gradient(135deg, #0F6B3A 0%, #3FA66A 100%);
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #FFD700 100%);
    --secondary: #1a1a2e;
    --white: #ffffff;
    --black: #111111;
    --gray: #666666;
    --gray-light: #f5f5f5;
    --gray-dark: #333333;
    --shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 30px 60px rgba(15, 107, 58, 0.15);
    --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

/* ===== GRADIENT TEXT ===== */
.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.highlight {
    color: var(--primary);
}

/* ============================================
   HERO SECTION PREMIUM (INDEX3)
   ============================================ */
.hero-premium {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    margin-top: -80px;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 8s ease;
}

.hero-slide.active .hero-slide-bg img {
    transform: scale(1);
}

.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

.hero-slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    z-index: 2;
    width: 100%;
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate(-50%, -40%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.hero-tag {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-title .gradient-text {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 35px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-hero-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 10px 30px rgba(15, 107, 58, 0.3);
}

.btn-hero-primary:hover {
    background: var(--primary-light);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(15, 107, 58, 0.4);
}

.btn-hero-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-hero-secondary:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-5px);
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-nav:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.slider-prev {
    left: 30px;
}

.slider-next {
    right: 30px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    width: 30px;
    border-radius: 6px;
    background: var(--primary);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: white;
    cursor: pointer;
    z-index: 10;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.scroll-indicator svg {
    width: 24px;
    height: 24px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ============================================
   STATS SECTION (INDEX3)
   ============================================ */
.stats-premium {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.stats-grid-premium {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-premium-card {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.stat-premium-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.stat-premium-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.8rem;
}

.stat-premium-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
}

.stat-premium-label {
    font-size: 0.9rem;
    color: var(--gray);
    font-weight: 500;
}

/* ============================================
   FEATURED PROPERTIES (INDEX3)
   ============================================ */
.featured-premium {
    padding: 100px 0;
    background: white;
}

.section-header-premium {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag-premium {
    display: inline-block;
    padding: 6px 15px;
    background: rgba(15, 107, 58, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-title-premium {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--black);
}

.section-subtitle-premium {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Properties Grid */
.properties-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.property-premium-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.property-premium-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.property-premium-image {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.property-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.property-premium-card:hover .property-img {
    transform: scale(1.1);
}

.property-premium-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 15px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 700;
    color: white;
    z-index: 2;
}

.badge-sale { background: var(--primary); }
.badge-rent { background: #FF6B35; }
.badge-sold { background: #6c757d; }
.badge-rented { background: #17a2b8; }

.property-premium-type {
    position: absolute;
    bottom: 15px;
    left: 15px;
    padding: 5px 12px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    border-radius: 20px;
    color: white;
    font-size: 0.7rem;
    font-weight: 500;
    z-index: 2;
}

.property-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    z-index: 2;
}

.property-premium-content {
    padding: 25px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.property-premium-content:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.property-premium-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--black);
}

.property-premium-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.property-premium-location i {
    color: var(--primary);
}

.property-premium-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 15px;
}

.price-period {
    font-size: 0.9rem;
    font-weight: 400;
}

.property-premium-features {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    padding: 15px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray);
    font-size: 0.9rem;
}

.feature-item i {
    color: var(--primary);
}

.property-premium-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: transparent;
    border: 2px solid var(--primary);
    border-radius: 50px;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.property-premium-btn:hover {
    background: var(--primary);
    color: white;
    gap: 15px;
}

.view-all-premium {
    text-align: center;
}

.btn-premium {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 35px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-premium-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-premium-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-5px);
    gap: 15px;
}

/* ============================================
   BENEFITS UNIFIED (INDEX2 melhorado)
   ============================================ */
.benefits-unified {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.benefits-grid-unified {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-unified-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
}

.benefit-unified-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.8rem;
}

.benefit-unified-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--black);
}

.benefit-unified-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* ============================================
   ABOUT UNIFIED (INDEX2 + melhorias)
   ============================================ */
.about-unified {
    padding: 100px 0;
    background: white;
}

.about-unified-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-unified-content {
    max-width: 600px;
}

.about-unified-text {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-unified-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 30px 0;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray);
}

.about-feature i {
    color: var(--primary);
    font-size: 1.2rem;
}

.about-unified-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-premium-primary {
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 10px 30px rgba(15, 107, 58, 0.3);
}

.btn-premium-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(15, 107, 58, 0.4);
}

.btn-premium-secondary {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-premium-secondary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-5px);
}

.about-unified-image {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.about-experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    text-align: center;
    box-shadow: var(--shadow);
}

.about-experience-badge span {
    font-size: 2rem;
    font-weight: 800;
}

.about-experience-badge small {
    font-size: 0.7rem;
}

.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    height: 200px;
}

.map-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ============================================
   TESTIMONIALS SECTION (INDEX3)
   ============================================ */
.testimonials-premium {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-premium-card {
    flex: 0 0 100%;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow);
    margin: 0 15px;
}

.testimonial-premium-quote {
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.3;
    margin-bottom: 20px;
}

.testimonial-premium-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-premium-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonial-premium-author img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.author-info span {
    font-size: 0.85rem;
    color: var(--gray);
    display: block;
    margin-bottom: 5px;
}

.author-rating {
    color: #FFD700;
    font-size: 0.8rem;
}

.author-rating i {
    margin-right: 2px;
}

.testimonials-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.testimonial-prev,
.testimonial-next {
    width: 45px;
    height: 45px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.testimonial-dots {
    display: flex;
    gap: 10px;
}

.testimonial-dots .dot {
    width: 10px;
    height: 10px;
    background: #ddd;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-dots .dot.active {
    width: 30px;
    border-radius: 5px;
    background: var(--primary);
}

/* ============================================
   CTA SECTION (INDEX3)
   ============================================ */
.cta-premium {
    padding: 100px 0;
    background: var(--primary-gradient);
    text-align: center;
}

.cta-premium-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-premium-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
}

.cta-premium-content h2 .gradient-text {
    color: white;
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-premium-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.cta-premium-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-premium-white {
    background: white;
    color: var(--primary);
}

.btn-premium-white:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.btn-premium-transparent {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-premium-transparent:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-5px);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .stats-grid-premium {
        gap: 20px;
    }
    
    .benefits-grid-unified {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .stats-grid-premium {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .properties-grid-premium {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-unified-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-unified-content {
        max-width: 100%;
    }
    
    .about-unified-features {
        justify-content: center;
    }
    
    .about-unified-buttons {
        justify-content: center;
    }
    
    .benefits-grid-unified {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .slider-nav {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-premium {
        height: 600px;
        min-height: auto;
        margin-top: -60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-hero {
        width: 100%;
        justify-content: center;
    }
    
    .stats-grid-premium {
        grid-template-columns: 1fr;
    }
    
    .properties-grid-premium {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid-unified {
        grid-template-columns: 1fr;
    }
    
    .section-title-premium {
        font-size: 2rem;
    }
    
    .cta-premium-content h2 {
        font-size: 1.8rem;
    }
    
    .testimonial-premium-card {
        padding: 25px;
    }
    
    .testimonial-premium-author {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-tag {
        font-size: 0.7rem;
    }
    
    .property-premium-title {
        font-size: 1.1rem;
    }
    
    .property-premium-price {
        font-size: 1.4rem;
    }
    
    .property-premium-features {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .cta-premium-buttons {
        flex-direction: column;
    }
    
    .btn-premium {
        width: 100%;
        justify-content: center;
    }
    
    .about-unified-features {
        grid-template-columns: 1fr;
    }
    
    .about-experience-badge {
        width: 90px;
        height: 90px;
    }
    
    .about-experience-badge span {
        font-size: 1.5rem;
    }
    
    .about-experience-badge small {
        font-size: 0.6rem;
    }
}

/* ============================================
   ANIMAÇÕES AOS
   ============================================ */
[data-aos] {
    opacity: 0;
    transition: all 0.8s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translate(0, 0);
}

/* ============================================
   SCROLLBAR PERSONALIZADA
   ============================================ */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}


/* ===== SEÇÃO IMÓVEIS VENDIDOS EM DESTAQUE ===== */
.sold-properties-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.sold-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.85);
    color: #dc3545;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 800;
    z-index: 3;
}

.sold-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
    background: rgba(0, 0, 0, 0.85);
    color: #dc3545;
    font-size: 1rem;
    font-weight: 800;
    padding: 4px 15px;
    border-radius: 40px;
    border: 2px solid #dc3545;
    z-index: 4;
    white-space: nowrap;
}

.sold-date {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: #ddd;
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 0.6rem;
    z-index: 3;
}

.sold-date i {
    color: #dc3545;
}