
/* CONTENEDOR PRINCIPAL */
.contacto-main {
  max-width: 800px;
  margin: 2.5rem auto 2rem auto;
  padding: 2.5rem 1.2rem 3rem 1.2rem;
  background: var(--paula-white, #fff);
  border-radius: 1.2rem;
  box-shadow: 0 2px 16px 0 #0001;
}

/* TÍTULO */
.contacto-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.7rem;
  color: #F64188;
  margin-bottom: 1.2rem;
  text-align: center;
  letter-spacing: 1px;
}

/* CONTENIDO Y SOCIAL */
.contacto-content {
  font-size: 1.15rem;
  color: var(--paula-text, #222);
  line-height: 1.7;
  text-align: center;
  margin-bottom: 1.2rem;
}
.contacto-social {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin: 1.2rem 0 1.8rem 0;
}
.contacto-social a {
  color: #F64188;
  font-size: 2rem;
  transition: color 0.2s, transform 0.2s;
}
.contacto-social a:hover {
  color: var(--paula-red, #e63946);
  transform: scale(1.15) rotate(-6deg);
}

/* FORMULARIO */
.contacto-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin: 2rem auto 0 auto;
  max-width: 420px;
  background: #f8f8f8;
  padding: 2rem 1.2rem 1.5rem 1.2rem;
  border-radius: 1rem;
  box-shadow: 0 1px 8px 0 #0001;
}
.form-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3rem;
}
.contacto-form label {
  font-size: 1rem;
  font-weight: 600;
  color: #F64188;
  margin-bottom: 0.1rem;
}
.contacto-form input,
.contacto-form textarea {
  border: 1.5px solid #ddd;
  border-radius: .5rem;
  padding: .7rem;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #fff;
  width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.contacto-form input:focus,
.contacto-form textarea:focus {
  border-color: var(--paula-green, #009688);
  outline: none;
  box-shadow: 0 0 0 2px #00968822;
}
.input-error {
  border-color: var(--paula-red, #e63946) !important;
  background: #fff0f0;
}
.error-message {
  color: var(--paula-red, #e63946);
  font-size: 0.95rem;
  min-height: 1.2em;
  margin-top: 0.1em;
  font-weight: 500;
  letter-spacing: 0.2px;
}
.form-success {
  color: #fff;
  background: var(--paula-green, #009688);
  border-radius: .5rem;
  padding: 0.8rem 1rem;
  margin-top: 1.2rem;
  font-size: 1.1rem;
  font-weight: 600;
  box-shadow: 0 2px 8px 0 #00968822;
  animation: fadeIn 0.5s;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: none; }
}
.contacto-form button {
  background: #F64188;
  color: #fff;
  border: none;
  border-radius: .5rem;
  padding: .8rem 1.2rem;
  font-weight: 700;
  font-size: 1.08rem;
  cursor: pointer;
  margin-top: .5rem;
  transition: background .2s, transform .2s;
  box-shadow: 0 1px 4px 0 #e6394611;
}
.contacto-form button:hover {
  background: #F64188;
  transform: scale(1.04);
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .contacto-main {
    padding: 1.2rem 0.2rem 2rem 0.2rem;
  }
  .contacto-form {
    padding: 1.2rem 0.2rem 1rem 0.2rem;
  }
  .contacto-title {
    font-size: 2rem;
  }
}
