@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&family=Playfair+Display:ital,wght@0,600;1,600&display=swap');

:root {
  --primary: #d4a84c; /* Gold */
  --primary-hover: #b88d35;
  --bg-dark: #0f0f0f;
  --bg-card: #1a1a1a;
  --red-accent: #8a0000;
  --text-light: #f5f5f5;
  --text-muted: #aaaaaa;
  --font-main: 'Montserrat', sans-serif;
  --font-heading: 'Playfair Display', serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-light);
  font-family: var(--font-main);
  text-align: center;
  overflow-x: hidden;
}

/* Animations class */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Header / Hero */
.hero {
  position: relative;
  background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(15,15,15,1)), url("img/fondo.jpg") center/cover no-repeat;
  padding: 15vh 20px;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.nav-links {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 10;
}
.nav-links a {
  color: var(--primary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: 0.3s;
}
.nav-links a:hover {
  text-shadow: 0 0 10px rgba(212, 168, 76, 0.5);
  color: #fff;
}

.logo {
  width: 180px;
  margin-bottom: 25px;
  filter: drop-shadow(0px 4px 6px rgba(0,0,0,0.5));
  animation: pulseLogo 3s infinite alternate;
}

@keyframes pulseLogo {
  0% { transform: scale(1); }
  100% { transform: scale(1.05); }
}

h1, h2, h3 {
  font-family: var(--font-heading);
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
  color: #fff;
}

.hero .subtitulo {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 40px;
  line-height: 1.6;
}

.botones, .hero-botones {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-call, .btn.call {
  background: var(--primary);
  color: #000;
  box-shadow: 0 4px 15px rgba(212, 168, 76, 0.3);
}

.btn-call:hover, .btn.call:hover {
  background: var(--primary-hover);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(212, 168, 76, 0.5);
}

.btn-whatsapp, .btn.whatsapp {
  background: #25D366;
  color: white;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover, .btn.whatsapp:hover {
  background: #1ebc5a;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* Sections General */
section {
  padding: 100px 20px;
}

section h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: var(--primary);
}

/* Paquetes */
.paquetes {
  background-color: var(--bg-dark);
}

.contenedor-paquetes {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1100px;
  margin: auto;
}

.card {
  width: 100%;
  max-width: 380px;
  background: linear-gradient(145deg, var(--bg-card), #111);
  padding: 40px 30px;
  border-radius: 20px;
  border: 1px solid rgba(212, 168, 76, 0.2);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.card:hover::before {
  transform: scaleX(1);
}

.card:hover {
  transform: translateY(-15px);
  border-color: var(--primary);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.card h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #fff;
}

.card p {
  color: var(--text-muted);
  margin-bottom: 12px;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.card p i {
  color: var(--primary);
  font-size: 0.9em;
}

.card .precio {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-top: auto;
  padding-top: 25px;
  font-family: var(--font-heading);
}

.popular-card, .card.popular {
  border-color: var(--primary);
  background: linear-gradient(145deg, var(--red-accent), #2a0000);
  box-shadow: 0 10px 30px rgba(138, 0, 0, 0.4);
}

.popular-card::before, .card.popular::before {
  display: none;
}

.popular {
  position: absolute;
  top: 20px;
  right: -35px;
  background: var(--primary);
  color: #000;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 5px 40px;
  transform: rotate(45deg);
  letter-spacing: 1px;
}

/* Video */
.video {
  background: #141414;
}

.video-box {
  background: #000;
  height: 400px;
  max-width: 800px;
  margin: auto;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.video-box:hover {
  border-color: var(--primary);
  box-shadow: 0 20px 50px rgba(212, 168, 76, 0.1);
}

/* Galería */
.galeria {
  background: var(--bg-dark);
}
.galeria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: auto;
}

.galeria-grid img, .galeria img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 15px;
  filter: grayscale(40%);
  transition: all 0.4s ease;
  cursor: pointer;
}

.galeria-grid img:hover, .galeria img:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(212, 168, 76, 0.2);
}

/* Testimonios */
.testimonios {
  background: #141414;
}

.reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-items: center;
  max-width: 1100px;
  margin: auto;
}

.review {
  background: var(--bg-card);
  padding: 40px 30px;
  border-radius: 15px;
  width: 100%;
  max-width: 350px;
  text-align: left;
  border: 1px solid rgba(255,255,255,0.05);
  position: relative;
  transition: 0.3s ease;
}

.review:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 168, 76, 0.3);
}

.review::after {
  content: '”';
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 4rem;
  color: rgba(212, 168, 76, 0.1);
  font-family: var(--font-heading);
}

.review .stars {
  color: var(--primary);
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.review p {
  color: var(--text-light);
  font-style: italic;
  line-height: 1.6;
}

/* CTA */
.cta {
  background: linear-gradient(rgba(15,15,15,0.9), rgba(15,15,15,0.9)), url("img/fondo2.jpg") center/cover fixed;
  padding: 120px 20px;
  border-top: 1px solid rgba(212, 168, 76, 0.2);
}

.cta p {
  font-size: 1.3rem;
  margin-bottom: 40px;
  color: var(--text-muted);
}

.btn.grande {
  font-size: 1.2rem;
  padding: 20px 50px;
  max-width: 300px;
  margin: 0 auto;
}

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  text-decoration: none;
  box-shadow: 0 5px 20px rgba(37,211,102,0.4);
  transition: 0.3s;
  z-index: 1000;
  animation: bounce 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background: #1ebc5a;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 { font-size: 2.5rem; }
  .hero .subtitulo { font-size: 1rem; }
  .contenedor-paquetes { flex-direction: column; align-items: center; max-width: 400px; }
  .review { width: 100%; max-width: 400px; }
  .botones, .hero-botones { flex-direction: column; width: 100%; max-width: 300px; margin: auto; }
  .btn { width: 100%; }
}