/* =====================================================
   VARIABLES BASE
===================================================== */
:root {
  --primary-color: #a57f2c;
  --text-dark: #1f2d3d;
  --text-medium: #444;
  --border-light: #d0d0d0;
}
main.page {
  padding-top: 10px;  
}
.visitas-intro {
  background: #ffffff;
  border-radius: 8px;
  padding: 2.5rem 2rem;
  margin-bottom: 3rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}
/* =====================================================
   HERO Visitas 
===================================================== */

.visitas-hero {
  width: 100%;
  padding: 2rem 1.5rem;
}

.visitas-hero-container {
  max-width: 1340px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

/* Imagen responsive */

.visitas-hero-image {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.visitas-block {
  margin-top: 2rem;
}

.visitas-block h2 {
  font-size: 2rem;
  font-weight: 500;
  color: #a57f2c;
  margin-bottom: 0.8rem;
  text-align: left;
}

/* Bloque destacado */
.visitas-block.highlight {
  background: #f8f9fa;
  border-radius: 6px;
  padding: 1.5rem;
  border-left: 4px solid #a57f2c;
}

.visitas-text {
  font-size: clamp(1.5rem, 1.2vw, 2rem);
  line-height: 1.7;
  color: var(--text-medium);
  margin-bottom: 1.2rem;
  text-align: left;
}


/* ---------- MÓVIL ---------- */
@media (max-width: 576px) {
  
  .course-image img {
    height: 180px;
  }

  #clearFilters {
    width: 100%;
  }
  .visitas-hero {
    padding: 1.4rem 1rem;
  }

  .visitas-hero-image {
    height: 180px;
  }
  

}
/* ---------- TABLET ---------- */
@media (max-width: 768px) {
 
  .visitas-intro {
    padding: 1.8rem 1.4rem;
  }

 
  .visitas-hero {
    padding: 1.8rem 1.2rem;
  }

  .visitas-hero-image {
    height: 240px;
  }
  
}

/* =====================================================
   /////////////////////////////////
===================================================== */

.visitas-formulario {
  margin-top: 3rem;
  background: #f8f9fa;
  border-radius: 8px;
  padding: 2rem;
  border: 1px solid var(--border-light);
  text-align: left;
}
.form-label, .form-check-label{
  font-weight: 400;
}
.visitas-formulario h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.visitas-formulario h4 {
  margin-top: 1rem;
  font-weight: 600;
  color: var(--primary-color);
  border-left: 4px solid var(--primary-color);
  padding-left: 10px;
}

.visitas-formulario .form-control,
.visitas-formulario .form-select {
  border-radius: 6px;
}

.visitas-formulario .btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--text-dark);
}

.visitas-formulario .btn-primary:hover {
  opacity: 0.9;
}

.no-bold-list label {
    font-weight: 400 !important;
}
body {
    overflow-x: hidden;
}