.elementor-388 .elementor-element.elementor-element-14628a3{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--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-b740a5b *//* === FOOTER === */
.footer-section {
    font-family: 'Poppins', sans-serif;
    background-color: #294168;
    position: relative;
    overflow: hidden;
}

/* Fondo animado sutil */
.footer-section::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(67,185,59,0.06) 0%, rgba(255,255,255,0.02) 50%, transparent 100%);
    animation: footerGradient 25s infinite linear;
    z-index: 0;
}

@keyframes footerGradient {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Línea decorativa top */
.footer-top-bar {
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #43B93B 0%, #294168 50%, #43B93B 100%);
}

.footer-main {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 70px 40px 50px;
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
    gap: 50px;
}

/* --- COLUMNA 1: Logo + descripción --- */
.footer-brand {}

.footer-logo {
    margin-bottom: 22px;
}

.footer-logo-text {
    font-size: 26px;
    font-weight: 800;
    color: #FFFFFF;
    letter-spacing: -0.5px;
    line-height: 1;
}

.footer-logo-text span {
    color: #43B93B;
}

.footer-logo-sub {
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 3px;
    display: block;
    margin-top: 4px;
}

.footer-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    line-height: 1.8;
    margin: 0 0 28px 0;
    max-width: 280px;
}

/* Redes sociales */
.footer-social {
    display: flex;
    gap: 10px;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: #43B93B;
    border-color: #43B93B;
    transform: translateY(-3px);
}

.social-btn svg {
    width: 16px;
    height: 16px;
    fill: rgba(255,255,255,0.8);
}

.social-btn:hover svg {
    fill: #FFFFFF;
}

/* --- COLUMNAS 2 y 3: Links --- */
.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 24px 0;
    position: relative;
    padding-bottom: 14px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 28px;
    height: 2px;
    background: #43B93B;
    border-radius: 10px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li a {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links li a::before {
    content: '';
    width: 5px;
    height: 5px;
    min-width: 5px;
    border-radius: 50%;
    background: #43B93B;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-links li a:hover {
    color: #43B93B;
    padding-left: 4px;
}

.footer-links li a:hover::before {
    opacity: 1;
}

/* --- COLUMNA 4: Contacto --- */
.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.contact-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 10px;
    background: rgba(67,185,59,0.15);
    border: 1px solid rgba(67,185,59,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

.contact-icon svg {
    width: 15px;
    height: 15px;
    fill: #43B93B;
}

.contact-info strong {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 3px;
}

.contact-info span {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    line-height: 1.5;
}

/* --- DIVISOR --- */
.footer-divider {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

/* --- BOTTOM BAR --- */
.footer-bottom {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-copy {
    font-size: 13px;
    color: rgba(255,255,255,0.35);
}

.footer-copy span {
    color: #43B93B;
    font-weight: 600;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 13px;
    color: rgba(255,255,255,0.35);
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: #43B93B;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .footer-main {
        grid-template-columns: 1fr;
        padding: 50px 20px 40px;
        gap: 36px;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        gap: 12px;
    }
    .footer-divider { padding: 0 20px; }
    .footer-desc { max-width: 100%; }
}/* End custom CSS */