/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
}

html {
    scroll-behavior: smooth;
}

h1 { font-size: 3.5em; }
h2 { font-size: 2.7em;};
h3 { font-size: 2em; }
p { font-size: 1.25em; }
ul { list-style: inside}
li { font-size: 1.25em; }

button {
    font-size: 1.25em;
    font-weight: bold;
    padding: 10px 30px;
    border-radius: 5px;
    border: 2px solid rgba(101, 71, 207, 0.3);
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    color: white;
    background-color: rgb(75, 107, 175);
}

button:hover {
    background-color: rgb(101, 33, 165);
}

.container {
    width: 80%;
    margin: 0 auto;
}

/* Menu Fijo */
header {
    background-color: #ffffff;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.menu-fijo .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
}

.menu-fijo .logo img {
    height: 70px; /* Ajusta la altura del logotipo según sea necesario */
}

.menu {
    list-style: none;
    display: flex;
    margin: 0;
}

.menu li {
    margin-left: 20px;
}

.menu li a {
    color: #000000;
    text-decoration: none;
    padding: 10px 15px;
}

.menu li a:hover {
    background: #ff4500;
    border-radius: 5px;
}
/* Hero Section */
#hero {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    height: 90vh;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("images/hero.jpg") no-repeat center center / cover;
}

#hero h1, .hero p {
    color: white;
}

#hero h1 {
    font-size: 48px;
}

.hero p {
    font-size: 24px;
    margin-bottom: 20px;
}

.cta-button {
    background: #e8491d;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
}

.cta-button:hover {
    background: #d7381b;
}

/* Hero2 Section */
#hero2 {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    height: 360PX;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("images/hero.jpg") no-repeat center center / cover;
}

#hero2 h1, .hero p {
    color: white;
}

#hero2 h1 {
    font-size: 48px;
}




/* About Section */
.about {
    padding: 80px 0;
}

.about-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.about .text {
    flex: 1;
    margin-right: 20px;
    text-align: justify;
}

.about .text h3 {
    font-size: 32px;
    margin-bottom: 20px;
}

.about .image img {
    width: 100%;
    border-radius: 10px;
    justify-content:space-between;
}

/* Team Section */
.libros {
    background: #f4f4f4;
    padding: 80px 0;
}

.libros h3 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
}

.libros-members {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.libros .member {
    text-align: center;
    flex-basis: 18%;
    margin-bottom: 20px;
}

.libros .member img {
    width: 200px;
    height: 200px;
    border-radius: 15%;
    margin-bottom: 10px;
}

.libros .member h4 {
    font-size: 20px;
    margin-bottom: 5px;
}

.libros .member p {
    font-size: 16px;
    color: #555;
}

/* Team Section */
.team {
    background: #f4f4f4;
    padding: 80px 0;
}

.team h3 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
}

.team-members {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.team .member {
    text-align: center;
    flex-basis: 18%;
    margin-bottom: 20px;
}

.team .member img {
    width: 200px;
    height: 200px;
    border-radius: 15%;
    margin-bottom: 10px;
}

.team .member h4 {
    font-size: 20px;
    margin-bottom: 5px;
}

.team .member p {
    font-size: 16px;
    color: #555;
}

/* Membresia Section */





/* Membresia Section */
.membresia {
    background: #f4f4f4;
    padding: 90px 0;
}

.membresia h3 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
}

.membresia-members {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.membresia .member {
    text-align: center;
    flex-basis: 33%;
    margin-bottom: 20px;
}

.membresia .member img {
    width: 300px;
    height: 300px;
    border-radius: 15%;
    margin-bottom: 10px;
}

.membresia .member h4 {
    font-size: 20px;
    margin-bottom: 5px;
}

.membresia .member p {
    font-size: 16px;
    color: #555;
}
/* Contact Section */
#contact {
    padding: 190px 0;
    background-color: #333;
    color: #fff;
    text-align: center;
}

.contact h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.contact p {
    font-size: 18px;
    margin-bottom: 20px;
}

.contact ul {
    list-style: none;
}

.contact ul li {
    font-size: 18px;
    margin-bottom: 10px;
}


/* Footer Section */
.fin {
    background: #afa7a7;
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

/* Responsive Design - Media Queries */
@media (max-width: 1024px) {
    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .about .text {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .team .member {
        flex-basis: 45%;
    }
}

@media (max-width: 768px) {
    header .menu {
        flex-direction: column;
    }

    .about-content {
        text-align: center;
    }

    .team .member {
        flex-basis: 100%;
    }
}

@media (max-width: 480px) {
    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .about .text h3 {
        font-size: 28px;
    }

    .team-members {
        flex-direction: column;
    }

    .team .member {
        flex-basis: 100%;
    }
}
