/* ===========================
   CONTACTO
=========================== */

.contacto-hero {
  padding: 120px 0 70px;
  text-align: center;
  background: linear-gradient(to bottom, #f8fafc, #ffffff);
}

.contacto-hero h1 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  margin-bottom: 20px;
}

.contacto-subtitle {
  font-size: clamp(16px, 2.2vw, 20px);
  color: #4a5568;
  line-height: 1.6;
}

/* GRID PRINCIPAL */

.contacto-content {
  padding: 60px 0 120px;
}

.contacto-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: start;
}

/* FORMULARIO */

.contacto-form-wrapper h2 {
  margin-bottom: 30px;
  font-size: 22px;
}

.contacto-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 14px;
  margin-bottom: 6px;
  color: #4a5568;
}

.form-group input,
.form-group textarea {
  padding: 12px 14px;
  border: 1px solid #dbe2ea;
  border-radius: 6px;
  font-size: 15px;
  font-family: inherit;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #1f5fa8;
  box-shadow: 0 0 0 3px rgba(31, 95, 168, 0.1);
}

/* INFO */

.contacto-info h2 {
  margin-bottom: 20px;
  font-size: 22px;
}

.contacto-info p {
  margin-bottom: 20px;
  color: #2d3748;
  line-height: 1.6;
}

.info-block {
  margin-bottom: 25px;
}

.info-block strong {
  display: block;
  font-size: 14px;
  color: #1f5fa8;
  margin-bottom: 6px;
}

/* ===========================
   RESPONSIVE
=========================== */

@media (max-width: 992px) {
  .contacto-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media (max-width: 768px) {
  .contacto-hero {
    padding: 90px 0 50px;
  }

  .contacto-content {
    padding: 40px 0 80px;
  }
}

@media (max-width: 480px) {
  .contacto-hero {
    padding: 70px 0 40px;
  }
}

#loader{		
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.8);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
}