/* ============================================================
   shared.css — Global styles used by ALL pages
   ✏️  COLOR PALETTE: Change variables below to restyle everything
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

/* ─── Design Tokens ─── */
:root {
  /* ✏️ COLORS — change these to rebrand the whole site */
  --white:      #F5F2E8;
  --sky-50:     #f0f8ff;
  --sky-100:    #e1f2fe;
  --sky-200:    #bae3fd;
  --sky-300:    #7dcffc;
  --sky-400:    #39b8f8;
  --sky-500:    #0ea5e9;   /* primary accent */
  --sky-600:    #0284c7;
  --charcoal:   #1a1f2e;   /* dark text */
  --slate:      #4a5568;
  --muted:      #8898a6;

  /* Glass effect */
  --glass-bg:     rgba(255,255,255,0.65);
  --glass-border: rgba(186,227,253,0.45);

  /* Shadows */
  --shadow-soft:   0 8px 32px rgba(14,165,233,0.08);
  --shadow-med:    0 16px 48px rgba(14,165,233,0.12);
  --shadow-strong: 0 24px 64px rgba(14,165,233,0.16);

  /* ✏️ FONTS */
  --display: 'DM Sans', sans-serif;
  --body:    'DM Sans', sans-serif;

  /* Layout */
  --radius:    20px;
  --radius-sm: 12px;
  --transition: 0.4s cubic-bezier(0.16,1,0.3,1);
  --border:     rgba(14,165,233,0.12);
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--body);
  background: var(--white);
  color: var(--charcoal);
  overflow-x: hidden;
  line-height: 1.6;
}
img, video { max-width: 100%; display: block; }
a { text-decoration: none; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--sky-50); }
::-webkit-scrollbar-thumb { background: var(--scrollbar, #94a3b8); border-radius: 10px; }

/* ─── Language Toggle ─── */
/* Default: show Spanish, hide English */
[data-en] { display: none; }
[data-es] { display: block; }
/* When body has class "lang-en": show English, hide Spanish */
body.lang-en [data-en] { display: block; }
body.lang-en [data-es] { display: none; }
/* For inline elements */
span[data-en] { display: none; }
span[data-es] { display: inline; }
body.lang-en span[data-en] { display: inline; }
body.lang-en span[data-es] { display: none; }

/* ─── Navbar ─── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 18px 5vw;
  display: flex; align-items: center; justify-content: space-between;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: padding var(--transition), box-shadow var(--transition);
}
#navbar.scrolled {
  padding: 12px 5vw;
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}

/* ✏️ BRAND NAME: Change "BRAND NAME" text in each HTML file */
.nav-logo {
  font-family: var(--display);
  font-size: 1.8rem; font-weight: 500; letter-spacing: 0.04em;
  color: white;
}
.nav-logo span { display: none; }

.nav-links {
  display: flex; gap: 2rem; list-style: none; align-items: center;
}
.nav-links a {
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.75);
  transition: color var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--sky-300); }

.nav-right { display: flex; align-items: center; gap: 16px; }

/* Language switcher */
.lang-switcher {
  display: flex; align-items: center;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px; padding: 3px; gap: 2px;
}
.lang-btn {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em;
  padding: 5px 11px; border-radius: 100px; border: none;
  background: transparent; cursor: pointer; color: rgba(255,255,255,0.6);
  transition: background var(--transition), color var(--transition);
}
.lang-btn.active {
  background: var(--sky-500); color: white;
}

.nav-cta {
  background: var(--sky-500); color: white !important;
  padding: 9px 20px; border-radius: 100px;
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.06em;
  box-shadow: 0 4px 14px rgba(14,165,233,0.28);
  transition: background var(--transition), transform var(--transition) !important;
}
.nav-cta:hover { background: var(--sky-600) !important; transform: translateY(-1px); }

/* Hamburger */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: white; border-radius: 2px;
  transition: var(--transition);
}

/* Mobile menu */
.mobile-menu {
  display: none; position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(245,242,232,0.98);
  backdrop-filter: blur(20px);
  z-index: 999; padding: 100px 8vw 40px;
  flex-direction: column; gap: 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--display); font-size: 2rem; font-weight: 400;
  color: var(--charcoal); padding: 14px 0;
  border-bottom: 1px solid var(--sky-100);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--sky-500); background: rgba(14,165,233,0.08); padding-left: 8px; }
.mobile-lang-row {
  display: flex; gap: 12px; margin-top: 28px;
}
.mobile-lang-row button {
  font-size: 0.8rem; font-weight: 600; padding: 8px 20px;
  border-radius: 100px; border: 1.5px solid var(--sky-200);
  background: transparent; cursor: pointer; color: var(--slate);
  transition: var(--transition);
}
.mobile-lang-row button.active {
  background: var(--sky-500); color: white; border-color: var(--sky-500);
}

/* ─── Footer ─── */
#footer {
  background: var(--white);
  padding: 60px 5vw 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-logo {
  font-family: var(--display); font-size: 2rem; font-weight: 500;
  color: var(--charcoal); display: block; margin-bottom: 12px;
}
.footer-logo span { color: var(--sky-400); }
.footer-tagline {
  font-size: 0.82rem; font-weight: 300; line-height: 1.7;
  color: rgba(255,255,255,0.4); max-width: 260px; margin-bottom: 22px;
}
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px; border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.45);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.social-btn:hover {
  border-color: var(--sky-400); color: var(--sky-300);
  background: rgba(14,165,233,0.1);
}
.footer-col h4 {
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.8); margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.84rem; font-weight: 300; color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--sky-300); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px;
}
.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.25); }
.footer-legal { display: flex; gap: 18px; }
.footer-legal a { font-size: 0.75rem; color: rgba(255,255,255,0.25); transition: color var(--transition); }
.footer-legal a:hover { color: var(--sky-300); }

/* ─── Shared Section Styles ─── */
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--sky-500); margin-bottom: 14px;
}
.section-eyebrow::before {
  content: ''; display: block; width: 20px; height: 1px; background: var(--sky-400);
}
.section-title {
  font-family: var(--display);
  font-size: clamp(1.9rem, 3.2vw, 3.2rem);
  font-weight: 400; line-height: 1.12; letter-spacing: -0.01em;
  color: var(--charcoal);
}
.section-title em { font-style: normal; color: var(--sky-500); }
.section-desc {
  font-size: 0.93rem; font-weight: 300; color: var(--slate); line-height: 1.8;
}
.divider {
  width: 36px; height: 1.5px;
  background: linear-gradient(90deg, var(--sky-400), transparent);
  margin: 18px 0;
}

/* ─── Buttons ─── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px; border-radius: 100px;
  background: var(--sky-500); color: white; border: none;
  font-family: var(--body); font-size: 0.84rem; font-weight: 500;
  letter-spacing: 0.05em; cursor: pointer;
  box-shadow: 0 6px 22px rgba(14,165,233,0.3);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-primary:hover {
  background: var(--sky-600); transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(14,165,233,0.4);
}
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px; border-radius: 100px;
  background: transparent; color: white; border: 1.5px solid rgba(255,255,255,0.5);
  font-family: var(--body); font-size: 0.84rem; font-weight: 500;
  letter-spacing: 0.05em; cursor: pointer;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}
.btn-outline:hover {
  border-color: white; background: rgba(255,255,255,0.1); transform: translateY(-2px);
}
.btn-outline-dark {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px; border-radius: 100px;
  background: transparent; color: var(--charcoal); border: 1.5px solid rgba(26,31,46,0.2);
  font-family: var(--body); font-size: 0.84rem; font-weight: 500;
  letter-spacing: 0.05em; cursor: pointer;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}
.btn-outline-dark:hover {
  border-color: var(--sky-400); background: var(--sky-50); transform: translateY(-2px);
}

/* ─── Reveal animation ─── */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1),
              transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible { opacity: 1; transform: none; }

/* ─── Page Hero (non-home pages) ─── */
.page-hero {
  min-height: 20vh;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  padding: 120px 5vw 60px;
  position: relative; overflow: hidden;
  text-align: center;
}
.page-hero::after {
  content: '';
  position: absolute; top: -20%; right: -10%;
  width: 500px; height: 500px; border-radius: 50%;
  background: transparent;
  pointer-events: none;
}
.page-hero-content { position: relative; z-index: 2; text-align: center; }
.page-hero-title {
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  font-weight: 400; line-height: 1.08; letter-spacing: -0.01em;
  color: var(--charcoal);
}
.page-hero-title em { font-style: normal; color: var(--sky-500); }
.breadcrumb {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 0.75rem; font-weight: 400; letter-spacing: 0.08em;
  color: var(--muted); margin-bottom: 16px; text-transform: uppercase;
}
.breadcrumb a { color: var(--sky-500); }
.breadcrumb span { color: var(--muted); }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-right { display: flex; align-items: center; gap: 10px; }
  .lang-switcher { display: none; }
  .nav-hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ── Mobile center fixes ── */
@media (max-width: 768px) {
  .page-hero { text-align: center; }
  .breadcrumb { justify-content: center; }
  .page-hero-title { text-align: center; }
  .section-eyebrow { justify-content: center; }
  .section-title { text-align: center; }
  .section-desc { text-align: center; }
  .divider { margin-left: auto; margin-right: auto; }
}
/* ============================================================
   PREMIUM ANIMATIONS — append to shared.css
   ============================================================ */

/* ─── AOS-style reveal variants ─── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s cubic-bezier(0.16,1,0.3,1),
              transform 0.75s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible { opacity: 1; transform: none; }

.reveal-left {
  opacity: 0; transform: translateX(-40px);
  transition: opacity 0.75s cubic-bezier(0.16,1,0.3,1),
              transform 0.75s cubic-bezier(0.16,1,0.3,1);
}
.reveal-left.visible { opacity: 1; transform: none; }

.reveal-right {
  opacity: 0; transform: translateX(40px);
  transition: opacity 0.75s cubic-bezier(0.16,1,0.3,1),
              transform 0.75s cubic-bezier(0.16,1,0.3,1);
}
.reveal-right.visible { opacity: 1; transform: none; }

.reveal-scale {
  opacity: 0; transform: scale(0.92);
  transition: opacity 0.75s cubic-bezier(0.16,1,0.3,1),
              transform 0.75s cubic-bezier(0.16,1,0.3,1);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* ─── Floating animation ─── */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}
@keyframes floatSlow {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-6px); }
}
.float      { animation: float 4s ease-in-out infinite; }
.float-slow { animation: floatSlow 6s ease-in-out infinite; }

/* ─── Shimmer / glow pulse ─── */
@keyframes shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}
.shimmer-btn {
  background: linear-gradient(90deg,
    var(--sky-500) 25%,
    var(--sky-300) 50%,
    var(--sky-500) 75%);
  background-size: 400px 100%;
  animation: shimmer 2.4s infinite linear;
}

/* ─── Parallax wrapper ─── */
.parallax-wrap { overflow: hidden; }
.parallax-img  { will-change: transform; transition: transform 0.1s linear; }

/* ─── Premium card hover ─── */
.card-lift {
  transition: transform 0.45s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.45s cubic-bezier(0.16,1,0.3,1);
  will-change: transform;
}
.card-lift:hover {
  transform: translateY(-8px) scale(1.012);
  box-shadow: 0 24px 56px rgba(13,31,60,0.13);
}

/* ─── Magnetic button effect ─── */
.btn-primary, .btn-outline, .btn-outline-dark, .nav-cta {
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.35s cubic-bezier(0.16,1,0.3,1),
              background 0.35s cubic-bezier(0.16,1,0.3,1) !important;
}
.btn-primary:active, .btn-outline:active, .btn-outline-dark:active {
  transform: scale(0.96) !important;
}

/* ─── Nav link underline slide ─── */
.nav-links a {
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1.5px;
  background: var(--sky-400);
  transition: width 0.35s cubic-bezier(0.16,1,0.3,1);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* ─── Stagger delay helpers ─── */
.delay-1 { transition-delay: 0.08s !important; }
.delay-2 { transition-delay: 0.16s !important; }
.delay-3 { transition-delay: 0.24s !important; }
.delay-4 { transition-delay: 0.32s !important; }
.delay-5 { transition-delay: 0.40s !important; }

/* ─── Smooth image zoom on hover ─── */
.img-zoom { overflow: hidden; border-radius: inherit; }
.img-zoom img {
  transition: transform 0.65s cubic-bezier(0.16,1,0.3,1);
  will-change: transform;
}
.img-zoom:hover img { transform: scale(1.06); }


/* ============================================================
   PREMIUM ANIMATIONS v2
   ============================================================ */

/* ─── Split text word animation ─── */
.split-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px) rotate(2deg);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1),
              transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.split-word.visible {
  opacity: 1;
  transform: translateY(0) rotate(0deg);
}

/* ─── Ken Burns hero image ─── */
@keyframes kenBurns {
  0%   { transform: scale(1)    translateX(0)    translateY(0); }
  50%  { transform: scale(1.08) translateX(-1%)  translateY(-1%); }
  100% { transform: scale(1)    translateX(0)    translateY(0); }
}
.hero-slide.active {
  animation: kenBurns 8s ease-in-out infinite;
}

/* ─── WhatsApp premium pulse ─── */
@keyframes waPulse {
  0%   { transform: scale(1);    opacity: 0.6; }
  70%  { transform: scale(2.2);  opacity: 0; }
  100% { transform: scale(2.2);  opacity: 0; }
}
@keyframes waBounce {
  0%, 100% { transform: translateY(0); }
  20%       { transform: translateY(-12px); }
  40%       { transform: translateY(-6px); }
  60%       { transform: translateY(-10px); }
  80%       { transform: translateY(-4px); }
}
#wa-float {
  animation: waBounce 1s ease 2s both;
}
#wa-float .wa-pulse {
  animation: waPulse 2s ease-out infinite !important;
}

/* ─── Page load reveal ─── */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.load-reveal {
  animation: fadeSlideUp 0.8s cubic-bezier(0.16,1,0.3,1) both;
}
.load-reveal-1 { animation-delay: 0.1s; }
.load-reveal-2 { animation-delay: 0.25s; }
.load-reveal-3 { animation-delay: 0.4s; }
.load-reveal-4 { animation-delay: 0.55s; }
.load-reveal-5 { animation-delay: 0.7s; }

/* ─── Staggered card pop ─── */
.stagger-card {
  opacity: 0;
  transform: translateY(36px) scale(0.96);
  transition: opacity 0.65s cubic-bezier(0.16,1,0.3,1),
              transform 0.65s cubic-bezier(0.16,1,0.3,1);
}
.stagger-card.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.stagger-card:nth-child(1) { transition-delay: 0.00s; }
.stagger-card:nth-child(2) { transition-delay: 0.10s; }
.stagger-card:nth-child(3) { transition-delay: 0.20s; }
.stagger-card:nth-child(4) { transition-delay: 0.30s; }
.stagger-card:nth-child(5) { transition-delay: 0.40s; }
.stagger-card:nth-child(6) { transition-delay: 0.50s; }
.stagger-card:nth-child(7) { transition-delay: 0.60s; }
.stagger-card:nth-child(8) { transition-delay: 0.70s; }

/* ─── Smooth progress bar ─── */
@keyframes progressFill {
  from { width: 0%; }
}
.progress-bar {
  height: 3px;
  background: linear-gradient(90deg, var(--sky-400), var(--sky-200));
  border-radius: 100px;
  animation: progressFill 1.2s cubic-bezier(0.16,1,0.3,1) both;
}

/* ─── Gradient text shimmer ─── */
@keyframes textShimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}
.text-shimmer {
  background: linear-gradient(90deg,
    var(--sky-600) 0%,
    var(--sky-400) 40%,
    var(--sky-300) 60%,
    var(--sky-600) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textShimmer 3s linear infinite;
}

/* ─── Section entrance line ─── */
@keyframes lineGrow {
  from { width: 0; opacity: 0; }
  to   { opacity: 1; }
}
.divider {
  animation: lineGrow 0.8s cubic-bezier(0.16,1,0.3,1) both;
}

/* ─── Floating badge ─── */
@keyframes floatBadge {
  0%, 100% { transform: translateY(0px) rotate(-1deg); }
  50%       { transform: translateY(-8px) rotate(1deg); }
}
.float-badge {
  animation: floatBadge 5s ease-in-out infinite;
}

/* ─── Hover glow on cards ─── */
.glow-card {
  transition: box-shadow 0.4s cubic-bezier(0.16,1,0.3,1),
              transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.glow-card:hover {
  box-shadow: 0 0 0 1.5px var(--accent),
              0 20px 48px rgba(14,165,233,0.15);
  transform: translateY(-6px);
}

/* ─── Scroll progress bar at top ─── */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2.5px;
  width: 0%;
  background: linear-gradient(90deg, var(--sky-500), var(--sky-400));
  z-index: 9999;
  transition: width 0.1s linear;
}
/* ─── Bottom Navigation (Mobile) ─── */
.bottom-nav {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000;
  background: var(--white);
  border-top: 1px solid rgba(0,0,0,0.08);
  padding: 8px 0 12px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
}
.bottom-nav-inner {
  display: flex; justify-content: space-around; align-items: center;
}
.bottom-nav a {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  text-decoration: none; color: #8898a6;
  font-size: 0.65rem; font-weight: 500; letter-spacing: 0.05em;
  text-transform: uppercase; transition: color 0.2s; padding: 4px 8px;
}
.bottom-nav a svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.8; }
.bottom-nav a.active { color: var(--sky-500); }
.bottom-nav a.active svg { stroke: var(--sky-500); }
@media (max-width: 768px) {
  .bottom-nav { display: block; }
  body { padding-bottom: 72px; }
}

/* Mobile: hide hamburger, show lang switcher */
@media (max-width: 768px) {
  .nav-hamburger { display: none !important; }
  #mobileMenu { display: none !important; }
  .nav-links { display: none !important; }
  .lang-switcher { display: flex !important; }
  .nav-cta { display: none !important; }
}

/* Mobile: nav logo one line */
@media (max-width: 768px) {
  .nav-logo { font-size: 1.2rem !important; white-space: nowrap; }
  #navbar { padding: 12px 4vw !important; }
}

/* WhatsApp float above bottom nav */
.whatsapp-float, .wa-float, #whatsapp-float {
  z-index: 9999 !important;
  bottom: 80px !important;
}

/* Hide image caption */
.hero-caption, .slide-caption, .image-caption, figcaption {
  display: none !important;
}

/* Hide video label/caption */
#videoLabel { display: none !important; }

/* Remove gap between navbar and hero image on mobile */
@media (max-width: 768px) {
  .hero-wrap, #videoWrap, .hero-section, .hero {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
}

/* Remove gap between navbar and hero image on mobile */
@media (max-width: 768px) {
  .hero-wrap, #videoWrap, .hero-section, .hero {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
}

@media (max-width: 768px) {
  .hero-video-wrap {
    margin-top: -1px !important;
  }
}

/* WhatsApp float - proper position */
#wa-float {
  position: fixed !important;
  bottom: 90px !important;
  right: 20px !important;
  top: auto !important;
  z-index: 9999 !important;
}

/* Fix button text visibility */
.btn-primary span, .btn-outline-dark span {
  display: inline !important;
}

/* Fix: show span inside buttons regardless of lang */
.btn-primary span[data-es],
.btn-primary span[data-en],
.btn-outline-dark span[data-es],
.btn-outline-dark span[data-en] {
  display: inline !important;
}
body.lang-en .btn-primary span[data-es],
body.lang-en .btn-outline-dark span[data-es] {
  display: none !important;
}
body:not(.lang-en) .btn-primary span[data-en],
body:not(.lang-en) .btn-outline-dark span[data-en] {
  display: none !important;
}

/* Force show button text */
.btn-text-es { display: inline !important; }
.btn-text-en { display: none !important; }
body.lang-en .btn-text-es { display: none !important; }
body.lang-en .btn-text-en { display: inline !important; }

/* Fix button text color */
.btn-primary, .btn-primary span, .btn-primary * {
  color: white !important;
}

/* Fix WhatsApp float button */
#wa-float {
  background: #25d366 !important;
  color: white !important;
}
#wa-float svg {
  fill: white !important;
}
#wa-float .wa-pulse {
  background: #25d366 !important;
}

/* WhatsApp - round and proper position */
#wa-float {
  width: 52px !important;
  height: 52px !important;
  border-radius: 50% !important;
  bottom: 85px !important;
  right: 16px !important;
  padding: 0 !important;
  overflow: hidden !important;
}
#wa-float svg {
  width: 28px !important;
  height: 28px !important;
}
.wa-pulse {
  display: none !important;
}

/* WhatsApp - always fixed bottom right above bottom nav */
#wa-float {
  position: fixed !important;
  bottom: 80px !important;
  right: 16px !important;
  top: unset !important;
  left: unset !important;
}

/* WhatsApp icon center */
#wa-float {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
#wa-float svg {
  position: static !important;
  margin: 0 !important;
  flex-shrink: 0 !important;
}
