/********* COLORES */

/* OSCUROS 1 = #000000
/* OSCUROS 2 = #353535
/* OSCUROS 3 = #5B5B5B

/* COLORES 1 = #fcbd0e
/* COLORES 2 = #b92929

/********* TIPOGRAFIAS */

/* font-family: "Montserrat", sans-serif;

/********* FOOTER */

.footer {
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding-top: 30px;
    background-color: #fff;
    border-top: 2px solid #FFC400;
}

.contenido-footer {
    width: 90%;
    max-width: 1200px;
    height: auto;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: space-between;
    justify-content: space-between;
}

.img-contenido-footer {
    width: 200px;
    height: 200px;
    background-image: url('../img/icono.jpg');
    background-size: contain;
    background-position: center;
}

.secciones-contenido-footer {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    align-content: space-between;
    justify-content: space-between;
}

.seccion-contenido-footer {
    width: 250px;
    height: auto;
    margin-bottom: 25px;
}

.titulo-seccion-contenido-footer {
    width: 100%;
    height: 20px;
    line-height: 20px;
    text-align: left;
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    color: #000;
    margin-bottom: 15px;
}

.texto-seccion-contenido-footer {
    width: 100%;
    height: auto;
    margin: 0 auto;
    text-align: left;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    color: #6b6b6b;
    margin-bottom: 7.5px;
}

.texto-seccion-contenido-footer a {
    text-decoration: none;
    color: #6b6b6b;
}

.iconos-footer {
    width: 100%;
    height: 40px;
    margin-top: 15px;
    display: flex;
    align-items: center;
    align-content: flex-start;
    justify-content: flex-start;
}

.icono-footer {
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 5px;
    margin-right: 12.5px;
    font-size: 16px;
    color: #fff;
    cursor: pointer;
}

.whatsapp {
    background-color: #25D366;
}

.facebook {
    background-color: #3b5998;
}

.tiktok {
    background-color: #000;
}

.youtube {
    background-color: #FF0000;
}

.texto-footer {
    width: 100%;
    height: 15px;
    line-height: 15px;
    text-align: center;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    color: #4e4e4e;
    margin: 25px auto;
}

@media(max-width: 750px) {
    .img-contenido-footer {
        width: 120px;
        height: 120px;
        margin: 10px auto;
    }

    .secciones-contenido-footer {
        margin: 10px auto;
        align-content: center;
        justify-content: center;
    }

    .seccion-contenido-footer {
        width: 100%;
        margin: 10px auto;
        margin-bottom: 25px;
    }

    .titulo-seccion-contenido-footer {
        text-align: center;
        font-size: 20px;
    }

    .texto-seccion-contenido-footer {
        text-align: center;
        font-size: 14px;
    }

    .iconos-footer {
        width: 160px;
        margin: 10px calc(50% - 80px);
        align-content: center;
        justify-content: center;
    }

    .icono-footer {
        margin: 0 auto;
    }
}