.menu-toggle {
  position: relative;
  cursor: pointer;
  display: inline-block;
  padding-right: 20px;
}

/* Icono por defecto: flecha hacia la derecha ► */
.menu-toggle::after {
  content: '►';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 12px;
  transition: transform 0.2s ease;
}

/* Cuando el submenú está abierto (clase 'open' en .menu-toggle), cambia flecha ▼ */
.menu-toggle.open::after {
  content: '▼';
}
      .float-wa{
        position:fixed;
        width:60px;
        height:60px;
        bottom:40px;
        right:40px;
        background-color:#25d366;
        color:#FFF;
        border-radius:50px;
        text-align:center;
        font-size:30px;
        z-index:100;
	box-shadow: -4px 4px 2px black;
    }
.colorText {
    color:#FFFFFF;
}
.fondo-estatico2 {
  position: relative;
  height: 80vh;
  background-image: url('/assets/images/contactanos.jpg'); /* cambia esta ruta */
  background-size: 100% 100%;
  background-position: center;
  background-attachment: fixed;
  color: white; /* color del texto */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}    

.fondo-estatico {
  position: relative;
  height: 80vh;
  background-image: url('/assets/images/dialogante.jpg'); /* cambia esta ruta */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white; /* color del texto */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.fondo-estatico .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80%;
  background-color: rgba(0, 0, 0, 0.5); /* capa oscura semitransparente */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.fondo-estatico2 .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80%;
  background-color: rgba(0, 0, 0, 0.5); /* capa oscura semitransparente */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.contenido {
  background-color: rgba(0, 0, 0, 0.5); /* opcional: mejora la legibilidad del texto */
  padding: 2rem;
  border-radius: 10px;
}
.fondo-estatico .contenido {
  z-index: 1;
  color: #fff; /* blanco brillante */
  font-size: 1.5rem;
}
.fondo-estatico2 .contenido {
  z-index: 1;
  color: #fff; /* blanco brillante */
  font-size: 1.5rem;
}