/* Variables */
:root {
    --color-primary: #8A8F5C;
    --color-secondary: #4A4F2C;
    --color-text: #333333;
    --color-background: #FFFFFF;
    --color-accent: #E0E4C4;
    --font-main: 'Arial', sans-serif;
    --font-heading: 'Georgia', serif;
}

/* Reset y normalización */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-background);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
}

a {
    color: var(--color-primary);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
}

/* Layout base */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Utilidades */
.text-center {
    text-align: center;
}

.hidden {
    display: none;
}

button {
    border-radius: 50px;
}

select {
    padding: 5px;
    border: none;
    background: #ebebeb;
    border-radius: 50px;
}

/* Responsive */
@media (max-width: 768px) {
    body {
        font-size: 14px;
    }
}