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

/* ===========================
   HEADER / NAVBAR
=========================== */

header {
  margin-top: 10px;
}

.navbar {
  background-color: #d7ff31;
  padding: 10px 30px;
  border-radius: 8px;
  display: flex;
  justify-content: space-between; 
  align-items: center;
  flex-wrap: wrap;
  font-family: "Arial", sans-serif;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); 
}

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

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

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

/* ===========================
   NAVEGACIÓN
=========================== */
.navbar-list {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

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

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

/* ===========================
   SECCIÓN PRESENTACIÓN
=========================== */
.presentacion {
  text-align: center;
  padding: 80px 20px 50px;
}

.bienvenidos {
  font-size: 2rem;
  color: #222;
  margin: 0;
  font-weight: bolder;
}

/* ===========================
   SECCIÓN FIGMA
=========================== */
.brief-section {
  text-align: center;
  padding: 40px 20px;
  background-color: #f7f7f7;
}

.brief-section h2 {
  color: #a420f0;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

iframe {
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  max-width: 90%;
}

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

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

  .navbar-list {
    flex-direction: column;
    gap: 10px;
  }

  iframe {
    width: 100%;
    height: 300px;
  }

  .bienvenidos {
    font-size: 1.5rem;
  }
}
