* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #fff;
  color: #333;
  overflow-x: hidden;
}


.barra-superior {
  background-color: blue;
  color: white;
  font-weight: bold;
  font-size: 0.75rem;
  height: 35px;
  line-height: 35px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1001;
  text-align: center; 
  padding-right: 15px;
}


.barra-navegacion {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  background-color: white;
  border-bottom: 1px solid #ddd;
  width: 100%;
  position: fixed;
  top: 35px;
  left: 0;
  z-index: 1000;
}

.boton-contacto {
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  font-style: italic;
}

.navegacion-izquierda,
.navegacion-derecha {
  display: flex;
  align-items: center;
}

.navegacion-izquierda a,
.navegacion-derecha a {
  margin: 0 1.5rem;
  font-size: 0.95rem;
}

.navegacion-centro {
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateX(-40px);
}

.barra-navegacion a {
  text-decoration: none;
  color: blue;
  font-weight: bold;
  font-size: 0.85rem;
}

.barra-navegacion::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: blue;
  position: absolute;
  bottom: 0;
  left: 0;
}

.imagen-logo {
  height: 70px;
  object-fit: contain;
  margin-left: -30px;
}


.hamburguesa {
  display: none;
  flex-direction: column;
  cursor: pointer;
  margin-right: 1rem;
}

.hamburguesa span {
  height: 3px;
  width: 25px;
  background: blue;
  margin: 4px 0;
  border-radius: 2px;
}

.menu-movil {
  display: none;
  flex-direction: column;
  background: white;
  position: fixed;
  top: 95px;
  right: 0;
  width: 100%;
  z-index: 999;
}

.menu-movil a {
  padding: 1rem;
  border-bottom: 1px solid #ddd;
  text-decoration: none;
  color: blue;
  font-weight: bold;
  text-align: center;
}


.contenedor-contacto {
  margin-top: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem 1rem;
  padding-bottom: 9rem;
}

.boton-red {
  display: inline-block;
  position: relative;
  width: 200px;
  padding: 0.5rem 1rem;
  border: 1px solid blue;
  color: blue;
  font-weight: bold;
  text-decoration: none;
  font-size: 1rem;
  background-color: transparent;
  text-align: center;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  font-family: Arial, Helvetica, sans-serif;
  overflow: visible;
}

.boton-red:hover {
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  font-style: italic;
  font-weight: normal;
  cursor: pointer;
}

.boton-red:hover::after {
  transform: scale(1);
}


@media (max-width: 768px) {
  .navegacion-izquierda,
  .navegacion-derecha {
    display: none;
  }

  .navegacion-centro {
    transform: none;
    margin-left: 1rem;
    justify-content: flex-start;
  }

  .imagen-logo {
    margin-left: 0;
    height: 60px;
  }

  .hamburguesa {
    display: flex;
  }

  .contactoMovil {
    font-family: "Instrument Serif", serif;
    font-weight: 400;
    font-style: italic;
  }

  .barra-superior {
    padding-right: 0;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .menu-movil a.contactoMovil {
    font-weight: normal;
  }
}

@media (min-width: 769px) {
  .barra-navegacion a.boton-contacto {
    font-weight: normal;
  }
}
