/* =========================
   VARIABLES
========================= */
:root {
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', 'Segoe UI', sans-serif;

    --green-main: #82d225;
    --green-light: #c2f07a;
    --gray-light: #e8ede9;
    --white: #ffffff;
    --anthracite: #1e2a25;

    --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* =========================
   GLOBAL UTILITIES
========================= */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--anthracite);
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    flex-shrink: 0;
}

.logo-icon {
    width: 144px;
    height: 120px;
    background: var(--green-main);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* =========================
   FOOTER SECTION
========================= */
footer {
    background: var(--anthracite);
    color: rgba(255, 255, 255, 0.6);
    padding: 64px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-brand .logo {
    color: white;
    margin-bottom: 16px;
    cursor: pointer;
}

.footer-brand .logo span {
    color: var(--green-light);
}

.footer-brand p {
    font-size: 0.88rem;
    line-height: 1.7;
    max-width: 260px;
}

.footer-col h5 {
    color: white;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    transition: var(--transition);
    cursor: pointer;
}

.footer-col ul li a:hover {
    color: var(--green-light);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    margin-bottom: 14px;
}

.footer-contact-item svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--green-light);
}

.whatsapp-icon path{
    fill: var(--green-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: gap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 0.82rem;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
    cursor: pointer;
}

.footer-links a:hover {
    color: var(--green-light);
}

.footer-contact-item a:hover {
    color: var(--green-light);
}

/* =========================
   FOOTER RESPONSIVE
========================= */
@media(max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width: 768px) {

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand p {
        max-width: 100%;
        margin: 0 auto;
    }

    .footer-brand .logo {
        justify-content: center;
    }

    .footer-contact-item {
        justify-content: center;
    }

    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}