/* =================================
   CAJA DUAL - ELEVATE ELEMENTS
   ================================= */

.elevate-caja-dual-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.elevate-caja-dual {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Animación Hover */
.elevate-caja-dual.has-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Parte Superior */
.elevate-caja-dual-top {
    position: relative;
    width: 100%;
    height: 280px;
    background-color: #00a0e3;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Imagen */
.elevate-caja-dual-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transition: transform 0.3s ease;
    max-width: 100%;
    max-height: 100%;
}

.elevate-caja-dual.has-hover:hover .elevate-caja-dual-image {
    transform: scale(1.05);
}

/* Parte Inferior */
.elevate-caja-dual-bottom {
    background-color: #ffffff;
    padding: 25px;
}

/* Título */
.elevate-caja-dual-title {
    font-size: 24px;
    font-weight: 700;
    color: #00a0e3;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

/* Descripción */
.elevate-caja-dual-description {
    font-size: 16px;
    line-height: 1.6;
    color: #666666;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .elevate-caja-dual-top {
        height: 220px;
    }

    .elevate-caja-dual-title {
        font-size: 20px;
    }

    .elevate-caja-dual-description {
        font-size: 14px;
    }

    .elevate-caja-dual-bottom {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .elevate-caja-dual-top {
        height: 180px;
    }

    .elevate-caja-dual-title {
        font-size: 18px;
    }

    .elevate-caja-dual-bottom {
        padding: 15px;
    }
}

/* Elementor Editor */
.elementor-editor-active .elevate-caja-dual {
    cursor: pointer;
}

