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

:root {
  --dark:    #000000;
  --dark2:   #0a0a0a;
  --navy:    #111111;
  --accent:  #3533cd;
  --accent2: #5553e0;
  --grad: linear-gradient(90deg, #000000, #3533cd);
  --light-bg: #f5f5f8;
  --text: #111111;
  --muted: #6b6b80;
}

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: #fff;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(53,51,205,0.3);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
  flex: 1;
}

.nav-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

.nav-links a:hover { color: white; }

.logo-img {
  height: 54px;
  width: auto;
  display: block;
  border-radius: 12px;
}

.nav-cta {
  text-decoration: none;
  background: var(--accent);
  color: white;
  padding: 0.5rem 1.4rem;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: background 0.2s;
}

.nav-cta:hover { background: var(--accent2); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #07071a 0%, #12103a 50%, #0a0a20 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 40%, rgba(53,51,205,0.35) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(53,51,205,0.15) 0%, transparent 45%);
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  max-width: 800px;
  width: 100%;
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem 2rem 5rem;
}

.hero-img-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  height: 100%;
}

.hero-img {
  max-height: 75vh;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 60px rgba(53,51,205,0.4));
}

.eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.2rem;
  display: block;
}

.hero-content h1 {
  font-family: "Belleza", sans-serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  color: white;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.h1-grad {
  color: white;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.55);
  max-width: 560px;
  line-height: 1.8;
  margin: 0 auto 2.5rem;
}

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; justify-content: center; }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.35);
  justify-content: center;
}

.stat { display: flex; flex-direction: column; gap: 0.25rem; }

.stat-num {
  font-family: "Belleza", sans-serif;
  font-size: 1.8rem;
  color: white;
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  max-width: 110px;
  line-height: 1.3;
}

.stat-divider {
  width: 1px;
  height: 42px;
  background: rgba(255,255,255,0.25);
  flex-shrink: 0;
}

.btn-primary {
  display: inline-block;
  text-decoration: none;
  background: var(--accent);
  color: white;
  padding: 0.85rem 2.2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.92rem;
  transition: background 0.2s, transform 0.2s;
}

.btn-primary:hover {
  background: var(--accent2);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-block;
  text-decoration: none;
  border: 1.5px solid rgba(53,51,205,0.5);
  color: rgba(255,255,255,0.8);
  padding: 0.85rem 2.2rem;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.92rem;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}

.btn-secondary:hover {
  border-color: var(--accent2);
  color: var(--accent2);
  transform: translateY(-2px);
}

/* ── SHARED ── */
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.section-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 0.7rem;
}

.section-label.light {
  color: white;
}

h2 {
  font-family: "Belleza", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--text);
  margin-bottom: 2.5rem;
  line-height: 1.2;
  max-width: 620px;
}

/* ── PARA QUIEN ── */
.para-quien { background: var(--light-bg); }
.para-quien h2 { margin-bottom: 2rem; }

.nichos { display: flex; flex-wrap: wrap; gap: 0.7rem; }

.nichos span {
  background: white;
  border: 1.5px solid rgba(53,51,205,0.15);
  padding: 0.5rem 1.1rem;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  transition: border-color 0.2s, color 0.2s;
}

.nichos span:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ── DIFERENCIA ── */
.diferencia { background: white; }

.cards {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.4rem;
}

.card { grid-column: span 2; }

.card:nth-child(4) { grid-column: 2 / span 2; }
.card:nth-child(5) { grid-column: 4 / span 2; }

.card {
  background: var(--light-bg);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(53,51,205,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(53,51,205,0.1);
}

.card-icon {
  font-size: 1.4rem;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 1rem;
  display: inline-block;
  width: 1.4rem;
  height: 1.4rem;
  text-align: center;
}

.card h3 {
  font-family: "Belleza", sans-serif;
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
  color: var(--text);
}

.card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── PAQUETES ── */
.paquetes { background: var(--light-bg); }
.paquetes h2 { margin-bottom: 3rem; }

.paquetes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  align-items: start;
}

.paquete {
  background: white;
  border-radius: 20px;
  padding: 2.2rem;
  border: 1.5px solid rgba(53,51,205,0.1);
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}

.paquete:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(53,51,205,0.1);
}

.paquete.featured {
  background: var(--dark);
  border-color: var(--accent);
}

.badge {
  position: absolute;
  top: -13px;
  left: 2rem;
  background: var(--accent);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.9rem;
  border-radius: 50px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.paquete-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 0.5rem;
}

.paquete.featured .paquete-label {
  color: rgba(255,255,255,0.5);
}

.paquete h3 {
  font-family: "Belleza", sans-serif;
  font-size: 1.4rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.paquete.featured h3 { color: white; }

.paquete-sub {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 1.8rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(53,51,205,0.1);
}

.paquete.featured .paquete-sub {
  color: rgba(255,255,255,0.4);
  border-bottom-color: rgba(255,255,255,0.08);
}

.paquete ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 2rem;
}

.paquete ul li {
  font-size: 0.88rem;
  color: var(--text);
  padding-left: 1.3rem;
  position: relative;
  line-height: 1.4;
}

.paquete ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.8rem;
}

.paquete.featured ul li { color: rgba(255,255,255,0.65); }

.btn-paquete {
  display: block;
  text-align: center;
  text-decoration: none;
  padding: 0.8rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  border: 1.5px solid var(--accent);
  color: var(--accent);
}

.btn-paquete:hover {
  background: var(--accent);
  color: white;
  transform: translateY(-2px);
}

.paquete.featured .btn-paquete {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

.paquete.featured .btn-paquete:hover { background: var(--accent2); }

/* ── ADDON BOX ── */
.addon-box {
  margin-top: 2.5rem;
  background: var(--dark);
  border-radius: 20px;
  padding: 2.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border: 1px solid rgba(53,51,205,0.3);
  flex-wrap: wrap;
}

.addon-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 0.4rem;
}

.addon-text h3 {
  font-family: "Belleza", sans-serif;
  font-size: 1.5rem;
  color: white;
  margin-bottom: 0.5rem;
}

.addon-text p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.5);
  max-width: 580px;
  line-height: 1.7;
}

/* ── MISION ── */
.mision { background: white; text-align: center; border-top: 1px solid rgba(53,51,205,0.07); }

blockquote {
  font-family: "Belleza", sans-serif;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: var(--text);
  line-height: 1.6;
  max-width: 820px;
  margin: 0 auto 1.5rem;
}

.mision-firma {
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.1em;
}

/* ── CITY BANNER ── */
.city-banner {
  width: 100%;
  height: 65vh;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.city-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(7,7,26,0.35) 0%, rgba(7,7,26,0.15) 50%, rgba(7,7,26,0.5) 100%);
  z-index: 1;
  pointer-events: none;
}

.city-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  display: block;
}

.city-banner-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  z-index: 2;
  padding: 8rem 2rem 4rem;
  text-align: center;
}

.city-banner-text h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  text-shadow: none;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 1.2rem 2.5rem;
  color: white;
}

.city-banner-text .eyebrow {
  text-shadow: 0 1px 10px rgba(0,0,0,0.9);
  font-size: 1rem;
}

/* ── VISIBILIDAD ── */
.visibilidad {
  background: var(--light-bg);
  border-bottom: 1px solid rgba(53,51,205,0.07);
}

.visibilidad-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.visibilidad-grid h2 { color: var(--text); margin-bottom: 1rem; }

.visibilidad-texto {
  color: var(--muted);
  line-height: 1.8;
  font-size: 0.97rem;
  margin-bottom: 1rem;
}

.visibilidad-img-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(53,51,205,0.12);
}

.visibilidad-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

/* ── SOBRE NOSOTROS ── */
.sobre { background: white; }

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.sobre-grid p {
  color: #555;
  line-height: 1.8;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.sobre-fotos {
  display: grid;
  grid-template-rows: auto auto;
  gap: 0.8rem;
}

.sobre-foto-main {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: top;
  border-radius: 16px;
  display: block;
}

.sobre-fotos-sub {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.sobre-foto-sub {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: top;
  border-radius: 12px;
  display: block;
}

/* ── CONTACTO INFO ── */
.contacto-info {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  color: rgba(255,255,255,0.6);
  font-size: 0.92rem;
  transition: color 0.2s;
}

.info-item:hover { color: var(--accent2); }

.info-icon {
  font-size: 1rem;
  color: var(--accent);
  width: 20px;
  text-align: center;
}

/* ── CONTACTO ── */
.contacto {
  background-color: var(--dark2);
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 28px,
    rgba(53,51,205,0.12) 28px,
    rgba(53,51,205,0.12) 30px
  );
}
.contacto h2 { color: white; }

.contacto-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}

.contacto-texto p {
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
  margin-top: 0.8rem;
  font-size: 0.95rem;
}

.contacto-form { display: flex; flex-direction: column; gap: 1.1rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }

label {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

input, textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(10,10,20,0.85);
  border: 1.5px solid rgba(53,51,205,0.7);
  border-radius: 10px;
  font-size: 0.92rem;
  font-family: inherit;
  color: white;
  transition: border-color 0.2s;
}

input::placeholder, textarea::placeholder { color: rgba(255,255,255,0.18); }

input:focus, textarea:focus {
  outline: none;
  border-color: var(--accent2);
}

textarea { resize: vertical; }

button[type="submit"] {
  align-self: flex-start;
  padding: 0.9rem 2.4rem;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 0.92rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

button[type="submit"]:hover {
  background: var(--accent2);
  transform: translateY(-2px);
}

/* ── FOOTER ── */
footer {
  background: var(--dark);
  text-align: center;
  padding: 1.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  border-top: 1px solid rgba(53,51,205,0.2);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.footer-loc {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ── WHATSAPP FLOTANTE ── */
.wa-float {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 999;
  background: #25d366;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
}

/* ── ANIMACIONES ── */

/* Nav scroll effect */
nav.scrolled {
  background: rgba(0, 0, 0, 0.55);
  box-shadow: 0 2px 30px rgba(53,51,205,0.2);
}

/* Orbes animados en hero */
.hero::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(53,51,205,0.18) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  animation: float 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

@keyframes float2 {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(20px) scale(0.95); }
}

/* Segundo orbe usando hero-stats como referencia */
.hero-stats::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(53,51,205,0.12) 0%, transparent 70%);
  bottom: -50px;
  left: -80px;
  animation: float2 10s ease-in-out infinite;
  pointer-events: none;
}

/* Scroll reveal - estado inicial */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-title {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal-title.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Card hover glow mejorado */
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(53,51,205,0.18), 0 0 0 1px rgba(53,51,205,0.15);
  border-color: rgba(53,51,205,0.25);
}

/* Paquete hover glow */
.paquete:hover {
  box-shadow: 0 24px 60px rgba(53,51,205,0.15), 0 0 0 1px rgba(53,51,205,0.2);
}

.paquete.featured:hover {
  box-shadow: 0 24px 60px rgba(53,51,205,0.4), 0 0 40px rgba(53,51,205,0.2);
}

/* Botones con shimmer en hover */
.btn-primary {
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.4s ease;
}

.btn-primary:hover::after {
  left: 140%;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 8rem 2rem 4rem;
    text-align: center;
  }
  .hero-content { text-align: center; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-img-wrap { display: none; }
  .visibilidad-grid { grid-template-columns: 1fr; }
  .sobre-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  .contacto-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .paquetes-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  /* Nav */
  .nav-links { gap: 1rem; }
  .nav-links a { font-size: 0.75rem; }
  .nav-cta { display: none; }
  .logo-img { height: 38px; }

  /* Hero city banner */
  .city-banner { height: 55vh; width: 100vw; margin-left: 0; }
  .city-banner-img { width: 100%; object-fit: cover; }
  .city-banner-text h1 {
    font-size: clamp(1.3rem, 6vw, 2rem);
    padding: 0.6rem 1rem;
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.08);
    width: 90%;
  }
  .city-banner-text .eyebrow { font-size: 0.7rem; letter-spacing: 0.12em; }

  /* Stats */
  .hero-stats { flex-direction: column; gap: 1.5rem; align-items: center; }
  .stat-divider { width: 60px; height: 1px; }
  .stat { align-items: center; text-align: center; }

  /* Service cards — 1 columna */
  .cards { grid-template-columns: 1fr; }
  .card { grid-column: span 1 !important; }

  /* Visibilidad imagen */
  .visibilidad-img { max-height: 220px; object-fit: cover; }

  /* Ocultar orbes animados */
  .hero::after { content: none; }
  .hero-stats::before { content: none; }
  .hero { overflow: hidden; }
}
