.elementor-1040 .elementor-element.elementor-element-79a240c80 > .elementor-container{max-width:745px;}.elementor-1040 .elementor-element.elementor-element-79a240c80{margin-top:50px;margin-bottom:0px;}.elementor-1040 .elementor-element.elementor-element-741ad934{padding:0px 0px 30px 0px;text-align:center;}.elementor-1040 .elementor-element.elementor-element-741ad934 .elementor-heading-title{font-family:"Poppins", Sans-serif;font-weight:600;color:var( --e-global-color-tmpcodersecondarycolor );}.elementor-1040 .elementor-element.elementor-element-27a44fe{--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;}@media(min-width:768px){.elementor-1040 .elementor-element.elementor-element-3ef1020c{width:100%;}}@media(max-width:1024px){.elementor-1040 .elementor-element.elementor-element-79a240c80{padding:0px 20px 0px 20px;}}@media(max-width:767px){.elementor-1040 .elementor-element.elementor-element-79a240c80{margin-top:70px;margin-bottom:0px;}}/* Start custom CSS *//* Grid de pilares (3 columnas) */
.pilares-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pilar-card {
    background: white;
    padding: 40px 35px;
    border-radius: 0 20px 0 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-top: 4px solid #D1143E;
}

.pilar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(23, 52, 90, 0.15);
}

.pilar-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.pilar-card h3 {
    color: #17345A;
    font-size: 22px;
    margin-bottom: 15px;
}

.pilar-card p {
    color: #555;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 12px;
}

.pilar-detail {
    font-size: 14px !important;
    color: #666 !important;
    font-style: italic;
}

/* Lista compacta para pilar */
.check-list-compact {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.check-list-compact li {
    padding: 6px 0 6px 28px;
    position: relative;
    font-size: 14px;
    color: #444;
}

.check-list-compact li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #D1143E;
    font-weight: bold;
}

/* Caja familias */
.familia-box {
    background: #D1143E;
    border-radius: 0 20px 0 20px;
    padding: 60px;
    text-align: center;
}

.familia-content {
    max-width: 700px;
    margin: 0 auto;
}

.familia-icon {
    font-size: 64px;
    margin-bottom: 25px;
}

.familia-box h2 {
    color: white;
    font-size: 32px;
    margin-bottom: 20px;
}

.familia-box p {
    color: rgba(255,255,255,0.9);
    font-size: 17px;
    line-height: 1.7;
}

.familia-box .text-large {
    font-size: 20px;
    margin-bottom: 15px;
}

/* Cards de información pequeñas */
.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.info-card-small {
    background: white;
    padding: 30px 25px;
    border-radius: 0 20px 0 20px;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.info-card-small:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.info-card-icon {
    font-size: 36px;
    margin-bottom: 15px;
}

.info-card-small h4 {
    color: #17345A;
    font-size: 18px;
    margin-bottom: 10px;
}

.info-card-small p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* Botón secundario */
.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #17345A;
    padding: 19px 45px;
    border-radius: 0 20px 0 20px;
    text-decoration: none;
    font-family: 'Lexend Deca', sans-serif;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    border: 2px solid #17345A;
}

.btn-secondary:hover {
    background: #17345A;
    color: white;
}

/* Responsive */
@media (max-width: 900px) {
    .pilares-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .info-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .familia-box {
        padding: 40px 30px;
    }
    
    .familia-box h2 {
        font-size: 26px;
    }
}

@media (max-width: 600px) {
    .info-cards-grid {
        grid-template-columns: 1fr;
    }
}/* End custom CSS */