/* ================= FOOTER FULL WIDTH ================= */
body {
    overflow-x: hidden;
}

.footer p {

    text-align: left;
}

.footer p a {

    text-decoration: none;
    color: #555;
    transition: color 0.3s, transform 0.3s;
    font-weight: 600;
}

.footer p a:hover {

    color: #000;
    transform: scale(1.05);
}


.footer {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    background: #f8f9fa;
    padding: 40px 20px;
    border-top: 1px solid #ddd;
    color: #333;
}

.footer .container {
    /* max-width: 1200px; */
    margin: 0 auto;
}

.footer h5 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    text-align: left;
}

.footer .social-links {
    margin-top: 15px;
    text-align: left;
}

.footer .social-links a {
    font-size: 1.5rem;
    color: #333;
    margin-right: 15px;
    transition: color 0.3s;
}

.footer .social-links a:hover {
    color: #007bff;
}

.footer .form-group {
    margin-bottom: 15px;
}

.footer .form-control {
    border-radius: 0.375rem;
    padding: 0.75rem;
    border: 1px solid #ddd;
    font-size: 1rem;
}

.footer .btn {
    border-radius: 0.375rem;
    padding: 0.75rem;
    background-color: #007bff;
    color: #fff;
    border: none;
    width: 100%;
}

.footer .btn:hover {
    background-color: #0056b3;
}

.footer .list-unstyled li a {
    color: #007bff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
}

.footer .list-unstyled li a:hover {
    color: #0056b3;
}

.footer-bottom {
    margin-top: 30px;
    text-align: center;
    color: #777;
}

.footer-bottom a {
    color: #007bff;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: none;
}

.footer-bottom p {

    text-align: center;
}


/* Estilo del Mapa de sitio sin tabla, con flexbox */
.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.footer-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1 1 30%; /* 3 columnas de 30% de ancho */
}

.footer-row a {
    color: #555;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s, transform 0.3s;
    text-align: left;
}

.footer-row a:hover {
    color: #000;
    transform: scale(1.05); /* Efecto de hover más sutil */
}

/* Estilo responsive para los enlaces de redes sociales */
.footer .social-links a {
    font-size: 1.5rem;
    margin-right: 15px;
}


/* Footer en dispositivos móviles */
@media (max-width: 767px) {
    .footer .social-links a {
        font-size: 1.2rem;
        margin-bottom: 10px;
        display: inline-block;
    }

    .footer .container .col-md-4 {
        margin-bottom: 30px;
    }

    .footer-links {
        flex-direction: column;
    }

    .footer-row {
        flex: 1 1 100%;
    }
}