/* --- VARIABLES GLOBALES (El ADN Visual) --- */
:root {
    --primary: #2C7A7B;    /* Calma / Autismo */
    --primary-dark: #234E52;
    --secondary: #38A169;  /* Naturaleza / Agricultura */
    --accent: #D69E2E;     /* Luz / Emprendimiento */
    --text-main: #2D3748;
    --text-light: #718096;
    --bg-body: #fdfbf7;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.85);
    --shadow-soft: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 10px 15px rgba(0, 0, 0, 0.1);
}

/* --- RESET & BASE --- */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .btn { font-family: 'Montserrat', sans-serif; }
a { text-decoration: none; transition: all 0.3s ease; }
ul { list-style: none; }

/* --- UTILIDADES --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center { text-align: center; }
.text-primary { color: var(--primary); }

/* Efecto Cristal (Glassmorphism) */
.glass-panel {
    background: var(--glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: var(--shadow-soft);
}

/* --- COMPONENTES --- */

/* Botones */
.btn {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    border: none;
}
.btn-primary {
    background-color: var(--primary);
    color: white;
}
.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

/* Tarjetas */
.card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

/* Iconos Sociales */
.social-icons { display: flex; gap: 10px; justify-content: center; }
.social-btn {
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: #edf2f7; color: var(--text-main);
}
.social-btn:hover { background: var(--primary); color: white; }

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .container { padding: 0 15px; }
    h1 { font-size: 2rem; }
}