.contact-modern {
  background-color: #ffffff;
  padding: 60px 30px;
}

.contact-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 30px;
}

.contact-columns {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}

.contact-form-column {
  flex: 1 1 auto;
  font-size: 1.1em;
  color: #333;
  line-height: 1.8;
  justify-content: center;
  align-items: flex-start;
}

.contact-text-column {
  flex: 1 1 50%;
  max-width: 550px;
  text-align: justify;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}


.contact-text-column .section-title {
  font-size: 2.4em;
  line-height: 1.0;
  color: #333;
  margin-bottom: 20px;
  text-align: left;
}

.modern-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: none;
  background: #ffffff;
}

.modern-form input,
.modern-form select,
.modern-form textarea {
  padding: 12px 16px;
  border: 1px solid #ccc;
  font-size: 1em;
  font-family: inherit;
  background: #fdfdfd;
  transition: border-color 0.2s;
}

.modern-form input:focus,
.modern-form select:focus,
.modern-form textarea:focus {
  outline: none;
  border-color: #0053ba;
}

/* Botón enviar */
.submit-button {
  padding: 12px 28px;
  margin-top: 10px;
  font-size: 1.1em;
  font-weight: 600;
  color: #333;
  background: #FAFAFA;
  border: 2px solid #333;
  border-radius: 2px;
  cursor: pointer;
  transition: all .3s ease;
  user-select: none;
  letter-spacing: 1.2px;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  text-transform: uppercase;

}

.submit-button:hover {
  background: #356680;
  border-color: #356680;
  color: #fff;
  box-shadow: 0 6px 16px rgba(53,102,128,.5);
  transform: translateY(-3px);
}


/* Botones sociales (WhatsApp, Instagram, Facebook) estilo igual que botón enviar */
.social-icon-button {
  width: 60px;
  height: 60px;
  border: none;
  border-radius: 2px;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  margin-top: 10px;
  margin-bottom: 20px;
}

.social-icon {
  width: 40px;
  height: auto;
  transition: transform 0.2s ease;
}

.social-icon-button.whatsapp {
  margin-top: 18px;
}

.social-icon-button.instagram {
  margin-top: -10px;
}

.social-icon-button.facebook {
  margin-top: -10px;
}

/* Hover WhatsApp */
.social-icon-button.whatsapp:hover {
  background-color: #25D366;
  transform: scale(1.08);
  box-shadow: 0 0 10px rgba(37, 211, 102, 0.4);
}

.social-icon-button.whatsapp:hover .social-icon {
  transform: scale(1.05);
}

/* Hover Instagram */
.social-icon-button.instagram:hover {
  background-color: #E1306C;
  transform: scale(1.08);
  box-shadow: 0 0 10px rgba(225, 48, 108, 0.4);
}

.social-icon-button.instagram:hover .social-icon {
  transform: scale(1.05);
}

/* Hover Facebook */
.social-icon-button.facebook:hover {
  background-color: #3b5998;
  transform: scale(1.08);
  box-shadow: 0 0 10px rgba(59, 89, 152, 0.4);
}

.social-icon-button.facebook:hover .social-icon {
  transform: scale(1.05);
}

/* Layout grupo social */
.social-group {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  margin-top: 20px;
  margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-columns {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .contact-text-column,
  .contact-form-column {
    flex: 1 1 100%;
    text-align: center;
    align-items: center;
  }

  .contact-text-column .section-title {
    text-align: center;
  }

  .contact-text-column p {
    font-size: 1rem;
    text-align: justify;
    max-width: 90%;
  }

  .contact-text-column .section-subtitle {
    font-size: 1rem;
    text-align: justify;
    max-width: 90%;
    font-weight: 700; /* Negrita */
    color: #333;
    margin-bottom: 0px;
  }
  .social-group {
    justify-content: center;
  }
}

.section-subtitle {
  font-size: 1.5rem;       /* Tamaño de letra */
  color: #333333;          /* Color del texto */
  font-weight: 600;        /* Grosor de la letra */
  text-align: center;      /* Centrar texto */
  margin: 20px 0;          /* Márgenes arriba y abajo */
}

  .contact-text-column p {
    font-size: 1rem;
    text-align: justify;
    max-width: 90%;
  }

  .contact-text-column .section-subtitle {
    font-size: 1rem;
    text-align: justify;
    max-width: 90%;
    font-weight: 700; /* Negrita */
    color: #333;
    margin-bottom: 0px;
  }