/* Variables de Colores para consistencia */
:root {
    --color-primary: #4CAF50; /* Un verde vibrante y saludable */
    --color-secondary: #8BC34A; /* Un verde más claro */
    --color-text-dark: #333;
    --color-text-light: #555;
    --color-background-light: #F9F9F9; /* Fondo muy claro */
    --color-background-white: #FFFFFF;
    --color-orange-accent: #FF9800; /* Para pequeños acentos, si es necesario */
}

/* Estilos Generales */
body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    line-height: 1.6;
    color: var(--color-text-light);
    background-color: var(--color-background-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 20px;
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--color-text-dark);
    font-weight: 700;
    margin-bottom: 15px;
}

h1 {
    font-size: 2.8em;
    text-align: center;
    color: var(--color-primary);
    margin-top: 10px;
    margin-bottom: 5px;
}

h2 {
    font-size: 2em;
    text-align: center;
    margin-bottom: 30px;
    color: var(--color-primary);
}

h3 {
    font-size: 1.4em;
    color: var(--color-text-dark);
}

p {
    margin-bottom: 1em;
}

ul {
    list-style-type: none;
    padding: 0;
    margin-bottom: 1em;
}

ul li {
    padding-left: 1.5em;
    position: relative;
    margin-bottom: 0.5em;
}

ul li:before {
    content: '•'; /* Un punto simple, puedes usar un ícono si quieres */
    color: var(--color-primary);
    position: absolute;
    left: 0;
}

/* Header */
header {
    background-color: var(--color-background-white);
    padding: 40px 0;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.logo {
    width: 150px; /* Ajusta el tamaño de tu logo si es necesario */
    height: auto;
    margin-bottom: 20px;
    display: block; /* Para centrarlo correctamente */
    margin-left: auto;
    margin-right: auto;
}

header .slogan {
    font-size: 1.2em;
    color: var(--color-text-light);
    font-weight: 400;
    margin-top: 0;
}

/* Secciones de Contenido */
.hero {
    background-color: var(--color-primary);
    color: white;
    padding: 60px 0;
    text-align: center;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.1);
}

.hero h2 {
    color: white;
    margin-bottom: 20px;
}

.feature-section {
    padding: 60px 0;
    background-color: var(--color-background-white);
}

.light-bg {
    background-color: var(--color-background-light);
}

/* Columnas */
.columns {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    margin-top: 30px;
}

.column {
    flex: 1;
    min-width: 280px; /* Ancho mínimo antes de que se apilen */
    max-width: 45%; /* Para que dos columnas quepan bien */
    text-align: left;
}

.column h3 {
    color: var(--color-primary);
}

.reverse-columns {
    flex-direction: row-reverse; /* Para alternar el orden visual si se desea */
}

/* Footer */
footer {
    background-color: var(--color-text-dark);
    color: white;
    text-align: center;
    padding: 30px 0;
    font-size: 0.9em;
}

.slogan-footer {
    font-style: italic;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 768px) {
    .columns {
        flex-direction: column;
        gap: 20px;
    }

    .column {
        max-width: 100%;
    }

    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.6em;
    }

    .hero {
        padding: 40px 0;
    }
}
