:root {
  --bs-primary: #e53935; /* Rojo principal */
  --bs-primary-rgb: 229, 57, 53;
  --bs-secondary: #6c757d;
  --bs-success: #198754;
  --bs-info: #0dcaf0;
  --bs-warning: #ffc107;
  --bs-danger: #dc3545;
  --bs-light: #f8f9fa;
  --bs-dark: #212529;
}

/* Base */
body {
  font-family: 'Montserrat', sans-serif;
  background-color: #f2f2f2;
  overflow-x: hidden;
}

/* Preloader */
#preloader {
  position: fixed;
  inset: 0;
  background: #ffffff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}

#inicio .badge {
  font-size: 1.1rem;
}

/* Hero con overlay degradado */
.hero-section {
  background: url('images/hero.jpeg') no-repeat center center;
  background-size: cover;
  position: relative;
}
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgb(229 57 53 / 62%), rgb(0 0 0 / 73%));
}
.hero-content {
  position: relative;
  z-index: 2;
}

/* Ratio para imágenes */
.ratio-16-9 {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

/* Sneat-like card hover */
.sneat-card {
  border-radius: 0.5rem;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.sneat-card:hover {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

/* Botones */
.btn-primary {
  background-color: var(--bs-primary) !important;
  border-color: var(--bs-primary) !important;
}
.btn-primary:hover {
  background-color: #d32f2f !important;
  border-color: #c62828 !important;
}

/* Secciones */
section {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (max-width: 767px) {
  section {
    padding-top: 100px;
    padding-bottom: 60px;
  }
  .hero-section {
    background-position: top;
  }
}

/* Footer */
footer p {
  font-size: 0.9rem;
}
