.elementor-3860 .elementor-element.elementor-element-973745f{--display:flex;--min-height:500px;--flex-direction:row;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--justify-content:center;--align-items:center;--overlay-opacity:0.77;}.elementor-3860 .elementor-element.elementor-element-973745f:not(.elementor-motion-effects-element-type-background), .elementor-3860 .elementor-element.elementor-element-973745f > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-image:url("https://ia360.cl/wp-content/uploads/2026/09/portada-blog-1.webp");background-position:center center;background-repeat:no-repeat;background-size:cover;}.elementor-3860 .elementor-element.elementor-element-973745f::before, .elementor-3860 .elementor-element.elementor-element-973745f > .elementor-background-video-container::before, .elementor-3860 .elementor-element.elementor-element-973745f > .e-con-inner > .elementor-background-video-container::before, .elementor-3860 .elementor-element.elementor-element-973745f > .elementor-background-slideshow::before, .elementor-3860 .elementor-element.elementor-element-973745f > .e-con-inner > .elementor-background-slideshow::before, .elementor-3860 .elementor-element.elementor-element-973745f > .elementor-motion-effects-container > .elementor-motion-effects-layer::before{background-color:#00000000;--background-overlay:'';}.elementor-3860 .elementor-element.elementor-element-cfaee2c .elementor-heading-title{font-size:60px;color:#FFFFFF;}.elementor-3860 .elementor-element.elementor-element-a8585f5{--display:flex;--margin-top:4rem;--margin-bottom:0rem;--margin-left:0rem;--margin-right:0rem;--padding-top:4rem;--padding-bottom:4rem;--padding-left:0rem;--padding-right:0rem;}:root{--page-title-display:none;}@media(min-width:1367px){.elementor-3860 .elementor-element.elementor-element-973745f:not(.elementor-motion-effects-element-type-background), .elementor-3860 .elementor-element.elementor-element-973745f > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-attachment:scroll;}}/* Start custom CSS for shortcode, class: .elementor-element-1a182d8 *//* 1. CONTENEDOR GRID */
.ti-grid-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 20px 0;
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
}


/* 2. LA CARD BASE */
.ti-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    border: 0.8px solid #e8e8e8;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.ti-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.ti-card-link-wrapper {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}


/* 3. IMAGEN */
.ti-card-img {
    height: 220px;
    background-size: cover;
    background-position: center;
    width: 100%;
    flex-shrink: 0;
    position: relative;
}


/* 4. CUERPO Y TEXTO */
.ti-card-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex-grow: 1;
}

.ti-card-title {
    font-family: "Gilroy", sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #5D5D63;
    margin: 0 0 1rem 0;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 2.4em;
}


/* 5. BOTÓN */
.ti-card-btn {
    margin-top: auto;
    width: 100%;
    padding: 14px 0;
    background: linear-gradient(90deg, #EE711D 30.77%, #E13F11 100%);
    color: #fff !important;
    font-family: "Gilroy", sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}


/* 6. PAGINACIÓN */
.ti-pagination {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: 100%;
    margin-top: 20px;
    padding-top: 10px;
    font-family: "Gilroy", sans-serif;
}

.ti-pagination-number,
.ti-pagination-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 16px;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    background: #fff;
    color: #5D5D63 !important;
    font-family: "Gilroy", sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.3s ease;
}


/* Página activa */
.ti-pagination-number.active {
    background: linear-gradient(90deg, #EE711D 30.77%, #E13F11 100%);
    border-color: transparent;
    color: #fff !important;
    box-shadow: 0 5px 15px rgba(234, 116, 1, 0.25);
}


/* Hover números */
.ti-pagination-number:not(.active):hover {
    border-color: #EE711D;
    color: #EE711D !important;
    transform: translateY(-2px);
}


/* Hover anterior / siguiente */
.ti-pagination-btn:hover {
    background: linear-gradient(90deg, #EE711D 30.77%, #E13F11 100%);
    border-color: transparent;
    color: #fff !important;
    transform: translateY(-2px);
}


/* 7. GRID PARA TABLET */
@media (min-width: 768px) {
    .ti-grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* 8. GRID PARA ESCRITORIO */
@media (min-width: 1024px) {
    .ti-grid-container {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* 9. PAGINACIÓN EN MOBILE */
@media (max-width: 600px) {
    .ti-pagination {
        gap: 6px;
        flex-wrap: wrap;
    }

    .ti-pagination-number,
    .ti-pagination-btn {
        min-width: 38px;
        height: 38px;
        padding: 0 12px;
        font-size: 0.9rem;
        border-radius: 10px;
    }
}/* End custom CSS */