/* ==========================================================================
   SECCIÓN CONTACTO (DISEÑO PREMIUM & TOUCH-FRIENDLY)
   ========================================================================== */
.form{
  gap: 3px;
}
.formulario {
  padding: 4rem 1.5rem;
  background-color: #0e0e0e;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.contacto-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: stretch;
}

/* Columna Derecha (Formulario) */
.contact-right {
  background: #161616;
  color: #e5e5e5;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.contact-right h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  letter-spacing: 1.5px;
  color: #ffffff;
  margin-bottom: 2rem;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #cccccc;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.form-control {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: #222222;
  color: #ffffff;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.form-control:focus {
  background: #2a2a2a;
  border-color: #ffffff;
  color: #ffffff;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.15);
}

select.form-control {
  background-color: #222222;
  color: #ffffff;
}

select.form-control option {
  background: #222222;
  color: #ffffff;
}

/* Botón Submit */
.btn-submit {
  width: 100%;
  min-height: 52px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #000000;
  background-color: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.btn-submit:hover,
.btn-submit:focus-visible {
  background-color: transparent;
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

/* Columna Izquierda (Imagen & Datos) */
.contact-left {
  background: #161616;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.contact-image {
  flex: 1;
  min-height: 240px;
  position: relative;
  overflow: hidden;
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.contact-left:hover .contact-image img {
  transform: scale(1.05);
}

.contact-info {
  padding: 2rem;
  color: #e5e5e5;
  background: #181818;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-info h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 1px;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.contact-info p {
  font-size: 0.95rem;
  color: #b0b0b0;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.contact-info a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.contact-info a:hover {
  color: #aaaaaa;
  text-decoration: underline;
}

/* ==========================================================================
   BREAKPOINTS RESPONSIVOS (TABLET Y CELULAR)
   ========================================================================== */

/* Tablets (< 992px) */
@media (max-width: 991.98px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-right {
    padding: 2rem;
  }

  .contact-image {
    min-height: 220px;
    height: 220px;
  }
}

/* Celulares (< 576px) */
@media (max-width: 575.98px) {
  .formulario {
    padding: 3rem 1rem;
  }

  .contact-right {
    padding: 1.5rem;
  }

  .contact-info {
    padding: 1.5rem;
  }
}