/* Reinicio de estilos */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family: Arial, Helvetica, sans-serif;
    background:#ffffff;
    color:#000;
}

/* HEADER */

header{
    background:#ffffff;
    height:80px;
    border-bottom:1px solid #ddd;
    display:flex;
    align-items:center;
}

.contenedor{
    width:90%;
    max-width:1200px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    color:#FA6980;
    font-size:18px;
    font-weight:bold;
}

nav ul{
    list-style:none;
    display:flex;
    align-items:center;
    gap:35px;
}

nav a{
    text-decoration:none;
    color:#343638;
    font-size:12px;
    font-weight:bold;
}

nav a:hover{
    color:#FA6980;
}

nav img{
    width:40px;
    height:40px;
    border-radius:50%;
}
/* HERO */

.hero{
    display:grid;
    grid-template-columns:2fr 1fr;
    min-height:600px;
}

.hero-izquierda{
    position:relative;
}

.hero-izquierda img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.hero-texto{
    position:absolute;
    top:50%;
    left:60px;
    transform:translateY(-50%);
    color:white;
    max-width:500px;
}

.hero-texto h2{
    font-size:14px;
    margin-bottom:20px;
}

.hero-texto h3{
    font-size:36px;
    margin:20px 0;
}

.hero-texto p{
    margin-bottom:30px;
    line-height:1.6;
}

.btn{
    display:inline-block;
    background:#FA6980;
    color:white;
    text-decoration:none;
    padding:14px 28px;
    border-radius:6px;
    font-weight:bold;
}

.hero-derecha{
    padding:60px;
}

.hero-derecha h3{
    margin-bottom:40px;
}

.hero-derecha article{
    margin-bottom:35px;
}

.hero-derecha h4{
    color:#FA6980;
    margin-bottom:10px;
}
.contenido,
.noticia {
    width: 80%;
    margin: 40px auto;
}

.contenido h2,
.noticia h2 {
    margin-bottom: 20px;
}

.contenido article,
.noticia p {
    margin-bottom: 20px;
}