/* CONTENEDOR GENERAL */
.contactos-correos {
  width: 100%;
  padding: 24px;
  border: 1px solid #6d6d6d;
  background: #f5f5f5;
  box-sizing: border-box;
}

/* CAJA PRINCIPAL */
.contacto-box {
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
  padding: 10px 14px;

  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;

  background: #ffffff;
  border: 2px solid #2f67e3;
  border-radius: 16px;

  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

/* TEXTO */
.contacto-label {
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  white-space: nowrap;
}

/* LISTA */
.contactos-lista {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* CORREO */
.contacto-email {
  all: unset;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 10px 22px;
  background: #e9e9e9;
  border-radius: 30px;

  font-size: 16px;
  font-weight: 700;
  font-family: inherit;
  line-height: 1.2;

  color: #000000 !important;
  text-decoration: none !important;

  cursor: pointer;
  box-sizing: border-box;

  transition: all 0.3s ease;
}

.contacto-email:hover,
.contacto-email:focus,
.contacto-email:active,
.contacto-email:visited {
  color: #000000 !important;
  text-decoration: none !important;
}

.contacto-email:hover {
  background: #dcdcdc;
  color: #1d4ed8 !important;
}

/* CONTENEDOR BOTÓN */
.contacto-boton-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

/* BOTÓN */
.contacto-boton {
  all: unset;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 12px 28px;
  background: #2f67e3;
  border-radius: 30px;

  font-size: 16px;
  font-weight: 700;
  font-family: inherit;
  line-height: 1;

  color: #ffffff !important;
  text-decoration: none !important;

  cursor: pointer;
  box-sizing: border-box;

  transition: all 0.3s ease;
}

.contacto-boton:hover,
.contacto-boton:focus,
.contacto-boton:active,
.contacto-boton:visited {
  color: #ffffff !important;
  text-decoration: none !important;
}

.contacto-boton:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .contacto-box {
    justify-content: center;
    text-align: center;
  }

  .contactos-lista {
    justify-content: center;
  }

  .contacto-email,
  .contacto-boton {
    width: 100%;
    text-align: center;
  }
}