/* ===========================================
   MARÍA DEL MAR — ESOTERIC WEBSITE
   styles.css — Professional & Responsive
   =========================================== */

/* --- VARIABLES & RESET --- */
:root {
  --deep-night: #09051a;
  --midnight: #1a0a2e;
  --purple-dark: #2d1b4e;
  --purple-mid: #4a2c7a;
  --gold: #c9a84c;
  --gold-light: #e8c96a;
  --gold-pale: #f5e6b0;
  --gold-dark: #8b6914;
  --crimson: #8b1a1a;
  --rose: #c25c7a;
  --white: #ffffff;
  --off-white: #f0e8d8;
  --silver: #c0b8d0;
  --text-body: #d4c9e8;
  --text-muted: #9a8fb8;
  --border-subtle: rgba(201, 168, 76, 0.15);
  --border-gold: rgba(201, 168, 76, 0.4);
  --card-bg: rgba(26, 10, 46, 0.7);
  --card-bg-hover: rgba(45, 27, 78, 0.85);
  --shadow-gold: 0 0 30px rgba(201, 168, 76, 0.2);
  --shadow-deep: 0 20px 60px rgba(0, 0, 0, 0.5);
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Cinzel Decorative', serif;
  --font-serif: 'Cormorant Garamond', serif;
  --font-body: 'Raleway', sans-serif;
  --navbar-h: 70px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--deep-night);
  color: var(--text-body);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* --- SCROLLBAR --- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--deep-night); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ===========================================
   PARTÍCULAS DE FONDO
   =========================================== */
#particles-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  animation: floatParticle linear infinite;
}

@keyframes floatParticle {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.4; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

.mystic-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 30%, rgba(74, 44, 122, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 80% 70%, rgba(138, 26, 26, 0.08) 0%, transparent 70%);
}

/* ===========================================
   CONTENEDOR
   =========================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

/* ===========================================
   BOTONES
   =========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn:hover::before { opacity: 1; }

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold-dark) 100%);
  color: var(--deep-night);
  border-color: var(--gold-light);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.35);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.55);
}

.btn-outline {
  background: transparent;
  color: var(--gold-pale);
  border-color: var(--border-gold);
}
.btn-outline:hover {
  background: rgba(201, 168, 76, 0.1);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.btn-full { width: 100%; justify-content: center; }
.btn-sm { padding: 10px 20px; font-size: 0.78rem; }

/* ===========================================
   TIPOGRAFÍA GLOBAL
   =========================================== */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-eyebrow.light { color: var(--gold-light); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--off-white);
  line-height: 1.2;
  margin-bottom: 20px;
}
.section-title em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 400;
}
.section-title.light { color: var(--white); }

.section-sub {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 600px;
}
.section-sub.light { color: rgba(255,255,255,0.75); }

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header .section-sub { margin: 0 auto; }

.gold-text {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===========================================
   NAVBAR
   =========================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--navbar-h);
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(9, 5, 26, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  flex-shrink: 0;
}
.logo-star {
  color: var(--gold);
  font-size: 0.7rem;
  animation: twinkle 2s ease-in-out infinite alternate;
}
@keyframes twinkle {
  from { opacity: 0.4; transform: scale(0.8); }
  to   { opacity: 1;   transform: scale(1.2); }
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--silver);
  padding: 8px 14px;
  border-radius: 3px;
  transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%; height: 1px;
  background: var(--gold);
  transition: transform 0.3s;
}
.nav-link:hover { color: var(--gold-light); }
.nav-link:hover::after { transform: translateX(-50%) scaleX(1); }

.nav-link.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--deep-night) !important;
  font-weight: 700;
  border-radius: 3px;
}
.nav-link.nav-cta::after { display: none; }
.nav-link.nav-cta:hover {
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.5);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--gold-light);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===========================================
   HERO SLIDER
   =========================================== */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
}

.slider-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transform: scale(1.03);
  pointer-events: none;
}
.slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
.slide.prev {
  opacity: 0;
  transform: scale(0.97);
}

/* Fondos de slides */
.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 8s ease-in-out;
}
.slide.active .slide-bg { transform: scale(1.08); }

.slide-bg-1 {
  background-image:
    linear-gradient(135deg, rgba(9,5,26,0.75) 0%, rgba(26,10,46,0.6) 50%, rgba(9,5,26,0.8) 100%),
    radial-gradient(ellipse at 70% 40%, rgba(140, 26, 80, 0.4) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(74,44,122,0.5) 0%, transparent 60%);
  background-color: #1a0a2e;
}
.slide-bg-2 {
  background-image:
    linear-gradient(135deg, rgba(9,5,26,0.8) 0%, rgba(45,27,78,0.6) 50%, rgba(9,5,26,0.8) 100%),
    radial-gradient(ellipse at 30% 60%, rgba(201,168,76,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(74,44,122,0.5) 0%, transparent 60%);
  background-color: #150b2e;
}
.slide-bg-3 {
  background-image:
    linear-gradient(135deg, rgba(9,5,26,0.8) 0%, rgba(26,10,46,0.65) 50%, rgba(9,5,26,0.85) 100%),
    radial-gradient(ellipse at 60% 70%, rgba(139,26,26,0.3) 0%, transparent 60%),
    radial-gradient(ellipse at 10% 30%, rgba(74,44,122,0.4) 0%, transparent 60%);
  background-color: #110828;
}

/* Contenido del slide */
.slide-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 20px;
  max-width: 860px;
}

.slide-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border-gold);
  padding: 7px 20px;
  border-radius: 40px;
  margin-bottom: 24px;
  background: rgba(201,168,76,0.06);
  backdrop-filter: blur(4px);
  animation: fadeInDown 0.9s ease 0.3s both;
}

.slide-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 900;
  color: var(--off-white);
  line-height: 1.15;
  margin-bottom: 22px;
  animation: fadeInUp 0.9s ease 0.5s both;
}

.slide-sub {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  color: var(--silver);
  margin-bottom: 36px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 0.9s ease 0.7s both;
}

.slide-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.9s ease 0.9s both;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Símbolos flotantes en slides */
.slide-symbols {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.sym {
  position: absolute;
  font-size: 2rem;
  color: rgba(201,168,76,0.12);
  animation: floatSym 6s ease-in-out infinite;
}
.sym1 { top: 15%; left: 8%;  font-size: 3rem; animation-delay: 0s; }
.sym2 { top: 20%; right: 10%; animation-delay: 1.5s; }
.sym3 { bottom: 25%; left: 12%; animation-delay: 0.8s; }
.sym4 { bottom: 30%; right: 8%; font-size: 2.5rem; animation-delay: 2.2s; }
@keyframes floatSym {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-20px) rotate(10deg); }
}

/* Controles del slider */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(201,168,76,0.12);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  backdrop-filter: blur(8px);
  line-height: 1;
}
.slider-btn:hover {
  background: rgba(201,168,76,0.25);
  box-shadow: var(--shadow-gold);
  transform: translateY(-50%) scale(1.1);
}
.slider-prev { left: 20px; }
.slider-next { right: 20px; }

/* Dots */
.slider-dots {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(201,168,76,0.3);
  border: 1px solid var(--border-gold);
  transition: var(--transition);
  cursor: pointer;
}
.dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(201,168,76,0.6);
}

/* Scroll down */
.scroll-down {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.scroll-icon {
  display: block;
  width: 22px;
  height: 36px;
  border: 2px solid var(--border-gold);
  border-radius: 12px;
  position: relative;
}
.scroll-icon::after {
  content: '';
  position: absolute;
  top: 5px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollBounce 1.8s ease infinite;
}
@keyframes scrollBounce {
  0%,100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  70%      { transform: translateX(-50%) translateY(12px); opacity: 0; }
}

/* ===========================================
   STATS BAR
   =========================================== */
.stats-bar {
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, rgba(45,27,78,0.95), rgba(26,10,46,0.95));
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  padding: 40px 0;
  backdrop-filter: blur(10px);
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 20px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  flex: 1;
  min-width: 120px;
}
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.stat-unit {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
}
.stat-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 6px;
}
.stat-divider {
  width: 1px;
  height: 50px;
  background: var(--border-gold);
}

/* ===========================================
   URGENCY STRIP
   =========================================== */
.urgency-strip {
  position: relative;
  z-index: 1;
  background: linear-gradient(90deg, var(--gold-dark) 0%, var(--gold) 30%, var(--gold-light) 50%, var(--gold) 70%, var(--gold-dark) 100%);
  overflow: hidden;
  padding: 12px 0;
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
  color: var(--deep-night);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===========================================
   SOBRE MÍ
   =========================================== */
.about-section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 70px;
  align-items: center;
}

/* Imagen */
.about-image-wrap {
  position: relative;
}
.about-frame {
  position: relative;
  aspect-ratio: 3/4;
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  overflow: hidden;
  background: var(--card-bg);
}
.about-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, rgba(45,27,78,0.8), rgba(26,10,46,0.9));
}
.about-symbol {
  font-size: 2.5rem;
  color: var(--gold);
  letter-spacing: 8px;
}
.about-img-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
}

.about-frame-deco {
  position: absolute;
  width: 20px; height: 20px;
  border-color: var(--gold);
  border-style: solid;
}
.about-frame-deco.top-left    { top: 8px; left: 8px;  border-width: 2px 0 0 2px; }
.about-frame-deco.top-right   { top: 8px; right: 8px; border-width: 2px 2px 0 0; }
.about-frame-deco.bottom-left { bottom: 8px; left: 8px;  border-width: 0 0 2px 2px; }
.about-frame-deco.bottom-right{ bottom: 8px; right: 8px; border-width: 0 2px 2px 0; }

.about-badge-seal {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px;
  box-shadow: 0 8px 30px rgba(201,168,76,0.4);
  border: 3px solid var(--gold-pale);
}
.about-badge-seal span {
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--deep-night);
}
.about-badge-seal strong {
  font-family: var(--font-display);
  font-size: 0.68rem;
  color: var(--deep-night);
  line-height: 1.2;
  font-weight: 900;
}

/* Contenido about */
.about-content p {
  font-family: var(--font-serif);
  font-size: 1.08rem;
  color: var(--text-body);
  margin-bottom: 18px;
}
.about-lead {
  font-size: 1.2rem !important;
  color: var(--off-white) !important;
  font-weight: 500;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 30px 0;
}
.feat-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  padding: 14px;
  transition: var(--transition);
}
.feat-item:hover {
  background: var(--card-bg-hover);
  border-color: var(--border-gold);
  transform: translateY(-2px);
}
.feat-icon { font-size: 1.5rem; flex-shrink: 0; }
.feat-item strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--off-white);
  margin-bottom: 2px;
  font-family: var(--font-body);
}
.feat-item p {
  font-size: 0.82rem !important;
  color: var(--text-muted) !important;
  margin: 0 !important;
}

/* ===========================================
   SERVICIOS
   =========================================== */
.services-section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.services-bg-deco {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(45,27,78,0.4) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 36px 28px;
  transition: var(--transition);
  overflow: hidden;
  backdrop-filter: blur(10px);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover {
  background: var(--card-bg-hover);
  border-color: var(--border-gold);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold), var(--shadow-deep);
}
.service-card:hover::before { opacity: 1; }
.service-card:hover .service-glow {
  opacity: 1;
}

.service-glow {
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}

.service-icon {
  font-size: 2.6rem;
  margin-bottom: 18px;
  display: block;
  filter: drop-shadow(0 0 8px rgba(201,168,76,0.3));
}
.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--off-white);
  margin-bottom: 14px;
  font-style: italic;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 18px;
}

.service-list { margin-bottom: 24px; }
.service-list li {
  font-size: 0.82rem;
  color: var(--silver);
  padding: 5px 0;
  border-bottom: 1px solid var(--border-subtle);
}
.service-list li:last-child { border: none; }

.service-link {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.service-link:hover { color: var(--gold-light); gap: 8px; }

.service-card.featured {
  border-color: var(--border-gold);
  background: rgba(45,27,78,0.85);
}
.service-card.featured::before { opacity: 1; }

.service-badge-tag {
  position: absolute;
  top: 16px; right: 16px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--deep-night);
  padding: 4px 10px;
  border-radius: 20px;
}

/* ===========================================
   VIDEO SECTION
   =========================================== */
.video-section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, var(--deep-night) 0%, rgba(26,10,46,0.98) 50%, var(--deep-night) 100%);
}

.video-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 50%, rgba(74,44,122,0.2) 0%, transparent 70%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.video-wrapper {
  max-width: 860px;
  margin: 0 auto 40px;
}

.video-frame {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: 0 20px 80px rgba(0,0,0,0.6), 0 0 40px rgba(201,168,76,0.15);
}
.video-frame iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 2;
}

/* Placeholder del video */
.video-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45,27,78,0.95), rgba(26,10,46,0.95));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  z-index: 1;
  text-align: center;
  padding: 20px;
}
/* Oculta placeholder cuando hay video real */
.video-frame iframe[src*="TU_VIDEO_ID_AQUI"] ~ .video-placeholder { display: flex; }
.video-frame iframe:not([src*="TU_VIDEO_ID_AQUI"]) ~ .video-placeholder { display: none; }

.vp-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--deep-night);
  font-weight: 700;
  padding-left: 6px;
  box-shadow: 0 8px 30px rgba(201,168,76,0.4);
}
.video-placeholder p {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--off-white);
}
.video-placeholder small {
  font-size: 0.8rem;
  color: var(--text-muted);
  max-width: 340px;
  line-height: 1.5;
}

.video-cta {
  text-align: center;
}
.video-cta p {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--silver);
  margin-bottom: 20px;
  font-style: italic;
}

/* ===========================================
   PROCESO
   =========================================== */
.process-section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, var(--deep-night) 0%, rgba(26,10,46,0.5) 50%, var(--deep-night) 100%);
}

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.process-step {
  flex: 1;
  text-align: center;
  padding: 0 20px;
  position: relative;
}
.step-number {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--gold-dark);
  margin-bottom: 16px;
  display: block;
}
.step-icon {
  font-size: 2.5rem;
  margin-bottom: 14px;
  display: block;
  filter: drop-shadow(0 0 10px rgba(201,168,76,0.3));
}
.process-step h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--off-white);
  margin-bottom: 12px;
  font-style: italic;
}
.process-step p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.process-connector {
  width: 80px;
  flex-shrink: 0;
  margin-top: 80px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
  position: relative;
}
.process-connector::after {
  content: '✦';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.6rem;
  color: var(--gold);
  background: var(--deep-night);
  padding: 0 4px;
}

/* ===========================================
   TESTIMONIOS
   =========================================== */
.testimonials-section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.testi-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45,27,78,0.4), rgba(9,5,26,0.6));
  pointer-events: none;
}

.testi-slider-wrap { position: relative; }

.testi-track {
  display: flex;
  gap: 28px;
  overflow: hidden;
  padding-bottom: 10px;
}

.testi-card {
  min-width: calc(33.333% - 19px);
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 32px;
  transition: var(--transition);
  backdrop-filter: blur(10px);
  flex-shrink: 0;
}
.testi-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.testi-stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.testi-text {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--off-white);
  line-height: 1.7;
  margin-bottom: 24px;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--deep-night);
  flex-shrink: 0;
}
.testi-author strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--off-white);
  font-family: var(--font-body);
}
.testi-author span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}
.testi-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--card-bg);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.testi-btn:hover {
  background: rgba(201,168,76,0.15);
  box-shadow: var(--shadow-gold);
}
.testi-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

/* ===========================================
   TRUST SECTION
   =========================================== */
.trust-section {
  padding: 80px 0;
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, rgba(45,27,78,0.3), rgba(9,5,26,0.5));
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.trust-item {
  text-align: center;
  padding: 28px 20px;
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  background: var(--card-bg);
  transition: var(--transition);
}
.trust-item:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.trust-icon {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 14px;
  filter: drop-shadow(0 0 8px rgba(201,168,76,0.3));
}
.trust-item h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 10px;
  font-style: italic;
}
.trust-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===========================================
   CONTACTO
   =========================================== */
.contact-section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.contact-bg-deco {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(74,44,122,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Formulario */
.contact-form-wrap {
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 44px 40px;
  backdrop-filter: blur(10px);
}

.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(9,5,26,0.6);
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--off-white);
  transition: var(--transition);
  -webkit-appearance: none;
  appearance: none;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(45,27,78,0.5);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}
.form-group select option {
  background: var(--midnight);
  color: var(--off-white);
}
.form-group textarea { resize: vertical; min-height: 130px; }

.form-error {
  display: block;
  font-size: 0.76rem;
  color: #e07070;
  margin-top: 5px;
  min-height: 16px;
}

.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  padding: 16px 20px;
}
.form-success span { font-size: 1.5rem; color: var(--gold); }
.form-success p { font-size: 0.9rem; color: var(--off-white); line-height: 1.5; }
.form-success.show { display: flex; }

#submitBtn { margin-top: 10px; position: relative; }
#submitBtn.loading .btn-text::after {
  content: '...';
  animation: dots 1s steps(3) infinite;
}
@keyframes dots {
  0%   { content: '.'; }
  33%  { content: '..'; }
  66%  { content: '...'; }
}

/* Info de contacto */
.contact-info-card {
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 40px 32px;
  backdrop-filter: blur(10px);
}
.contact-info-card h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--off-white);
  font-style: italic;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-subtle);
}
.contact-links { display: flex; flex-direction: column; gap: 16px; margin-bottom: 30px; }
.contact-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  border-radius: 8px;
  border: 1px solid var(--border-subtle);
  background: rgba(9,5,26,0.4);
  transition: var(--transition);
}
.contact-link:hover {
  border-color: var(--border-gold);
  transform: translateX(4px);
  background: rgba(45,27,78,0.5);
}
.contact-link i {
  font-size: 1.4rem;
  width: 28px;
  text-align: center;
  flex-shrink: 0;
}
.contact-link.whatsapp i { color: #25D366; }
.contact-link.phone    i { color: var(--gold-light); }
.contact-link.email    i { color: #64b5f6; }
.contact-link.facebook i { color: #1877F2; }
.contact-link strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--off-white);
  font-family: var(--font-body);
}
.contact-link span { font-size: 0.88rem; color: var(--text-muted); }

.contact-hours {
  background: rgba(9,5,26,0.4);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 18px;
  margin-bottom: 24px;
}
.contact-hours h4 {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 10px;
  font-family: var(--font-body);
}
.contact-hours p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

.contact-promise {
  text-align: center;
  padding: 20px;
  background: rgba(201,168,76,0.05);
  border: 1px solid var(--border-gold);
  border-radius: 8px;
}
.promise-icon { font-size: 2rem; display: block; margin-bottom: 10px; }
.contact-promise em {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--off-white);
  line-height: 1.6;
  display: block;
  margin-bottom: 8px;
}
.contact-promise strong { font-size: 0.85rem; color: var(--gold); }

/* ===========================================
   WHATSAPP FLOTANTE
   =========================================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.8rem;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  transition: var(--transition);
  animation: waPulse 2.5s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 35px rgba(37,211,102,0.6);
}
.wa-tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(9,5,26,0.95);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid var(--border-gold);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; }
@keyframes waPulse {
  0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,0.4); }
  50%      { box-shadow: 0 6px 40px rgba(37,211,102,0.7), 0 0 0 12px rgba(37,211,102,0.08); }
}

/* ===========================================
   FOOTER
   =========================================== */
.footer {
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, rgba(26,10,46,0.98) 0%, #060312 100%);
  border-top: 1px solid var(--border-gold);
  padding-top: 60px;
}

.footer-stars {
  text-align: center;
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 20px;
  margin-bottom: 50px;
  animation: twinkle 3s ease-in-out infinite alternate;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border-subtle);
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold-light);
  margin-bottom: 18px;
  letter-spacing: 2px;
}
.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gold);
  transition: var(--transition);
}
.footer-social a:hover {
  background: rgba(201,168,76,0.15);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.footer-links h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
  font-family: var(--font-body);
}
.footer-links ul li { margin-bottom: 10px; }
.footer-links ul li a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color 0.3s;
}
.footer-links ul li a:hover { color: var(--gold); }

.footer-contact h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
  font-family: var(--font-body);
}
.footer-contact p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-contact p i { color: var(--gold); font-size: 0.9rem; }
.footer-contact .btn { margin-top: 18px; }

.footer-bottom {
  padding: 24px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.footer-disclaimer {
  font-size: 0.72rem !important;
  color: rgba(154,143,184,0.5) !important;
  font-style: italic;
}

/* ===========================================
   ANIMACIONES DE REVEAL
   =========================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================================
   RESPONSIVE — TABLET (≤ 1024px)
   =========================================== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid    { grid-template-columns: repeat(2, 1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 36px; }
  .about-grid    { grid-template-columns: 1fr 1fr; gap: 44px; }

  .process-steps { flex-wrap: wrap; }
  .process-step  { min-width: calc(50% - 16px); }
  .process-connector { display: none; }
}

/* ===========================================
   RESPONSIVE — MOBILE (≤ 768px)
   =========================================== */
@media (max-width: 768px) {
  :root { --navbar-h: 62px; }

  /* Navbar móvil */
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    top: var(--navbar-h);
    left: 0; right: 0;
    background: rgba(9,5,26,0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 30px 20px;
    gap: 4px;
    border-bottom: 1px solid var(--border-gold);
    transform: translateY(-120%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
  }
  .nav-menu.open {
    transform: translateY(0);
    pointer-events: auto;
  }
  .nav-link { font-size: 0.9rem; padding: 12px 16px; }
  .nav-link.nav-cta { text-align: center; margin-top: 10px; }

  /* Hero */
  .slide-actions { flex-direction: column; align-items: center; gap: 12px; }
  .slider-btn { width: 40px; height: 40px; font-size: 1.4rem; }
  .slider-prev { left: 10px; }
  .slider-next { right: 10px; }
  .sym { display: none; }

  /* Grids */
  .about-grid    { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: 1fr; }
  .contact-grid  { grid-template-columns: 1fr; gap: 32px; }
  .trust-grid    { grid-template-columns: 1fr; }
  .about-features{ grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr; gap: 32px; }

  /* Stats */
  .stats-grid { flex-direction: column; gap: 24px; }
  .stat-divider { width: 60px; height: 1px; }

  /* Testimonios */
  .testi-track { flex-direction: column; }
  .testi-card { min-width: 100%; }

  /* Proceso */
  .process-steps { flex-direction: column; gap: 32px; }

  /* About badge */
  .about-badge-seal { bottom: -10px; right: -10px; width: 80px; height: 80px; }

  /* Formulario */
  .contact-form-wrap { padding: 28px 20px; }
  .contact-info-card  { padding: 28px 20px; }

  /* Secciones */
  .about-section,
  .services-section,
  .video-section,
  .process-section,
  .testimonials-section,
  .trust-section,
  .contact-section { padding: 70px 0; }

  .section-header { margin-bottom: 40px; }

  /* WA float */
  .whatsapp-float { bottom: 18px; right: 18px; width: 54px; height: 54px; }
  .wa-tooltip { display: none; }

  /* Slider dots position */
  .slider-dots { bottom: 70px; }
}

/* ===========================================
   RESPONSIVE — SMALL MOBILE (≤ 480px)
   =========================================== */
@media (max-width: 480px) {
  .slide-title { font-size: 1.9rem; }
  .nav-logo .logo-text { font-size: 0.8rem; }

  .slide-badge {
    font-size: 0.62rem;
    padding: 6px 14px;
  }
  .btn { padding: 13px 24px; font-size: 0.82rem; }

  .stats-bar { padding: 28px 0; }
  .stat-number { font-size: 2rem; }

  .service-card { padding: 28px 20px; }
  .contact-form-wrap { padding: 22px 16px; }
}
