.elementor-1996 .elementor-element.elementor-element-fb402aa{--display:flex;}body.elementor-page-1996:not(.elementor-motion-effects-element-type-background), body.elementor-page-1996 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:var( --e-global-color-primary );}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-8fce43d *//* Estilos generales */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #000;
    color: white;
    margin: 0;
    padding: 0;
}

/* Contenedor */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    text-align: center; /* Centrar el texto */
}

/* Título */
h1 {
    color: #E82B7B; /* Color principal */
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}

/* Wrapper para imagen y texto */
.image-text-wrapper {
    display: flex;
    flex-direction: column; /* Asegurar que estén uno sobre el otro */
    align-items: center;
    margin-bottom: 20px;
}

/* Imágenes centradas */
img.small-image {
    width: 300px; /* Para pantallas grandes (PC) */
    height: 300px;
    margin-bottom: 15px;
}

/* Párrafo centrado debajo de las imágenes */
.image-text-wrapper p {
    text-align: center; /* Texto centrado */
}

/* Listas alineadas a la izquierda */
.left-align-list {
    text-align: left;
    margin-left: 20px; /* Espacio para alinearlas correctamente */
}

/* Separadores */
.separator {
    width: 100%;
    height: 1px;
    border-top: 1px dashed;
    border-image: linear-gradient(to right, #E82B7B 0%, #00EED0 100%);
    border-image-slice: 1;
    margin: 10px 0;
}

/* Ajustes Responsivos para imágenes más pequeñas */
@media (max-width: 768px) {
    img.small-image {
        width: 150px; /* Para pantallas más pequeñas (tablets y móviles) */
        height: 150px;
    }

    h1 {
        font-size: 1.8em; /* Ajuste del título en pantallas más pequeñas */
    }
}

@media (max-width: 480px) {
    img.small-image {
        width: 150px;
        height: 150px;
    }

    h1 {
        font-size: 1.5em; /* Ajuste para móviles pequeños */
    }

    .container {
        padding: 10px;
    }
}/* End custom CSS */