*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Montserrat',sans-serif;
}

.hero{
    width:100%;
    height:100vh;
    background-image:url("../img/Index-Euromilk-escritorio-bg.jpg");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    position:relative;
    display:flex;
    align-items:center;
}

/* CONTENIDO DESKTOP */
.contenido{
    position: absolute;
    top: 55%;
    left: 45%;
    transform: translate(-50%, -50%);

    display: flex;
    align-items: center;
    gap: 60px;
}

.info{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.boton{
    display: flex;
    align-items: center;
    padding-left: 35px;
    border-left: 1px solid #8cc9a8;
}
/* TEXTO */
.subtitulo{
    font-size: 20px;
    font-weight: 500;
    color: #666;
    line-height: 1.2;
}

h1{
    font-size: 22px;
    font-weight: 700;
    color: #222;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* BOTÓN */
.btn{
    width: 180px;
    height: 55px;
    background:#367949;
    color:#fff;
    padding:6px 6px;
    text-decoration:none;
    border-radius:4px;
    font-size:16px;
    text-align: center;
    line-height: 50px;    
}

.btn:hover{
    background:#ff9600;
}