.elementor-16 .elementor-element.elementor-element-e96ebb8{--display:flex;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-3d521a1 *//* ==========================================================================
   1. VARIABLES DE COLOR Y FUENTES
   ========================================================================== */
:root {
    --principal: #76b579;      /* Verde vibrante */
    --principal-rgb: 118, 181, 121;
    --titulos: #55271a;        /* Marrón oscuro elegante */
    --terciario: #92675b;      /* Marrón secundario */
    --fondo: #d5ebd7;          /* Verde de fondo general de la web */
    --blanco: #ffffff;
    --serif: 'Playfair Display', serif;
    --sans: 'Montserrat', sans-serif;
    --sombra: 0 15px 35px rgba(85, 39, 26, 0.08);
    --sombra-hover: 0 20px 40px rgba(85, 39, 26, 0.15);
}

/* ==========================================================================
   2. CONFIGURACIÓN GENERAL Y ANIMACIONES
   ========================================================================== */
html { 
    scroll-behavior: smooth; 
}

* { 
    box-sizing: border-box; 
    margin: 0; 
    padding: 0; 
}

body {
    font-family: var(--sans);
    background-color: var(--fondo) !important; /* Mantiene el fondo verde de la web */
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Animaciones de entrada (Aparición fluida) */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.delay-1 { animation-delay: 0.2s; opacity: 0; }
.delay-2 { animation-delay: 0.4s; opacity: 0; }
.delay-3 { animation-delay: 0.6s; opacity: 0; }

/* ==========================================================================
   3. SECCIÓN HERO (Presentación de la página)
   ========================================================================== */
.conocenos-hero {
    padding: 100px 0 60px;
    text-align: center;
    background: transparent !important;
}

.tagline-badge {
    display: inline-block;
    background: rgba(var(--principal-rgb), 0.15);
    color: var(--titulos);
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid rgba(var(--principal-rgb), 0.3);
    margin-bottom: 25px;
}

.conocenos-hero h1 {
    font-family: var(--serif);
    font-size: 4rem;
    color: var(--titulos);
    line-height: 1.15;
    margin-bottom: 25px;
}

.conocenos-hero h1 span {
    color: var(--principal);
    position: relative;
    display: inline-block;
}

.conocenos-hero h1 span::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 12px;
    background: rgba(var(--principal-rgb), 0.18);
    z-index: -1;
    border-radius: 4px;
}

.hero-intro {
    font-size: 1.35rem;
    max-width: 850px;
    margin: 0 auto;
    color: var(--terciario);
    line-height: 1.7;
    font-weight: 400;
}

/* ==========================================================================
   4. SECCIÓN HISTORIA (Caja de contenido principal)
   ========================================================================== */
.about-section {
    padding: 60px 0;
    background: transparent !important;
}

.history-box {
    background: var(--blanco) !important;
    padding: 55px;
    border-radius: 24px;
    box-shadow: var(--sombra);
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.history-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--sombra-hover);
}

.history-text h2 {
    font-family: var(--serif);
    font-size: 2.5rem;
    color: var(--titulos);
    margin-bottom: 20px;
}

.history-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.history-quote {
    background: #fbf9f6;
    padding: 40px;
    border-radius: 16px;
    border-left: 5px solid var(--principal);
    box-shadow: inset 0 0 15px rgba(0,0,0,0.01);
}

.history-quote blockquote {
    font-family: var(--serif);
    font-size: 1.55rem;
    color: var(--titulos);
    font-style: italic;
    line-height: 1.5;
}

/* ==========================================================================
   5. SECCIÓN MISIÓN Y VISIÓN (Tarjetas modernas)
   ========================================================================== */
.mv-section {
    padding: 60px 0;
    background: transparent !important;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
}

.mv-card {
    background: var(--blanco) !important;
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--sombra);
    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--principal);
}

.mv-card:last-child::before {
    background: var(--terciario);
}

.mv-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--sombra-hover);
}

.mv-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    display: inline-block;
}

.mv-card h3 {
    font-family: var(--serif);
    font-size: 2.2rem;
    color: var(--titulos);
    margin-bottom: 15px;
}

.mv-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
}

/* ==========================================================================
   6. SECCIÓN VALORES (Cuadrícula con efectos hover interactivos)
   ========================================================================== */
.values-section {
    padding: 80px 0;
    background: transparent !important;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-family: var(--serif);
    font-size: 3rem;
    color: var(--titulos);
    margin-bottom: 15px;
}

.divider {
    width: 65px;
    height: 4px;
    background: var(--principal);
    margin: 0 auto;
    border-radius: 2px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.value-card {
    background: var(--blanco) !important;
    padding: 40px 35px;
    border-radius: 16px;
    box-shadow: var(--sombra);
    transition: all 0.3s ease;
    border-bottom: 4px solid #eee;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--sombra-hover);
}

/* Colores personalizados al pasar por encima en cada tarjeta */
.v-equidad:hover { border-bottom-color: #76b579; }
.v-participacion:hover { border-bottom-color: #a37165; }
.v-intercultural:hover { border-bottom-color: #d1a55b; }
.v-compromiso:hover { border-bottom-color: #c96565; }
.v-transparencia:hover { border-bottom-color: #5b8ad1; }

.val-num {
    font-family: var(--serif);
    font-size: 2.5rem;
    color: var(--principal);
    font-weight: 900;
    opacity: 0.3;
    line-height: 1;
}

.value-card h4 {
    font-family: var(--serif);
    font-size: 1.4rem;
    color: var(--titulos);
    margin-bottom: 5px;
}

.value-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666;
}

/* ==========================================================================
   7. FOOTER (Blanco sólido)
   ========================================================================== */
.final-footer {
    background: var(--blanco) !important; /* Pedido que sea blanco */
    padding: 80px 0 40px;
    margin-top: 80px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.03);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    padding-bottom: 40px;
}

.f-brand h3 {
    font-family: var(--serif);
    font-size: 2.2rem;
    color: var(--titulos);
    margin-bottom: 10px;
}

.f-brand h3 span {
    color: var(--principal);
}

.f-brand p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.f-info h4 {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--terciario);
    margin-bottom: 15px;
}

.f-info p {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.8;
}

.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 30px;
    text-align: center;
    font-size: 0.85rem;
    color: #888;
    margin-top: 20px;
}

/* ==========================================================================
   8. RESPONSIVE (Adaptable a móviles y tablets)
   ========================================================================== */
@media (max-width: 992px) {
    .history-box { grid-template-columns: 1fr; padding: 35px; }
    .mv-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .conocenos-hero h1 { font-size: 2.8rem; }
}

@media (max-width: 768px) {
    .values-grid, .footer-top { grid-template-columns: 1fr; }
    .conocenos-hero h1 { font-size: 2.3rem; }
    .hero-intro { font-size: 1.15rem; }
    .history-box { padding: 25px; }
}/* End custom CSS */