/* ============================= */
/* HERO SECTION */
/*El Hero va solo*/
/* ============================= */

.hero{
    position:relative;
    background:url("../fotos/hero-veterinaria.jpg") center top/cover no-repeat;
    height:60vh;
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
    padding-top:100px;
    color:white;
}

.hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.25);
    z-index:1;
}

.hero h2,
.hero p,
.hero button{
    position:relative;
    z-index:2;
    text-shadow:2px 2px 8px rgba(0,0,0,0.5);
}

.hero h2{
    font-size:2.8rem;
    margin-top:-45px;
}

.hero p{
    font-size:1.2rem;
    margin-bottom:25px;
}

.hero button{
    background:var(--orange);
    color:white;
    border:none;
    padding:15px 30px;
    border-radius:5px;
    cursor:pointer;
}
