/* ===== ESTILO GENERAL DEL SITIO ===== */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #f8f9fa;
}

/* ===== NAVBAR ===== */
.navbar {
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* ===== TITULOS ===== */
h1, h2, h3 {
    font-weight: 600;
}

/* ===== TARJETAS ===== */
.card {
    border-radius: 12px;
}

/* ===== BOTONES PERSONALIZADOS ===== */
.btn-primary {
    background-color: #0d6efd;
    border-radius: 8px;
}

.btn-success {
    border-radius: 8px;
}

.btn-danger {
    border-radius: 8px;
}

/* ===== FOOTER ===== */
footer {
    background-color: #0d6efd;
    color: white;
    padding: 20px;
    text-align: center;
    margin-top: 40px;
}
section {
    padding-top: 60px;
    padding-bottom: 60px;
}

.display-5 {
    font-weight: 700;
}

.lead {
    font-size: 1.2rem;
}
.slider {
  width: 100%;
  height: 350px;
  overflow: hidden;
  position: relative;
  border-radius: 10px;
}

/* 📱 Ajuste para celular */
@media (max-width: 768px) {
  .slider {
    height: 250px;
  }
}

.slides img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 🔥 importante */
  position: absolute; /* 🔥 NO CAMBIAR */
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slides img.active {
  opacity: 1;
}

