/* ==== FOOTER ==== */
.footer {
    background-image: url('../img/footer-fondo.png');
    background-size: cover;
    background-position: center;
    color: #f1f1f1;
    padding: 40px 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

/* ===== SECTIONS ===== */
.footer-section h3,
.footer-section h4 {
    margin-bottom: 15px;
    font-weight: 600;
    color: #0080FF;
}

.footer-section p,
.footer-section a {
    font-size: 1em;
    line-height: 1.6;
    font-weight: 500;
    color: #ddd;
    text-decoration: none;
    transition: color 0.5s;
}

.footer-section a:hover {
    color: #0080FF;
}

/* ===== LOGO ===== */
.logo-section .logo img {
    max-width: 250px;
    margin-bottom: 20px;
}

/* ===== MÉTODOS DE PAGO ===== */
.payment-methods {
    margin-bottom: 25px;
}

.payment-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.payment-icon img {
    width: 50px;
    height: auto;
    border-radius: 50%;
    transition: transform 0.3s;
}

.payment-icon img:hover {
    transform: scale(1.1);
}

/* ===== REDES SOCIALES ===== */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-icon {
    color: #f1f1f1;
    font-size: 5em;
    transition: color 0.5s, transform 0.5s;
}

.social-media .social-icons .size-icon {
    font-size: 1.4em;
}

.social-icon:hover {
    color: #0080FF;
    transform: scale(1.2);
}

/* ===== CONTACTO ===== */
.contact-info p {
    margin: 15px 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .payment-icons,
    .social-icons {
        justify-content: center;
    }
}