/* ============================================================
   footer.css — Componente Site Footer
   ============================================================ */

.site-footer {
    background-color: #001f20;
    color: #e5e7eb;
    position: relative;
    margin-top: 20px;
    font-family: var(--font-body);
}

/* Wavy Top Border */
.footer-wave {
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
	background-image: radial-gradient(circle at 10px 0, transparent 10px, #001f20 11px);
	background-size: 20px 20px;
	background-repeat: repeat-x;
	background-position: top center;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.6rem 5% 1.6rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr; /* Explicit 4 columns on desktop */
    gap: 3rem;
    align-items: start;
}

@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 3rem 2rem;
    }
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* Column Base */
.footer-col {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-column-title {
    font-family: var(--font-title);
    font-size: 1rem;
    font-weight: 700;
    color: #64dfdf; /* Premium Cyan */
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 0.5rem;
}

/* Column 1: Brand & Contact */
.footer-brand {
    margin-bottom: 0.5rem;
    max-width: 200px; /* Constrain the container */
}

.footer-brand a {
    display: inline-block;
    max-width: 100%;
}

.footer-brand img,
.footer-brand svg {
    max-width: 100%;
    height: auto;
    display: block;
}

.footer-brand img {
    filter: brightness(0) invert(1);
}

.footer-logo-text {
    font-family: var(--font-title);
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin: 0;
}
.footer-logo-text span {
    display: block;
    font-weight: 400;
    font-size: 1.5rem;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.95);
}

.footer-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: #ffffff;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    padding-left: 2rem; /* Align under text slightly */
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: #ffffff;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.social-icon:hover {
    transform: translateY(-2px);
    opacity: 0.8;
}

.social-icon svg {
    width: 100%;
    height: 100%;
}

/* Columns 2 & 3: Links */
.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links-list li {
    position: relative;
    padding-left: 1.25rem;
}

.footer-links-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background-color: #ffffff;
    border-radius: 50%;
}

.footer-links-list a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-links-list a:hover {
    color: #ffffff;
    font-weight: 500;
}

.footer-about-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.95);
    margin-top: 1rem;
    line-height: 1.6;
}

/* Column 4: Payments */
.payment-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.payment-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
}

.payment-icon svg,
.payment-icon img {
    width: 48px;
    height: 30px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

.payment-icon img {
    object-fit: contain;
    background: #ffffff;
}

.payment-icon svg {
    background: transparent;
}

.payment-icon svg:hover,
.payment-icon img:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}
