/* =====================
   ESTILOS GENERALES
===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #0f0f0f;
  color: #ffffff;
  line-height: 1.6;
}

/* =====================
   HEADER / HERO
===================== */
header {
  height: 100vh;
  background:
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.85)),
    url("https://images.unsplash.com/photo-1599351431613-18ef1fdd27e1")
      center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

header h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

header p {
  max-width: 650px;
  margin: auto;
  font-size: 1.1rem;
}

header a {
  display: inline-block;
  margin-top: 30px;
  padding: 15px 40px;
  background: #c9a24d;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  border-radius: 30px;
  transition: 0.3s;
}

header a:hover {
  background: #e6bb5c;
}

header a span {
  display: block;
}

header a .subtext {
  font-size: 13px;
  opacity: 0.8;
  margin-top: 5px;
  letter-spacing: 0.5px;
}

/* =====================
   SECCIONES
===================== */
section {
  padding: 80px 10%;
}

section h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.3rem;
  color: #c9a24d;
}

/* =====================
   SERVICIOS
===================== */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.service-box {
  background: #1a1a1a;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  transition: 0.3s;
}

.service-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 25px rgba(201, 162, 77, 0.35);
}

.service-box h3 {
  margin-bottom: 10px;
}

/* =====================
   UI CARDS MEMBRESÍAS VIP
===================== */

.vip-subtitle {
  text-align: center;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.price {
  font-weight: bold;
  font-size: 22px;
}

.price span {
  font-size: 14px;
  color: #aaa;
}

.billing {
  color: #888;
  font-size: 13px;
  margin-bottom: 10px;
}

.highlight {
  margin-top: 10px;
}

.warning {
  color: #c9a24d;
  font-weight: bold;
  margin-top: 10px;
}

.terms {
  font-size: 13px;
  color: #888;
}

/* BOTÓN */
.btn-gold {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 28px;
  background: #c9a24d;
  color: #000;
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.btn-gold:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

/* BADGE */
.badge {
  display: inline-block;
  background: #c9a24d;
  color: #000;
  padding: 3px 10px;
  border-radius: 10px;
  font-size: 12px;
  margin-bottom: 8px;
}

/* VIP PRO */
.service-box.pro {
  border: 2px solid #c9a24d;
}

/* VIP ELITE BASE */
.service-box.elite {
  border: 2px solid gold;
  box-shadow: 0 0 15px rgba(201, 162, 77, 0.5);
  position: relative;
  overflow: hidden;
}

/* EFECTO GLOW ANIMADO */
.service-box.elite::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.15),
    transparent
  );
  transform: rotate(25deg);
  animation: shine 4s infinite;
}

/* ANIMACIÓN */
@keyframes shine {
  0% {
    transform: translateX(-100%) rotate(25deg);
  }

  100% {
    transform: translateX(100%) rotate(25deg);
  }
}

/* HOVER PREMIUM */
.service-box.elite:hover {
  box-shadow:
    0 0 25px rgba(201, 162, 77, 0.7),
    0 0 40px rgba(201, 162, 77, 0.4);
  transform: translateY(-8px) scale(1.02);
}

/* BOTÓN ELITE */
.service-box.elite .btn-gold {
  background: linear-gradient(135deg, #c9a24d, #f5d06f);
  box-shadow: 0 0 10px rgba(201, 162, 77, 0.6);
}

.service-box.elite .btn-gold:hover {
  box-shadow: 0 0 20px rgba(201, 162, 77, 0.9);
  transform: scale(1.08);
}

/* =====================
   GALERÍA
===================== */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.gallery img {
  width: 100%;
  border-radius: 12px;
  transition: 0.3s;
}

.gallery img:hover {
  transform: scale(1.05);
}

/* =====================
   TESTIMONIOS
===================== */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.testimonial {
  background: #1a1a1a;
  padding: 25px;
  border-radius: 15px;
  font-size: 0.95rem;
}

/* =====================
   BOTÓN RESEÑA GOOGLE
===================== */
.review-btn {
  display: block;
  margin: 40px auto 0;
  padding: 15px 35px;
  background: #ffffff;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  border-radius: 30px;
  text-align: center;
  width: fit-content;
  transition: 0.3s;
}

.review-btn:hover {
  background: #c9a24d;
  color: #000;
}

/* =====================
   MAPA
===================== */
.map iframe {
  width: 100%;
  height: 350px;
  border-radius: 15px;
  border: none;
}

/* =====================
   WHATSAPP PRO (LATIDO)
===================== */
.float {
  position: fixed;
  width: 65px;
  height: 65px;
  bottom: 25px;
  right: 25px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  font-size: 32px;
  z-index: 1000;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 0 0 rgba(37, 211, 102, 0.7);
  animation: pulse 1.8s infinite;

  transition: transform 0.3s ease;
}

.float {
  text-decoration: none;
}

.float i {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}



.float:hover {
  transform: scale(1.15);
}

.my-float {
  margin: 0;
}

/* ANIMACIÓN LATIDO */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* =====================
   TEXTO SEO CENTRADO
===================== */
.seo-text {
  text-align: center;
}

.seo-text p {
  max-width: 700px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  header h1 {
    font-size: 2.2rem;
  }
}

/* =====================
   MENÚ
===================== */

/* =====================
   MENU BTN PRO RGB
===================== */
.menu-btn {
  position: fixed;
  top: 20px;
  left: 20px;
  width: 50px;
  height: 45px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  z-index: 2000;
  overflow: hidden;
}

/* BORDE RGB ANIMADO */
.menu-btn::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 12px;
  background: linear-gradient(
    45deg,
    red,
    orange,
    yellow,
    lime,
    cyan,
    blue,
    violet,
    red
  );
  background-size: 300%;
  animation: rgbBorder 4s linear infinite;
  z-index: -1;
}

/* CAPA INTERNA NEGRA */
.menu-btn::after {
  content: "";
  position: absolute;
  inset: 2px;
  background: #000;
  border-radius: 10px;
  z-index: -1;
}

/* ANIMACIÓN RGB */
@keyframes rgbBorder {
  0% { background-position: 0% }
  100% { background-position: 300% }
}

/* HOVER */
.menu-btn:hover {
  transform: scale(1.08);
}

.menu-btn span {
  width: 22px;
  height: 2px;
  background: #fff;
  display: block;
  transition: 0.3s;
}

.menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 250px;
  height: 100%;
  background: #000;
  display: flex;
  flex-direction: column;
  padding-top: 80px;
  transition: left 0.35s ease;
  z-index: 1500;
  backdrop-filter: blur(5px);
}

.menu a {
  color: #fff;
  text-decoration: none;
  padding: 15px 25px;
  font-size: 18px;
  border-bottom: 1px solid #222;
}

.menu a:hover {
  background: #c9a24d;
  color: #000;
}

.menu.active {
  left: 0;
}

/* =====================
   OVERLAY
===================== */

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  z-index: 1400;
}

.overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* =====================
   ANIMACIÓN SCROLL
===================== */

.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =====================
   FOOTER
===================== */

.footer-premium {
  background: #0a0a0a;
  color: #fff;
  text-align: center;
  padding: 50px 20px;
}

.footer-title {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 1px;
}

.footer-desc {
  color: #aaa;
  font-size: 15px;
  margin-top: 10px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* BOTÓN PREMIUM */
.btn-premium {
  display: inline-block;
  margin-top: 25px;
  padding: 14px 35px;
  background: #c9a24d;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  border-radius: 30px;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(201, 162, 77, 0.3);
}

/* HOVER GLOW */
.btn-premium:hover {
  box-shadow: 0 0 25px rgba(201, 162, 77, 0.8);
  transform: scale(1.05);
}

/* TEXTO SECUNDARIO */
.footer-sub {
  margin-top: 10px;
  font-size: 13px;
  color: #888;
}

/* REDES */
.socials {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 40px;
}

.socials a {
  color: #fff;
  font-size: 50px;
  transition: all 0.3s ease;
}

/* COLORES POR RED */
.socials a:nth-child(1):hover {
  color: #1877f2;
}

.socials a:nth-child(2):hover {
  color: #e1306c;
}

.socials a:nth-child(3):hover {
  color: #25f4ee;
}

.socials a:nth-child(4):hover {
  color: #ff0000;
}

.socials a:hover {
  transform: scale(1.2);
}

/* CONTADOR */
.followers {
  margin-top: 20px;
  font-size: 14px;
  color: #c9a24d;
  font-weight: bold;
}

/* LINKS */
.footer-links {
  margin-top: 20px;
}

.footer-links a {
  color: #c9a24d;
  text-decoration: none;
  margin: 0 10px;
  font-size: 14px;
  transition: 0.3s;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* COPY */
.footer-copy {
  margin-top: 25px;
  font-size: 12px;
  color: #666;
}

.footer-dev {
  margin-top: 10px;
  font-size: 12px;
  color: #888;
}

.footer-dev a {
  color: #c9a24d;
  text-decoration: none;
  font-weight: 500;
}

.footer-dev a:hover {
  text-decoration: underline;
}

.footer-legal {
  font-size: 11px;
  color: #555;
  margin-top: 5px;
}

/* =====================
   BLOQUE PREMIUM PAGO
===================== */

.payment-box {
  margin-top: 40px;
  padding: 25px;
  border-radius: 15px;
  background: linear-gradient(145deg, #1a1a1a, #111);
  border: 1px solid rgba(201, 162, 77, 0.2);
  box-shadow: 0 0 20px rgba(201, 162, 77, 0.15);
  text-align: center;
}

.payment-box h3 {
  color: #c9a24d;
  margin-bottom: 10px;
}

.payment-box p {
  font-size: 14px;
  opacity: 0.85;
}

.payment-icons {
  margin-top: 15px;
  font-size: 22px;
  opacity: 0.7;
}

/* =====================
   TEXTO PAGO TARJETAS
===================== */

.mini-pay {
  font-size: 13px;
  opacity: 0.7;
  margin-top: 8px;
}

/* =====================
   CTA SERVICIOS (BOTÓN PREMIUM LIMPIO)
===================== */

.services-cta {
  text-align: center;
  margin-top: 40px;
}

.btn-services {
  display: inline-block;
  padding: 15px 40px;
  background: #c9a24d;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  border-radius: 30px;
  font-size: 18px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

/* HOVER PREMIUM */
.btn-services:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(201, 162, 77, 0.6);
}

.services-note {
  font-size: 14px;
  color: #aaa;
  margin-top: 10px;
}
