@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #0B0B0B;
  color: #F5F5F5;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  overflow-x: hidden;
}

.navbar-custom {
  background: #0B0B0B;
  border-bottom: 1px solid #2A2A2A;
}
.navbar-custom .nav-link {
  color: #F5F5F5;
  margin-left: 20px;
  font-weight: 500;
}
.navbar-custom .nav-link:hover {
  color: #D4AF37;
}

.hero {
  padding: 80px 20px;
  text-align: center;
  background: radial-gradient(circle at center, #1a1a1a 0%, #0a0a0a 80%);
  box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.9);
}
.hero .hero-content {
  max-width: 900px;
  margin: auto;
  padding: 40px;
  background: rgba(20, 20, 20, 0.6);
  border-radius: 12px;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.hero .hero-title {
  font-size: 3rem;
  color: #c9a227;
  letter-spacing: 3px;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  animation: glowTitle 3s infinite alternate;
}
.hero .hero-title::after {
  content: "";
  display: block;
  width: 0;
  height: 3px;
  background: #F2D16B;
  margin: 12px auto 0;
  border-radius: 10px;
  animation: lineGrow 1.5s ease forwards;
}
.hero .hero-text {
  color: #d0d0d0;
  font-size: 1.1rem;
  line-height: 1.8;
}

html {
  scroll-behavior: smooth;
}

.scroll-down {
  display: block;
  font-size: 2.8rem;
  color: #F2D16B;
  margin-top: 30px;
  text-decoration: none;
  animation: bounce 2s infinite;
  transition: 0.3s;
}
.scroll-down:hover {
  transform: scale(1.2);
}

/* ANIMACIONES */
@keyframes glowTitle {
  0% {
    text-shadow: 0 0 5px rgba(201, 162, 39, 0.3);
  }
  100% {
    text-shadow: 0 0 10px rgba(201, 162, 39, 0.7), 0 0 20px rgba(201, 162, 39, 0.3);
  }
}
@keyframes lineGrow {
  0% {
    width: 0;
    opacity: 0;
  }
  100% {
    width: 100px;
    opacity: 1;
  }
}
@keyframes bounce {
  20% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(10px);
  }
  60% {
    transform: translateY(5px);
  }
}
.btn-base, .btn-club, .btn-gold {
  padding: 12px 25px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.btn-gold {
  background: #D4AF37;
  color: black;
}
.btn-gold:hover {
  background: #F2D16B;
}

.btn-club {
  background: #D4AF37;
  border-radius: 30px;
}
.btn-club:hover {
  background: #F2D16B;
}

.service-card {
  background: #141414;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: row;
  height: 100%;
}
.service-card:hover {
  transform: translateY(-8px);
  border: 1px solid #F2D16B;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

/* IMAGEN */
.service-img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* CONTENIDO */
.service-content {
  padding: 22px;
  text-align: center;
}

.service-content h3 {
  color: white;
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.service-content p {
  color: #bdbdbd;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

/* BENEFICIOS */
.service-benefits {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.service-benefits li {
  font-size: 0.9rem;
  color: #d6d6d6;
  margin-bottom: 6px;
  position: relative;
  padding-left: 18px;
}

.service-benefits li::before {
  content: "✂";
  position: absolute;
  left: 0;
  color: #F2D16B;
}

/* BOTON */
.btn-servicio {
  display: inline-block;
  background: #F2D16B;
  color: black;
  padding: 10px 22px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.btn-servicio:hover {
  transform: scale(1.05);
}

.galeria {
  padding: 100px 40px;
}
.galeria .titulo-galeria {
  text-align: center;
  margin-bottom: 40px;
  color: #D4AF37;
}
.galeria .contenedor-galeria {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}
.galeria .foto {
  border-radius: 40px;
  overflow: hidden;
}
.galeria .foto img {
  width: 120%;
  height: 500px;
  object-fit: cover;
  transition: 0.5s;
}
.galeria .foto:hover img {
  transform: scale(1.1);
}

.club-section {
  background: #0f0f0f;
  border-radius: 10px;
}
.club-section .club-title {
  font-size: 2.5rem;
  color: white;
  font-weight: 700;
}
.club-section .club-title span {
  color: #D4AF37;
}
.club-section .club-subtitle {
  color: #ccc;
  font-size: 1.1rem;
}
.club-section .club-card {
  background: #1a1a1a;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  transition: 0.3s;
  border: 1px solid transparent;
}
.club-section .club-card:hover {
  transform: translateY(-10px);
  border: 1px solid #D4AF37;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}
.club-section .club-card h4 {
  color: white;
  margin-bottom: 10px;
}
.club-section .club-card p {
  color: #bbb;
}
.club-section .club-icon {
  font-size: 35px;
  color: #D4AF37;
  margin-bottom: 15px;
}
.club-section .btn-club {
  background: #D4AF37;
  color: black;
  padding: 15px 35px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}
.club-section .btn-club:hover {
  background: rgb(221.024691358, 191.7901234568, 96.975308642);
  transform: scale(1.05);
}

.example-2 {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 999;
  display: flex;
  flex-direction: row;
  gap: 12px;
}

.icon-content {
  transition: transform 0.3s;
}
.icon-content:hover {
  transform: scale(1.15);
}

ul {
  list-style: none;
}

.example-2 {
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: 35px;
  right: 35px;
}

.example-2 .icon-content {
  margin: 0 10px;
  position: relative;
}

.example-2 .icon-content .tooltip {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  padding: 6px 10px;
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  font-size: 14px;
  transition: all 0.3s ease;
}

.example-2 .icon-content:hover .tooltip {
  opacity: 1;
  visibility: visible;
  top: -50px;
}

.example-2 .icon-content a {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #4d4d4d;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}

.example-2 .icon-content a:hover {
  box-shadow: 3px 2px 45px 0px rgba(0, 0, 0, 0.12);
}

.example-2 .icon-content a svg {
  position: relative;
  z-index: 1;
  width: 30px;
  height: 30px;
}

.example-2 .icon-content a:hover {
  color: white;
}

.example-2 .icon-content a .filled {
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: #000;
  transition: all 0.3s ease-in-out;
}

.example-2 .icon-content a:hover .filled {
  height: 100%;
}

.example-2 .icon-content a[data-social=whatsapp] .filled,
.example-2 .icon-content a[data-social=whatsapp] ~ .tooltip {
  background-color: #128c7e;
}

.example-2 .icon-content a[data-social=facebook] .filled,
.example-2 .icon-content a[data-social=facebook] ~ .tooltip {
  background-color: #3b5998;
}

.example-2 .icon-content a[data-social=instagram] .filled,
.example-2 .icon-content a[data-social=instagram] ~ .tooltip {
  background: linear-gradient(45deg, #405de6, #5b51db, #b33ab4, #c135b4, #e1306c, #fd1f1f);
}

.example-2 .icon-content a[data-social=youtube] .filled,
.example-2 .icon-content a[data-social=youtube] ~ .tooltip {
  background-color: #ff0000;
}

footer {
  border-top: 1px solid #2A2A2A;
  text-align: center;
  padding: 20px;
  margin-top: 50px;
  color: #CFCFCF;
}

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