/* ────────────────────────────────────────────── */
/*  HERO “CONTÁCTANOS” TIPO PASTILLA             */
/* ────────────────────────────────────────────── */
.contact-hero {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 300px;
  background:
    linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
    url('../images/contac\ rauosd.jpg') center/cover no-repeat;
  overflow: hidden;
  text-align: center;
}

.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.contact-hero .hero-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
}

.contact-hero .hero-title {
  display: inline-block;
  background: rgba(0, 0, 0, 0.7);
  color: #ffffff;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 12px 30px;
  border-radius: 30px;
  margin-bottom: 1rem;
}

.contact-hero p {
  position: relative;
  z-index: 1;
  font-size: 1.25rem;
  color: #ffffff;
  max-width: 800px;
  line-height: 1.4;
}

  
  /* Sección "Contact" - Contenido dividido en 3 bloques */
  .contact-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
  }
  
  /* Bloque 1: Información de Contacto */
  .contact-info {
    flex: 1;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  }
  
  .contact-info h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
  }
  
  .contact-details {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .contact-details li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
  }
  
  .contact-details .icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 10px;
    background-size: cover;
    background-position: center;
  }
  
  /* Ejemplo de íconos (ajusta rutas o usa FontAwesome) */
  
  .info-text {
    font-size: 18px;
    color: #333;
  }
  
  /* Bloque 2: Formulario de Contacto */
  .contact-form {
    flex: 1;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  }
  
  .contact-form h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
  }
  
  .contact-form .form-group {
    margin-bottom: 20px;
  }
  
  .contact-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #333;
  }
  
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #000000;
    border-radius: 4px;
    font-size: 14px;
  }
  
  .contact-form button.btn {
    background-color: deepskyblue;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .contact-form button.btn:hover {
    background-color: #007acc;
  }
  
  /* Bloque 3: Información Extra (Opcional) */
  .contact-extra {
    flex: 1;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  }
  
  .contact-extra h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
  }
  
  .contact-extra p {
    font-size: 16px;
    color: #555;
    line-height: 1.5;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .contact-section {
      flex-direction: column;
    }
  }
  /* ────────────────────────────────────────────── */
/*  PALETA OSCURA / TEAL PARA CONTACTO           */
/* ────────────────────────────────────────────── */
:root {
  --svc-bg-page:        #101217;
  --svc-bg-card:        #1E1F28;
  --svc-text-primary:   #F2F2F5;
  --svc-text-secondary: #B0B0B5;
  --svc-accent:         #3BC1C8;
  --svc-shadow:         rgba(0, 0, 0, 0.4);
}

/* Asegura fondo oscuro en toda la sección de contacto */
body {
  background: var(--svc-bg-page);
  color: var(--svc-text-primary);
}

/* ────────────────────────────────────────────── */
 .info-text {
  color: #333;
}
