.social {
  display: flex;
  justify-content: flex-end;
  height: 2.2rem;
  align-items: center;
  background: linear-gradient(90deg, var(--brand-ink) 0%, #233755 100%);
  color: var(--text-inverse);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-family: "Montserrat", sans-serif;
}

.social .mails {
  display: flex;
  gap: 8px;
  margin-right: 20px;
}

.social .telefono {
  display: flex;
  min-width: 122px;
}

.social .mails a,
.social .telefono a,
.social .ig p {
  font-family: "Montserrat", sans-serif;
  color: inherit;
  text-decoration: none;
}

.social .mails a:hover,
.social .telefono a:hover,
.ig a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.ig a {
  text-decoration: none;
  display: flex;
  color: inherit;
  gap: 8px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9375rem;
}

.social .ig {
  display: flex;
  margin-right: 48px;
  color: inherit;
  gap: 8px;
}

.social .jmancione {
  margin-right: 16px;
}

.social .pablo {
  margin-right: 20px;
}

.social .telefono {
  gap: 8px;
  margin-right: 20px;
}

.Seguros-Mancione-Container img {
  height: 5rem;
  width: 12rem;
  max-width: 12rem;
  object-fit: contain;
  margin-left: 4rem;
}

header {
  background: #ffffff;
  box-shadow: 0 0.125rem 0.3125rem rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
  animation: slideDown 1.5s ease forwards;
}

.navbar {
  display: flex;
}

.navbar ul {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
  justify-content: flex-end;
  margin-right: 4rem;
}

.navbar a {
  position: relative;
  text-decoration: none;
  gap: 0.5rem;
  color: var(--text-body);
  font-family: "Montserrat", sans-serif;
  padding-bottom: 0.25rem;
  transition: color 0.3s ease;
  font-size: 1rem;
  font-weight: 600;
}

.navbar a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 0.125rem;
  background-color: var(--brand-blue);
  transition: width 0.3s ease;
}

.navbar a:hover::after {
  width: 100%;
}

.navbar a:hover {
  color: var(--brand-blue-strong);
}

.Seguros-Mancione-Container a {
  color: inherit;
  text-decoration: none;
}

.Seguros-Mancione-Container a::after {
  content: none;
}

.Seguros-Mancione-Container a:hover {
  color: inherit;
}

@media (max-width: 918px) {
  .social {
    display: none;
  }

  header {
    animation: none;
  }

  .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    position: relative;
  }

  .Seguros-Mancione-Container img {
    height: auto;
    width: 8.5rem;
    max-width: 48vw;
    margin-left: 0;
  }

  .nav-toggle {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background: white;  
    border: 1px solid var(--border-soft);
    border-radius: 0.9rem;
    cursor: pointer;
    font-size: 2rem;
    color: var(--brand-ink);
  }

  .navbar ul,
  .navbar ul#nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none !important;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 0.5rem 1rem 1rem;
    background: #ffffff;
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
    box-shadow: var(--shadow-md);
    z-index: 99999;
  }

  .navbar ul.is-open,
  .navbar ul#nav-menu.is-open {
    display: flex !important;
  }

  .navbar ul li a,
  .navbar ul#nav-menu li a {
    display: block;
    padding: 0.9rem 0.25rem;
    font-size: 1rem;
  }

  .navbar a::after {
    content: none;
  }
}

@media (min-width: 919px) {
  .nav-toggle {
    display: none !important;
  }
}
