* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  color: #333333;
  background-color: #f4f4f4;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #2b2b2b;
}

::-webkit-scrollbar-thumb {
  background: #ff4500;
  border-radius: 10px;
}

.hero-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.navbar {
  /* 1. Fondo con transparencia y desenfoque */
  background: rgba(43, 43, 43, 0.85) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  /* 2. Mantener arriba al hacer scroll */
  position: sticky !important;
  top: 0;
  z-index: 1050;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 0;
}
.navbar .navbar-brand {
  color: #ff4500 !important;
  font-weight: bold;
  font-size: 1.5rem;
  text-transform: uppercase;
  transition: color 0.3s ease;
}
.navbar .navbar-brand:hover {
  color: #ffffff !important;
}
.navbar .nav-link {
  color: #ffffff !important;
  margin-left: 1rem;
  transition: all 0.3s ease;
}
.navbar .nav-link:hover {
  color: #ff4500 !important;
  transform: translateY(-2px);
}
.navbar .navbar-toggler-icon {
  filter: invert(1);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), url("..//assets/img/heroe.jpeg");
  background-size: cover;
  background-position: center;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .hero-content {
  animation: fadeInUp 1s ease-out forwards;
}
.hero .hero-content h1 {
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.hero .hero-btn {
  background-color: #ff4500;
  border-radius: 50px;
  padding: 15px 40px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.hero .hero-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(255, 69, 0, 0.4);
  letter-spacing: 2px;
}

.clases .card {
  height: 300px;
  border: none;
  border-radius: 15px;
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease;
}
.clases .card:hover {
  transform: scale(1.05);
}
.clases .card-boxeo {
  background-color: #e63946;
  border-bottom: 5px solid rgb(186.9013452915, 23.5986547085, 35.869955157);
}
.clases .card-crossfit {
  background-color: #457b9d;
  border-bottom: 5px solid rgb(45.6438053097, 81.3650442478, 103.8561946903);
}
.clases .card-yoga {
  background-color: #2a9d8f;
  border-bottom: 5px solid rgb(25.8542713568, 96.6457286432, 88.027638191);
}

.card {
  overflow: hidden;
  border: none;
}
.card .coach-img {
  height: 350px !important;
  width: 100%;
  object-fit: cover;
  object-position: top;
  filter: grayscale(100%) brightness(0.9);
  transition: filter 0.6s ease, transform 0.6s ease;
}
.card:hover .coach-img {
  filter: grayscale(0%) brightness(1);
  transform: scale(1.1);
}

.btn-naranja {
  background-color: #ff4500;
  border: none;
  color: white;
  transition: background-color 0.4s ease, transform 0.3s ease;
}
.btn-naranja:hover {
  background-color: #cc3700;
  transform: scale(1.05);
  color: white;
}

.btn-outline-custom {
  border: 2px solid #ff4500;
  color: #ff4500;
  background: transparent;
  transition: all 0.3s ease;
}
.btn-outline-custom:hover {
  background-color: #ff4500;
  color: #ffffff;
  transform: translateY(-2px);
}

.footer-fitness {
  background-color: #1a1a1a;
  color: #ffffff;
}
.footer-fitness .text-danger {
  color: #ff4500 !important;
}
.footer-fitness .redes-sociales {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}
.footer-fitness .redes-sociales a {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  opacity: 0.7;
  display: inline-block;
}
.footer-fitness .redes-sociales a:hover {
  color: #ff4500 !important;
  opacity: 1;
  transform: translateY(-5px);
}
.footer-fitness hr {
  border-color: rgba(255, 255, 255, 0.1);
}

/*# sourceMappingURL=style.css.map */
