:root {
    --verde-pukaray: #41b359;
    --rojo-pukaray: #7c180d;
    --blanco: #ffffff;
}

/* FOOTER */
.site-footer {
    margin-top: 60px;
    color: var(--blanco);
}

.footer-main {
    background: linear-gradient(135deg, #2f9446 0%, #41b359 100%);
    padding: 60px 0 35px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
}

.footer-logo img {
    width: 180px;
    max-width: 100%;
    height: auto;
}

.footer-brand-text {
    margin: 0;
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.92);
    max-width: 260px;
}

.footer-column h3 {
    margin: 0 0 18px;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--blanco);
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 52px;
    height: 3px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 999px;
}

.footer-links,
.footer-contact {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.98rem;
    line-height: 1.6;
    transition: opacity 0.25s ease, transform 0.25s ease;
    display: inline-block;
    text-decoration: none;
}

.footer-links a:hover,
.footer-contact a:hover {
    opacity: 1;
    transform: translateX(4px);
    color: var(--blanco);
}

.footer-map-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 4px;
}

.footer-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 125px;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 12px;
    color: var(--blanco);
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.footer-btn:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.34);
}

.footer-bottom {
    background: var(--rojo-pukaray);
    padding: 18px 0;
}

.footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.footer-bottom-content p {
    margin: 0;
    color: var(--blanco);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* RESPONSIVE FOOTER */
@media (max-width: 1100px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 35px 28px;
    }
}

@media (max-width: 768px) {
    .footer-main {
        padding: 45px 0 28px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-brand {
        align-items: flex-start;
    }

    .footer-logo img {
        width: 150px;
    }

    .footer-map-links {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-btn {
        width: 100%;
        max-width: 240px;
    }
}

@media (max-width: 480px) {
    .footer-column h3 {
        font-size: 1.05rem;
    }

    .footer-links a,
    .footer-contact a,
    .footer-bottom-content p,
    .footer-brand-text {
        font-size: 0.94rem;
    }
}