/* main.css */
:root {
    --bg-color: #ffffff;
    --text-main: #1E1E1E;
    --taupe: #bfb4b0;
    --dark: #1E1E1E;
    --border-light: #e0e0e0;
    --font-sans: 'Inter', sans-serif;
    
    /* Social Colors */
    --facebook: #1877F2;
    --instagram: #E4405F;
    --whatsapp: #25D366;
    --tiktok: #000000;
}

body {
    font-family: var(--font-sans);
    margin: 0;
    padding: 0;
    color: var(--text-main);
}

/* --- Marquee Animation --- */
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.animate-marquee {
    display: flex;
    width: max-content;
    animation: marquee 30s linear infinite;
}

/* --- Map Section (Prefooter) --- */
.map-header {
    max-width: 1200px;
    margin: 40px auto 10px;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.map-header h2 {
    font-size: 0.85rem;
    color: var(--taupe);
    text-transform: uppercase;
    letter-spacing: 2px;
}
.map-section {
    width: 100%;
    height: 450px;
    border-top: 1px solid var(--border-light);
}
.map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(1) contrast(1.1) brightness(0.9);
}

/* --- Contact Form & Alerts --- */
.contact-status-box {
    padding: 20px;
    font-size: 0.95rem;
    border-left: 4px solid var(--taupe);
    background: #fafafa;
    margin-bottom: 30px;
}
.field-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 1px;
}
.form-control {
    width: 100%;
    padding: 12px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border-light);
    transition: border-color 0.3s ease;
}
.form-control:focus {
    outline: none;
    border-bottom: 1px solid var(--taupe);
}

/* --- Social Icons --- */
.social-links { display: flex; gap: 20px; }
.social-icon { font-size: 1.5rem; transition: transform 0.3s; text-decoration: none; }
.social-icon:hover { transform: translateY(-3px); opacity: 0.8; }
.social-icon.facebook { color: var(--facebook); }
.social-icon.instagram { color: var(--instagram); }
.social-icon.whatsapp { color: var(--whatsapp); }
.social-icon.tiktok { color: var(--tiktok); }