#contenedorcontacto-principal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;

  margin: 65px 0px 0px 0px;
  font-family: "Outfit", sans-serif;
  gap: 100px;
  padding: 20px;
  box-sizing: border-box;
  position: relative;
  bottom: 0px;
}

/* Estilos para la tarjeta de contacto directo */
#contact-card {
  border: 5px solid var(--color-borderamarillostrong);
  padding: 48px;
  width: 100%;
  max-width: 328px;
  max-height: 446px;
  border-radius: 30px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

#contact-card h2 {
  color: var(--color-cafestrong);
  text-align: center;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 35px;
}

#contact-info {
  margin: 15px 0;
}

#contact-info div {
  margin: 10px 0;
  display: flex;
  align-items: center;
  font-size: 22px;
}

#contact-info i {
  margin-right: 10px;
  color: var(--color-iconoscolor);
  width: 20px;
}

/* Estilos para el formulario de contacto */
#contact-form {
  max-width: 416px;
  width: 100%;
  text-align: left;
  box-sizing: border-box;
  padding: 0 20px;
}

#contact-form h2 {
  color: var(--color-grislight);
  margin-bottom: 20px;
  font-size: 29px;
  font-weight: bold;
  text-align: left;
}

#contact-form p {
  color: var(--color-grislight);
  margin-bottom: 20px;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.5px;
  line-height: 24px;
  text-align: left;
}

label {
  display: block;
  margin-bottom: 5px;
  color: var(--color-oscurostrong);
  font-size: 14px;
}

input[type="text"],
input[type="email"] {
  width: 100%;
  padding: 2px 15px;
  margin-bottom: 15px;
  border: 1px solid var(--color-borderazulstrong);
  border-radius: 50px;
  font-size: 14px;
}

textarea {
  width: 100%;
  padding: 16px 20px;
  margin-bottom: 15px;
  border: 1px solid var(--color-borderazulstrong);
  border-radius: 20px;
  font-size: 14px;
  height: 178px;
  resize: none;
  position: relative;
}

#textarea-container {
  position: relative;
}

#charCount {
  font-size: 12px;
  color: var(--color-iconoscolor);
  /* position: absolute;
   bottom: 5px;
   left: 10px;*/
  margin-top: -10px;
}


#privacy-label,
#communication-label {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 14px;
}

#privacy-label input,
#communication-label input {
  margin-right: 10px;
  accent-color: var(--color-cafestrong);
}

#submit-button {
  background-color: var(--color-button-orange);
  color: var(--color-textwhite);
  border: none;
  padding: 7px 20px;
  border-radius: 50px;
  cursor: pointer;
  font-size: 18px;
  width: 100%;
  max-width: 150px;
  height: 40px;
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 10px;
  font-style: normal;
  font-weight: 600;
  line-height: 26px;
  letter-spacing: 0.5px;
}

#linkcontactocmponent {
  color: var(--color-cafestrong);
  font-weight: bold;
}

#texto_form {
  color: var(--color-oscurostrong);
}

/* Estilo para los placeholders */
input::placeholder {
  color: #BEBEBE;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.5px;
}

textarea::placeholder{
  color: #828282;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px; /* 128.571% */
}

.input-personalizado {
  background-color: var(--color-cardeventos)!important;
  color: inherit;
}

@media(max-width:373px)
{
  textarea{
    height: 130px;
  }
}
