
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

body {
  font-family: 'Inter', sans-serif;
  scroll-behavior: smooth;
  background-color: #f9f9f9;
  color: #333;
}

h1, h2, h3 {
  font-weight: 600;
}

.hero {
  background: url('../../images/sldLelencuestador.png') center/cover no-repeat;
  color: white;
  padding: 120px 0;
  text-align: center;
}

.section {
  padding: 80px 0;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease-in-out;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.btn-danger {
  background-color: #d62828;
  border: none;
}
.btn-danger:hover {
  background-color: #b91d1d;
}

.btn-outline-light {
  border: 2px solid white;
  color: white;
}
.btn-outline-light:hover {
  background-color: white;
  color: #1a1a1a;
}

footer {
  background-color: #1a1a1a;
  color: #ccc;
}

footer a {
  color: #ccc;
  text-decoration: underline;
}
