/* Header */

/* Header */

.header {
  background: var(--primary-color);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 96;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.navbar, .angels-navbar {
  padding: 1rem 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-circle {
  width: 50px; /* Tamaño original del logo, no se altera en móvil */
  height: 50px; /* Tamaño original del logo, no se altera en móvil */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.5rem;
}

.logo-text {
  color: var(--white);
  font-weight: 600;
  font-size: 1.25rem;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color);
}

/* Header */
.header {
  background: var(--primary-color);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 96;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
  padding: 1rem 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo img {
  height: 75px;
}

/* LOGO */
nav .logo img {
    height: 76px;  /* Ajusta el tamaño aquí */
    width: auto;   /* Mantiene proporción */
    display: block;
}


.nav-logo .logo-circle
 {
  width: 100px;
  height: 85px;
  border-radius: 50%;
  overflow: hidden;
  /*border: 2px solid var(--primary-color);*/
 }

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-color);
}

.nav-icons {
  display: flex;
  gap: 1rem;
  align-items: center;
}
