@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@700&family=Merriweather:wght@400;700&family=Open+Sans:wght@400;600&display=swap');

:root {
    --color-bg-dark: #1a1a2e;
    --color-bg-light: #2c3e50;
    --color-primary-red: #e74c3c;
    --color-accent-gold: #f1c40f;
    --color-text-light: #ecf0f1;
    --color-text-dark: #34495e;
    --color-border-main: #34495e;
    --color-border-accent: #f1c40f;
    --color-shadow: rgba(0, 0, 0, 0.4);
    --color-whatsapp: #28a745;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
    text-align: center;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    filter: brightness(0.8) contrast(1.1);
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%"><rect fill="%2300000000" width="100%25" height="100%25"/><line x1="0" y1="0" x2="100%25" y2="100%25" stroke="%2305050a" stroke-width="0.5"/><line x1="100%25" y1="0" x2="0" y2="100%25" stroke="%2305050a" stroke-width="0.5"/></svg>');
    background-size: 20px 20px;
    background-blend-mode: overlay;
    z-index: -1;
    pointer-events: none;
    opacity: 1;
}

.site-footer {
    width: 100%;
    background-color: #0e0e10;
    color: #a9a9a9;
    padding: 50px 20px 20px 20px;
    margin-top: auto;
    border-top: 2px solid var(--color-border-main);
    box-sizing: border-box;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto 40px auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    text-align: left;
}

.footer-column {
    flex: 1;
    min-width: 220px;
}

.footer-column h3, .footer-column h4 {
    color: var(--color-text-light);
    font-family: 'Merriweather', serif;
    margin-top: 0;
    margin-bottom: 20px;
}

.footer-column.about h3 {
    font-size: 1.5em;
    font-family: 'Cinzel', serif;
    color: var(--color-accent-gold);
}

.footer-column p {
    font-size: 0.9em;
    line-height: 1.7;
    text-align: left;
    max-width: 100%;
    padding: 0;
    margin: 0;
}

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

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul a {
    color: #a9a9a9;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul a:hover {
    color: var(--color-accent-gold);
}

.social-icons a {
    color: #a9a9a9;
    font-size: 2em;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--color-primary-red);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--color-border-main);
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9em;
}

.disclaimer {
    font-size: 0.8em;
    color: #95a5a6;
    max-width: 800px;
    margin: 15px auto 0 auto;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 30px;
    }
}
