.elementor-2419 .elementor-element.elementor-element-1f5e96b{--display:flex;}/* Start custom CSS for image, class: .elementor-element-986d359 */<style>
    /* 1. TRANSICIÓN PARA LA TABLA */
    .table-wrapper {
        transition: all 0.4s ease !important;
    }
    .table-wrapper:hover {
        transform: translateY(-8px) !important;
        box-shadow: 0 12px 30px rgba(0,0,0,0.12) !important;
    }

    /* 2. TRANSICIÓN PARA EL PRECIO */
    .price-container {
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    }
    .price-container:hover {
        transform: scale(1.03) !important;
        box-shadow: 0 15px 35px rgba(230, 184, 0, 0.45) !important;
    }

    /* 3. TRANSICIÓN PARA EL BLOQUE DE CONTACTO */
    #seccion-contacto {
        transition: all 0.4s ease !important;
    }
    #seccion-contacto:hover {
        transform: translateY(-8px) !important;
        box-shadow: 0 20px 40px rgba(28, 60, 87, 0.4) !important;
    }

    /* 4. TRANSICIÓN PARA LAS IMÁGENES */
    .blog-container-body img {
        transition: all 0.4s ease-in-out !important;
    }
    .blog-container-body img:hover {
        transform: scale(1.02) translateY(-5px) !important;
        box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15) !important;
    }

    /* SEGURIDAD PARA MÓVIL: Evita que las cosas "salten" al tocar la pantalla */
    @media (max-width: 600px) {
        .table-wrapper:hover, 
        .price-container:hover, 
        #seccion-contacto:hover, 
        .blog-container-body img:hover {
            transform: none !important;
            box-shadow: none !important;
        }
    }
</style>/* End custom CSS */