.elementor-45 .elementor-element.elementor-element-487a0c9{margin-top:0px;margin-bottom:0px;padding:0px 0px 0px 0px;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-45 .elementor-element.elementor-element-96005bb > .elementor-widget-container{padding:0px 0px 0px 0px;}.elementor-45 .elementor-element.elementor-element-9ed18d5:not(.elementor-motion-effects-element-type-background), .elementor-45 .elementor-element.elementor-element-9ed18d5 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#C0B781;}.elementor-45 .elementor-element.elementor-element-9ed18d5{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;padding:1% 15% 1% 15%;}.elementor-45 .elementor-element.elementor-element-9ed18d5 > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-45 .elementor-element.elementor-element-fd0bb51{width:var( --container-widget-width, 75% );max-width:75%;--container-widget-width:75%;--container-widget-flex-grow:0;}.elementor-45 .elementor-element.elementor-element-fd0bb51 .elementor-heading-title{font-family:"Roboto", Sans-serif;font-size:0.7em;font-weight:600;color:#FFFFFF;}.elementor-45 .elementor-element.elementor-element-6a8a16f{width:var( --container-widget-width, 15% );max-width:15%;--container-widget-width:15%;--container-widget-flex-grow:0;text-align:center;}.elementor-45 .elementor-element.elementor-element-6a8a16f .elementor-heading-title{font-family:"Roboto", Sans-serif;font-size:0.7em;font-weight:600;color:#FFFFFF;}.elementor-45 .elementor-element.elementor-element-986a4c1{width:auto;max-width:auto;}.elementor-45 .elementor-element.elementor-element-986a4c1 .elementor-heading-title{font-family:"Roboto", Sans-serif;font-size:0.7em;font-weight:600;color:#FFFFFF;}/* Start custom CSS for text-editor, class: .elementor-element-96005bb *//* Contenedor Principal */
.contacto-top-bar {
    background-color: #2d5a27; /* Verde de la asociación, cámbialo si prefieres otro */
    padding: 15px 20px;
    width: 100%;
}

.contacto-container-flex {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 40px; /* Espacio entre email y teléfono */
    flex-wrap: wrap; /* Esto es clave para el móvil */
}

/* Items individuales */
.contacto-item {
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 280px;
}

.contacto-icon {
    width: 30px;
    height: 30px;
    color: #ffffff;
    flex-shrink: 0; /* Evita que el icono se aplaste */
}

.contacto-text {
    display: flex;
    flex-direction: column;
}

.contacto-text .label {
    font-family: sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.contacto-text .link {
    font-family: sans-serif;
    text-decoration: none;
    color: #ffffff !important;
    font-size: 16px;
    font-weight: 500;
    transition: opacity 0.3s;
}

.contacto-text .link:hover {
    opacity: 0.8;
}

/* AJUSTES PARA MÓVIL */
@media (max-width: 768px) {
    .contacto-container-flex {
        flex-direction: column; /* Apila uno encima de otro */
        gap: 20px;
        align-items: flex-start; /* Alinea a la izquierda en móvil */
    }
    
    .contacto-item {
        width: 100%;
    }

    .contacto-text .link {
        font-size: 14px; /* Un poco más pequeño para que no se corte el email */
    }
}/* End custom CSS */
/* Start custom CSS for text-editor, class: .elementor-element-7682f68 */.sobre-nos {
    padding: 80px 20px;
    background-color: #ffffff;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.row-section {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 100px;
}

/* Invierte el orden en el segundo bloque */
.row-section.reverse {
    flex-direction: row-reverse;
}

.image-wrapper {
    flex: 1;
}

.image-wrapper img {
    width: 100%;
    height: 400px;
    object-fit: cover; /* Mantiene la proporción aunque cortes la imagen */
    border-radius: 12px;
    box-shadow: 15px 15px 0px #eef2ee; /* Efecto decorativo */
}

.text-wrapper {
    flex: 1;
}

.text-wrapper h3 {
    color: #1a3a16;
    font-size: 2rem;
    margin-bottom: 20px;
    position: relative;
}

.text-wrapper h3::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: #4a7c44;
    margin-top: 10px;
}

.text-wrapper p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

/* Cuadros de estadísticas rápidos */
.stats-box {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.stat {
    border-left: 2px solid #4a7c44;
    padding-left: 15px;
    font-size: 0.9rem;
    color: #666;
}

.stat strong {
    font-size: 1.4rem;
    color: #1a3a16;
}

/* Responsivo para móviles */
@media (max-width: 900px) {
    .row-section, .row-section.reverse {
        flex-direction: column;
        text-align: center;
        margin-bottom: 60px;
    }
    
    .text-wrapper h3::after {
        margin: 10px auto;
    }
    
    .stats-box {
        justify-content: center;
    }
}/* End custom CSS */