/* ===== ESTILO GENERAL ===== */
body {
  margin: 0;
  font-family: 'Nunito', sans-serif;
  background: linear-gradient(to right, #ffd1eb, #d8b7ff);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ===== ENCABEZADO ===== */
.encabezado {
  background-color: #ff4fa3;
  color: white;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo-titulo {
  display: flex;
  align-items: center;
}

.logo {
  width: 50px;
  margin-right: 20px;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
}

h1 {
  margin: 0;
  font-size: 2rem;
}

/* ===== MENÚ DE USUARIO ===== */
.user-menu {
  position: relative;
  margin-right: 20px;
}

.avatar {
  width: 35px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid white;
  box-shadow: 0 0 15px rgba(0,0,0,0.2);
}

.dropdown {
  display: none;
  position: absolute;
  right: 0;
  top: 50px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  z-index: 100;
  overflow: hidden;
}

.dropdown a {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  text-decoration: none;
  color: #333;
  font-weight: 600;
  transition: background 0.2s;
}

.dropdown a i {
  margin-right: 10px;
}

.dropdown a:hover {
  background-color: #ffe5f5;
}

.dropdown.mostrar {
  display: block;
}

/* ===== SECCIÓN BIENVENIDA ===== */
.contenido-principal {
  text-align: center;
  padding: 40px 20px;
}

.bienvenida {
  background-color: white;
  width: 60%;
  margin: 0 auto;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.bienvenida p {
  font-size: 1.2rem;
  color: #333;
}

.boton-inicio {
  background-color: #ff4fa3;
  color: white;
  border: none;
  padding: 14px 30px;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  margin-top: 20px;
  transition: all 0.3s ease;
}

.boton-inicio:hover {
  background-color: #e0358d;
  transform: scale(1.05);
}

/* ===== SECCIÓN VISIÓN Y MISIÓN ===== */
.vision-mision {
  background-color: rgba(255, 255, 255, 0.9);
  width: 70%;
  margin: 50px auto;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.vision-mision h2 {
  color: #ff4fa3;
  text-align: center;
  margin-bottom: 25px;
  font-size: 1.8rem;
}

.tarjeta {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  padding: 20px;
  margin: 20px 0;
}

.tarjeta h3 {
  color: #ff4fa3;
  margin-bottom: 10px;
}

.tarjeta p {
  color: #444;
  line-height: 1.6;
}

/* ===== PIE DE PÁGINA ===== */
.pie {
  margin-top: auto;
  background-color: #ff4fa3;
  color: white;
  text-align: center;
  padding: 15px;
}

.social-icons a {
  color: white;
  font-size: 26px;
  margin: 0 12px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #ffd6eb;
}

#p1 {
  font-size: 3.2rem;
  color: #333;
}

#h2 {
  font-size: 2.8rem;
  color: #ff4fa3;
}
#h3 {
  font-size: 2.3rem;
}
#p2 {
  font-size: 1.4rem;
  color: #555;
}