/* ==========================================
        FOOTER - OSCARITO
========================================== */

footer {
    background: #111111;
    color: #ffffff;
    padding: 60px 40px 20px;
    margin-top: 80px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-column h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-column p {
    color: #cccccc;
    font-size: 14px;
}

.footer-column ul {
    list-style: none;
}

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

.footer-column ul li a:hover {
    color: #e63946;
}

.social {
    display: flex;
    gap: 15px;
}

.social a {
    width: 40px;
    height: 40px;
    background: #e63946;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.copyright {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #999;
    font-size: 14px;
}

.benefits {
    background: #f5f5f5;
    padding: 60px 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 80px auto;
}

.benefit {
    text-align: center;
}

.benefit i {
    font-size: 48px;
    color: #e63946;
    margin-bottom: 15px;
    display: block;
}

.brands {
    margin: 80px auto;
    padding: 0 40px;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 700;
}

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

.brand-box {
    background: white;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    transition: 0.3s;
}

.brand-box:hover {
    border-color: #e63946;
    transform: translateY(-5px);
}

.offer-banner {
    padding: 60px 40px;
    text-align: center;
    margin: 80px 0;
}

.offer-content h2 {
    font-size: 42px;
    font-weight: 800;
    color: #111;
}

.offer-content a {
    background: #e63946;
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
}

#btnTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #e63946;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    z-index: 999;
}

main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}