#home {
    min-height: 130vh;
    padding-top: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: 
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 1) 0%, 
            rgba(255, 255, 255, 0.40) 50%, 
            rgba(237, 221, 83, 0) 100%
        ),
        url('../assets/images/background-home.webp');
        
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

#cta {
    width: 100%;
    max-width: 600px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
}

.point_info {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #f59e0b;
    background-color: rgba(245, 158, 11, 0.25);
    padding: 6px 14px;
    border-radius: 50px;
    font-weight: 600;
    white-space: nowrap;
    font-size: clamp(0.7rem, 1.8vw, 1rem);
}

.point_info i {
    animation: pulsePoint 1.2s infinite ease-in-out;
}

@keyframes pulsePoint {
    0% {
        opacity: 0.4;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }

    100% {
        opacity: 0.4;
        transform: scale(1);
    }
}

#cta .title {
    font-size: clamp(2.2rem, 7vw, 4rem);
    color: #1d1d1d;
    line-height: 1.3;
    font-weight: 900;
}

#cta .title span {
    color: #f59e0b;
}

.description {
    font-size: clamp(0.85rem, 2.5vw, 1.2rem);
    color: #1d1d1d;
    margin-bottom: 16px;
}

#home_buttons {
    display: flex;
    gap: 20px;
    width: 100%;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-default-normal {
    letter-spacing: none;
    text-transform: none;
    min-width: 270px;
    font-size: clamp(0.85rem, 2.5vw, 1rem);
    font-weight: 600;
}

#hero_stats {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 19px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    align-items: center;
    width: 187px;
    gap: 12px; 
}

.stat-icon {
    width: 55px;
    height: 55px;
    background: rgba(0, 0, 0, 0.15s);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10.3px);
    -webkit-backdrop-filter: blur(10.3px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* color: #f59e0b; */
    color: #466088;
    -webkit-text-stroke: 0.2px;
    font-size: 28px;    
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 1rem;
    font-weight: 900;
    color: #1d1d1d;
}

.stat-label {
    font-size: 0.9rem;
    color: #616161;
    font-weight: 600;
}

#arrow_home {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

#arrow_home i {
    font-size: 42px;
    color: #f59e0b;
    animation: arrowDrop 1.8s infinite cubic-bezier(.4,0,.2,1);
}

@keyframes arrowDrop {

    0% {
        transform: translateY(-20px);
        opacity: 0;
    }

    30% {
        opacity: 1;
    }

    80% {
        transform: translateY(15px);
        opacity: 1;
    }

    100% {
        transform: translateY(20px);
        opacity: 0;
    }
}

@media screen and (max-width: 456px) {
    #hero_stats {
        flex-direction: column;   
        align-items: center;      
        justify-content: center;  
        gap: 19px;                
    }

    
}
