.body-contactanos h2 {
  font-family: "Marko One", serif;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
}

.body-contactanos h3 {
  font-family: var(--fuenteExo);
}

.body-contactanos ul {
  padding: 0;
  margin: 0;
}

.body-contactanos ul li {
  list-style: none;
  font-family: var(--fuenteExo);
  line-height: 35px;
  margin-bottom: 10px;
}

.body-contactanos ul li i{
  margin-right: 15px;
  font-size: 1.5rem;
}

.body-contactanos ul li a {
  text-decoration: none;
  color: inherit;
  position: relative;
}

.body-contactanos ul li a:hover {
  color: var(--bg-color-dark);
}

.body-contactanos ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background-color: var(--color-naranja);
  transition: width 0.3s ease;
}

.body-contactanos ul li a:hover::after {
  width: 100%;
}

#subraya1 h3 {
  position: relative;
  margin-bottom: 2rem;
}

#subraya1 h3::before {
  content: "";
  width: 10%;
  height: 3px;
  position: absolute;
  bottom: -10px;
  background-color: var(--color-naranja);
}


/* otra forma
#subraya1 h3 {
  position: relative;
  margin-bottom: 2rem;
}

#subraya1 h3::after {
  content: "";
  width: 10%;
  height: 3px;
  left: 0;
  bottom: -6px;
  position: absolute;
  bottom: -10px;
  background-color: var(--color-naranja);
  transition: width 0.3s ease;
}

#subraya1 h3:hover::after {
  width: 20%;
}
*/

/*
#bat {
    width: 1px;
    height: 1px;
    transform: scale(4);
    position: relative;
    left: -128px;
    top: -128px;
    -webkit-animation: 0.4s bat steps(1) infinite;
            animation: 0.4s bat steps(1) infinite;
}*/

@media (max-width: 700px) {

  .body-contactanos {
    padding: 2rem 3rem;
    text-align: center;
    
  }

  .body-contactanos h2 {
    
    padding: 0 0 20px;
  }

  .body-contactanos h3 {
    display: none;
  }

   /* Centrar y ordenar mejor los items */
  .body-contactanos ul {
    text-align: left; /* esto ayuda a que no se vea raro centrado */
    max-width: 400px;
    margin: 0 auto;
  }

  .body-contactanos ul li {
    line-height: 28px;
    font-size: 16px;
  }

  .body-contactanos ul li i {
    margin-right: 8px;
    font-size: 1.2rem;
    gap: 10px;
  }

   .body-contactanos ul li strong {
    margin-right: 5px;
    font-size: 1rem;
  }

 

  /* Subrayado más visible en mobile */
  #subraya1 h3::before {
    width: 30%;
    left: 35%;
  }

  /* Mapa más compacto */
  iframe {
    height: 300px;
    margin-top: 20px;
    border-radius: 10px;
  }

}

.btn-agendar {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  background: linear-gradient(135deg, #000, #1a1a1a);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 40px;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 rgba(0,0,0,0);
}

/*
.btn-agendar {
  display: inline-block;
  padding: 12px 28px;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.btn-agendar:hover {
  background-color: #333;
  transform: translateY(-2px);
}*/