@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");

* {
    padding: 0;
    margin: 0;
    font-family: "Poppins", sans-serif;
    box-sizing: border-box;
}

body {
    width: 100%;
    font-family: "Poppins", sans-serif;
    min-height: 100vh;
    display: grid;
    grid-template:
        "header header header" 250px
        "aside main side" 1fr
        "footer footer footer" 35px / 12% 1fr 12%;
}

header {
    grid-area: header;
    background: #003d7c;
    grid-area: header;
    display: flex;
    align-items: center;
    justify-content: space-around;
    border-radius: 0 0 30px 30px;
}

.info-header {
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    color: #fff;
    gap: 20px;
}

.titulo {
    color: #fff;
}

.logo {
    width: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo img {
    width: 100%;
}

main {
    grid-area: main;
    max-width: 960px;
    margin: 30px auto;
    padding: 25px;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

section {
    margin-bottom: 30px;
}

h1,
h2,
h3 {
    color: #003366;
}

ul {
    padding-left: 50px;
    margin: 15px 0;
}

.verde {
    color: #1dc257;
    font-weight: bolder;
}

.propuesta {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 300px;
    height: 50px;
    border-radius: 25px;
    color: white;
    text-decoration: none;
    background: #003d7c;
    padding: 5px;
    transition: ease 0.3s;
}

.propuesta span {
    text-align: center;
    text-decoration: none;
    padding: 5px;
}

footer {
    display: flex;
    justify-content: center;
    align-items: center;

    grid-area: footer;
    text-align: center;
    background-color: #003366;
    color: #fff;
    font-size: 12px;
}

@media screen and (max-width: 700px) {
    body {
        width: 100%;
        font-family: "Poppins", sans-serif;
        min-height: 100vh;
        display: grid;
        grid-template:
            "header header header" 250px
            "aside main side" 1fr
            "footer footer footer" 35px / 7% 1fr 7%;
    }

    header {
        padding: 0 40px;
        gap: 40px;
        font-size: 13px;
    }

    .logo {
        width: 100px;
    }

    .propuesta span {
        font-size: 14px;
    }
}

@media screen and (max-width: 550px) {
    header {
        align-items: center;
        justify-content: center;
        flex-direction: column-reverse;
        gap: 20px;
    }

    .logo {
        width: 50px;
    }

    .info-header {
        gap: 8px;
    }

    .ins2 {
        font-size: 13px;
    }

    .propuesta span {
        font-size: 13px;
    }
}


@media screen and (max-width: 530px) {
    .section_acerca {
        flex-direction: column;
        gap: 20px;
    }
}