*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family: 'Poppins', sans-serif;
}

.hero{
    height:100vh;
    background-image:url("hero-agro.jpg"); /* tu imagen */
    background-size:cover;
    background-position:center;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:white;
}

/* Oscurecer imagen */
.overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.35);
}

/* Contenido */
.contenido{
    position:relative;
    max-width:800px;
    padding:20px;
}

/* Logo superior */
.logo-texto{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
    margin-bottom:20px;
    letter-spacing:3px;
}

.logo-texto img{
    width:30px;
}

/* Título */
h1{
    font-family:'Playfair Display', serif;
    font-size:70px;
    margin-bottom:20px;
}

/* Línea decorativa */
.linea{
    width:120px;
    height:2px;
    background:white;
    margin:20px auto;
}

/* Texto */
p{
    font-size:18px;
    line-height:1.6;
    margin-bottom:40px;
}

/* Botón */
.btn{
    padding:14px 40px;
    border:1px solid white;
    border-radius:30px;
    text-decoration:none;
    color:white;
    letter-spacing:3px;
    transition:0.3s;
}

.btn:hover{
    background:white;
    color:#333;
}