.seccionContactanos {
    background: rgb(255 255 255);
}

.indicadorBoton {
    background: #ffffff;
    height: 21px;
    max-width: 900px;
    margin: auto;
    display: flex;
    justify-content: space-around; /* Espaciado uniforme */
    align-items: center; /* Centra verticalmente */
    margin-top: 20px;
}

.indicadorBoton .activo {
    width: 0;
    height: 0;
    border-left: 35px solid transparent;
    border-right: 35px solid transparent;
    border-bottom: 20px solid #dfdddd; /* Color del triángulo */
}

.formulario-contacto {
  background-color: #dfdddd;
  padding: 10px 20px 30px 20px;
  max-width: 900px;
  margin: auto;
  border-radius: 4px;
}

.formulario-contacto h3 {
  font-size: 20px;
  font-weight: 700;
  color: #003d4d;
  margin-bottom: 20px;
}

.formulario {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.fila {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.fila input,
.fila textarea {
  flex: 1;
  padding: 10px;
  border-radius: 6px;
  border: none;
  background-color: #fff;
  box-shadow: inset 0 0 3px rgba(0,0,0,0.1);
  font-size: 14px;
}

.fila textarea {
  width: 100%;
  resize: vertical;
}

.boton-centro {
  text-align: center;
  margin-top: 10px;
}


.boton-centro button {
  background: linear-gradient(to right, #1b4a58, #2ea9cd);
  color: #fff;
  border: none;
  padding: 12px 40px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
  transition: 0.3s ease;
}

.boton-centro button:hover {
  background: #007fa3;
}


/**************************************************/

.seccion-contacto {
  background: linear-gradient(to right, #1b4a58, #2ea9cd);
  padding: 40px 20px;
  text-align: center;
}

.seccion-contacto h2 {
  color: #fff;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 30px;
}

.opciones-contacto {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 36px;
  float: inherit;
    margin: 0px 0px -55px 10px;
}

.boton-contacto {
  background-color: white;
  color: #002b3d;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  font-weight: 600;
  transition: all 0.3s ease;
    width: 17%;
}

.boton-contacto:hover {
  background-color: #00b0e6;
  color: white;
} 