/* ===================== */
/* CONTACTO PAGE         */
/* ===================== */

.contacto-hero {
  background: linear-gradient(135deg, #1a2744 0%, #c0392b 60%, #e05545 100%);
}

.contacto-main {
  padding: 5rem 0;
  background: #f6f5ef;
}

.contacto-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
}

/* Info lateral */
.contacto-info h2 {
  font-size: 1.8rem;
  font-weight: 800;
  margin: 0 0 0.8rem;
  color: #1f2937;
}

.contacto-info > p {
  color: #6b7280;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.info-cards {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 2.5rem;
}

.info-card {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.1rem 1.3rem;
  border-radius: 16px;
  background: white;
  border: 1px solid rgba(0,0,0,0.07);
  text-decoration: none;
  color: #1f2937;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.info-card-icon {
  font-size: 1.6rem;
  width: 44px;
  text-align: center;
  flex-shrink: 0;
}

.info-card div {
  display: flex;
  flex-direction: column;
}

.info-card strong {
  font-weight: 700;
  font-size: 0.9rem;
  color: #1f2937;
}

.info-card span {
  font-size: 0.95rem;
  color: #374151;
  margin: 0.15rem 0;
}

.info-card small {
  font-size: 0.78rem;
  color: #9ca3af;
}

.info-wa { border-left: 3px solid #25d366; }
.info-email { border-left: 3px solid #c0392b; }
.info-lugar { border-left: 3px solid #c8a96b; }
.info-horario { border-left: 3px solid #6366f1; }

/* Redes */
.contacto-redes p {
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
}

.redes-links {
  display: flex;
  gap: 0.8rem;
}

.red-link {
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  border: 1.5px solid rgba(192,57,43,0.3);
  color: #c0392b;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
  transition: all 0.2s ease;
}

.red-link:hover {
  background: #c0392b;
  color: white;
  border-color: #c0392b;
}

/* Formulario */
.contacto-form-wrap {
  position: sticky;
  top: 90px;
}

.contacto-form {
  background: white;
  padding: 2.5rem;
  border-radius: 24px;
  box-shadow: 0 20px 70px rgba(0,0,0,0.1);
  border: 1px solid rgba(0,0,0,0.06);
}

.contacto-form h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 0 2rem;
  color: #1f2937;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #374151;
}

.contacto-form input,
.contacto-form textarea,
.contacto-form select {
  padding: 0.9rem 1rem;
  border-radius: 12px;
  border: 1.5px solid #e5e7eb;
  outline: none;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  background: #fafafa;
  color: #1f2937;
  transition: all 0.2s ease;
  width: 100%;
}

.contacto-form input:focus,
.contacto-form textarea:focus,
.contacto-form select:focus {
  border-color: #c0392b;
  background: white;
  box-shadow: 0 0 0 3px rgba(192,57,43,0.1);
}

.contacto-form textarea { resize: vertical; }

.btn-submit-contact {
  width: 100%;
  padding: 1rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #c0392b, #e05545);
  color: white;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

.btn-submit-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(192,57,43,0.4);
}

.btn-arrow {
  font-size: 1.1rem;
  transition: transform 0.2s;
}

.btn-submit-contact:hover .btn-arrow {
  transform: translateX(4px);
}

.form-success {
  display: none;
  margin-top: 1rem;
  padding: 1rem;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: 12px;
  color: #065f46;
  font-weight: 600;
  text-align: center;
}

/* WhatsApp sección */
.wa-section {
  background: white;
  padding: 5rem 0;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.wa-section h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin: 0 0 1rem;
}

.wa-section p {
  color: #6b7280;
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.btn-wa-big {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: #25d366;
  color: white;
  padding: 1rem 2.2rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(37,211,102,0.35);
}

.btn-wa-big:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 45px rgba(37,211,102,0.45);
}

/* Responsive */
@media (max-width: 900px) {
  .contacto-grid { grid-template-columns: 1fr; }
  .contacto-form-wrap { position: static; }
}

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .contacto-form { padding: 1.5rem; }
}
