/* styles.css */

body {
    margin: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

section {
    padding: 30px 20px;
    text-align: center;
}

.repehead{
    font-family: 'Zilla Slab', sans-serif;
    background-color: #ff6600;
    color: black;
    text-align: right;
    font-size: 1em;
    font-weight: bold;
    margin-top: 0;
    margin: 0;
}

.mision {
    background-color: #ff6600;
    color: white;
}

.division{
    height: 20px;
}

.vision {
    background-color: #333333;
    color: white;
}

.metodologia {
    background-color: white;
    color: black;
    padding: 60px 20px;
}

h1 {
    font-family: "Zilla Slab", serif;
    font-weight: 700;
    font-size: 2.5em;
    margin-bottom: 20px;
    text-align: center;
}

h2 {
    font-family: "Zilla Slab", serif;
    font-weight: 700;
    font-size: 1.5em;
    margin-top: 20px;
    text-align: center;
}

p {
    font-family: "Roboto", sans-serif;
    max-width: 800px;
    margin: 0 auto 20px auto;
    font-size: 1.2em;
    text-align: justify;
    opacity: 0; /* Initially hide the content */
    transform: translateY(20px); /* Start slightly below */
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

ol, li {
    font-family: "Roboto", sans-serif;
    max-width: 800px;
    margin: 0 auto 20px auto;
    font-size: 1.1em;
    text-align: justify;
    opacity: 0; /* Initially hide the content */
    transform: translateY(20px); /* Start slightly below */
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.visible {
    opacity: 1; /* Make content visible */
    transform: translateY(0); /* Move to original position */
}

img {
    border: 5px solid #ff6600;
}

