:root {
    --yellow: #f7b835;
    --yellowHover:#FFD700;
    --brown: #473108;
    --brownLight: #4A4A4A;
    --brownPastel: #e8e0d4;
    --red:#E91E63;
    --redHover:#C2185B;
    --white:#ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* .hero {
    background: url('../img/historia.png') no-repeat center center/cover;
} */

body{
    background: var(--white);
}

.contenedor{
    color: var(--brown);
    display: flex;
    flex-direction: column;
    align-items: center;
    /* padding: 20px; */
}

.section {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* background: var(--brownPastel); */
    width: 100%;
    max-height: 620px;
    /* max-width: 1200px; */
    /* margin-bottom: 40px; */
    padding: 10px;
    text-align: center;
}

.metodologia{
    background-color: var(--white);
}

.section img {
    width: 100%;
    /* height: auto; */
    height: 100%;
    max-height: 500px;
    object-fit: cover;
    /* border-radius: 10px; */
}

.content {
    display: flex;
    flex-direction: column;
    gap:1rem;
    text-align: justify;
    padding: 20px;
    background: var(--white);
    /* border-radius: 20px; */
}

.content  ul {
    display: flex;
    flex-direction: column;
    gap:0.5rem;
    padding-left: 1rem;
}

.content h2{
    text-align: center;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {

    
    .contenedor{
        /* padding: 20px; */
    }
    .section {
        display: flex;
        flex-direction: row;
        align-items: center;
        text-align: left;
        /* gap:1rem; */
    }

    .section img {
        width: 50%;
        /* height:auto; */
        max-height: 620px;
    }

    .content {
        width: 50%;
        padding: 35px;
    }
}