* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    scroll-behavior: smooth;
}
.carrusel{
    margin: 2% 17% 2% 17%;
}
.julius-sans-one-regular {
    font-family: "Julius Sans One", sans-serif;
    font-weight: 400;
    font-style: normal;
  }

.montserrat-fuente2 {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
}
body {
    overflow-x: hidden;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px;
    background-color: #f5f5f5;
    color: #140589;
}

.logo img {
    height: 50px;
    padding: 5%;
    margin-left: 10%;
}

.nav-links {
    padding-top: 1.1%;
    list-style: none;
    display: flex;
    justify-content: space-between;
}

.nav-links li {
    padding: 0 20px;
    transition: transform 0.2s ease;
}

.nav-links li:hover {
    transform: scale(1.2);
}

.nav-links a {
    color: rgb(25, 7, 140);
    text-decoration: none;
    font-size: 20px;
    font-family: "Montserrat",sans-serif;
}


.burger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    height: 25px;
    margin-right: auto;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: rgb(25, 7, 140);
    border-radius: 5px;
}
.page-header {
    position: relative;
    margin: 0px;
    padding: 8% 4% 8% 4%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: hsl(0, 0%, 100%);
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-family: "Julius Sans One", sans-serif;
    color: #333;
    margin-bottom: 10px;
    padding: 2%;
}

.page-header h2 {
    font-size: 2rem;
    font-family: "Montserrat", sans-serif;
    color: #333;
    margin-bottom: 5px;
}
.page-header .logo {
    padding: 2%;
    margin-top: 2%;
    max-width: 80%;
    /* Hace que la imagen ocupe un máximo del 80% del ancho del contenedor */
    height: auto;
    /* Mantiene las proporciones de la imagen */
    max-height: 350px;
    /* Limita la altura máxima para pantallas grandes */
}

.plantas1 {
    position: absolute;
    right: 0px;
    bottom: 0px;
    max-height: 65%;
}
.plantas2 {
    position: absolute;
    left: 0px;
    top: 10px;
    max-height: 35%;
}

.seccion{
    margin-bottom: 0%;
    margin-top: 10%;
}
.chico{
    display: none;
}

.circle-text-container {
    display: flex;
    align-items: center; /* Alinea verticalmente el contenido */
    padding: 7% 5% 7% 5%;
    margin-bottom: 0%;
    background-color: #f5f5f5;
    transition: transform 0.3s ease;
    overflow: hidden;
}
.circle-text-container:hover {
    transform: scale(1.05); /* Zoom del 120% al pasar el mouse */
}
.circle {
    font-family: "Julius Sans One", sans-serif;
    width: 300px; /* Ajusta el tamaño del círculo según sea necesario */
    height: 300px; /* Ajusta el tamaño del círculo según sea necesario */
    border-radius: 50%; /* Hace el div circular */
    background-color: #140589; /* Color de fondo del círculo */
    color: #f5f5f5; /* Color del texto dentro del círculo */
    display: flex;
    align-items: center; /* Centra el texto verticalmente dentro del círculo */
    justify-content: center; /* Centra el texto horizontalmente dentro del círculo */
    margin-right: 20px; /* Espacio entre el círculo y el texto */
    margin-left: 10%;
    text-align: center;
    font-weight: bold;
    font-size: 3.5vw;
}
#quienes-somos {
    padding-top: 15%;
}
#vision {
    padding-bottom: 15%;
}
#anim-section{
    background-color: #140589; /* Color de fondo del círculo */
}

#anim-section-objectives{
        background-color: #607196; /* Color de fondo del círculo */
}

#anim-section-mission{
        background-color: #140589; /* Color de fondo del círculo */
}

#anim-section-vision{
        background-color: #607196; /* Color de fondo del círculo */
}

.text{
    flex: 1; /* Permite que el div del texto se expanda para ocupar el espacio restante */ 
}

.text p {
    font-size: 1.5vw;
    margin: 0; /* Elimina el margen por defecto del párrafo */
    color: #333;
    padding: 10%;
    text-align: center;
    font-family: "Montserrat", sans-serif;
}
.animation-section {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.visible {
    opacity: 1;
    transform: translateY(0);
}
@media (min-width: 1450px){
    .circle {
        font-size: 50px;
    }
    .text p {
        font-size: 30px;
    }
}
@media (max-width: 768px) {
    nav-links {
        position: absolute;
        right: 0;
        height: 100vh;
        top: 0;
        background-color: #f5f5f5;
        flex-direction: column;
        align-items: center;
        width: 100%;
        transform: translateX(100%);
        transition: transform 0.3s ease-in;
    }

    .nav-links li {
        opacity: 0; 
        display: none;
    }

    .burger {
        display: flex;
        margin-right: 2%;
    }

    .nav-active {
        transform: translateX(0%);
        flex-direction: column;
        align-items: center;
    }

    .nav-active li {
        opacity: 1;
        display: flex;
        transition: opacity 0.3s ease-in;
        padding-top: 2%;
    }

    .plantas1{
        max-height: 35%;
    }
    .plantas2{
        max-height: 25%;
    }
    .grande{
        display: none;
    }
    .chico{
        display: flex;
        flex-direction: column;
    }
    .circle-text-container{
        flex-direction: column;
    }
    .circle {
        width: 150px; /* Ajusta el tamaño del círculo según sea necesario */
        height: 150px; /* Ajusta el tamaño del círculo según sea necesario */
        margin-right: 20px; /* Espacio entre el círculo y el texto */
        font-size: 3vw;
    }
    .text p {
        font-size: 4vw;
        text-align: center;
        margin: 0; /* Elimina el margen por defecto del párrafo */
        color: #333;
        padding: 10%;
        font-family: "Montserrat", sans-serif;
        justify-content: center;
    }
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header h2 {
        font-size: 1rem;
    }
    .page-header .logo {
        padding: 2%;
        margin-top: 2%;
        max-width: 60%;
        /* Hace que la imagen ocupe un máximo del 80% del ancho del contenedor */
        height: auto;
        /* Mantiene las proporciones de la imagen */
    }
}

.equipo{
    margin:0% 2% 0% 2% ;
}
.equipo h2{
    font-size: 3rem;
    font-family: "Julius Sans One", sans-serif;
    color: #333;
    text-align: center;
    padding: 2% 0% 2% 0%;
}
.Comisiones {
    background-color: #f5f5f5;
    width: 100%;
    margin: 0% 0% 0% 0%;
}

.team-section {
    text-align: center;
    padding: 50px;
}
.eq{
    font-size: 3rem;
    font-family: "Julius Sans One", sans-serif;
    color: #333;
    padding: 5%;
    color: #140589;
}

.filter-buttons {
    margin-bottom: 20px;
}

.filter-button {
    padding: 10px 20px;
    margin: 5px;
    border: none;
    background-color: #140589;
    color: white;
    cursor: pointer;
    border-radius: 5px;
    font-family:  "Montserrat", sans-serif;
};

.filter-button:hover {
    background-color: #607196 ;
}

.team-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.team-member {
    display: flex;
    flex-direction: column; 
    align-items: center; 
    background-color: white;
    border-radius: 10px;
    margin: 15px;
    padding: 20px;
    width: 250px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.team-member img {
    border-radius: 50%;
    width: 100px;
    height: 100px;
    object-fit: cover;
}

.team-member h3 {
    margin-top: 15px;
}

.team-member p {
    color: #777;
}

.social-links a {
    margin: 5px;
    display: inline-block;
}

.social-links img {
    width: 20px;
}
.event-section {
    text-align: center;
    padding: 50px;
}

.event-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.event-card {
    display: flex;
    flex-direction: column; 
    align-items: start;
    background-color: white;
    border-radius: 10px;
    margin: 15px;
    width: 400px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: left;
}

.event-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.event-details {
    padding: 20px;
    display: flex;
    flex-direction: column; 
    align-items: start;
}

.event-details h3 {
    margin-top: 0;
    color: #333;
}

.event-details p {
    color: #555;
    margin: 5px 0;
}
.button-container{
    display: flex;
    flex-direction: column;
    margin-top: auto;
    width: 100%;
    padding: 20px;
}
.button-container button{
    width: 30%;
}
.learn-more, .register-now {
    padding: 10px 20px;
    margin-top: 2%;
    margin-bottom: 0%;
    border: none;
    background-color: #140589;
    color: white;
    cursor: pointer;
    border-radius: 5px;
}

.learn-more:hover, .register-now:hover {
    background-color: #140589;
}

.more-info {
    margin-top: 10px;
    color: #777;
    display: none;
}
.social-links{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-top: auto;
}
.social-links img{
    height: 100%;
    transition: 0.3s ease, transform 0.3s ease;
}
.social-links img:hover{
    transform: scale(1.2);
    
}

footer {
    background-color: #140589;
    color: #fff;
    padding: 30px 0 30px 0;
    margin-top: 3%;
    width: 100%;
}
.footer-content {
    flex-wrap: wrap;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10%;
    padding-left: 0%;
}
footer a, footer p {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s;
}
footer a:hover {
    color: #1DA1F2; /* Cambia esto al color que prefieras */
}
footer i {
    margin-right: 8px;}
