/* ==========================================================================
   ESTILOS PRINCIPALES - BRUJO MAYOR DE CATEMACO (ESOTÉRICO 2)
   Adaptado a la paleta de colores de principal.jpg y fondo .jpg
   ========================================================================== */

:root {
  /* Tonos Místicos y Oro Amatista derivados de principal.jpg */
  --gold-primary: #d4af37;
  --gold-light: #f5e08c;
  --gold-dark: #9e7f1e;
  
  --plum-primary: #af9099;
  --plum-light: #e8b4b8;
  --plum-dark: #5e3f53;
  --plum-glow: rgba(196, 91, 126, 0.45);
  
  --crimson-accent: #c45b7e;
  --emerald: #10b981;
  --whatsapp-green: #25d366;
  --whatsapp-green-hover: #1ebd56;

  --bg-dark: #0c0812;
  --bg-card: rgba(24, 15, 32, 0.78);
  --bg-card-hover: rgba(38, 24, 50, 0.92);
  --bg-elevated: #160e22;

  --text-main: #f5edef;
  --text-muted: #b5a4b7;
  --text-gold: #f5e08c;
  --text-plum: #e8b4b8;

  --border-gold: rgba(212, 175, 55, 0.25);
  --border-plum: rgba(175, 144, 153, 0.35);
  --border-glow: rgba(196, 91, 126, 0.5);
  --glass-blur: blur(14px);

  --font-heading: 'Cinzel', serif;
  --font-body: 'Lato', sans-serif;
  --transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Fondo Místico con Imagen de Altar esoterico2 (fondo .jpg) */
.mystic-bg-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('fotos/fondo .jpg');
  background-size: cover;
  background-position: center top;
  opacity: 0.22;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 0;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--plum-dark);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-primary);
}

/* Background Particle Canvas */
#particle-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
}

/* Container */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(12, 8, 18, 0.88);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--border-plum);
  padding: 0.8rem 0;
  transition: var(--transition-smooth);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-icon {
  font-size: 1.6rem;
  filter: drop-shadow(0 0 8px var(--plum-glow));
}

.brand-logo-img {
  height: 48px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.4)) drop-shadow(0 0 12px rgba(255, 100, 30, 0.3));
  transition: var(--transition-smooth);
}

.brand-logo-img:hover {
  transform: scale(1.06);
  filter: drop-shadow(0 0 16px rgba(212, 175, 55, 0.7)) drop-shadow(0 0 20px rgba(255, 100, 30, 0.5));
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: linear-gradient(135deg, var(--gold-light), var(--plum-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-subtitle {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: var(--transition-smooth);
}

.nav-link:hover {
  color: var(--gold-primary);
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

.btn-nav-whatsapp {
  background: linear-gradient(135deg, var(--whatsapp-green), #1b9e4b);
  color: #ffffff;
  padding: 0.55rem 1.3rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
  transition: var(--transition-smooth);
}

.btn-nav-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--gold-primary);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  padding: 8rem 0 5rem;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: radial-gradient(circle at 50% 20%, rgba(175, 144, 153, 0.18) 0%, transparent 60%),
              radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
}

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

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(175, 144, 153, 0.12);
  border: 1px solid var(--border-plum);
  padding: 0.4rem 1.1rem;
  border-radius: 50px;
  width: fit-content;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--whatsapp-green);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--whatsapp-green);
  animation: pulse-dot 1.8s infinite;
}

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

.badge-text {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--plum-light);
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.15;
  color: #ffffff;
}

.hero-title span {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--plum-light) 50%, var(--gold-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
}

.btn-hero-primary {
  position: relative;
  background: linear-gradient(135deg, var(--whatsapp-green), #1b9e4b);
  color: #ffffff;
  padding: 0.95rem 2.2rem;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1.02rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45);
  transition: var(--transition-smooth);
  animation: aura-zoom-pulse 3.5s ease-in-out infinite;
  z-index: 1;
}

.btn-hero-primary::before, .contact-btn-large::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50px;
  background: rgba(37, 211, 102, 0.45);
  z-index: -1;
  animation: aura-expand-pulse 2.4s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

@keyframes aura-zoom-pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45), 0 0 15px rgba(37, 211, 102, 0.3);
  }
  50% {
    transform: scale(1.04);
    box-shadow: 0 14px 40px rgba(37, 211, 102, 0.75), 0 0 30px rgba(37, 211, 102, 0.6);
  }
}

@keyframes aura-expand-pulse {
  0% {
    transform: scale(0.96);
    opacity: 0.85;
  }
  70% {
    transform: scale(1.18);
    opacity: 0;
  }
  100% {
    transform: scale(1.18);
    opacity: 0;
  }
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

.btn-hero-secondary {
  background: rgba(175, 144, 153, 0.12);
  color: var(--gold-light);
  border: 1px solid var(--border-gold);
  padding: 0.9rem 1.8rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-smooth);
}

.btn-hero-secondary:hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: var(--gold-primary);
  color: #ffffff;
  transform: translateY(-2px);
}

/* Instagram Card Component */
.ig-card-wrapper {
  position: relative;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
}

.ig-card {
  background: var(--bg-card);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-plum);
  border-radius: 24px;
  padding: 1.8rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px var(--plum-glow);
  transition: var(--transition-smooth);
}

.ig-card:hover {
  border-color: var(--border-glow);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), 0 0 40px var(--plum-glow);
}

.ig-header {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}

.ig-avatar-wrap {
  position: relative;
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.ig-avatar-ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--gold-primary), var(--crimson-accent), var(--plum-light));
  animation: spin-ring 6s linear infinite;
}

@keyframes spin-ring {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.ig-avatar {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--bg-dark);
  z-index: 1;
}

.ig-meta {
  display: flex;
  flex-direction: column;
}

.ig-handle-row {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.ig-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
}

.ig-verified {
  background: #3897f0;
  color: #fff;
  font-size: 0.65rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ig-handle-link {
  font-size: 0.85rem;
  color: var(--gold-primary);
  text-decoration: none;
  font-weight: 600;
}

.ig-category {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

.ig-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
  padding: 0.9rem 0;
  border-top: 1px solid var(--border-plum);
  border-bottom: 1px solid var(--border-plum);
  margin-bottom: 1.2rem;
}

.ig-stat-val {
  display: block;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--plum-light);
}

.ig-stat-lbl {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.ig-bio-text {
  font-size: 0.85rem;
  color: var(--text-main);
  line-height: 1.5;
  margin-bottom: 1.2rem;
}

.ig-btn-row {
  display: flex;
  gap: 0.8rem;
}

.ig-btn-follow {
  flex: 1;
  background: linear-gradient(135deg, var(--plum-dark), var(--crimson-accent));
  color: #ffffff;
  text-align: center;
  padding: 0.65rem;
  border-radius: 12px;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.ig-btn-follow:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.ig-btn-chat {
  flex: 1;
  background: rgba(37, 211, 102, 0.15);
  color: var(--whatsapp-green);
  border: 1px solid rgba(37, 211, 102, 0.3);
  text-align: center;
  padding: 0.65rem;
  border-radius: 12px;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.ig-btn-chat:hover {
  background: var(--whatsapp-green);
  color: #ffffff;
  transform: translateY(-2px);
}

/* ==========================================================================
   SECTIONS GENERALS & ABOUT
   ========================================================================== */
.section {
  padding: 6rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-tagline {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--plum-light);
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.5rem;
}

.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 1rem;
}

.section-divider {
  width: 70px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-primary), var(--crimson-accent));
  margin: 0 auto 1.5rem;
  border-radius: 3px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
}

/* SOBRE MÍ */
.about-section {
  background: rgba(18, 12, 26, 0.5);
  border-top: 1px solid var(--border-plum);
  border-bottom: 1px solid var(--border-plum);
}

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

.about-photos {
  position: relative;
}

.about-photo-main {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid var(--border-plum);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 30px var(--plum-glow);
}

.about-photo-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--bg-card);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-gold);
  padding: 1.2rem 1.6rem;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.about-badge-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
}

.about-badge-lbl {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.3;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.about-text p {
  color: var(--text-main);
  font-size: 1.05rem;
  line-height: 1.8;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.tag-item {
  background: rgba(175, 144, 153, 0.12);
  border: 1px solid var(--border-plum);
  color: var(--plum-light);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* ==========================================================================
   SERVICIOS
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--bg-card);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-plum);
  border-radius: 20px;
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-glow);
  background: var(--bg-card-hover);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 25px var(--plum-glow);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1.2rem;
  display: block;
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--gold-light);
  margin-bottom: 0.8rem;
}

.service-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-btn {
  color: var(--whatsapp-green);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition-smooth);
}

.service-btn:hover {
  color: #ffffff;
  transform: translateX(4px);
}

/* ==========================================================================
   TESTIMONIOS & EVIDENCIAS (EVIDENCIA 1, 2, 3)
   ========================================================================== */
.testimonials-section {
  background: rgba(18, 12, 26, 0.6);
  border-top: 1px solid var(--border-plum);
  border-bottom: 1px solid var(--border-plum);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-plum);
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-primary);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 30px var(--plum-glow);
}

.testimonial-img-wrapper {
  position: relative;
  width: 100%;
  height: 380px;
  overflow: hidden;
}

.testimonial-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.testimonial-card:hover .testimonial-img {
  transform: scale(1.05);
}

.testimonial-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 8, 18, 0.95) 0%, rgba(12, 8, 18, 0.3) 60%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.8rem;
}

.testimonial-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.testimonial-badge {
  background: rgba(37, 211, 102, 0.2);
  border: 1px solid var(--whatsapp-green);
  color: var(--whatsapp-green);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
  width: fit-content;
  text-transform: uppercase;
}

.testimonial-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: #ffffff;
}

.testimonial-click-hint {
  font-size: 0.8rem;
  color: var(--gold-light);
  font-weight: 600;
}

/* ==========================================================================
   GALERÍA
   ========================================================================== */
/* ==========================================================================
   GALERÍA (4x4 Grid - 16 fotos perfectamente organizadas)
   ========================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-plum);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.gallery-hover {
  position: absolute;
  inset: 0;
  background: rgba(12, 8, 18, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-smooth);
}

.gallery-hover span {
  color: var(--gold-light);
  font-weight: 700;
  font-size: 0.9rem;
}

.gallery-item:hover {
  transform: translateY(-4px);
  border-color: var(--gold-primary);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover .gallery-hover {
  opacity: 1;
}

/* ==========================================================================
   MÉTRICAS & CONTACTO
   ========================================================================== */
.metrics-section {
  background: radial-gradient(circle, rgba(175, 144, 153, 0.15) 0%, var(--bg-elevated) 100%);
  padding: 4rem 0;
  border-top: 1px solid var(--border-plum);
  border-bottom: 1px solid var(--border-plum);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.metric-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--gold-light);
}

.metric-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-card {
  background: var(--bg-card);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-gold);
  border-radius: 28px;
  padding: 4rem 2rem;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 35px var(--plum-glow);
}

.contact-btn-large {
  position: relative;
  background: linear-gradient(135deg, var(--whatsapp-green), #1ebd56);
  color: #ffffff;
  padding: 1.15rem 3rem;
  border-radius: 50px;
  font-weight: 900;
  font-size: 1.18rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  box-shadow: 0 10px 35px rgba(37, 211, 102, 0.5);
  margin-top: 2rem;
  transition: var(--transition-smooth);
  animation: aura-zoom-pulse 3.5s ease-in-out infinite 0.5s;
  z-index: 1;
}

.contact-btn-large:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 16px 45px rgba(37, 211, 102, 0.8);
}

/* ==========================================================================
   FOOTER & LEGAL
   ========================================================================== */
.footer {
  background: #08050c;
  border-top: 1px solid var(--border-plum);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-legal-notice {
  background: rgba(18, 12, 26, 0.8);
  border: 1px solid rgba(175, 144, 153, 0.2);
  padding: 1.5rem;
  border-radius: 12px;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON (ELEVATED, UNCLIPPED BADGE & DESTELLOS)
   ========================================================================== */
.wa-floating-btn {
  position: fixed;
  bottom: 3.2rem;
  right: 2.5rem;
  z-index: 9999;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 50%, #075e54 100%);
  color: #ffffff;
  padding: 1.05rem 2rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  font-weight: 900;
  font-size: 1.02rem;
  letter-spacing: 0.02em;
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6), 0 0 25px rgba(37, 211, 102, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.5);
  transition: var(--transition-smooth);
  animation: float-pulse-shake 4.5s ease-in-out infinite;
}

/* Inner Shimmer Container for continuous light beam sweep */
.wa-floating-shimmer {
  position: absolute;
  inset: 0;
  border-radius: 50px;
  overflow: hidden;
  pointer-events: none;
}

.wa-floating-shimmer::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 50%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7), transparent);
  transform: rotate(25deg);
  animation: wa-shimmer 2.8s infinite;
}

/* Pulsing outer aura ring (Destello de Onda) */
.wa-floating-btn::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50px;
  background: rgba(37, 211, 102, 0.55);
  z-index: -1;
  animation: wa-ring-pulse 2s cubic-bezier(0.25, 1, 0.5, 1) infinite;
}

@keyframes wa-shimmer {
  0% { left: -70%; }
  35% { left: 130%; }
  100% { left: 130%; }
}

@keyframes wa-ring-pulse {
  0% { transform: scale(0.95); opacity: 0.9; }
  100% { transform: scale(1.35); opacity: 0; }
}

@keyframes float-pulse-shake {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-4px) scale(1.03); }
  70% { transform: translateY(-2px) scale(1.05); }
  75% { transform: rotate(-3deg) scale(1.05); }
  80% { transform: rotate(3deg) scale(1.05); }
  85% { transform: rotate(-2deg) scale(1.05); }
  90% { transform: rotate(0deg) scale(1.03); }
}

.wa-floating-btn:hover {
  transform: translateY(-6px) scale(1.08) !important;
  box-shadow: 0 16px 50px rgba(37, 211, 102, 0.85), 0 0 40px rgba(255, 255, 255, 0.7);
}

.wa-badge-online {
  position: absolute;
  top: -8px;
  right: -6px;
  background: #ff2a4b;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 900;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2.5px solid #ffffff;
  box-shadow: 0 0 12px rgba(255, 42, 75, 0.9);
  z-index: 10;
  animation: badge-bounce 1.5s infinite alternate;
}

@keyframes badge-bounce {
  0% { transform: scale(1); }
  100% { transform: scale(1.25); }
}

.wa-icon-svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

/* ==========================================================================
   MODAL LIGHTBOX
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(5, 3, 8, 0.92);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  padding: 2rem;
  max-width: 650px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  text-align: center;
}

.modal-close-btn {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  background: none;
  border: none;
  color: var(--gold-light);
  font-size: 2rem;
  cursor: pointer;
}

.modal-image-preview {
  width: 100%;
  max-height: 60vh;
  object-fit: contain;
  border-radius: 12px;
  margin-top: 1rem;
}

/* ==========================================================================
   RESPONSIVE LAYOUT
   ========================================================================== */
@media (max-width: 992px) {
  .hero-grid, .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-photos {
    max-width: 450px;
    margin: 0 auto;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .hero-title {
    font-size: 2.2rem;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .wa-floating-btn span {
    display: none;
  }
  .wa-floating-btn {
    padding: 0.95rem;
    border-radius: 50%;
  }
}
