/* =========================================================
   GORÁ - FOOTER
========================================================= */

.gora-footer {
    width: 100%;

    margin: 0;
    padding: 0;

    background: #222222;

    color: #ffffff;

    box-sizing: border-box;
}


/* =========================================================
   CONTENIDO SUPERIOR
========================================================= */

.gora-footer-contenido {
    width: 100%;
    max-width: 1600px;

    min-height: 340px;

    margin: 0 auto;

    padding: 50px 10% 45px;

    display: grid;

    grid-template-columns:
        1fr
        1.25fr
        0.9fr;

    column-gap: 70px;

    align-items: center;

    box-sizing: border-box;
}


/* =========================================================
   LOGO
========================================================= */

.gora-footer-logo {
    display: flex;

    align-items: center;
    justify-content: flex-start;
    margin-left: -100px;
}


.gora-footer-logo img {
    display: block;

    width: 310px;
    max-width: 100%;
    height: auto;

    object-fit: contain;
}


/* =========================================================
   TITULOS
========================================================= */

.gora-footer h3 {
    margin: 0 0 25px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 27px;
    font-weight: 400;

    line-height: 1.2;

    letter-spacing: 1px;

    color: #ffffff;
}


/* =========================================================
   CONTACTO
========================================================= */

.gora-footer-contacto {
    align-self: center;
}


.gora-footer-dato {
    min-height: 34px;

    margin-bottom: 15px;

    display: grid;

    grid-template-columns: 38px 180px 1fr;

    align-items: center;

    column-gap: 8px;

    font-family: "Unbounded", sans-serif;

    font-size: 14px;

    color: #ffffff;
}


.gora-footer-dato:last-child {
    margin-bottom: 0;
}


/* =========================================================
   ICONOS DE CONTACTO
========================================================= */

.gora-footer-icono {
    width: 30px;
    height: 30px;

    display: flex;

    align-items: center;
    justify-content: flex-start;

    box-sizing: border-box;
}


.gora-footer-icono img {
    width: 30px;
    height: 30px;

    display: block;

    object-fit: contain;
}


/* =========================================================
   TEXTOS DE CONTACTO
========================================================= */

.gora-footer-label {
    white-space: nowrap;

    font-weight: 700;
}


.gora-footer-valor {
    white-space: nowrap;

    font-weight: 400;
}


/* =========================================================
   REDES SOCIALES
========================================================= */

.gora-footer-redes {
    align-self: center;

    display: flex;
    flex-direction: column;

    align-items: flex-start;
}


.gora-footer-redes h3 {
    margin-bottom: 85px;
}


/* =========================================================
   ICONOS SOCIALES
========================================================= */

.gora-footer-redes-iconos {
    display: flex;

    align-items: center;

    gap: 18px;
}


.gora-footer-red {
    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid #ffffff;

    border-radius: 50%;

    color: #ffffff;

    text-decoration: none;

    box-sizing: border-box;

    overflow: hidden;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}


.gora-footer-red:hover {
    background: #c9003d;

    transform: translateY(-3px);
}


.gora-footer-red img {
    width: 22px;
    height: 22px;

    display: block;

    object-fit: contain;
}


/* =========================================================
   BARRA INFERIOR
========================================================= */

.gora-footer-inferior {
    width: 100%;

    min-height: 50px;

    padding: 0 9%;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;

    background: #c9003d;

    box-sizing: border-box;
}


/* =========================================================
   COPYRIGHT
========================================================= */

.gora-footer-copyright {
    font-family: "Unbounded", sans-serif;

    font-size: 14px;
    font-weight: 400;

    line-height: 1.4;

    color: #ffffff;
}


.gora-footer-copyright strong {
    font-weight: 700;
}


/* =========================================================
   LEGALES
========================================================= */

.gora-footer-legales {
    display: flex;

    align-items: center;

    gap: 8px;

    font-family: "Unbounded", sans-serif;

    font-size: 13px;

    white-space: nowrap;
}


.gora-footer-legales a {
    color: #ffffff;

    text-decoration: none;
}


.gora-footer-legales a:hover {
    text-decoration: underline;
}


.gora-footer-legales span {
    color: #ffffff;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .gora-footer-contenido {
        padding-left: 6%;
        padding-right: 6%;

        column-gap: 35px;

        grid-template-columns:
            0.8fr
            1.4fr
            0.8fr;
    }


    .gora-footer-logo img {
        width: 260px;
    }


    .gora-footer-dato {
        grid-template-columns: 32px 145px 1fr;

        font-size: 12px;
    }


    .gora-footer-dato .gora-footer-icono {
        width: 27px;
        height: 27px;
    }


    .gora-footer-dato .gora-footer-icono img {
        width: 27px;
        height: 27px;
    }

}


/* =========================================================
   TABLET / MÓVIL
========================================================= */

@media (max-width: 850px) {

    .gora-footer-contenido {
        min-height: auto;

        padding: 55px 30px;

        grid-template-columns: 1fr;

        row-gap: 55px;

        text-align: center;
    }


    .gora-footer-logo {
        justify-content: center;
    }


    .gora-footer-logo img {
        width: 280px;
    }


    .gora-footer-contacto {
        width: 100%;
    }


    .gora-footer-contacto h3,
    .gora-footer-redes h3 {
        text-align: center;

        margin-bottom: 30px;
    }


    .gora-footer-dato {
        width: max-content;
        max-width: 100%;

        margin-left: auto;
        margin-right: auto;

        grid-template-columns: 35px 140px auto;

        text-align: left;
    }


    .gora-footer-redes {
        align-items: center;
    }


    .gora-footer-redes h3 {
        margin-bottom: 30px;
    }


    .gora-footer-inferior {
        min-height: auto;

        padding: 22px 25px;

        flex-direction: column;

        justify-content: center;

        text-align: center;
    }


    .gora-footer-legales {
        white-space: normal;

        flex-wrap: wrap;

        justify-content: center;
    }

}


/* =========================================================
   MÓVIL
========================================================= */

@media (max-width: 500px) {

    .gora-footer-contenido {
        padding: 45px 20px;
    }


    .gora-footer-logo img {
        width: 230px;
    }


    .gora-footer h3 {
        font-size: 22px;
    }


    .gora-footer-dato {
        width: 100%;

        grid-template-columns: 32px 125px 1fr;

        font-size: 10px;

        column-gap: 5px;
    }


    .gora-footer-dato .gora-footer-icono,
    .gora-footer-dato .gora-footer-icono img {
        width: 25px;
        height: 25px;
    }


    .gora-footer-red {
        width: 44px;
        height: 44px;
    }


    .gora-footer-red img {
        width: 20px;
        height: 20px;
    }


    .gora-footer-copyright {
        font-size: 10px;
    }


    .gora-footer-legales {
        font-size: 9px;

        gap: 5px;
    }

}