

header h1{
    font-size: 26px;
    letter-spacing: 3px;
    color: #e8c39e;
    font-weight: normal;
}

.slogan {
    color: #b8956a;
    font-size: 13px;
    font-style: italic;
    margin-top: 4px;
    text-align: center;
}

nav{
    background-color: #3D1D11;
    padding: 0;
}
nav ul{
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
nav ul li{
    margin: 0;
}
nav ul li a{
    display: block;
    text-decoration: none;
    color: #d9c9b8;
    padding: 20px 40px;
    transition: 0.3s;
}
nav ul li a:hover{
    color: #b8956a;
}

.hero{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
    padding: 60px;
}

.texto-principal h1{
    font-size: 80px;
    color: #4a0000;
    line-height: 1;
    text-align: center;
}

.imagen-principal img{
    width: 150px;
    height: auto;
}

.eslogan{
    text-align: center;
    font-size: 22px;
    color: #4a0000;
    margin-top: 20px;
    margin-bottom: 50px;
}


.contenedor{
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 25px;
    margin-top: 30px;
    padding: 20px;
}

.tarjeta{
    width: 400px;
    min-height: 300px;
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0px 3px 10px rgba(0,0,0,0.2);
    text-align: center;
}

.tarjeta h2{
    color: #5d4037;
    margin-bottom: 15px;
    justify-content: center;
}

.descripcion{
    width: 80%;
    margin: 40px auto;
    padding: 25px auto;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0px 3px 10px rgba(0,0,0,0.2);
}

.descripcion h2{
    color: #5d4037;
    margin-bottom: 15px;
}

.descripcion p{
    text-align: justify;
    line-height: 1.8;
}
