.elementor-kit-7{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-7 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}
/* Start custom CSS */.fondo-elementor {
    position: relative;
    overflow: hidden; /* 🔥 evita que la imagen se salga */
}

/* Overlay oscuro suave */
.fondo-elementor::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0); /* transparente al inicio */
    transition: background 0.4s ease;
    z-index: 1;
}

/* Contenido encima del overlay */
.fondo-elementor > * {
    position: relative;
    z-index: 2;
}

/* Imagen (o fondo) efecto zoom */
.fondo-elementor {
    transition: transform 0.4s ease;
}

/* 🔥 HOVER EFECTO */
.fondo-elementor:hover::before {
    background: rgba(0, 0, 0, 0.25); /* oscurece suave */
}

.fondo-elementor:hover {
    transform: scale(1.02); /* 🔥 crecimiento leve */
}





/* CONTENEDOR */
.galeria {
    overflow: hidden;
}

/* IMÁGENES */
.galeria img {
    width: 100%;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.4s ease, filter 0.4s ease;
}

/* 🔥 HOVER EFECTO */
.galeria img:hover {
    transform: scale(1.08);
    filter: brightness(60%);
}



.elementor-slideshow__title{
    display: none;
}








/* 2.1 TEXTO ANIMADO (MARQUEE) - SIN ESPACIOS EXTRAS */
.marquee-container {
    width: 100%;
    /* Reducimos el padding de 25px a 5px (ajustable según prefieras) */
    padding: 5px 0; 
    margin-bottom: 10px;
    border-top: 0 solid rgba(0, 0, 255, 0.1); 
    border-bottom: 0 solid rgba(0, 0, 255, 0.1);
    overflow: hidden;
}

.marquee-content {
    display: inline-block; 
    white-space: nowrap;
    font-size: 45px;
    font-weight: 900;
    text-transform: uppercase;
    color: #0000FF; 
    opacity: 1; 
    letter-spacing: 2px;
    
    /* ELIMINADO EL MARGIN-TOP PARA QUITAR EL ESPACIO SUPERIOR INTERNO */
    margin-top: 0; 
    /* OPCIONAL: Un pequeño ajuste de línea para centrar verticalmente si es necesario */
    line-height: 1;

    animation: marqueeAnimation 60s linear infinite;

    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
}

@keyframes marqueeAnimation {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-50%); } 
}/* End custom CSS */