/* Fuentes y basic resets */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

h1, h2, h3, h4, h5 {
  color: #222;
}

/* Enlaces */
a {
  color: #0d6efd;
  text-decoration: none;
}
a:hover, a:focus {
  text-decoration: underline;
  color: #0a58ca;
}

/* Contenedores */
.container {
  max-width: 1140px;
}

/* Botones */
.btn-primary {
  background-color: #0d6efd;
  border: none;
  transition: background-color 0.3s ease;
}
.btn-primary:hover, .btn-primary:focus {
  background-color: #0a58ca;
  box-shadow: 0 0 8px rgba(13, 110, 253, 0.6);
}

/* Cards */
.card {
  border-radius: 0.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

/* Texto en slider */
.carousel-caption h1,
.carousel-caption p {
  text-shadow: 1px 1px 6px rgba(0,0,0,0.6);
}

/* Galerías */
.gallery-img {
  cursor: pointer;
  overflow: hidden;
  display: block;
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}
.gallery-img img {
  border-radius: 0.5rem;
  width: 100%;
  height: auto;
}
.gallery-img:hover {
  transform: scale(1.05);
}

/* Testimonios bloques */
blockquote {
  font-style: italic;
  font-size: 1.1rem;
  color: #555;
}
.blockquote-footer {
  color: #666;
  font-weight: 600;
}

/* Contacto */
#contact a.text-white:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  font-size: 0.9rem;
}

/* Responsive Img contain */
img.object-fit-cover {
  object-fit: cover;
  object-position: center;
}

/* Accessibility: focus outlines */
a:focus, button:focus {
  outline: 3px solid #0d6efd;
  outline-offset: 2px;
  box-shadow: none;
}

/* Utilities */
.mt-auto { margin-top: auto !important; }
.text-shadow {
  text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
}
