:root {
    --dark-bg: #111111;
    --light-gray: #f4f4f4;
    --gray-text: #666666;
    --border-color: #e0e0e0;
    --shadow: 0 4px 15px rgba(0,0,0,0.1);
}
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f9f9f9;
    color: #333;
    margin: 0;
}


.container {
    width: 100%;
    margin: 5px auto;
    padding: 0 15px;
}
/* ===== FOOTER PROFESIONAL (Basado en image_82841f.png) ===== */
.main-footer {
    background-color: var(--dark-bg);
    color: white;
    margin-top: 60px;
    padding: 20px;
}

/* Barra de Beneficios Superior */
.footer-trust-bar {
    background-color: #1a1a1a;
    padding: 25px 0;
    border-bottom: 1px solid #222;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-item i {
    font-size: 24px;
    color: var(--primary-red);
}

.trust-text strong {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
}

.trust-text span {
    font-size: 11px;
    color: #888;
}

/* Cuerpo del Footer */
.footer-main-content {
    padding: 60px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 15px;
}

.footer-logo span { color: var(--primary-red); }

.col-title {
    font-size: 16px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-red);
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li { margin-bottom: 12px; }

.footer-col ul li a {
    color: #bbb;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-col ul li a:hover { color: white; }

/* Contacto y Social */
.contact-item {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #bbb;
}

.contact-item i { color: var(--primary-red); }

.social-pills {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-pills a {
    width: 35px;
    height: 35px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: 0.3s;
    text-decoration: none;
}

.social-pills a:hover { background: var(--primary-red); }

/* Bottom Bar */
.footer-bottom {
    background: #0a0a0a;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid #222;
}

.bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #666;
}

.payment-methods img {
    height: 20px;
    margin-left: 15px;
    filter: grayscale(1);
    opacity: 0.5;
}

.brand-news > p{
    font-size: 13px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .container{
        padding: 0px 0px;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .bottom-flex {
        flex-direction: column;
        gap: 15px;
    }
}