
/* ===== HOME BACKGROUND ===== */
.home-bg {
    background-color: rgb(49, 141, 216);
    min-height: 100vh;
    color: #fff;
    font-family: 'Manrope', sans-serif;
}

/* ===== TEXTOS ===== */
.home-bg h4 {
    font-weight: 600;
    line-height: 1.4;
    
}
.home-bg p {
    font-weight: 400;
}

.icon-location-home {
    width: 28px;      
    height: auto;
    filter: invert(1); /* lo deja blanco */
    display: block;
}

/*footer*/
.icon-location-footer, 
.icon-phone-footer {
    width: 20px;
    filter: invert(1);
}

/* contenedor de cada fila */
.footer-item{
    display: grid;
    grid-template-columns: 30px 260px; /* 👈 ancho fijo para que todo calce */
    justify-content: start;
    align-items: center;
    gap: 6px;
}

.footer-icon{
    display: flex;
    justify-content: center;
}

.footer-text{
    font-size: 14px;
    color: #fff;
}
.footer-column{
    display: flex;
    flex-direction: column;
    gap: 8px; /* 👈 separación vertical */
}
.footer-logo-homefit{
    width: 160px;
    height: auto;
    margin-bottom: 18px;
    margin-top: 6px;
    
}



/* Desktop */
@media (min-width: 992px) {
    .home-bg h4 {
        font-size: 48px;
        line-height: 60px;
    }
}

/* Mobile */
@media (max-width: 991.98px) {
    .home-bg h3 {
        font-size: 36px;
        line-height: 36px;
    }
}


/*boton play */
.video-wrapper{
    max-width: 470px;
    width: 100%;
    height: 450px;
    position: relative;
    overflow: hidden; /* 👈 recorta lo que sobra */
    
    margin: 30px 0;
    padding: 30px 0;
    background: rgb(0 121 188);

    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;

}

.video-home{
    width: 100%;
    height: 100%;
    object-fit: cover;   /* 👈 CLAVE */
    display: block;
}

.video-play-btn{
    position: absolute;

    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    margin: auto;

    width: 70px;
    height: 70px;

    border-radius: 50%;
    border: none;

    background: rgba(0,0,0,0.6);
    color: white;
    font-size: 30px;

    cursor: pointer;
    display: none;

    z-index: 5;
}



/* ===== INFO CARDS ===== */
.info-card {
    height: 205px;
    padding: 32px;
    border-radius: 18px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.info-card h4 {
    font-weight: 500;
    margin-bottom: 14px;
}

.info-card p {
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
}

/* ===== COLORES CARDS ===== */
.bg-calidad     { background-color: #159e96; }
.bg-excelencia  { background-color: #0c87b5; }
.bg-gratuidad   { background-color: #8f3a8c; }
.bg-movilidad   { background-color: #d60f7a; }

.escribenos h4 {
    font-weight: 600;
    color: rgb(0 121 188);
}