.elementor-17 .elementor-element.elementor-element-227fb805{--display:flex;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-17 .elementor-element.elementor-element-f57a9d8{--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;}/* Start custom CSS for html, class: .elementor-element-0ed54fc *//* --- CONFIGURACIÓN DEL CONTENEDOR PRINCIPAL --- */
.servicios-premium {
    align-items: stretch !important; /* Hace que todos los cajones tengan la misma altura */
}

/* --- ESTILO DEL CAJÓN (LA TARJETA) --- */
.servicios-premium .servicio-card {
    background-color: #ffffff;      /* Fondo blanco limpio */
    border-radius: 20px;            /* Bordes redondeados elegantes */
    padding: 40px 25px;             /* Espacio interno (Arriba/Abajo, Izq/Der) */
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); /* Sombra inicial muy suave */
    transition: all 0.4s ease;      /* Suaviza la animación del mouse */
    border: 1px solid rgba(0,0,0,0.03); /* Borde casi invisible para definición */
    
    /* Centrado Matemático Flexbox */
    display: flex;
    flex-direction: column;
    align-items: center;            /* Centra horizontalmente todo el contenido */
    justify-content: flex-start;
    text-align: center;             /* Asegura que el texto esté centrado */
}

/* --- EFECTO MOUSE OVER (HOVER) --- */
.servicios-premium .servicio-card:hover {
    transform: translateY(-10px);   /* El cajón "flota" hacia arriba */
    box-shadow: 0 20px 40px rgba(0,0,0,0.12); /* La sombra se hace más intensa */
    border-color: rgba(0,0,0,0.0);
}

/* --- CONTROL DE ICONOS/IMÁGENES --- */
.servicios-premium .service-icon {
    width: 150px !important;       /* Tamaño fijo para uniformidad */
    height: 150px !important;
    object-fit: contain;
    margin-bottom: 25px !important; /* Espacio entre imagen y título */
    transition: transform 0.4s ease;
}

/* Pequeño efecto extra: el icono crece un poco al pasar el mouse por el cajón */
.servicios-premium .servicio-card:hover .service-icon {
    transform: scale(1.05);
}

/* --- TIPOGRAFÍA --- */
.servicios-premium h5 {
    font-size: 1.25rem !important;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50; /* Azul oscuro elegante */
}

.servicios-premium p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 0;
}/* End custom CSS */