:root {
    --primary-blue: #1a4b8c;
    --white: #ffffff;
    --light-gray: #f5f7fa;
    --medical-green: #4caf50;
    --text-dark: #333333;
    --transition: all 0.3s ease;
}

#imagen-banner-1{
    width: 100%;
    height: 350px;
    display: block;
    position: relative;
    background-attachment: scroll;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin: 0;
}

#imagen-banner-1::before{
    width: 100%;
    content: " ";
background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1500 79.35" preserveAspectRatio="none"><rect width="1500" height="79.35" fill="%23FFFFFF" /><path fill="%231A4B8C" d="M1500,79.35l-125-8.8C1211.61,33.19,999.06,0,750,0S288.39,33.19,125,70.55L0,79.35L0,0l125,0c125,0,375,0,625,0c250,0,500,0,625,0l125,0L1500,79.35z"/></svg>');
    position: absolute;
    left: 0%;
    bottom: -1px;
    height: 80px;
    background-repeat: no-repeat;
    background-size: 100%;
    z-index: 3;
}

#imagen-banner-1-capa{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--primary-blue);
    z-index: 1;
    /*opacity: 0.8;*/
}

#imagen-banner-1-titulo{
    width: auto;
    height: auto;
    text-align: center;
    color: var(--white);
    font-size: 3.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    position: relative;
    display: block;
    text-transform: uppercase;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    margin: 0 auto;
    padding: 0 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

/* Efecto opcional para pantallas grandes */
@media (min-width: 1200px) {
    #imagen-banner-1 {
        background-attachment: fixed;
        height: 400px;
    }
    
    #imagen-banner-1-titulo {
        font-size: 4rem;
    }
}

@media (max-width: 1000px){
    #imagen-banner-1{
        background-attachment: scroll;
        height: 300px;
    }
    
    #imagen-banner-1-titulo {
        font-size: 2.8rem;
    }
}

@media (max-width: 700px){
    #imagen-banner-1-titulo{
        font-size: 2.2rem;
        width: 90%;
        max-width: 300px;
        padding: 0 15px;
        letter-spacing: 0.5px;
    }
    
    #imagen-banner-1 {
        height: 250px;
    }
}

@media (max-width: 480px){
    #imagen-banner-1-titulo{
        font-size: 1.8rem;
        width: 95%;
    }
    
    #imagen-banner-1 {
        height: 200px;
    }
    
    #imagen-banner-1::before {
        height: 50px;
    }
}