/* ===========================
   ESTILOS GENERALES
=========================== */
html {
  font-family: "Arial", sans-serif;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ===========================
   HEADER / NAVBAR
=========================== */
header {
  margin-top: 10px ; 
}

.header-bg {
  background-color: #d7ff31;
  padding: 10px 30px;
  border-radius: 8px;
  font-family: "Arial", sans-serif;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); 
}

/* Contenedor principal */
.navbar {
  display: flex;
  justify-content: space-between; 
  align-items: center;
  flex-wrap: wrap;
}

/* Logo + texto */
.logo-texto {
  display: flex;
  align-items: center;
  gap: 10px;
}

.img-style {
  width: 50px;
  height: auto;
  border-radius: 8px;
}

.logo-texto a {
  font-weight: bold;
  font-size: 1rem; 
  color: #222;
}

/* Lista de navegación */
.navbar-list {
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.navbar-list a {
  color: #222;
  font-weight: bold;
  transition: color 0.3s ease;
}

.navbar-list a:hover {
  color: #a420f0;
}

/* ===========================
   SECCIÓN INICIO
=========================== */
.inicio-style {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 60px 20px;
  max-width: 1000px;
  margin: 60px auto;
  text-align: left;
}

.inicio-style img {
  max-width: 400px;
  height: auto;
  border-radius: 12px;
}

/* Contenedor del texto */
.inicio-texto {
  max-width: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.inicio-texto h1 {
  font-size: 1.6rem;
  color: #a420f0;
  margin-bottom: 15px;
  line-height: 1.4;
}

.inicio-texto p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 25px;
  font-weight: 500;
}

/* Botón App */
.inicio-texto a {
  display: inline-block;
  background-color: #a420f0;
  color: #f7f7f7;
  padding: 8px 18px;
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  width: auto;
  text-align: center;
  align-self: center;
}

.inicio-texto a:hover {
  background-color: #b5e000;
  color: #222;
  transform: scale(1.05);
}

/* ===========================
   RESPONSIVE INICIO
=========================== */
@media (max-width: 768px) {
  .inicio-style {
    flex-direction: column;
    text-align: center;
  }

  .inicio-style img {
    max-width: 200px;
  }

  .inicio-texto {
    align-items: center;
    text-align: center;
  }

  .inicio-texto h1 {
    font-size: 1.3rem;
  }

  .inicio-texto p {
    font-size: 0.95rem;
  }
}

/* ===========================
   SECCION NUESTRO EQUIPO
=========================== */
.nuestro-equipo {
  text-align: center;
  padding: 40px 20px;
  background-color: #f7f7f7;
  color: #222;
}

.nuestro-equipo h2 {
  font-size: 1.5rem;
  margin-bottom: 6px;
  color: #333333;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nuestro-equipo p {
  font-size: 1rem;
  color: #a420f0;
  margin-bottom: 25px;
}

.btn-integrantes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.btn-integrante {
  display: inline-block;
  margin: 5px;
  padding: 8px 15px;
  background-color: #a420f0;
  color: #f7f7f7;
  border: none;
  border-radius: 20px;
  font-weight: bold;
  transition: background-color 0.3s, transform 0.2s;
}

.btn-integrante:hover {
  background-color: #b5e000;
  transform: scale(1.05);
  cursor: pointer;
}

/* ===========================
   DATOS ACADÉMICOS
=========================== */
.datos-academicos {
  background-color: #f7f7f7;
  color: #333333;
  padding: 50px 20px;
  text-align: center;
}

.datos-contenedor {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.datos-box {
  max-width: 350px;
  text-align: left;
  font-size: 0.9rem;
  line-height: 1.6;
}

.datos-box a {
  color: #a420f0;
  text-decoration: none;
  font-weight: bold;
}

.datos-box a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .datos-box {
    max-width: 100%;
    text-align: center;
  }
}

/* ===========================
   FOOTER
=========================== */
footer {
  background-color: #333333;
  color: #f7f7f7;
  font-size: 0.8rem;
  line-height: 1.5;
  text-align: center;
  padding: 30px 40px;
  border-top: 1px solid #555;
  font-style: oblique;
  width: 100%;
}
