/* ================= FOOTER ================= */
.footer {
    background: #0f1a23;
    color: #fff;
    padding-top: 80px;
}

/* GRID */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}

/* LOGO */
.footer .logo {
    font-size: 28px;
    margin-bottom: 15px;
}

.footer .logo span {
    color: var(--secondary-color);
}

/* TEXTO */
.footer p {
    color: #ccc;
    font-size: 14px;
    margin-bottom: 20px;
}

/* TITULOS */
.footer h4 {
    margin-bottom: 20px;
    position: relative;
}

.footer h4::after {
    content: "";
    width: 40px;
    height: 3px;
    background: var(--secondary-color);
    position: absolute;
    left: 0;
    bottom: -8px;
}

/* LISTAS */
.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

/* CONTACTO */
.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--secondary-color);
}

/* NEWSLETTER */
.footer input {
    width: 100%;
    padding: 12px;
    border: none;
    margin-bottom: 10px;
    background: #1b2a35;
    color: #fff;
}

/* BOTON */
.footer .btn-quote {
    width: 100%;
}

/* ================= BOTTOM ================= */
.footer-bottom {
    margin-top: 60px;
    background: #0c151d;
    padding: 20px 0;
}

.footer-bottom-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* TEXTO */
.footer-bottom p span {
    color: var(--secondary-color);
}

/* REDES */
.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    transition: 0.3s;
}

.footer-social a:hover {
    transform: translateY(-5px);
    background: #fff;
    color: var(--secondary-color);
}

.footer-col img{
  width: 220px;
  margin-bottom: 15px;
}

footer h4{
    color: #fff;
}

/* ================= RESPONSIVE ================= */

/* TABLET */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* MOBILE */
@media (max-width: 576px) {

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-contact li {
        justify-content: center;
    }

    .footer-bottom-grid {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }
}