/* =========================================================
   ALCON DRONES
   FOOTER COMPONENT
   ========================================================= */


/* =========================================================
   FOOTER GENERAL
   ========================================================= */

.site-footer {
    width: 100%;
    background-color: #172633;
    color: #ffffff;
    box-sizing: border-box;
}

.site-footer *,
.site-footer *::before,
.site-footer *::after {
    box-sizing: border-box;
}


/* =========================================================
   CONTENEDOR
   ========================================================= */

.site-footer .footer-container {

    width: 100%;
    max-width: 1200px;

    margin: 0 auto;

    padding: 20px 20px 20px;

    display: grid;

    grid-template-columns:
        1.65fr
        1.25fr
        0.9fr
        1fr
        0.85fr;

    gap: 0;
}


/* =========================================================
   COLUMNAS
   ========================================================= */

.site-footer .footer-column {

    position: relative;

    min-width: 0;

    padding: 0 28px;

    border-left: 1px solid
        rgba(255, 255, 255, 0.16);
}


/* Primera columna */

.site-footer .footer-column:first-child {

    border-left: none;

    padding-left: 0;
}


/* Última columna */

.site-footer .footer-column:last-child {
    padding-right: 0;
}


/* =========================================================
   LOGO DEL FOOTER
   ========================================================= */

.site-footer .footer-logo {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 18px;
}


.site-footer .footer-logo img {
    display: block;
    width: 165px;
    max-width: 100%;
    height: auto;
}


/* =========================================================
   TEXTO EMPRESA
   ========================================================= */

.site-footer .footer-company p {
    margin: 0;
    color: #c7d1d6;
    font-size: 13px;
    line-height: 1.65;
}


/* =========================================================
   TITULOS
   ========================================================= */

.site-footer .footer-column h3 {

    margin: 0 0 18px;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.3;
    font-weight: 700;
}

/* =========================================================
   LISTAS
   ========================================================= */

.site-footer .footer-column ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer .footer-column li {
    margin: 0 0 11px;
    padding: 0;
    color: #c7d1d6;
    font-size: 13px;
    line-height: 1.45;
}


/* =========================================================
   ENLACES
   ========================================================= */

.site-footer .footer-column a {
    color: #c7d1d6;
    text-decoration: none;
    transition:
        color 0.25s ease,
        padding-left 0.25s ease;
}

.site-footer .footer-column a:hover {
    color: #84BD00;
}

/* =========================================================
   CONTACTO
   ========================================================= */

.site-footer .footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.site-footer .footer-contact li i {
    width: 16px;
    flex-shrink: 0;
    margin-top: 3px;
    color: #84BD00;
    text-align: center;
}

/* =========================================================
   GOOGLE MAPS
   ========================================================= */

.site-footer .footer-location-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    color: #20bfa5;
    font-size: 12px;
}

.site-footer .footer-location-link:hover {
    color: #84BD00;
}


/* =========================================================
   REDES SOCIALES
   ========================================================= */

.site-footer .footer-social {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-top: 5px;
}


.site-footer .footer-social a {

    width: 38px;

    height: 38px;

    padding: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid
        rgba(255, 255, 255, 0.35);

    border-radius: 7px;

    color: #ffffff;

    font-size: 15px;

    transition:
        background-color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}


.site-footer .footer-social a:hover {

    background-color: #84BD00;

    border-color: #84BD00;

    color: #ffffff;

    transform: translateY(-2px);
}


/* =========================================================
   COPYRIGHT
   ========================================================= */

.site-footer .footer-bottom {

    width: 100%;

    border-top: 1px solid
        rgba(255, 255, 255, 0.14);

    padding: 18px 25px;

    text-align: center;
}


.site-footer .footer-bottom p {

    margin: 0;

    color: #aebbc2;

    font-size: 12px;

    line-height: 1.5;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .site-footer .footer-container {

        grid-template-columns: 1fr 1fr;

        row-gap: 35px;

        padding:
            40px 30px 30px;
    }


    .site-footer .footer-column {

        padding:
            0 25px;

        border-left: none;
    }


    .site-footer .footer-column:nth-child(odd) {

        border-right: 1px solid
            rgba(255, 255, 255, 0.16);
    }


    .site-footer .footer-column:first-child {

        padding-left: 0;
    }


    .site-footer .footer-column:nth-child(even) {

        padding-right: 0;
    }


    .site-footer .footer-social-column {

        grid-column: 1 / -1;

        padding-left: 0;

        padding-right: 0;

        border-right: none !important;
    }
}


/* =========================================================
   MÓVIL
   ========================================================= */

@media (max-width: 600px) {

    .site-footer .footer-container {

        grid-template-columns: 1fr;

        padding:
            35px 25px 20px;

        row-gap: 0;
    }


    .site-footer .footer-column {

        width: 100%;

        padding:
            0 0 25px !important;

        margin-bottom: 25px;

        border-left: none !important;

        border-right: none !important;

        border-bottom: 1px solid
            rgba(255, 255, 255, 0.15);
    }


    .site-footer .footer-column:last-child {

        border-bottom: none;

        margin-bottom: 0;

        padding-bottom: 10px !important;
    }


    .site-footer .footer-logo img {

        width: 155px;
    }


    .site-footer .footer-company p {

        text-align: justify;
    }


    .site-footer .footer-bottom {

        padding:
            18px 20px;
    }


    .site-footer .footer-bottom p {

        font-size: 11px;
    }
}


/* =========================================================
   MÓVILES PEQUEÑOS
   ========================================================= */

@media (max-width: 400px) {

    .site-footer .footer-container {
        padding-left: 20px;
        padding-right: 20px;
    }


    .site-footer .footer-logo img {
        width: 145px;
    }
}