/* Estilos generales para la página web */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;700&display=swap');
body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    padding: 0;
    margin: 0;
}

h1, h2, h3, h4 {
    text-align: center;
    margin-block-end: 0%;
    line-height: 110%;
}

h1 {
    font-size: 210%;
}

h2 {
    font-size: 200%;
}

h3 {
    font-size: 150%;
}

h4 {
    font-size: 130%;
}

p {
    margin-top: 1%;
}

.brand {
    color: #68962a;
}
.brown {
    color: #b4805a;
}

.flexwrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}
.flexwrap div {
    border: 1px dotted #333;
    border-radius: 5px;
    width: 40%;
    padding: 20px;
    margin-top: 30px;
    text-align: justify;
    min-width: 420px;
}
@media (max-width: 480px) {
    .flexwrap div {
        border: 0;
    }
}

@media (max-width: 480px) {
    .flexwrap div {
        min-width: 240px;
    }
}

h1 .brand {
    text-align: center;
}
.brand {
    font-weight: bold;
}
.brand
/* ... */

/* Estilos para la cabecera */
header {
    text-align: center;
    padding: 20px;
}
@media (max-width: 480px) {
    header {
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
}

header img {
    max-width: 450px;
    display: inherit;
    margin: 40px auto;
}

@media (max-width: 480px) { 
    header img {
        max-width: 300px;
    }
}

header p {
    text-align: center;
}

/* Estilos para las secciones */
section {
    padding: 50px;
    margin: 50px 0;
    text-align: center;
}

.section1 {
    padding-top: 90px;
    padding-bottom: 90px;
    background: #fff url('img/alimentos.jpg') no-repeat center center;
    background-size: cover;
}
.section1-layer {
    background-color: rgba(255,255,255,0.8);
    width: 100%;
    padding-top: 40px;
    padding-bottom: 40px;
}
.section1-content {
    padding-top: 40px;
    padding-bottom:40px;
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 10px;
}
.section1-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}
.section1-item img {
    width: 300px;
    background-color: green;
    height: 200px;
}  
.section1-item div {
    width: calc(90% - 300px);
    height: 200px;
    min-width: 400px;
}
.section2 {
}

.section2-block {
    width: 90%;
    max-width: 950px;
    text-align: justify;
    margin: 0 auto;
}

.section2 h3 {
    margin-bottom: 40px;
}

.section2 h4 {
    color: #a4bb2f;
    text-align: left;
    text-transform: capitalize;
}

.section3 {
    background-color: #eefada;
    color: #724831;
    padding: 100px 15px;
}

.section4 {
    text-align: center;
    color: #68962a;
}

.section4 .list {
    text-align: left;
    width: 90%;
    max-width: 540px;
    margin: 0 auto;
    color: #333;
    margin-top: 20px;
}

.section4 .checked {
    line-height: 150%;
}

.section4 .checked:before {
    content: '✓ ';
    font-size: 20px;
    color: #724831;
}
#ayudas {
    margin-top: 60px;
}
#ayudas-info {
    margin-top: 15px;
    color: #333;
}

.claim {
    max-width: 900px;
    width: 90%;
    margin: 60px auto 0;
    font-size: 20px;
}

.image-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

#img-equipo {
    width: 95%;
    max-width: 800px;
}

.text-and-image-box {
    width: 30%;
    min-width: 300px;
}

.text-and-image-box img {
    width: 100%;
}
@media (max-width: 480px) {
    .text-and-image-box {
        margin-top: 30px;
    }
}

.section5 {
    background-color: #eee;
    padding-top: 100px;
    padding-bottom: 100px;
    margin-bottom: 0;
}

.section5 p {
    font-weight: bold;
    color: #a4bb2f;
}

input, textarea {
    margin: 5px auto 30px;
    border-radius: 5px;
    border: 1px solid #999;
    padding: 5px;
    width: 240px;
}

textarea {
    height: 200px;
}

input[type=submit] {
    background-color: #a4bb2f;
    color: white;
    font-weight: bold;
}

input[type=submit]:hover {
    background-color: #eefada;
    color: #333;
}


/* Estilos para el formulario de contacto */
form {
    max-width: 400px;
    margin: 0 auto;
}

label, input, textarea {
    display: block;
    margin-bottom: 10px;
}

footer {
    text-align: center;
    padding: 20px 0;
    background-color: #333;
    color: #eee;
}

footer a {
    color: #a4bb2f;
    text-decoration: none;
}
footer a:hover {
    color: #fff;
    text-decoration: underline;
}