/* ============================================================
   HERO
   ============================================================ */

/* Solo contenedor (sin tarjeta) */
#hero .hero-image-card,
.hero-image-card{
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
}

/* Tarjeta interior */
#hero .hero-image-card > .vc_column-inner > .wpb_wrapper,
.hero-image-card > .vc_column-inner > .wpb_wrapper{
    background: radial-gradient(circle at top left, #e0f4f3 0, #ffffff 40%, #fef3e7 85%);
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(148, 163, 184, 0.3);
    padding: 1.7rem 1.6rem;
    height: 100%;
}

/* Ordenar contenido */
#hero .hero-image-card > .vc_column-inner > .wpb_wrapper > .wpb_wrapper-inner,
.hero-image-card > .vc_column-inner > .wpb_wrapper > .wpb_wrapper-inner{
    display: flex;
    flex-direction: column;
}
@media (max-width: 767px) {

    #Home-Hero.vc_section {
        background-position: 60% center !important; /* prueba extrema */
        min-height:50vh!important;
        max-height: 60vh;
    }
}
@media (min-width: 768px) and (max-width: 1024px) {

    #Home-Hero.vc_section {
        background-position: 60% center !important; /* prueba extrema */
        min-height:50vh!important;
        max-height: 60vh;
    }
}
/* HERO TITLES (apariencia tipo ejemplo) */
.hero-title h1{
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.25;
    /* sombra suave, corta, sin “borde” duro */
    text-shadow:
            0 10px 18px rgba(0,0,0,.18),
            0 3px 6px rgba(0,0,0,.12);
}

/* Si quieres que SOLO tengan sombra las palabras negras (recomendado) */
.hero-title h1 .shadow{
    text-shadow:
            0 10px 18px rgba(0,0,0,.18),
            0 3px 6px rgba(0,0,0,.12);
}

/* Las palabras en verde normalmente quedan mejor SIN sombra (más nítidas) */


/* Subtítulo tipo ejemplo */
.hero-title h2{
    font-size: 30px!important;
    line-height: 1.25;
    text-shadow: none;
    max-width: 600px;
}
.hero-title h2 .light{font-weight: 600;}
.hero-title h2 .dark{font-weight: 700;}

/* Ajuste móvil para que no “emborrone” la sombra */
@media (max-width: 768px){
    .hero-title h1{
        text-shadow:
                0 6px 12px rgba(0,0,0,.16),
                0 2px 4px rgba(0,0,0,.10);
        margin-left: -70px !important;
        margin-top: -180px !important;
    }
    .hero-title h2{
        font-size: 18px!important;
        margin-left: -70px !important;
        max-width: 200px;
    }
}
@media (min-width: 768px) and (max-width: 1024px){
    .hero-title h1{
        text-shadow:
                0 6px 12px rgba(0,0,0,.16),
                0 2px 4px rgba(0,0,0,.10);
        margin-left: 0px !important;
        margin-top: -180px !important;
    }
    .hero-title h2{
        font-size: 22px!important;
        margin-left: 0px !important;
        max-width: 400px;
    }
}
/*@media screen and (min-width: 1200px) and (max-width: 1280px) and (max-height: 720px){
    .hero-title h1{
        text-shadow:
                0 6px 12px rgba(0,0,0,.16),
                0 2px 4px rgba(0,0,0,.10);
        margin-left: 0px !important;
        margin-top: -100px !important;
    }
    .hero-title h2{
        font-size: 15px!important;
        margin-left: 0px !important;
        max-width: 400px;
    }
}*/