/* ============================================
   HEALTH GYM CLUB - Main Styles
   Brand Colors & Typography System
   ============================================ */

/* CSS Custom Properties */
:root {
  /* Brand Colors */
  --color-black: #000000;
  --color-black-pure: #050505;
  --color-gray: #999999;
  --color-gray-dark: #1a1a1a;
  --color-green-light: #42955A;
  --color-green-dark: #03644C;
  --color-green-accent: #277632;
  --color-green-neon: #5eff8a;
  --color-white: #FFFFFF;
  --color-cream: #f5f5f0;

  /* Theme Colors - Dark Mode (Default) */
  --theme-bg: #000000;
  --theme-bg-secondary: #0a0a0a;
  --theme-bg-tertiary: #111111;
  --theme-bg-card: rgba(255, 255, 255, 0.03);
  --theme-bg-card-hover: rgba(255, 255, 255, 0.06);
  --theme-text: #FFFFFF;
  --theme-text-secondary: #999999;
  --theme-text-muted: #666666;
  --theme-border: rgba(255, 255, 255, 0.08);
  --theme-border-hover: rgba(255, 255, 255, 0.15);
  --theme-overlay: rgba(0, 0, 0, 0.85);
  --theme-shadow: rgba(0, 0, 0, 0.5);

  /* Gradients - More dramatic */
  --gradient-green: linear-gradient(135deg, var(--color-green-light) 0%, var(--color-green-dark) 100%);
  --gradient-green-glow: linear-gradient(135deg, var(--color-green-neon) 0%, var(--color-green-light) 50%, var(--color-green-dark) 100%);
  --gradient-dark: linear-gradient(180deg, var(--theme-bg) 0%, var(--theme-bg-secondary) 50%, var(--theme-bg-tertiary) 100%);
  --gradient-diagonal: linear-gradient(135deg, rgba(66, 149, 90, 0.1) 0%, transparent 50%, rgba(3, 100, 76, 0.05) 100%);
  --gradient-mesh: radial-gradient(ellipse at 20% 20%, rgba(66, 149, 90, 0.15) 0%, transparent 50%),
                   radial-gradient(ellipse at 80% 80%, rgba(3, 100, 76, 0.1) 0%, transparent 50%),
                   radial-gradient(ellipse at 50% 50%, rgba(39, 118, 50, 0.05) 0%, transparent 70%);

  /* Typography Scale */
  --font-dasport: 'Dasport', 'Impact', sans-serif;
  --font-realmuse: 'Realmuse', 'Georgia', serif;
  --font-ethos: 'EthosNova', 'Helvetica Neue', Arial, sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 8rem;

  /* Border Radius - Mix of sharp and rounded */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-brutal: 0px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);

  /* Shadows - More dramatic */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 30px rgba(66, 149, 90, 0.3);
  --shadow-glow-intense: 0 0 60px rgba(66, 149, 90, 0.5), 0 0 120px rgba(66, 149, 90, 0.2);
  --shadow-inset: inset 0 2px 20px rgba(0, 0, 0, 0.5);

  /* Noise texture - SVG data URI */
  --noise-texture: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Light Mode Theme */
[data-theme="light"] {
  --theme-bg: #f8f9fa;
  --theme-bg-secondary: #ffffff;
  --theme-bg-tertiary: #e9ecef;
  --theme-bg-card: rgba(0, 0, 0, 0.03);
  --theme-bg-card-hover: rgba(0, 0, 0, 0.06);
  --theme-text: #1a1a1a;
  --theme-text-secondary: #4a4a4a;
  --theme-text-muted: #888888;
  --theme-border: rgba(0, 0, 0, 0.1);
  --theme-border-hover: rgba(0, 0, 0, 0.2);
  --theme-overlay: rgba(255, 255, 255, 0.95);
  --theme-shadow: rgba(0, 0, 0, 0.1);

  /* Override gradients for light mode */
  --gradient-dark: linear-gradient(180deg, var(--theme-bg) 0%, var(--theme-bg-secondary) 50%, var(--theme-bg-tertiary) 100%);
  --gradient-mesh: radial-gradient(ellipse at 20% 20%, rgba(66, 149, 90, 0.08) 0%, transparent 50%),
                   radial-gradient(ellipse at 80% 80%, rgba(3, 100, 76, 0.05) 0%, transparent 50%),
                   radial-gradient(ellipse at 50% 50%, rgba(39, 118, 50, 0.03) 0%, transparent 70%);

  /* Adjusted shadows for light mode */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.2);
  --shadow-glow: 0 0 30px rgba(66, 149, 90, 0.2);
  --shadow-glow-intense: 0 0 60px rgba(66, 149, 90, 0.3), 0 0 120px rgba(66, 149, 90, 0.1);
}

/* Font Faces */
@font-face {
  font-family: 'Dasport';
  src: url('../fonts/dasport-baseball-sport-font-2024-08-14-03-47-50-utc/OTF/Dasport-Regular.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Realmuse';
  src: url('../fonts/realmuse-quirky-logo-font-2025-09-15-21-07-52-utc/Realmuse-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'EthosNova';
  src: url('../fonts/ethos-nova-minimalist-sans-serif-typeface-2023-11-27-04-52-03-utc/Desktop Fonts/TTF/EthosNova-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'EthosNova';
  src: url('../fonts/ethos-nova-minimalist-sans-serif-typeface-2023-11-27-04-52-03-utc/Desktop Fonts/TTF/EthosNova-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-ethos);
  font-weight: 400;
  line-height: 1.6;
  color: var(--theme-text);
  background-color: var(--theme-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background-color 0.4s ease, color 0.4s ease;
}

/* Global noise texture overlay for depth */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: var(--noise-texture);
  opacity: 0.03;
  pointer-events: none;
  z-index: 10000;
}

/* Gradient mesh background */
/* Background mesh effect removed - was causing green tint over black background */

/* Selection styling */
::selection {
  background: var(--color-green-light);
  color: var(--color-black);
}

::-moz-selection {
  background: var(--color-green-light);
  color: var(--color-black);
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

/* Hide custom scrollbar on mobile */
@media (max-width: 768px) {
  ::-webkit-scrollbar {
    width: 0;
    display: none;
  }

  body {
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
}

::-webkit-scrollbar-track {
  background: var(--color-black);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--color-green-light), var(--color-green-dark));
  border-radius: 5px;
  border: 2px solid var(--color-black);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--color-green-neon), var(--color-green-light));
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

/* ============================================
   Typography
   ============================================ */

.headline-xl {
  font-family: var(--font-dasport);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 0.95;
}

.headline-lg {
  font-family: var(--font-dasport);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1;
}

.headline-md {
  font-family: var(--font-dasport);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.tagline {
  font-family: var(--font-realmuse);
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-style: italic;
  letter-spacing: 0.05em;
  color: var(--color-green-light);
}

.body-lg {
  font-size: 1.25rem;
  line-height: 1.7;
}

.body-md {
  font-size: 1rem;
  line-height: 1.6;
}

.body-sm {
  font-size: 0.875rem;
  line-height: 1.5;
}

.text-gray {
  color: var(--color-gray);
}

.text-green {
  color: var(--color-green-light);
}

/* ============================================
   Layout
   ============================================ */

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container-sm {
  max-width: 900px;
}

.container-lg {
  max-width: 1600px;
}

.section {
  padding: var(--space-xl) 0;
}

.section-lg {
  padding: var(--space-2xl) 0;
}

/* ============================================
   Buttons
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: 1rem 2rem;
  font-family: var(--font-ethos);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left var(--transition-slow);
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--gradient-green);
  color: var(--color-white);
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 1;
}

/* Glowing border effect on hover */
.btn-primary::after {
  content: '';
  position: absolute;
  inset: -3px;
  background: linear-gradient(135deg, var(--color-green-neon), var(--color-green-light), var(--color-green-dark));
  border-radius: inherit;
  z-index: -1;
  opacity: 0;
  transition: opacity var(--transition-base);
  filter: blur(8px);
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: var(--shadow-lg), var(--shadow-glow-intense);
}

.btn-primary:hover::after {
}

.btn-secondary {
  background: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-green-light);
  position: relative;
  overflow: hidden;
}

.btn-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--gradient-green);
  transition: width var(--transition-base);
  z-index: -1;
}

.btn-secondary:hover::before {
  width: 100%;
}

.btn-secondary:hover {
  background: var(--color-green-light);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--color-white);
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
}

@media (max-width: 480px) {
  .btn-whatsapp {
    padding: 0.875rem 1.5rem;
    font-size: 0.875rem;
    width: auto;
    max-width: 100%;
  }
}

.btn-whatsapp:hover {
  background: #128C7E;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 30px rgba(37, 211, 102, 0.4);
}

.btn-lg {
  padding: 1.25rem 3rem;
  font-size: 1.125rem;
}

.btn-sm {
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
}

/* ============================================
   Header / Navigation
   ============================================ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 12000;
  padding: var(--space-sm) 0;
  background: var(--theme-overlay);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--theme-border);
  transition: all var(--transition-base);
}

/* Animated green accent line under header */
.header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--color-green-dark) 20%,
    var(--color-green-light) 50%,
    var(--color-green-dark) 80%,
    transparent 100%
  );
}

.header.scrolled {
  padding: var(--space-sm) 0;
  background: var(--theme-overlay);
  box-shadow: 0 4px 30px var(--theme-shadow);
}

[data-theme="light"] .header {
  background: rgba(255, 255, 255, 0.92);
}

[data-theme="light"] .header.scrolled {
  padding: var(--space-sm) 0;
  background: rgba(255, 255, 255, 0.98);
}

.header.scrolled::after {
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Dark Header Style - Grid Layout */
.header-dark {
  background: #000 !important;
  backdrop-filter: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-dark::after {
}

.header-grid {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: center;
  gap: var(--space-md);
}

.header-col {
  display: flex;
  align-items: center;
}

.header-col-logo {
  justify-content: flex-start;
}

.header-col-nav {
  justify-content: center;
}

.header-col-actions {
  justify-content: flex-end;
  gap: var(--space-md);
}

/* ============================================
   Minimal Header - Centered Logo Only
   ============================================ */

.header-minimal {
  background: rgba(0, 0, 0, 0.85) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: none;
  padding: var(--space-sm) 0;
}

.header-minimal::after {
}

.header-center {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.logo-center {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
}

.logo-center:hover {
  transform: scale(1.05);
}

.logo-img-center {
  height: 40px;
  width: auto;
  transition: all var(--transition-base);
}

/* Header Hide/Show on Scroll */
.header-hidden {
  transform: translateY(-100%);
  pointer-events: none;
}

.header-hidden.scrolled {
  box-shadow: none;
}

@media (max-width: 768px) {
  .logo-img-center {
    height: 32px;
  }

  .header-minimal {
    padding: var(--space-sm) 0;
  }
}

.nav-center {
  justify-content: center;
}

/* Header Social Icons */
.header-social-icons {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-right: 20px;
}

.header-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  transition: all 0.3s ease;
}

.header-social-link svg {
  stroke: #fff;
  transition: all 0.3s ease;
}

.header-social-link:hover svg {
  stroke: var(--color-green-light);
  transform: scale(1.1);
}

/* Header CTA Button */
.btn-header {
  background-color: #03644c !important;
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}

.btn-header:hover {
  background-color: var(--color-green-light) !important;
  transform: translateY(-2px);
}

@media (max-width: 991px) {
  .header-grid {
    grid-template-columns: 1fr auto;
  }

  .header-col-nav {
    display: none;
  }

  .header-social-icons {
    display: none;
  }

  .btn-header {
    display: none;
  }

  .header-dark .menu-toggle {
    display: flex;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.logo img {
  height: 40px;
  width: auto;
}

.header-dark .logo img {
  height: auto;
  max-height: 160px;
  max-width: 240px;
}

.logo-text {
  font-family: var(--font-dasport);
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.logo-text span {
  color: var(--color-green-light);
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-green-light);
  transition: width var(--transition-base);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  margin-left: var(--space-md);
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: var(--space-xs);
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--color-white);
  transition: all var(--transition-base);
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: calc(70px + var(--space-lg)) var(--space-md) max(var(--space-xl), env(safe-area-inset-bottom) + var(--space-md));
    gap: var(--space-sm);
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform var(--transition-base), opacity var(--transition-base), visibility var(--transition-base);
    z-index: 13000;
    overflow-y: auto;
    width: 100vw;
    min-height: 100vh;
    background: linear-gradient(180deg, rgba(5, 7, 6, 0.98) 0%, rgba(3, 4, 3, 0.99) 50%, rgba(1, 1, 1, 0.99) 100%);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.06),
      0 30px 90px rgba(0, 0, 0, 0.92);
    isolation: isolate;
  }

  /* Mobile menu background overlay */
  .nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
      radial-gradient(120% 120% at 20% 0%, rgba(66, 149, 90, 0.2) 0%, rgba(66, 149, 90, 0) 55%),
      radial-gradient(120% 120% at 80% 10%, rgba(39, 118, 50, 0.2) 0%, rgba(39, 118, 50, 0) 55%),
      linear-gradient(180deg, rgba(2, 3, 3, 0.99) 0%, rgba(0, 0, 0, 1) 100%);
    z-index: -1;
  }

  .nav.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-link,
  .nav-cta {
    display: block;
    width: min(420px, calc(100vw - var(--space-md) - var(--space-md)));
    text-align: center;
    padding: 1.1rem 1.4rem;
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    border: 1px solid rgba(255, 255, 255, 0.24);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.62);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--color-white);
    text-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
    font-size: 1rem;
    letter-spacing: 0.12em;
    min-height: 52px;
  }

  .nav-link::after {
    display: none;
  }

  .nav-link:hover,
  .nav-link:focus-visible {
    background: linear-gradient(180deg, rgba(66, 149, 90, 0.26) 0%, rgba(66, 149, 90, 0.14) 100%);
    border-color: rgba(66, 149, 90, 0.5);
  }

  .header-inner {
    justify-content: center;
    position: relative;
  }

  .menu-toggle {
    display: flex;
    z-index: 1001;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .nav-cta {
    margin-left: 0;
    margin-top: var(--space-sm);
  }
}

/* When mobile menu is open */
body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

body.menu-open .whatsapp-float,
body.menu-open .theme-toggle {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  display: none !important;
}

/* ============================================
   Theme Toggle Button
   ============================================ */

.theme-toggle {
  position: relative;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--transition-base);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: var(--space-sm);
  flex-shrink: 0;
}

.theme-toggle:hover {
  background: rgba(66, 149, 90, 0.2);
  border-color: var(--color-green-light);
  box-shadow: 0 0 20px rgba(66, 149, 90, 0.3);
  transform: scale(1.05);
}

.theme-toggle:active {
  transform: scale(0.95);
}

/* Hide unused elements */
.theme-toggle-track,
.theme-toggle-thumb {
  display: none;
}

.theme-toggle-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.theme-toggle-icons svg {
  width: 22px;
  height: 22px;
  transition: all var(--transition-base);
}

/* Dark mode (default) - show moon icon */
.theme-toggle .icon-sun {
  display: none;
}

.theme-toggle .icon-moon {
  display: block;
  fill: var(--color-white);
}

/* Light mode - show sun icon */
[data-theme="light"] .theme-toggle {
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.15);
}

[data-theme="light"] .theme-toggle:hover {
  background: rgba(66, 149, 90, 0.15);
  border-color: var(--color-green-light);
}

[data-theme="light"] .theme-toggle .icon-sun {
  display: block;
  fill: #f59e0b;
}

[data-theme="light"] .theme-toggle .icon-moon {
  display: none;
}

/* Mobile responsiveness for theme toggle */
@media (max-width: 768px) {
  .theme-toggle {
    position: fixed;
    bottom: 90px;
    right: var(--space-md);
    z-index: 998;
    width: 48px;
    height: 48px;
    background: var(--theme-overlay);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--theme-border);
    margin-left: 0;
    box-shadow: var(--shadow-lg);
  }

  .theme-toggle-icons svg {
    width: 24px;
    height: 24px;
  }
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 80px;
}

/* Diagonal cut overlay for dramatic effect */
.hero::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 150px;
  background: var(--color-black);
  clip-path: polygon(0 100%, 100% 100%, 100% 0);
  z-index: 2;
}

/* Green diagonal line at hero bottom - matches marquee border style */
.hero-diagonal-line {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 150px;
  z-index: 2;
  pointer-events: none;
  /* Use clip-path to show only the diagonal edge line - thin like marquee border */
  clip-path: polygon(0 100%, 100% 0, 100% calc(0% + 3px), 0 calc(100% + 3px));
  background: rgba(66, 149, 90, 0.3);
}


/* Animated gradient orbs */
.hero::after {
  content: '';
  position: absolute;
  top: 20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(66, 149, 90, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  animation: floatOrb 15s ease-in-out infinite;
  z-index: 0;
}

@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-30px, 30px) scale(1.1); }
  66% { transform: translate(30px, -20px) scale(0.9); }
}

.hero-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: slideshow 20s infinite;
}

.hero-slide:nth-child(1) { animation-delay: 0s; }
.hero-slide:nth-child(2) { animation-delay: 5s; }
.hero-slide:nth-child(3) { animation-delay: 10s; }
.hero-slide:nth-child(4) { animation-delay: 15s; }

@keyframes slideshow {
  0% { opacity: 0; }
  5% { opacity: 1; }
  25% { opacity: 1; }
  30% { opacity: 0; }
  100% { opacity: 0; }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0.9) 100%
  );
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  padding: var(--space-md);
}

.hero-logo {
  max-width: 300px;
  margin: 0 auto var(--space-md);
  animation: logoReveal 1s ease-out forwards;
}

.hero-title {
  margin-bottom: var(--space-sm);
}

.hero-tagline {
  margin-bottom: var(--space-lg);
  color: #fff;
  font-family: var(--font-ethos);
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  font-weight: 700;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0.08em;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.3em;
}

/* ============================================
   HERO TAGLINE - Simple elegant animation
   ============================================ */
.hero-tagline-container {
  position: relative;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  padding: 0 20px;
}

.hero-tagline-text {
  font-family: var(--font-ethos);
  font-size: clamp(1.3rem, 3.4vw, 2.1rem);
  font-weight: 400;
  color: var(--theme-text);
  text-align: center;
  letter-spacing: 0.02em;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  animation: fadeInTagline 2s ease-out 3.5s forwards;
}

@keyframes fadeInTagline {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    filter: blur(10px);
  }
  50% {
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

/* Green text with soft glow effect */
.hero-tagline-text .shimmer-word {
  display: inline-block;
  color: var(--color-green-light);
  text-shadow: 0 0 10px rgba(66, 149, 90, 0.3);
  font-weight: 700;
}

/* First word - "saúde" */
.shimmer-1 {
  animation: softGlow1 5s ease-in-out infinite;
  animation-delay: 5s;
}

/* Second word - "vidas" */
.shimmer-2 {
  animation: softGlow2 4s ease-in-out infinite;
  animation-delay: 7s;
}

@keyframes softGlow1 {
  0%, 100% {
    text-shadow: 0 0 10px rgba(66, 149, 90, 0.3);
    color: var(--color-green-light);
  }
  50% {
    text-shadow: 0 0 30px rgba(143, 255, 176, 0.9), 0 0 60px rgba(66, 149, 90, 0.6), 0 0 90px rgba(66, 149, 90, 0.3);
    color: #8fffb0;
  }
}

@keyframes softGlow2 {
  0%, 100% {
    text-shadow: 0 0 10px rgba(66, 149, 90, 0.3);
    color: var(--color-green-light);
  }
  50% {
    text-shadow: 0 0 30px rgba(143, 255, 176, 0.9), 0 0 60px rgba(66, 149, 90, 0.6), 0 0 90px rgba(66, 149, 90, 0.3);
    color: #8fffb0;
  }
}

/* Hide mobile line break on desktop */
.mobile-break {
  display: none;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .mobile-break {
    display: block;
  }

  .hero-tagline-text {
    font-size: clamp(1.8rem, 6.5vw, 2.4rem);
    white-space: normal;
    text-align: center;
    line-height: 1.4;
  }
}

@media (max-width: 480px) {
  .hero-tagline-container {
    padding: 0 10px;
  }

  .hero-tagline-text {
    font-size: clamp(1.6rem, 6.2vw, 2.1rem);
    white-space: normal;
  }
}

@media (max-width: 360px) {
  .hero-tagline-text {
    font-size: clamp(1.4rem, 5.8vw, 1.8rem);
    white-space: normal;
  }
}

/* ============================================
   KINETIC TYPOGRAPHY - Full Animation Sequence (Legacy)
   ============================================ */
.kinetic-container {
  position: relative;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  overflow: visible;
}

/* Pulse Rings Background */
.pulse-rings {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeOutRings 14s ease-out forwards;
}

@keyframes fadeOutRings {
  0%, 70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.pulse-ring {
  position: absolute;
  border: 1px solid rgba(66, 149, 90, 0.4);
  border-radius: 50%;
  animation: pulseExpand 4s ease-out infinite;
}

.pulse-ring:nth-child(1) {
  animation-delay: 0s;
}

.pulse-ring:nth-child(2) {
  animation-delay: 1.3s;
}

.pulse-ring:nth-child(3) {
  animation-delay: 2.6s;
}

@keyframes pulseExpand {
  0% {
    width: 50px;
    height: 50px;
    opacity: 0.8;
    border-width: 2px;
    box-shadow: 0 0 20px rgba(66, 149, 90, 0.6);
  }
  100% {
    width: 800px;
    height: 800px;
    opacity: 0;
    border-width: 1px;
    box-shadow: 0 0 5px rgba(66, 149, 90, 0.1);
  }
}

/* Base Kinetic Text */
.kinetic-text {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ethos);
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
}

.kinetic-text span {
  display: inline-block;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
}

/* ============================================
   PHASE 1: VOCÊ ESTÁ PRONTO PARA... (Zoom-Out)
   ============================================ */
.kt-1 {
  font-size: clamp(1rem, 2.5vw, 1.8rem);
  animation: zoomOutDynamic 2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 3s;
}

@keyframes zoomOutDynamic {
  0% {
    opacity: 0;
    transform: scale(8);
    filter: blur(20px);
  }
  30% {
    opacity: 1;
    filter: blur(0);
  }
  50% {
    transform: scale(0.95);
  }
  65% {
    transform: scale(1.02);
  }
  80%, 90% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1);
  }
}

/* ============================================
   PHASE 2: CONHECER (Slam/Pop-In + Slide)
   ============================================ */
.kt-2 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  animation: slamPopIn 2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: 5s;
}

.kt-2 .crosshair {
  position: absolute;
  width: 80px;
  height: 80px;
  border: 2px dashed rgba(66, 149, 90, 0.6);
  border-radius: 50%;
  opacity: 0;
  animation: crosshairIn 1.5s ease-out forwards;
  animation-delay: 5.8s;
}

.kt-2 .crosshair::before,
.kt-2 .crosshair::after {
  content: '';
  position: absolute;
  background: rgba(66, 149, 90, 0.8);
}

.kt-2 .crosshair::before {
  width: 2px;
  height: 20px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.kt-2 .crosshair::after {
  width: 20px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes slamPopIn {
  0% {
    opacity: 0;
    transform: scale(3);
  }
  15% {
    opacity: 1;
    transform: scale(1.15);
  }
  25% {
    transform: scale(0.95);
  }
  35% {
    transform: scale(1.02);
  }
  45%, 70% {
    opacity: 1;
    transform: scale(1) translateX(0);
  }
  90% {
    opacity: 0.5;
    transform: scale(1) translateX(100px);
  }
  100% {
    opacity: 0;
    transform: scale(0.8) translateX(200px);
  }
}

@keyframes crosshairIn {
  0% {
    opacity: 0;
    transform: scale(0) rotate(0deg);
  }
  50% {
    opacity: 1;
    transform: scale(1.2) rotate(90deg);
  }
  100% {
    opacity: 0;
    transform: scale(1.5) rotate(180deg);
  }
}

/* ============================================
   PHASE 3: SEU MELHOR (Zoom Dynamic)
   ============================================ */
.kt-3 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  animation: zoomDynamicWord 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 7s;
}

/* ============================================
   PHASE 4: MOMENTO? (Zoom Dynamic)
   ============================================ */
.kt-4 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  animation: zoomDynamicWord 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 8.2s;
}

@keyframes zoomDynamicWord {
  0% {
    opacity: 0;
    transform: scale(5);
    filter: blur(15px);
  }
  25% {
    opacity: 1;
    filter: blur(0);
  }
  40% {
    transform: scale(0.92);
  }
  55% {
    transform: scale(1.03);
  }
  70%, 85% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0.9);
  }
}

/* ============================================
   PHASE 5, 6, 7: GLITCH/MATERIALIZATION
   ============================================ */
.kt-5 {
  font-size: clamp(1.2rem, 3vw, 2.2rem);
  animation: glitchMaterialize 1.5s ease-out forwards;
  animation-delay: 9.4s;
}

.kt-6 {
  animation: logoReveal 1.8s ease-out forwards, forceHide 0.01s forwards;
  animation-delay: 10.9s, 12.5s;
}

@keyframes forceHide {
  to {
    visibility: hidden;
    opacity: 0;
  }
}

.kt-6 .kinetic-logo {
  height: clamp(50px, 10vw, 80px);
  width: auto;
  filter: drop-shadow(0 0 30px rgba(66, 149, 90, 0.8)) drop-shadow(0 0 60px rgba(66, 149, 90, 0.4));
}

/* Phase 7: CONSTRUINDO SAÚDE, TRANSFORMANDO VIDAS. - letra por letra */
.kt-7 {
  font-size: clamp(1.25rem, 2.8vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  z-index: 10;
  opacity: 1;
}

.kt-7 .letter {
  display: inline-block;
  opacity: 0;
  transform: scale(4);
  filter: blur(15px);
  animation: letterZoomIn 0.12s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  text-shadow:
    3px 3px 0 rgba(0, 0, 0, 0.4),
    6px 6px 15px rgba(0, 0, 0, 0.6);
}

.kt-7 .letter.green {
  color: var(--color-green-light);
  text-shadow:
    3px 3px 0 rgba(0, 0, 0, 0.4),
    0 0 25px rgba(66, 149, 90, 0.9),
    0 0 50px rgba(66, 149, 90, 0.6);
}

/* Delays para cada letra - 39 caracteres, 40ms entre cada */
.kt-7 .letter:nth-child(1) { animation-delay: 12.5s; }
.kt-7 .letter:nth-child(2) { animation-delay: 12.54s; }
.kt-7 .letter:nth-child(3) { animation-delay: 12.58s; }
.kt-7 .letter:nth-child(4) { animation-delay: 12.62s; }
.kt-7 .letter:nth-child(5) { animation-delay: 12.66s; }
.kt-7 .letter:nth-child(6) { animation-delay: 12.70s; }
.kt-7 .letter:nth-child(7) { animation-delay: 12.74s; }
.kt-7 .letter:nth-child(8) { animation-delay: 12.78s; }
.kt-7 .letter:nth-child(9) { animation-delay: 12.82s; }
.kt-7 .letter:nth-child(10) { animation-delay: 12.86s; }
.kt-7 .letter:nth-child(11) { animation-delay: 12.90s; }
.kt-7 .letter:nth-child(12) { animation-delay: 12.94s; }
.kt-7 .letter:nth-child(13) { animation-delay: 12.98s; }
.kt-7 .letter:nth-child(14) { animation-delay: 13.02s; }
.kt-7 .letter:nth-child(15) { animation-delay: 13.06s; }
.kt-7 .letter:nth-child(16) { animation-delay: 13.10s; }
.kt-7 .letter:nth-child(17) { animation-delay: 13.14s; }
.kt-7 .letter:nth-child(18) { animation-delay: 13.18s; }
.kt-7 .letter:nth-child(19) { animation-delay: 13.22s; }
.kt-7 .letter:nth-child(20) { animation-delay: 13.26s; }
.kt-7 .letter:nth-child(21) { animation-delay: 13.30s; }
.kt-7 .letter:nth-child(22) { animation-delay: 13.34s; }
.kt-7 .letter:nth-child(23) { animation-delay: 13.38s; }
.kt-7 .letter:nth-child(24) { animation-delay: 13.42s; }
.kt-7 .letter:nth-child(25) { animation-delay: 13.46s; }
.kt-7 .letter:nth-child(26) { animation-delay: 13.50s; }
.kt-7 .letter:nth-child(27) { animation-delay: 13.54s; }
.kt-7 .letter:nth-child(28) { animation-delay: 13.58s; }
.kt-7 .letter:nth-child(29) { animation-delay: 13.62s; }
.kt-7 .letter:nth-child(30) { animation-delay: 13.66s; }
.kt-7 .letter:nth-child(31) { animation-delay: 13.70s; }
.kt-7 .letter:nth-child(32) { animation-delay: 13.74s; }
.kt-7 .letter:nth-child(33) { animation-delay: 13.78s; }
.kt-7 .letter:nth-child(34) { animation-delay: 13.82s; }
.kt-7 .letter:nth-child(35) { animation-delay: 13.86s; }
.kt-7 .letter:nth-child(36) { animation-delay: 13.90s; }
.kt-7 .letter:nth-child(37) { animation-delay: 13.94s; }
.kt-7 .letter:nth-child(38) { animation-delay: 13.98s; }
.kt-7 .letter:nth-child(39) { animation-delay: 14.02s; }

@keyframes letterZoomIn {
  0% {
    opacity: 0;
    transform: scale(4);
    filter: blur(15px);
  }
  50% {
    opacity: 1;
    transform: scale(0.85);
    filter: blur(0);
  }
  75% {
    transform: scale(1.08);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}

/* Responsive kt-7 for mobile - staircase effect */
@media (max-width: 768px) {
  .kt-7 {
    font-size: clamp(1.2rem, 6vw, 1.8rem);
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .kt-7 .word {
    display: inline-block;
    white-space: nowrap;
  }

  /* Staircase indent */
  .kt-7 .word-1 { margin-left: 0; }
  .kt-7 .word-2 { margin-left: 25px; }
  .kt-7 .word-3 { margin-left: 50px; }
  .kt-7 .word-4 { margin-left: 75px; }

  /* Hide spaces between words on mobile staircase */
  .kt-7 > .letter.space {
    display: none;
  }

  /* Hide crosshair on mobile - can cause rendering issues */
  .kt-2 .crosshair {
    display: none;
  }

  /* Hide pulse rings on mobile */
  .pulse-rings {
    display: none;
  }
}

@media (max-width: 480px) {
  .kt-7 {
    font-size: clamp(1.1rem, 5.5vw, 1.6rem);
    letter-spacing: 0.02em;
  }
}

@keyframes logoReveal {
  0% {
    opacity: 0;
    transform: scale(2);
    filter: blur(20px) brightness(2);
  }
  15% {
    opacity: 1;
    filter: blur(5px) brightness(1.5);
  }
  25% {
    transform: scale(0.95);
    filter: blur(0) brightness(1.2);
  }
  35% {
    transform: scale(1.02);
    filter: brightness(1);
  }
  45%, 65% {
    opacity: 1;
    transform: scale(1);
  }
  80% {
    opacity: 0;
    transform: scale(0.85);
    filter: blur(8px);
  }
  100% {
    opacity: 0;
    transform: scale(0.8);
    filter: blur(10px);
  }
}

/* Glitch layers */
.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
}

.glitch::before {
  color: #0ff;
  animation: glitchLayer1 1.5s ease-out forwards;
}

.glitch::after {
  color: #f0f;
  animation: glitchLayer2 1.5s ease-out forwards;
}

.kt-5.glitch::before, .kt-5.glitch::after { animation-delay: 9.4s; }

@keyframes glitchMaterialize {
  0% {
    opacity: 0;
    transform: scale(1.1);
    filter: blur(20px);
  }
  10% {
    opacity: 0.5;
    filter: blur(10px);
  }
  20% {
    opacity: 1;
    transform: scale(1) translateX(-3px);
    filter: blur(3px);
  }
  25% {
    transform: scale(1) translateX(3px);
    filter: blur(1px);
  }
  30% {
    transform: scale(1) translateX(-2px);
    filter: blur(2px);
  }
  35% {
    transform: scale(1) translateX(0);
    filter: blur(0);
  }
  80%, 90% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
  100% {
    opacity: 0;
    transform: scale(1);
  }
}

@keyframes glitchMaterializeFinal {
  0% {
    opacity: 0;
    transform: scale(1.1);
    filter: blur(20px);
  }
  10% {
    opacity: 0.5;
    filter: blur(10px);
  }
  20% {
    opacity: 1;
    transform: scale(1) translateX(-3px);
    filter: blur(3px);
  }
  25% {
    transform: scale(1) translateX(3px);
    filter: blur(1px);
  }
  30% {
    transform: scale(1) translateX(-2px);
    filter: blur(2px);
  }
  35%, 100% {
    opacity: 1;
    transform: scale(1) translateX(0);
    filter: blur(0);
  }
}

@keyframes glitchLayer1 {
  0%, 10% { opacity: 0; }
  15% { opacity: 0.8; transform: translateX(-5px); clip-path: inset(20% 0 60% 0); }
  20% { opacity: 0; }
  25% { opacity: 0.6; transform: translateX(3px); clip-path: inset(50% 0 30% 0); }
  30% { opacity: 0; }
  35%, 100% { opacity: 0; }
}

@keyframes glitchLayer2 {
  0%, 12% { opacity: 0; }
  17% { opacity: 0.8; transform: translateX(5px); clip-path: inset(40% 0 40% 0); }
  22% { opacity: 0; }
  27% { opacity: 0.6; transform: translateX(-4px); clip-path: inset(10% 0 70% 0); }
  32% { opacity: 0; }
  37%, 100% { opacity: 0; }
}

/* Final text glow pulse */
.final-text span {
  animation: finalGlow 3s ease-in-out infinite;
  animation-delay: 14s;
}

@keyframes finalGlow {
  0%, 100% {
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
  }
  50% {
    text-shadow:
      0 0 30px rgba(255, 255, 255, 0.3),
      0 0 60px rgba(66, 149, 90, 0.3),
      0 4px 30px rgba(0, 0, 0, 0.8);
  }
}

/* Word Block Animation */
.word-block {
  display: inline-block;
  opacity: 0;
  transform: translateY(50px) scale(0.8);
  animation: wordBlockIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: calc(var(--delay) * 0.25s + 3s);
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
}

@keyframes wordBlockIn {
  0% {
    opacity: 0;
    transform: translateY(50px) scale(0.8);
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

/* Word Highlight - Green Text */
.word-highlight {
  color: var(--color-green-light);
  text-shadow:
    0 0 20px rgba(66, 149, 90, 0.6),
    0 0 40px rgba(66, 149, 90, 0.3);
  position: relative;
}

.word-highlight::before,
.word-highlight::after {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--color-green-light);
  border-radius: 50%;
  opacity: 0;
  animation: dustParticle 2.5s ease-out infinite;
  box-shadow: 0 0 6px var(--color-green-light), 0 0 10px var(--color-green-light);
}

.word-highlight::before {
  left: 20%;
  bottom: 0;
  animation-delay: 3.5s;
}

.word-highlight::after {
  right: 30%;
  bottom: 0;
  animation-delay: 4s;
}

@keyframes dustParticle {
  0% {
    opacity: 0;
    transform: translateY(0) translateX(0) scale(1);
  }
  10% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(-40px) translateX(10px) scale(0.3);
  }
}

/* Extra dust particles via box-shadow trick */
.word-highlight span {
  position: relative;
}

.hero-tagline .word-highlight {
  overflow: visible;
}

.hero-tagline .word-highlight::before {
  animation: dustParticle 3s ease-out infinite;
  animation-delay: 3.8s;
  width: 3px;
  height: 3px;
  left: 40%;
}

.hero-tagline .word-highlight::after {
  animation: dustParticle 2.8s ease-out infinite;
  animation-delay: 4.2s;
  width: 5px;
  height: 5px;
  right: 20%;
}

/* Unit Selector Cards */
.unit-selector {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-lg);
  margin-bottom: 180px; /* Space to keep cards above the black diagonal gap */
  position: relative;
  z-index: 5;
}

.unit-selector-card {
  position: relative;
  width: 220px;
  height: 280px;
  background: linear-gradient(180deg, rgba(20, 20, 20, 0.9) 0%, rgba(10, 10, 10, 0.95) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition-bounce);
  transform-origin: center bottom;
}

/* Corner accent */
.unit-selector-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, transparent 50%, rgba(66, 149, 90, 0.1) 50%);
  transition: all var(--transition-base);
}

.unit-selector-card:hover {
  transform: translateY(-15px) scale(1.03) rotate(-1deg);
  border-color: var(--color-green-light);
  box-shadow:
    var(--shadow-xl),
    0 0 50px rgba(66, 149, 90, 0.3),
    0 0 100px rgba(66, 149, 90, 0.1);
}

.unit-selector-card:hover::after {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, transparent 50%, rgba(66, 149, 90, 0.2) 50%);
}

.unit-selector-card.featured {
  border-color: var(--color-green-light);
  box-shadow: 0 0 30px rgba(66, 149, 90, 0.2);
}

.unit-selector-card.featured::before {
  content: 'PRIMEIRA UNIDADE';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: var(--space-xs);
  background: var(--gradient-green-glow);
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-align: center;
  z-index: 2;
}

.unit-card-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  transition: opacity var(--transition-base);
}

.unit-selector-card:hover .unit-card-image {
}

.unit-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-md);
  background: linear-gradient(transparent, rgba(0,0,0,0.9));
}

.unit-card-type {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--color-green-accent);
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-xs);
}

.unit-card-name {
  font-family: var(--font-dasport);
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.unit-card-status {
  font-size: 0.75rem;
  color: var(--color-gray);
  margin-top: var(--space-xs);
}

/* Tablet: unit selector 2x2 */
@media (min-width: 769px) and (max-width: 991px) {
  .unit-selector {
    gap: var(--space-sm);
    margin-bottom: 120px;
  }

  .unit-selector-card {
    width: 180px;
    height: 240px;
  }

  .unit-card-name {
    font-size: 1.2rem;
  }
}

/* Mobile Unit Swiper - Hidden on desktop */
.mobile-unit-swiper {
  display: none;
  background: transparent;
  padding: 0 0 30px;
  margin-top: -200px;
  position: relative;
  z-index: 10;
}

.swiper-container {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  padding: 0 20px;
  overflow: hidden;
}

.swiper-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  touch-action: pan-y;
  background: #111;
}

.swiper-track {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  touch-action: pan-y;
}

.swiper-card {
  flex: 0 0 100%;
  position: relative;
  height: 220px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.swiper-card.active {
  border-color: var(--color-green-light);
  box-shadow: 0 0 30px rgba(66, 149, 90, 0.4);
}

.swiper-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}

.swiper-card:active .swiper-card-bg {
  transform: scale(1.05);
}

.swiper-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.85) 100%);
}

.swiper-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  z-index: 2;
}

.swiper-card-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  backdrop-filter: blur(5px);
}

.swiper-card-badge.featured {
  background: var(--gradient-green);
  color: #000;
}

.swiper-card-type {
  display: inline-block;
  margin-left: 8px;
  background: var(--color-green-light);
  color: #000;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.swiper-card-name {
  font-family: var(--font-dasport);
  font-size: 2.2rem;
  color: #fff;
  margin: 10px 0 5px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.swiper-card-cta {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* Swiper Navigation Arrows */
.swiper-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
  padding: 0 5px;
}

.swiper-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.swiper-arrow:active {
  background: var(--color-green-light);
  border-color: var(--color-green-light);
}

.swiper-arrow svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
}

.swiper-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.swiper-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.swiper-dot.active {
  background: var(--color-green-light);
  width: 24px;
  border-radius: 4px;
}

.swiper-hint {
  text-align: center;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 12px;
}

/* ============================================
   Countdown Timer
   ============================================ */

.countdown {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin: var(--space-lg) 0;
}

.countdown-item {
  text-align: center;
  min-width: 80px;
  position: relative;
}

/* Separator colon between countdown items */
.countdown-item:not(:last-child)::after {
  content: ':';
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-70%);
  font-family: var(--font-dasport);
  font-size: 2rem;
  color: var(--color-green-light);
  opacity: 0.5;
  animation: colonPulse 1s ease-in-out infinite;
}

@keyframes colonPulse {
  0%, 100% { opacity: 0.5; }
}

.countdown-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 95px;
  height: 105px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(10, 10, 10, 0.9) 100%);
  border: 1px solid rgba(66, 149, 90, 0.3);
  border-radius: var(--radius-md);
  font-family: var(--font-dasport);
  font-size: 3.2rem;
  color: var(--color-green-light);
  position: relative;
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 -1px 0 rgba(0, 0, 0, 0.3),
    0 4px 20px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(66, 149, 90, 0.1);
}

/* Flip card center line */
.countdown-number::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.8), transparent);
  z-index: 1;
}

/* Subtle glow effect */
.countdown-number::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(66, 149, 90, 0.05) 0%, transparent 30%);
  pointer-events: none;
}

/* Scanline effect for futuristic look */
.countdown-number span {
  position: relative;
  text-shadow: 0 0 20px rgba(66, 149, 90, 0.5), 0 0 40px rgba(66, 149, 90, 0.2);
}

.countdown-label {
  margin-top: var(--space-xs);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #FFFFFF;
}

@media (max-width: 480px) {
  .countdown-number {
    width: 65px;
    height: 75px;
    font-size: 2.3rem;
  }

  .countdown-item {
    min-width: 65px;
  }
}

/* ============================================
   Activities Gallery Marquee
   ============================================ */

.activities-marquee {
  position: relative;
  overflow: hidden;
  padding: var(--space-xl) 0;
  background: linear-gradient(180deg,
    var(--color-black) 0%,
    rgba(5, 5, 5, 1) 50%,
    var(--color-black) 100%
  );
}

/* Gradient fade edges */
.activities-marquee::before,
.activities-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 200px;
  z-index: 10;
  pointer-events: none;
}

.activities-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--color-black) 0%, transparent 100%);
}

.activities-marquee::after {
  right: 0;
  background: linear-gradient(-90deg, var(--color-black) 0%, transparent 100%);
}

.activities-marquee-track {
  display: flex;
  gap: var(--space-md);
  animation: activitiesMarquee 40s linear infinite;
  width: max-content;
}

.activities-marquee:hover .activities-marquee-track {
  animation-play-state: paused;
}

.activity-card {
  position: relative;
  flex-shrink: 0;
  width: 280px;
  height: 380px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.activity-card:hover {
  transform: scale(1.05) translateY(-10px);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.5),
    0 0 30px rgba(66, 149, 90, 0.3);
}

.activity-card-img {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.activity-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s ease;
}

.activity-card:hover .activity-card-img img {
  transform: scale(1.15);
  filter: brightness(0.7);
}

/* Gradient overlay */
.activity-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    transparent 0%,
    transparent 40%,
    rgba(0, 0, 0, 0.7) 70%,
    rgba(0, 0, 0, 0.95) 100%
  );
  z-index: 1;
  transition: background 0.4s ease;
}

.activity-card:hover::before {
  background: linear-gradient(180deg,
    rgba(66, 149, 90, 0.1) 0%,
    rgba(66, 149, 90, 0.05) 40%,
    rgba(0, 0, 0, 0.8) 70%,
    rgba(0, 0, 0, 0.95) 100%
  );
}

/* Green line accent */
.activity-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--color-green-light) 50%,
    transparent 100%
  );
  z-index: 3;
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.activity-card:hover::after {
  transform: scaleX(1);
}

.activity-card-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  font-family: var(--font-ethos);
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  z-index: 2;
  transition: transform 0.4s ease, color 0.4s ease;
}

.activity-card:hover .activity-card-label {
  transform: translateY(-5px);
  color: var(--color-green-light);
  text-shadow: 0 0 20px rgba(66, 149, 90, 0.5);
}

@keyframes activitiesMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ============================================
   Activities Gallery Carousel (New)
   ============================================ */
.activities-carousel-wrapper {
  position: relative;
  padding: var(--space-sm) 0;
  background: linear-gradient(180deg,
    var(--color-black) 0%,
    rgba(5, 5, 5, 1) 50%,
    var(--color-black) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.activities-carousel {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.activities-carousel-track {
  display: flex;
  gap: 0;
  width: max-content;
  transition: transform 0.5s ease;
}

.activity-slide {
  position: relative;
  flex-shrink: 0;
  width: 280px;
  height: 380px;
  overflow: hidden;
  cursor: pointer;
}

.activity-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s ease;
}

.activity-slide:hover img {
  transform: scale(1.15);
  filter: brightness(0.6);
}

/* Gradient overlay */
.activity-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    transparent 0%,
    transparent 50%,
    rgba(0, 0, 0, 0.8) 80%,
    rgba(0, 0, 0, 0.95) 100%
  );
  z-index: 1;
  pointer-events: none;
  transition: background 0.4s ease;
}

.activity-slide:hover::before {
  background: linear-gradient(180deg,
    rgba(66, 149, 90, 0.15) 0%,
    rgba(66, 149, 90, 0.1) 30%,
    rgba(0, 0, 0, 0.85) 70%,
    rgba(0, 0, 0, 0.95) 100%
  );
}

/* Green line accent on hover */
.activity-slide::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg,
    var(--color-green-light) 0%,
    var(--color-green-neon) 50%,
    var(--color-green-light) 100%
  );
  z-index: 3;
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.activity-slide:hover::after {
  transform: scaleX(1);
}

.activity-slide-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  font-family: var(--font-ethos);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  z-index: 2;
  transition: all 0.4s ease;
}

.activity-slide:hover .activity-slide-label {
  color: var(--color-green-light);
  text-shadow: 0 0 20px rgba(66, 149, 90, 0.5);
  transform: translateY(-5px);
}

/* Carousel Navigation Buttons */
.activities-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(66, 149, 90, 0.4);
  color: var(--color-green-light);
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.activities-carousel-btn:hover {
  background: rgba(66, 149, 90, 0.3);
  border-color: var(--color-green-light);
  box-shadow: 0 0 20px rgba(66, 149, 90, 0.4);
}

.activities-carousel-prev {
  left: 20px;
}

.activities-carousel-next {
  right: 20px;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .activity-slide {
    width: 200px;
    height: 280px;
  }

  .activities-carousel-btn {
    width: 40px;
    height: 40px;
  }

  .activities-carousel-prev {
    left: 10px;
  }

  .activities-carousel-next {
    right: 10px;
  }

  .activity-slide-label {
    font-size: 0.85rem;
    bottom: 15px;
    left: 15px;
  }
}

/* Old marquee styles (kept for backwards compatibility) */
.marquee {
  position: relative;
  overflow: hidden;
  padding: var(--space-lg) 0;
  background: linear-gradient(90deg,
    var(--color-black) 0%,
    rgba(10, 10, 10, 1) 20%,
    rgba(15, 15, 15, 1) 50%,
    rgba(10, 10, 10, 1) 80%,
    var(--color-black) 100%
  );
  border-top: 1px solid rgba(66, 149, 90, 0.2);
  border-bottom: 1px solid rgba(66, 149, 90, 0.2);
}

/* Gradient fade edges */
.marquee::before,
.marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 150px;
  z-index: 2;
  pointer-events: none;
}

.marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--color-black) 0%, transparent 100%);
}

.marquee::after {
  right: 0;
  background: linear-gradient(-90deg, var(--color-black) 0%, transparent 100%);
}

.marquee-content {
  display: flex;
  animation: marquee 30s linear infinite;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  padding-right: var(--space-lg);
  white-space: nowrap;
}

.marquee-text {
  font-family: var(--font-dasport);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.3);
}

.marquee-text.highlight {
  color: var(--color-green-light);
}

.marquee-dot {
  width: 8px;
  height: 8px;
  background: var(--color-green-light);
  border-radius: 50%;
}

/* ============================================
   Location Info Section
   ============================================ */

.location-info {
  margin-top: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(66, 149, 90, 0.2);
}

.location-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: stretch;
}

/* Map Container */
.location-map {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 400px;
  background: rgba(20, 20, 20, 1);
  border: 1px solid rgba(66, 149, 90, 0.3);
}

.map-container {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 400px;
}

.map-container iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: grayscale(100%) invert(92%) contrast(90%);
  opacity: 0.8;
  transition: filter 0.4s ease, opacity 0.4s ease;
}

.location-map:hover .map-container iframe {
  filter: grayscale(50%) invert(92%) contrast(95%);
  opacity: 1;
}

.map-pin {
  position: absolute;
  transform: translate(-50%, -100%);
  width: 50px;
  height: 50px;
  z-index: 10;
  cursor: pointer;
  display: block;
  text-decoration: none;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
  cursor: pointer;
}

/* Hover area buffer to prevent flickering */
.map-pin::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -15px;
  right: -15px;
  bottom: -10px;
  z-index: -1;
}

.map-pin svg {
  width: 100%;
  height: 100%;
  animation: pinBounce 2s ease-in-out infinite;
}

.map-pin:hover svg {
  animation: none;
  transform: scale(1.15);
  filter: drop-shadow(0 0 10px rgba(66, 149, 90, 0.6));
}

@keyframes pinBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Info Cards */
.location-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.info-card {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: linear-gradient(135deg, rgba(20, 20, 20, 0.9) 0%, rgba(10, 10, 10, 0.95) 100%);
  border: 1px solid rgba(66, 149, 90, 0.2);
  border-radius: 12px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
  transform: translateX(5px);
  border-color: rgba(66, 149, 90, 0.5);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(66, 149, 90, 0.1);
}

.info-card-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(66, 149, 90, 0.2) 0%, rgba(3, 100, 76, 0.15) 100%);
  border-radius: 12px;
  color: var(--color-green-light);
}

.info-card-icon svg {
  width: 24px;
  height: 24px;
}

.info-card-content {
  flex: 1;
}

.info-card-title {
  font-family: var(--font-ethos);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-green-light);
  margin-bottom: var(--space-xs);
}

.info-card-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-sm);
}

.info-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s ease, gap 0.3s ease;
}

.info-card-link:hover {
  color: var(--color-green-light);
  gap: 10px;
}

.info-card-link svg {
  width: 14px;
  height: 14px;
}

.info-card-link-green {
  color: var(--color-green-light);
  background: linear-gradient(135deg, rgba(66, 149, 90, 0.2) 0%, rgba(3, 100, 76, 0.15) 100%);
  padding: 8px 16px;
  border-radius: 8px;
  margin-top: var(--space-xs);
}

.info-card-link-green:hover {
  background: linear-gradient(135deg, rgba(66, 149, 90, 0.4) 0%, rgba(3, 100, 76, 0.3) 100%);
}

/* Hours Grid */
.hours-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-day {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.hours-time {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
}

/* Responsive */
@media (max-width: 900px) {
  .location-info-grid {
    grid-template-columns: 1fr;
  }

  .location-map {
    min-height: 300px;
  }

  .map-container {
    min-height: 300px;
  }
}

/* ============================================
   Units Section
   ============================================ */

.units-section {
  background: var(--gradient-dark);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-sm);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 0.6rem 1.5rem;
  background: linear-gradient(135deg, rgba(66, 149, 90, 0.15) 0%, rgba(3, 100, 76, 0.1) 100%);
  border: 1px solid rgba(66, 149, 90, 0.5);
  border-radius: var(--radius-xl);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--color-green-light);
  margin-bottom: var(--space-md);
  position: relative;
  overflow: hidden;
}

/* Animated shimmer on label */
.section-label::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: labelShimmer 3s ease-in-out infinite;
}

@keyframes labelShimmer {
  0%, 100% { left: -100%; }
  50% { left: 100%; }
}

/* Dot indicator before label text */
.section-label::after {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--color-green-light);
  border-radius: 50%;
  order: -1;
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
  50% { opacity: 0.5; transform: scale(0.8); }
}

.section-title {
  margin-bottom: var(--space-sm);
  position: relative;
}

/* Underline accent on section title */
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gradient-green);
  margin: var(--space-sm) auto 0;
  border-radius: 2px;
}

.section-subtitle {
  max-width: 600px;
  margin: 0 auto;
  color: var(--color-gray);
}

/* ============================================
   Map + Grid Combined Layout (New Design)
   ============================================ */
.units-map-grid-combined {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

/* Map Wrapper */
.units-map-wrapper {
  width: 100%;
}

.units-map-container {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(135deg, rgba(20, 20, 20, 1) 0%, rgba(10, 10, 10, 1) 100%);
  border: 1px solid rgba(66, 149, 90, 0.3);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.05),
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 100px rgba(66, 149, 90, 0.1);
}

.units-map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(100%) contrast(1.1) brightness(0.7);
  pointer-events: none; /* Disable map interaction so markers stay aligned */
}

/* Custom Map Overlay */
.map-overlay-custom {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.3) 0%,
    transparent 30%,
    transparent 70%,
    rgba(0, 0, 0, 0.5) 100%
  );
}

/* Map Marker Pins */
.map-marker-pin {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translate(-50%, -100%);
  pointer-events: auto;
  cursor: pointer;
  z-index: 20;
}

.pin-pulse {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: rgba(66, 149, 90, 0.3);
  border-radius: 50%;
  animation: pinPulse 2s ease-out infinite;
}

@keyframes pinPulse {
  0% {
    transform: translateX(-50%) scale(0.5);
  }
  100% {
    transform: translateX(-50%) scale(2);
    opacity: 0;
  }
}

.pin-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gray);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
  transition: all var(--transition-base);
}

.pin-icon svg {
  width: 100%;
  height: 100%;
}

.pin-icon.active {
  color: var(--color-green-light);
  transform: scale(1.2);
  filter: drop-shadow(0 0 10px rgba(66, 149, 90, 0.5));
}

.map-marker-pin:hover .pin-icon {
  color: var(--color-green-neon);
  transform: scale(1.3);
}

.pin-label {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 8px;
  padding: 6px 12px;
  background: rgba(0, 0, 0, 0.9);
  border: 1px solid rgba(66, 149, 90, 0.5);
  color: var(--color-white);
  font-family: var(--font-ethos);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition-base);
}

.pin-label::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: rgba(0, 0, 0, 0.9);
}

.map-marker-pin:hover .pin-label {
  transform: translateX(-50%) translateY(-4px);
}

/* Map Legend */
.map-legend {
  position: absolute;
  bottom: var(--space-md);
  left: var(--space-md);
  display: flex;
  gap: var(--space-md);
  padding: 12px 20px;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  z-index: 30;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-gray);
}

.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-gray);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.legend-dot.active {
  background: var(--color-green-light);
  border-color: var(--color-green-light);
  box-shadow: 0 0 10px rgba(66, 149, 90, 0.5);
}

/* Units Grid Below Map */
.units-grid-below {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-md);
}

/* Coming Soon Card Styling */
.unit-card-coming {
  opacity: 0.7;
}

.unit-card-coming:hover {
}

.unit-card-link.disabled {
  cursor: default;
}

.unit-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(30, 30, 30, 1) 0%,
    rgba(20, 20, 20, 1) 100%
  );
}

.placeholder-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.15);
  border: 2px dashed rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all var(--transition-base);
}

.placeholder-icon svg {
  width: 30px;
  height: 30px;
}

.unit-card-coming:hover .placeholder-icon {
  color: var(--color-green-light);
  border-color: var(--color-green-light);
}

/* Legacy styles (kept for backwards compatibility) */
.units-map-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: start;
}

.units-map {
  aspect-ratio: 4/3;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.units-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.map-markers {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.map-marker {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translate(-50%, -50%);
  pointer-events: auto;
  cursor: pointer;
}

.marker-dot {
  width: 16px;
  height: 16px;
  background: var(--color-green-light);
  border: 3px solid var(--color-white);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: all var(--transition-base);
}

.marker-dot.active {
  width: 20px;
  height: 20px;
  background: var(--color-green-accent);
  animation: pulseGlow 2s ease-in-out infinite;
}

.map-marker:hover .marker-dot {
  transform: scale(1.3);
}

.marker-label {
  margin-top: 4px;
  padding: 4px 8px;
  background: rgba(0, 0, 0, 0.8);
  color: var(--color-white);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  transform: translateY(-5px);
  transition: all var(--transition-base);
}

.map-marker:hover .marker-label {
  transform: translateY(0);
}

.units-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

/* Card Grid */
.units-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
}

/* Option C: Horizontal Carousel */
.units-carousel {
  display: flex;
  gap: var(--space-md);
  overflow-x: auto;
  padding: var(--space-sm) 0;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.units-carousel::-webkit-scrollbar {
  height: 4px;
}

.units-carousel::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}

.units-carousel::-webkit-scrollbar-thumb {
  background: var(--color-green-light);
  border-radius: 2px;
}

/* Unit Card */
.unit-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
}

.unit-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-green-light);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.unit-card-link {
  display: block;
}

.unit-card-media {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}

.unit-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.unit-card:hover .unit-card-media img {
  transform: scale(1.1);
}

.unit-card-badge {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  padding: 0.5rem 1rem;
  background: var(--gradient-green);
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border-radius: var(--radius-sm);
}

.unit-card-badge.coming-soon {
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid var(--color-gray);
}

.unit-card-body {
  padding: var(--space-md);
}

.unit-card-type-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(66, 149, 90, 0.2);
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-green-light);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-xs);
}

.unit-card-title {
  font-family: var(--font-dasport);
  font-size: 1.75rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: var(--space-xs);
}

.unit-card-location {
  font-size: 0.875rem;
  color: var(--color-gray);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.unit-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.unit-card-activities {
  font-size: 0.75rem;
  color: var(--color-gray);
}

.unit-card-activities strong {
  color: var(--color-green-light);
}

.unit-card-arrow {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(66, 149, 90, 0.1);
  border-radius: 50%;
  color: var(--color-green-light);
  transition: all var(--transition-base);
}

.unit-card:hover .unit-card-arrow {
  background: var(--color-green-light);
  color: var(--color-white);
}

@media (max-width: 992px) {
  .units-map-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   Manifesto Section
   ============================================ */

.manifesto-section {
  position: relative;
  overflow: hidden;
}

/* Decorative diagonal lines */
.manifesto-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    repeating-linear-gradient(
      135deg,
      transparent,
      transparent 100px,
      rgba(66, 149, 90, 0.02) 100px,
      rgba(66, 149, 90, 0.02) 101px
    );
  pointer-events: none;
  z-index: 0;
}

.manifesto-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.08;
  background-size: cover;
  background-position: center;
  z-index: -1;
  filter: grayscale(100%);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  position: relative;
  z-index: 1;
}

.manifesto-item {
  text-align: center;
  padding: var(--space-lg);
  background: linear-gradient(180deg, rgba(15, 15, 15, 0.8) 0%, rgba(10, 10, 10, 0.9) 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  position: relative;
}

.manifesto-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-green-light), transparent);
  opacity: 0;
  transition: all var(--transition-base);
}

.manifesto-item:hover {
  transform: translateY(-5px);
  border-color: rgba(66, 149, 90, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.manifesto-item:hover::before {
  width: 80%;
}

.manifesto-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(66, 149, 90, 0.2) 0%, rgba(3, 100, 76, 0.1) 100%);
  border: 1px solid rgba(66, 149, 90, 0.4);
  border-radius: 50%;
  position: relative;
}

/* Rotating border effect */
.manifesto-icon::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--color-green-light), transparent 120deg, transparent 240deg, var(--color-green-dark));
  opacity: 0;
  transition: opacity var(--transition-base);
}

.manifesto-item:hover .manifesto-icon::before {
  opacity: 0.5;
  animation: rotateBorder 4s linear infinite;
}

@keyframes rotateBorder {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.manifesto-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  background: inherit;
  border-radius: 50%;
  z-index: 1;
}

.manifesto-icon svg {
  width: 40px;
  height: 40px;
  fill: var(--color-green-light);
  position: relative;
  z-index: 2;
}

.manifesto-title {
  font-family: var(--font-dasport);
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-sm);
}

.manifesto-text {
  color: var(--color-gray);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.manifesto-highlight {
  margin-top: var(--space-xl);
  text-align: center;
  padding: var(--space-xl) var(--space-lg);
  background: linear-gradient(135deg, rgba(66, 149, 90, 0.1) 0%, rgba(3, 100, 76, 0.05) 100%);
  border: 1px solid rgba(66, 149, 90, 0.2);
  border-radius: var(--radius-lg);
  position: relative;
  z-index: 1;
}

/* Quote marks decoration */
.manifesto-highlight::before,
.manifesto-highlight::after {
  font-family: var(--font-realmuse);
  font-size: 5rem;
  color: var(--color-green-light);
  opacity: 0.2;
  position: absolute;
  line-height: 1;
}

.manifesto-highlight::before {
  content: '"';
  top: 20px;
  left: 30px;
}

.manifesto-highlight::after {
  content: '"';
  bottom: 0;
  right: 30px;
}

.manifesto-quote {
  font-family: var(--font-realmuse);
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  font-style: italic;
  color: var(--color-green-light);
  position: relative;
}

@media (max-width: 768px) {
  .manifesto-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   Footer
   ============================================ */

.footer {
  background: linear-gradient(180deg, #0a0a0a 0%, var(--color-black) 100%);
  border-top: 1px solid rgba(66, 149, 90, 0.2);
  padding: var(--space-xl) 0 var(--space-md);
  position: relative;
}

/* Top gradient line */
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--color-green-dark) 20%,
    var(--color-green-light) 50%,
    var(--color-green-dark) 80%,
    transparent 100%
  );
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  height: 60px;
  margin-bottom: var(--space-md);
}

.footer-tagline {
  font-family: var(--font-realmuse);
  font-style: italic;
  color: var(--color-gray);
  white-space: nowrap;
  margin-bottom: var(--space-md);
}

.footer-social {
  display: flex;
  gap: var(--space-sm);
}

.social-link {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all var(--transition-base);
}

.social-link:hover {
  background: var(--color-green-light);
  border-color: var(--color-green-light);
  transform: translateY(-3px);
}

.social-link svg {
  width: 20px;
  height: 20px;
  fill: var(--color-white);
}

.footer-column-title {
  font-family: var(--font-dasport);
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: var(--space-md);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-link {
  font-size: 0.9375rem;
  color: var(--color-gray);
  transition: color var(--transition-fast);
}

.footer-link:hover {
  color: var(--color-green-light);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.875rem;
  color: var(--color-gray);
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    max-width: none;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }
}

/* ============================================
   WhatsApp Floating Button
   ============================================ */

.whatsapp-float {
  position: fixed;
  bottom: var(--space-md);
  right: var(--space-md);
  z-index: 999;
}

.whatsapp-float a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--transition-base);
}

.whatsapp-float a:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: var(--color-white);
}

/* ============================================
   Unit Page Specific Styles
   ============================================ */

/* Unit Hero */
.unit-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding: var(--space-lg) 0;
  padding-top: 100px;
  overflow: hidden;
}

/* Hero Bottom Border Line */
.unit-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--color-green-dark) 20%,
    var(--color-green-light) 50%,
    var(--color-green-dark) 80%,
    transparent 100%
  );
  z-index: 10;
}

/* Hero Animations */
.hero-anim {
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp 0.8s ease-out forwards;
}

.hero-anim-1 { animation-delay: 0.2s; }
.hero-anim-2 { animation-delay: 0.4s; }
.hero-anim-3 { animation-delay: 0.6s; }
.hero-anim-4 { animation-delay: 0.8s; }

@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.unit-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.unit-hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.7) 50%,
    rgba(0, 0, 0, 0.95) 100%
  );
}

.unit-hero-content {
  position: relative;
  z-index: 1;
}

.unit-hero-centered {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Title Group - Badge above Title */
.unit-title-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.unit-type-badge {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  background: var(--gradient-green);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-xs);
}

/* Hero Row - Title + Countdown */
.unit-hero-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  margin-bottom: var(--space-sm);
  flex-wrap: wrap;
}

.unit-name {
  font-family: var(--font-dasport);
  font-size: clamp(3rem, 10vw, 6rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 0;
}

/* Countdown Inline */
.countdown-wrapper-inline {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.countdown-label-inline {
  font-size: 0.9rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: -0.3rem;
}

.countdown-compact {
  gap: var(--space-xs);
}

.countdown-compact .countdown-item {
  padding: var(--space-xs) var(--space-sm);
}

.countdown-compact .countdown-number {
  font-size: 2.5rem;
}

.countdown-compact .countdown-label {
  font-size: 0.7rem;
}

.unit-address {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  font-size: 1rem;
  color: #fff;
  margin-bottom: var(--space-sm);
}

.unit-cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-sm);
}

/* Activities Section */
.activities-section {
  background: var(--color-black);
  position: relative;
}

.activities-section::after {
  content: '';
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 900px;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--color-green-dark) 20%,
    var(--color-green-light) 50%,
    var(--color-green-dark) 80%,
    transparent 100%
  );
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-md);
}

.activity-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
}

.activity-card:hover {
  border-color: rgba(66, 149, 90, 0.3);
  transform: translateY(-4px);
}

.activity-image {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.activity-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.activity-card:hover .activity-image img {
  transform: scale(1.05);
}

.activity-content {
  padding: var(--space-md);
}

.activity-name {
  font-family: var(--font-dasport);
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: var(--space-xs);
}

.activity-description {
  font-size: 0.875rem;
  color: var(--color-gray);
  display: none;
}

.activity-card.expanded .activity-description {
  display: block;
  margin-top: var(--space-sm);
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.activity-toggle {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  margin-top: var(--space-sm);
  font-size: 0.75rem;
  color: var(--color-green-light);
  cursor: pointer;
  transition: color var(--transition-fast);
}

.activity-toggle:hover {
  color: var(--color-white);
}

.activity-toggle svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  transition: transform var(--transition-base);
}

.activity-card.expanded .activity-toggle svg {
  transform: rotate(180deg);
}

/* Activities Carousel */
.act-carousel-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: var(--space-lg);
  position: relative;
}

.act-carousel {
  flex: 1;
  overflow: hidden;
}

.act-carousel-track {
  display: flex;
  gap: 0;
  transition: transform 0.4s ease;
}

.act-item {
  flex: 0 0 250px;
  display: flex;
  flex-direction: column;
  background: var(--theme-bg);
  cursor: pointer;
}

.act-img {
  width: 100%;
  aspect-ratio: 356/457;
  overflow: hidden;
  position: relative;
}

.act-img::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    transparent 40%,
    rgba(3, 100, 76, 0.4) 70%,
    rgba(66, 149, 90, 0.7) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.act-item:hover .act-img::after {
  opacity: 1;
}

.act-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.4s ease;
}

.act-item:hover .act-img img {
  transform: scale(1.08);
  filter: brightness(1.1);
}

.act-info {
  padding: 1.25rem 1rem 1.5rem;
  text-align: left;
}

.act-name {
  font-family: var(--font-ethos);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--theme-text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 0.75rem 0;
}

.act-more {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-family: var(--font-ethos);
  font-size: 0.85rem;
  color: var(--color-green-light);
  cursor: pointer;
  transition: color 0.2s ease;
}

.act-more svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  transition: transform 0.2s ease;
}

.act-more:hover {
  color: var(--color-green-neon);
}

.act-more:hover svg {
  transform: translateY(2px);
}

.act-carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(66, 149, 90, 0.15);
  border: 1px solid rgba(66, 149, 90, 0.3);
  color: var(--color-green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.act-carousel-btn:hover {
  background: rgba(66, 149, 90, 0.3);
  border-color: var(--color-green-light);
}

.act-carousel-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.act-carousel-btn svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 1100px) {
  .act-item {
    flex: 0 0 200px;
  }
}

@media (max-width: 900px) {
  .act-item {
    flex: 0 0 180px;
  }
  .act-name {
    font-size: 1rem;
  }
  .act-more {
    font-size: 0.8rem;
  }
  .act-carousel-btn {
    width: 40px;
    height: 40px;
  }
  .act-carousel-btn svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 600px) {
  .act-item {
    flex: 0 0 160px;
  }
  .act-carousel-btn {
    width: 36px;
    height: 36px;
  }
  .act-carousel-wrapper {
    gap: 0.5rem;
  }
}

@media (max-width: 500px) {
  .act-item {
    flex: 0 0 140px;
  }
  .act-name {
    font-size: 0.85rem;
  }
  .act-info {
    padding: 0.875rem 0.75rem 1rem;
  }
}

/* Services Section */
.services-section {
  background: var(--gradient-dark);
  overflow: hidden;
  padding-top: var(--space-md);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
}

.service-card {
  position: relative;
  height: 350px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transform: skewY(-2deg);
  transition: all var(--transition-base);
}

.service-card:hover {
  transform: skewY(-2deg) scale(1.02);
}

.service-card-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: skewY(2deg);
}

.service-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.5;
  transition: opacity var(--transition-base);
}

.service-card:hover .service-image {
  opacity: 0.7;
}

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(transparent 40%, rgba(0,0,0,0.9));
}

.service-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-md);
}

.service-name {
  font-family: var(--font-dasport);
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: var(--space-xs);
}

.service-description {
  font-size: 0.875rem;
  color: var(--color-gray);
}

/* Pricing Section */
.pricing-section {
  background: var(--color-black);
  padding-top: var(--space-sm);
  padding-bottom: var(--space-lg);
}

.pricing-table {
  padding-top: 10px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  padding-top: 5px;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  border-color: var(--color-green-light);
  transform: translateY(-5px);
}

.pricing-card.popular {
  border-color: var(--color-green-light);
  position: relative;
}

.pricing-card.popular::before {
  content: 'MAIS POPULAR';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: var(--space-xs);
  background: var(--gradient-green);
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-align: center;
}

/* Limited Time Badge - Tempo Limitado */
.pricing-card.limited {
  border-color: #ff6b6b;
  position: relative;
}

.pricing-card.limited::before {
  content: 'TEMPO LIMITADO';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: var(--space-xs);
  background: linear-gradient(135deg, #ff6b6b, #ee5a24);
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-align: center;
}

.pricing-header {
  padding: var(--space-md);
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pricing-card.limited .pricing-header {
  padding-top: calc(var(--space-md) + 28px);
}

.pricing-card.popular .pricing-header {
  padding-top: var(--space-md);
}

/* Promo Badge */
.promo-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ff6b6b, #ee5a24);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.3em 0.8em;
  border-radius: 20px;
  margin-bottom: var(--space-sm);
  animation: pulse-promo 2s ease-in-out infinite;
}

@keyframes pulse-promo {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* Price Original (strikethrough) */
.price-original {
  font-size: 0.9rem;
  color: var(--color-gray);
  text-decoration: line-through;
  opacity: 0.7;
}

.pricing-name {
  font-family: var(--font-dasport);
  font-size: 1.125rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-sm);
  color: var(--color-green-light);
}

.pricing-price {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: var(--space-xs);
}

.price-label {
  font-size: 0.75rem;
  color: var(--color-gray);
  text-transform: uppercase;
}

.price-value {
  font-family: var(--font-dasport);
  font-size: 2rem;
}

.price-period {
  font-size: 0.875rem;
  color: var(--color-gray);
}

.pricing-body {
  padding: var(--space-md);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  flex-grow: 1;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--space-xs);
  font-size: 0.875rem;
}

.pricing-feature svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  fill: var(--color-green-light);
  margin-top: 2px;
}

.pricing-cta {
  width: 100%;
  text-align: center;
}

/* Price block - wraps each price row + CTA button */
.price-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.price-block:last-child {
  margin-bottom: 0;
}

.price-block .pricing-cta {
  width: 100%;
  max-width: 200px;
  text-align: center;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
}

.day-use-section {
  margin-top: var(--space-lg);
  padding: var(--space-md);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  text-align: center;
}

.day-use-price {
  font-family: var(--font-dasport);
  font-size: 2.5rem;
  color: var(--color-green-light);
  margin: var(--space-sm) 0;
}

/* Pass Section - Wellhub & Day Use */
.pass-section {
  margin-top: var(--space-lg);
}

.pass-row {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.pass-info {
  flex: 1;
}

.pass-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-gray);
  margin-bottom: 0.5rem;
}

.pass-title {
  font-family: var(--font-dasport);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin: 0 0 0.75rem 0;
  color: #fff;
  line-height: 1;
}

.pass-desc {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-gray);
  margin: 0;
  max-width: 450px;
}

/* Pass Card */
.pass-card {
  flex: 0 0 320px;
  background: #e8e8e8;
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pass-card-highlight {
  background: linear-gradient(145deg, #f0f0f0 0%, #e0e0e0 100%);
}

.pass-card-header {
  display: flex;
  justify-content: flex-end;
}

.pass-card-badge {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #666;
  background: rgba(0, 0, 0, 0.08);
  padding: 0.4em 0.8em;
  border-radius: 4px;
}

.pass-card-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.pass-card-icon {
  color: var(--color-green);
}

.pass-card-text {
  font-size: 1rem;
  color: #333;
  line-height: 1.3;
}

.pass-card-text strong {
  font-family: var(--font-dasport);
  font-size: 1.5rem;
  display: block;
  color: #1a1a1a;
}

.pass-card-pricing {
  text-align: right;
  flex: 1;
}

.pass-card-from {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #777;
  margin-bottom: 0.25rem;
}

.pass-card-price {
  font-size: 1rem;
  color: #333;
}

.pass-card-price strong {
  font-family: var(--font-dasport);
  font-size: 3.5rem;
  line-height: 1;
  color: #1a1a1a;
}

.pass-card-btn {
  display: block;
  width: 100%;
  padding: 0.9rem 1.5rem;
  background: transparent;
  color: #333;
  font-family: var(--font-ethos);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
  text-decoration: none;
  border: 2px solid #333;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.pass-card-btn:hover {
  background: #333;
  color: #fff;
}

.pass-card-btn-primary {
  background: var(--color-green);
  color: #fff;
  border-color: var(--color-green);
}

.pass-card-btn-primary:hover {
  background: var(--color-green-dark);
  border-color: var(--color-green-dark);
}

@media (max-width: 768px) {
  .pass-row {
    flex-direction: column;
    text-align: center;
    gap: var(--space-md);
  }

  .pass-desc {
    max-width: 100%;
  }

  .pass-card {
    flex: none;
    width: 100%;
    max-width: 350px;
  }
}

/* Benefit Sections - Wellhub & Day Use (Horizontal Layout) */
.benefit-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: var(--space-md);
  padding: var(--space-md) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Left Side - Logo/Title + Text */
.benefit-left {
  flex: 0 0 420px;
  max-width: 420px;
}

.benefit-logo {
  height: 48px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 0.5rem;
}

.benefit-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.1rem;
}

.benefit-title {
  font-family: var(--font-dasport);
  font-size: 3.5rem;
  color: #fff;
  line-height: 1;
  margin: 0 0 1rem 0;
  text-transform: uppercase;
}

.benefit-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin: 0;
  max-width: 380px;
}

.benefit-desc strong {
  color: var(--color-green-light);
}

/* Right Side - Card/Button */
.benefit-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.benefit-right-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  min-width: 240px;
}

/* Wellhub Action - Simple Style */
.wellhub-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-right: 3rem;
}

.wellhub-plan-badge {
  display: inline-block;
  font-family: var(--font-ethos);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-green-light);
  background: rgba(66, 149, 90, 0.15);
  border: 1px solid rgba(66, 149, 90, 0.3);
  padding: 0.5rem 1.25rem;
  border-radius: 20px;
}

.wellhub-hint {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.02em;
}

/* Day Use Section - Different Background */
.dayuse-section {
  background: linear-gradient(180deg, #0a0a0a 0%, #111111 50%, #0d0d0d 100%);
  position: relative;
  padding-top: var(--space-md);
}

.dayuse-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(66, 149, 90, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.dayuse-section .benefit-section {
  border-top: none;
  margin-top: 0;
}

/* Space Gallery Wrapper - Flexbox Layout */
.sg-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: var(--space-lg);
  position: relative;
}

/* Navigation Buttons - Outside Gallery (like activities carousel) */
.sg-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(66, 149, 90, 0.15);
  border: 1px solid rgba(66, 149, 90, 0.3);
  color: var(--color-green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.sg-nav-btn:hover {
  background: rgba(66, 149, 90, 0.3);
  border-color: var(--color-green-light);
}

.sg-nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.sg-nav-btn svg {
  width: 24px;
  height: 24px;
}

/* Space Gallery - Nosso Espaço (Simple Gym Style) */
.space-gallery {
  flex: 1;
  position: relative;
  overflow: hidden;
  padding: 0;
}

/* Legacy Navigation Arrows - Fixed on sides (deprecated) */
.sg-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 10;
}

.sg-arrow-left {
  left: 85px;
}

.sg-arrow-right {
  right: 85px;
}

.sg-arrow:hover {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

.sg-arrow svg {
  width: 18px;
  height: 18px;
}

/* Gallery Track */
.sg-track {
  display: flex;
  align-items: stretch;
  gap: 8px;
  transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
  will-change: transform;
}

/* Slides - All Same Size (Simple Gym Style) */
.sg-slide {
  position: relative;
  flex-shrink: 0;
  width: 280px;
  height: 360px;
  border-radius: 12px;
  overflow: hidden;
}

.sg-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Remove old short/tall classes - all same size now */
.sg-short,
.sg-tall {
  width: 280px;
  height: 360px;
}

/* Label - Fixed position over gallery */
.sg-label {
  position: absolute;
  top: 20px;
  left: 90px;
  font-family: var(--font-ethos);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.9);
  z-index: 15;
  pointer-events: none;
}

/* Button - Fixed position over gallery */
.sg-btn {
  position: absolute;
  bottom: 20px;
  right: 90px;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--color-green-light) 0%, var(--color-green-dark) 100%);
  color: #fff;
  font-family: var(--font-ethos);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  z-index: 15;
  box-shadow: 0 4px 15px rgba(66, 149, 90, 0.3);
}

.sg-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(66, 149, 90, 0.5);
}

/* Responsive */
@media (max-width: 1200px) {
  .sg-slide,
  .sg-short,
  .sg-tall {
    width: 240px;
    height: 310px;
  }
  .space-gallery {
    padding: 0 60px;
  }
  .sg-arrow-left {
    left: 70px;
  }
  .sg-arrow-right {
    right: 70px;
  }
  .sg-label {
    left: 75px;
  }
  .sg-btn {
    right: 75px;
  }
}

@media (max-width: 900px) {
  .sg-slide,
  .sg-short,
  .sg-tall {
    width: 200px;
    height: 260px;
  }
  .sg-slide {
    border-radius: 10px;
  }
  .sg-wrapper {
    gap: 0.75rem;
  }
  .sg-nav-btn {
    width: 40px;
    height: 40px;
  }
  .sg-nav-btn svg {
    width: 20px;
    height: 20px;
  }
  .sg-label {
    font-size: 0.65rem;
    top: 16px;
    left: 20px;
  }
  .sg-btn {
    font-size: 0.65rem;
    padding: 10px 18px;
    bottom: 16px;
    right: 20px;
  }
}

@media (max-width: 600px) {
  .sg-slide,
  .sg-short,
  .sg-tall {
    width: 160px;
    height: 210px;
  }
  .sg-wrapper {
    gap: 0.5rem;
  }
  .sg-nav-btn {
    width: 36px;
    height: 36px;
  }
  .sg-nav-btn svg {
    width: 18px;
    height: 18px;
  }
  .sg-track {
    gap: 6px;
  }
  .sg-label {
    left: 12px;
    font-size: 0.55rem;
  }
  .sg-btn {
    right: 12px;
    font-size: 0.55rem;
    padding: 8px 14px;
  }
}

/* Day Use Card - Light Style (like example) */
.dayuse-card {
  background: linear-gradient(145deg, #d8d8d8 0%, #c8c8c8 100%);
  border-radius: 24px;
  padding: 0;
  min-width: 340px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.dayuse-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.75rem 1.75rem 1.25rem;
  gap: 1.5rem;
}

.dayuse-card-title {
  font-family: var(--font-ethos);
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.1;
  margin: 0;
}

.dayuse-card-info {
  font-size: 0.8rem;
  color: #666;
  line-height: 1.4;
  margin: 0;
  max-width: 140px;
  text-align: right;
}

.dayuse-card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 1rem 1.75rem 1.75rem;
  gap: 1.5rem;
}

.dayuse-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  background: var(--gradient-green);
  color: #fff;
  font-family: var(--font-ethos);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  border: none;
  border-radius: 14px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 15px rgba(66, 149, 90, 0.3);
}

.dayuse-card-btn::after {
  content: '';
  position: absolute;
  inset: -3px;
  background: linear-gradient(135deg, var(--color-green-neon), var(--color-green-light), var(--color-green-dark));
  border-radius: inherit;
  z-index: -1;
  opacity: 0;
  transition: opacity var(--transition-base);
  filter: blur(8px);
}

.dayuse-card-btn:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: var(--shadow-lg), var(--shadow-glow-intense);
}

.dayuse-card-btn:hover::after {
  opacity: 1;
}

.dayuse-card-price {
  display: flex;
  align-items: flex-end;
  gap: 0.35rem;
}

.dayuse-price-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #666;
  line-height: 1.2;
  text-align: right;
  padding-bottom: 0.5rem;
}

.dayuse-price-value {
  font-family: var(--font-ethos);
  font-size: 4.5rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 0.85;
}

.benefit-price-display {
  text-align: center;
}

.benefit-price-from {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.15rem;
}

.benefit-price-value {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
}

.benefit-price-value strong {
  font-family: var(--font-dasport);
  font-size: 4rem;
  color: #fff;
  line-height: 1;
}

.benefit-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.1rem 2.5rem;
  background: var(--gradient-green);
  color: #fff;
  font-family: var(--font-ethos);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  border: none;
  border-radius: 12px;
  transition: all 0.3s ease;
  white-space: nowrap;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 15px rgba(66, 149, 90, 0.3);
}

.benefit-action-btn::after {
  content: '';
  position: absolute;
  inset: -3px;
  background: linear-gradient(135deg, var(--color-green-neon), var(--color-green-light), var(--color-green-dark));
  border-radius: inherit;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.benefit-action-btn:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 8px 25px rgba(66, 149, 90, 0.5), 0 0 30px rgba(94, 255, 138, 0.3);
}

.benefit-action-btn:hover::after {
  opacity: 1;
}

.benefit-action-btn-solid {
  background: var(--color-green);
  border-color: var(--color-green);
  width: 100%;
}

.benefit-action-btn-solid:hover {
  background: var(--color-green-dark);
  border-color: var(--color-green-dark);
}

/* Benefit Section Responsive */
@media (max-width: 768px) {
  .benefit-section {
    flex-direction: column;
    text-align: center;
    gap: var(--space-lg);
  }

  .benefit-left {
    flex: 1 1 auto;
    max-width: 100%;
  }

  .benefit-logo {
    margin-left: auto;
    margin-right: auto;
  }

  .benefit-desc {
    max-width: 100%;
  }

  .benefit-right-card {
    width: 100%;
    max-width: 280px;
  }

  .dayuse-card {
    min-width: unset;
    width: 100%;
    max-width: 340px;
  }

  .dayuse-card-top,
  .dayuse-card-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }

  .dayuse-card-info {
    text-align: center;
    max-width: 100%;
  }

  .dayuse-card-price {
    justify-content: center;
  }

  .dayuse-price-label {
    text-align: center;
  }
}

@media (max-width: 992px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
  }

  .pricing-card.popular {
    transform: none;
  }
}

@media (max-width: 768px) {
  .pricing-grid {
    gap: 0.75rem;
  }

  .pricing-header {
    padding: 1.1rem;
  }

  .pricing-name {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .price-block {
    margin-bottom: 0.5rem;
  }
  
  .price-block .pricing-cta {
    max-width: 160px;
    padding: 0.45rem 0.75rem;
    font-size: 0.75rem;
  }
  
  .promo-cta {
    padding: 0.875rem 1.5rem;
  }
  
  .promo-cta-text {
    font-size: 0.95rem;
  }
  
  .promo-cta-subtext {
    font-size: 0.7rem;
  }
  
  .promo-cta-compact {
    padding: 0.5rem 1rem;
    gap: 0.5rem;
  }
  
  .promo-cta-compact .badge {
    font-size: 0.55rem;
    padding: 0.15rem 0.4rem;
  }
  
  .promo-cta-compact .text {
    font-size: 0.8rem;
    white-space: normal;
  }
}

/* Promo CTA Button - Compacto */
.promo-cta-compact {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1.25rem;
  background: linear-gradient(135deg, #03644C 0%, #42955A 100%);
  border: 1px solid rgba(94, 255, 138, 0.4);
  border-radius: 30px;
  text-decoration: none;
  color: #fff;
  font-family: var(--font-ethos);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(66, 149, 90, 0.3);
}

.promo-cta-compact::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.promo-cta-compact:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(94, 255, 138, 0.4);
  border-color: #5eff8a;
}

.promo-cta-compact:hover::before {
  left: 100%;
}

.promo-cta-compact .badge {
  background: #ff6b6b;
  color: #fff;
  font-size: 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.2rem 0.5rem;
  border-radius: 12px;
  white-space: nowrap;
}

.promo-cta-compact .text {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.promo-cta-compact .arrow {
  font-size: 1rem;
  margin-left: 0.25rem;
  transition: transform 0.3s ease;
}

.promo-cta-compact:hover .arrow {
  transform: translateX(4px);
}

/* Promo CTA Button - Super Destaque */
.promo-cta {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #03644C 0%, #42955A 50%, #5eff8a 100%);
  border: 2px solid rgba(94, 255, 138, 0.5);
  border-radius: 50px;
  box-shadow: 0 0 30px rgba(66, 149, 90, 0.4), inset 0 0 20px rgba(255, 255, 255, 0.1);
  text-decoration: none;
  color: #fff;
  position: relative;
  overflow: hidden;
  animation: promoPulse 2s ease-in-out infinite;
  transition: all 0.3s ease;
}

.promo-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 70%
  );
  animation: promoShine 3s infinite;
}

.promo-cta:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 0 50px rgba(94, 255, 138, 0.6), inset 0 0 30px rgba(255, 255, 255, 0.2);
  border-color: #5eff8a;
}

.promo-cta-badge {
  display: inline-block;
  background: #ff6b6b;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 2px 10px rgba(255, 107, 107, 0.4);
}

.promo-cta-text {
  font-family: var(--font-dasport);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.promo-cta-subtext {
  font-size: 0.75rem;
  opacity: 0.9;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

@keyframes promoPulse {
  0%, 100% {
    box-shadow: 0 0 30px rgba(66, 149, 90, 0.4), inset 0 0 20px rgba(255, 255, 255, 0.1);
  }
  50% {
    box-shadow: 0 0 50px rgba(94, 255, 138, 0.6), inset 0 0 30px rgba(255, 255, 255, 0.2);
  }
}

@keyframes promoShine {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

/* FAQ Section */
.faq-section {
  background: #000000;
  padding: var(--space-lg) 0 8rem 0;
}

.faq-section .section-header {
  margin-bottom: var(--space-sm);
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

@media (max-width: 768px) {
  .faq-list {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}

.faq-item {
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  transition: all var(--transition-fast);
  height: fit-content;
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(66, 149, 90, 0.2);
}

.faq-item.active {
  background: rgba(66, 149, 90, 0.05);
  border-color: rgba(66, 149, 90, 0.3);
  border-radius: 8px 8px 0 0;
  z-index: 10;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  text-align: left;
  font-family: var(--font-ethos);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-white);
  cursor: pointer;
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--color-green-light);
}

.faq-icon {
  width: 16px;
  height: 16px;
  position: relative;
  flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--color-green-light);
  transition: transform var(--transition-base);
  border-radius: 1px;
}

.faq-icon::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 1.5px;
  transform: translateY(-50%);
}

.faq-icon::after {
  top: 0;
  left: 50%;
  width: 1.5px;
  height: 100%;
  transform: translateX(-50%);
}

.faq-item.active .faq-icon::after {
  transform: translateX(-50%) rotate(90deg);
}

.faq-answer {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #0a0a0a;
  border: 1px solid rgba(66, 149, 90, 0.3);
  border-top: none;
  border-radius: 0 0 8px 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.25s ease;
  z-index: 20;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.faq-item.active .faq-answer {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.faq-answer-inner {
  padding: 1rem;
  color: var(--color-gray);
  font-size: 0.8rem;
  line-height: 1.6;
}

/* App Download Section */
.app-section {
  background: #1a1a1a;
  overflow: hidden;
}

.app-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.app-image {
  position: relative;
  overflow: hidden;
  max-height: 320px;
}

.app-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.app-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-md) var(--space-xl);
  background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
}

.app-title {
  font-family: var(--font-dasport);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: var(--space-sm);
  color: #fff;
}

.app-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-md);
  max-width: 400px;
}

.app-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.app-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.app-store-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-green-light);
  transform: translateY(-2px);
}

.app-store-btn svg {
  flex-shrink: 0;
}

.app-store-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.2;
}

.app-store-text span {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.8;
}

.app-store-text strong {
  font-size: 1rem;
  font-weight: 600;
}

@media (max-width: 768px) {
  .app-container {
    grid-template-columns: 1fr;
  }

  .app-image {
    height: 250px;
  }

  .app-content {
    padding: var(--space-lg);
    text-align: center;
    align-items: center;
  }

  .app-description {
    text-align: center;
  }

  .app-buttons {
    justify-content: center;
  }
}

/* ============================================
   Utility Classes
   ============================================ */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }

.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

.hidden { display: none !important; }
.visible { display: block !important; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================
   COMPREHENSIVE MOBILE RESPONSIVE STYLES
   ============================================ */

/* Tablet Styles (992px and below) */
@media (max-width: 992px) {
  :root {
    --space-lg: 3rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
  }

  .container {
    padding: 0 var(--space-sm);
  }

  /* Units Section */
  .units-map-container {
    height: 350px;
  }

  .units-grid-below {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-sm);
  }

  .unit-card-coming:nth-child(5) {
    display: none;
  }

  .units-map-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .units-map {
    aspect-ratio: 16/9;
    min-height: 300px;
  }

  /* Manifesto */
  .manifesto-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
  }

  .footer-brand {
    grid-column: 1 / -1;
    max-width: 100%;
    text-align: center;
    margin-bottom: var(--space-md);
  }

  .footer-brand .social-links {
    justify-content: center;
  }
}

/* Mobile Styles (768px and below) */
@media (max-width: 768px) {
  :root {
    --space-lg: 2.5rem;
    --space-xl: 3.5rem;
    --space-2xl: 5rem;
  }

  /* Typography scaling */
  .headline-xl {
    font-size: clamp(2rem, 10vw, 4rem);
  }

  .headline-lg {
    font-size: clamp(1.5rem, 7vw, 2.5rem);
  }

  .headline-md {
    font-size: clamp(1.25rem, 5vw, 1.75rem);
  }

  /* Header */
  .logo img {
    height: 40px;
  }

  /* Hero Section */
  .hero {
    padding-top: 70px;
    min-height: 100svh;
  }

  .hero::before {
    height: 80px;
  }

  .hero-diagonal-line {
    height: 80px;
  }

  .hero-diagonal-line::before {
    height: 3px;
    transform: skewY(-4deg);
  }

  .hero::after {
    width: 300px;
    height: 300px;
    top: 10%;
    right: -20%;
  }

  .hero-content {
    padding: var(--space-sm);
    transform: translateY(-165px);
  }

  .hero-logo {
    max-width: 200px;
    margin-bottom: var(--space-sm);
  }

  .hero-title {
    font-size: clamp(2rem, 12vw, 3.5rem);
  }

  .hero-tagline {
    font-size: 1.4rem;
    margin-bottom: var(--space-md);
  }

  /* Countdown */
  .countdown {
    gap: var(--space-xs);
    margin: var(--space-md) 0;
  }

  .countdown-item {
    min-width: 65px;
  }

  .countdown-item:not(:last-child)::after {
    font-size: 1.5rem;
    right: -8px;
  }

  .countdown-number {
    width: 65px;
    height: 75px;
    font-size: 2.3rem;
  }

  .countdown-label {
    font-size: 0.7rem;
  }

  /* Hide desktop cards on mobile */
  .unit-selector {
    display: none;
  }

  /* Show mobile unit swiper */
  .mobile-unit-swiper {
    display: block !important;
    margin-top: -415px !important;
    margin-bottom: 2rem !important;
  }

  /* Push "Nossos Serviços" heading below the hero's bottom edge */
  .mobile-unit-swiper + .section-header {
    margin-top: 126px;
  }

  /* Marquee */
  .marquee {
    padding: var(--space-md) 0;
  }

  .marquee::before,
  .marquee::after {
    width: 50px;
  }

  .marquee-text {
    font-size: 1.25rem;
  }

  /* Section Headers */
  .section {
    padding: var(--space-lg) 0;
  }

  .section-lg {
    padding: var(--space-xl) 0;
  }

  .section-header {
    margin-bottom: var(--space-lg);
  }

  .section-label {
    font-size: 0.625rem;
    padding: 0.5rem 1rem;
  }

  .section-title::after {
    width: 40px;
    height: 2px;
  }

  /* Option Selector */
  .option-selector {
    flex-wrap: wrap;
    gap: var(--space-xs);
  }

  .option-btn {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
  }

  /* Units Display */
  .units-map-grid-combined {
    gap: var(--space-lg);
  }

  .units-map-container {
    height: 300px;
    border-radius: var(--radius-lg);
  }

  .map-container-styled {
    overflow: hidden;
  }

  .map-legend {
    bottom: var(--space-sm);
    left: var(--space-sm);
    padding: 8px 12px;
    gap: var(--space-sm);
  }

  .legend-item {
    font-size: 0.65rem;
  }

  .legend-dot {
    width: 8px;
    height: 8px;
  }

  .pin-icon {
    width: 24px;
    height: 24px;
  }

  .pin-label {
    font-size: 0.65rem;
    padding: 4px 8px;
  }

  .units-grid-below {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
  }

  .unit-card-coming:nth-child(5) {
    display: none;
  }

  .units-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .units-carousel {
    padding: var(--space-xs) 0;
  }

  .unit-card {
    min-width: 280px;
  }

  /* Manifesto */
  .manifesto-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .manifesto-item {
    padding: var(--space-md);
  }

  .manifesto-icon {
    width: 70px;
    height: 70px;
  }

  .manifesto-icon svg {
    width: 32px;
    height: 32px;
  }

  .manifesto-highlight {
    padding: var(--space-md);
  }

  .manifesto-highlight::before,
  .manifesto-highlight::after {
    font-size: 3rem;
  }

  .manifesto-highlight::before {
    top: 10px;
    left: 15px;
  }

  .manifesto-highlight::after {
    bottom: -10px;
    right: 15px;
  }

  .manifesto-quote {
    font-size: 1.125rem;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    margin-bottom: var(--space-md);
  }

  .footer-logo {
    margin: 0 auto var(--space-sm);
  }

  .footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-lg);
  }

  .social-links {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }

  /* Unit Pages */
  .unit-hero {
    min-height: 60vh;
    padding-top: 100px;
  }

  .unit-hero-content {
    text-align: center;
  }

  .unit-name {
    font-size: clamp(2.5rem, 15vw, 4rem);
  }

  .unit-hero-row {
    flex-direction: column;
    gap: var(--space-md);
  }

  .unit-title-group {
    align-items: center;
    text-align: center;
  }

  .countdown-wrapper-inline {
    width: 100%;
  }

  .unit-cta-buttons {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .unit-cta-buttons .btn {
    width: 100%;
  }

  /* Activities Grid */
  .activities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
  }

  .activity-card {
    min-height: 200px;
  }

  .activity-name {
    font-size: 1rem;
  }

  /* Services Grid */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
  }

  /* Buttons */
  .btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.875rem;
  }

  .btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

/* Small Mobile Styles (480px and below) */
@media (max-width: 480px) {
  :root {
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
  }

  /* Hero */
  .hero-title {
    font-size: clamp(1.75rem, 14vw, 3rem);
  }

  .hero-logo {
    max-width: 160px;
  }

  /* Countdown - even smaller */
  .countdown-item {
    min-width: 55px;
  }

  .countdown-item:not(:last-child)::after {
    font-size: 1.25rem;
    right: -6px;
  }

  .countdown-number {
    width: 55px;
    height: 65px;
    font-size: 1.6rem;
  }

  /* Unit Cards */
  .unit-selector-card {
    height: 180px;
  }

  .unit-card-name {
    font-size: 1.25rem;
  }

  /* Map + Grid on small screens */
  .units-map-container {
    height: 250px;
  }

  .units-grid-below {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }

  .unit-card-coming:nth-child(4),
  .unit-card-coming:nth-child(5) {
    display: none;
  }

  .map-marker-pin {
    transform: translate(-50%, -100%) scale(0.8);
  }

  .map-legend {
    padding: 6px 10px;
    gap: 12px;
    font-size: 0.6rem;
  }

  /* Activities */
  .activities-grid {
    grid-template-columns: 1fr;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
  }

  /* Pricing */
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card {
    margin: 0;
  }

  .pricing-card.popular {
    transform: none;
  }

  /* FAQ */
  .faq-list {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .faq-question {
    font-size: 0.8rem;
    padding: 0.75rem 0.875rem;
  }

  .faq-answer-inner {
    padding: 0 0.875rem 0.75rem 0.875rem;
    font-size: 0.75rem;
  }

  /* Footer */
  .footer-links {
    flex-direction: column;
    gap: var(--space-md);
  }

  .footer-column {
    text-align: center;
  }
}

/* Very Small Mobile (360px and below) */
@media (max-width: 360px) {
  .container {
    padding: 0 var(--space-xs);
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .countdown-item {
    min-width: 60px;
  }

  .countdown-number {
    width: 50px;
    height: 60px;
    font-size: 1.8rem;
  }

  .btn {
    padding: 0.75rem 1rem;
    font-size: 0.8125rem;
  }
}

/* Landscape Mobile Orientation */
@media (max-width: 896px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding: 100px 0 var(--space-lg);
  }

  .hero-logo {
    max-width: 150px;
  }

  .countdown {
    margin: var(--space-sm) 0;
  }

  .unit-selector {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .unit-selector-card {
    width: calc(33.333% - var(--space-sm));
    height: 160px;
  }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
  /* Larger tap targets */
  .nav-link {
    padding: var(--space-sm) var(--space-xs);
  }

  .faq-question {
    padding: 0.875rem 1rem;
  }

  /* Remove hover effects on mobile */
  .unit-selector-card:hover {
    transform: none;
  }

  .unit-card:hover {
    transform: none;
  }

  .manifesto-item:hover {
    transform: none;
  }

  .btn:hover {
    transform: none;
  }

  .btn-primary:hover::after {
    opacity: 0;
  }
}

/* Bug 1 Fix — Header invisible during loader on mobile, fades in after */
@media (max-width: 768px) {
  body.is-loading .header {
    opacity: 0;
    pointer-events: none;
  }
  body:not(.is-loading) .header {
    opacity: 1;
    transition: opacity 0.4s ease;
  }
}

/* Safe Area Insets for notched devices */
@supports (padding: max(0px)) {
  .header {
    padding-left: max(var(--space-sm), env(safe-area-inset-left));
    padding-right: max(var(--space-sm), env(safe-area-inset-right));
  }

  .footer {
    padding-bottom: max(var(--space-md), env(safe-area-inset-bottom));
  }

  .nav {
    padding-bottom: env(safe-area-inset-bottom);
  }
}

/* ============================================
   Light Mode Comprehensive Overrides
   ============================================ */

[data-theme="light"] {
  /* Text colors */
  color-scheme: light;
}

/* Hero Section - Light Mode */
[data-theme="light"] .hero::before {
  background: var(--theme-bg);
  opacity: 0.7;
}

[data-theme="light"] .hero-slideshow .hero-slide {
  filter: brightness(1.1) saturate(0.85);
}

[data-theme="light"] .hero-diagonal-line {
  background: rgba(66, 149, 90, 0.5);
}

[data-theme="light"] .hero-overlay {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.25) 0%,
    rgba(255, 255, 255, 0.45) 40%,
    rgba(248, 249, 250, 0.88) 100%
  );
}

[data-theme="light"] .hero-tagline {
  color: var(--theme-text-secondary);
}

[data-theme="light"] .hero-title,
[data-theme="light"] .headline-xl,
[data-theme="light"] .headline-lg,
[data-theme="light"] .headline-md {
  color: var(--theme-text);
}

/* Unit Selector Cards - Light Mode */
[data-theme="light"] .unit-selector-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 240, 240, 0.98) 100%);
  border-color: var(--theme-border);
  box-shadow: var(--shadow-md);
}

[data-theme="light"] .unit-selector-card:hover {
  box-shadow: var(--shadow-xl), 0 0 30px rgba(66, 149, 90, 0.2);
}

[data-theme="light"] .unit-card-content {
  background: linear-gradient(transparent, rgba(255, 255, 255, 0.95));
}

[data-theme="light"] .unit-card-name {
  color: var(--theme-text);
}

[data-theme="light"] .unit-card-status {
  color: var(--theme-text-secondary);
}

/* Countdown - Light Mode */
[data-theme="light"] .countdown-number {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 240, 240, 0.98) 100%);
  border-color: rgba(66, 149, 90, 0.4);
  box-shadow: var(--shadow-md), 0 0 20px rgba(66, 149, 90, 0.1);
  color: var(--color-green-dark);
}

[data-theme="light"] .countdown-label {
  color: #FFFFFF;
}

.countdown-wrapper .body-md {
  color: #FFFFFF;
}

[data-theme="light"] .countdown-wrapper .body-md {
  color: #FFFFFF;
}

/* Marquee - Light Mode */
[data-theme="light"] .marquee {
  background: linear-gradient(90deg,
    var(--theme-bg) 0%,
    var(--theme-bg-secondary) 20%,
    var(--theme-bg-tertiary) 50%,
    var(--theme-bg-secondary) 80%,
    var(--theme-bg) 100%
  );
  border-color: rgba(66, 149, 90, 0.3);
}

[data-theme="light"] .marquee::before {
  background: linear-gradient(90deg, var(--theme-bg) 0%, transparent 100%);
}

[data-theme="light"] .marquee::after {
  background: linear-gradient(-90deg, var(--theme-bg) 0%, transparent 100%);
}

[data-theme="light"] .marquee-text {
  color: rgba(0, 0, 0, 0.25);
}

/* Units Section - Light Mode */
[data-theme="light"] .units-section {
  background: var(--gradient-dark);
}

[data-theme="light"] .section-subtitle {
  color: var(--theme-text-secondary);
}

/* Unit Card - Light Mode */
[data-theme="light"] .unit-card {
  background: rgba(255, 255, 255, 0.9);
  border-color: var(--theme-border);
  box-shadow: var(--shadow-sm);
}

[data-theme="light"] .unit-card:hover {
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

[data-theme="light"] .unit-card-title {
  color: var(--theme-text);
}

[data-theme="light"] .unit-card-location {
  color: var(--theme-text-secondary);
}

[data-theme="light"] .unit-card-footer {
  border-color: var(--theme-border);
}

[data-theme="light"] .unit-card-activities {
  color: var(--theme-text-secondary);
}

/* Placeholder cards - Light Mode */
[data-theme="light"] .unit-card-placeholder {
  background: linear-gradient(135deg, rgba(233, 236, 239, 1) 0%, rgba(248, 249, 250, 1) 100%);
}

[data-theme="light"] .unit-card-placeholder .placeholder-icon {
  background: rgba(66, 149, 90, 0.12);
}

[data-theme="light"] .unit-card-placeholder .placeholder-icon svg {
  fill: var(--color-green-light);
}

[data-theme="light"] .unit-card-coming .unit-card-media {
  background: linear-gradient(135deg, rgba(233, 236, 239, 1) 0%, rgba(220, 220, 220, 1) 100%);
}

[data-theme="light"] .unit-card-coming .unit-card-badge {
  background: rgba(0, 0, 0, 0.6);
}

/* Map - Light Mode */
[data-theme="light"] .units-map-container {
  background: linear-gradient(135deg, rgba(240, 240, 240, 1) 0%, rgba(250, 250, 250, 1) 100%);
}

[data-theme="light"] .units-map-container iframe {
  filter: grayscale(30%) contrast(1.1) brightness(1);
}

[data-theme="light"] .map-legend {
  background: rgba(255, 255, 255, 0.95);
  border-color: var(--theme-border);
}

[data-theme="light"] .legend-item {
  color: var(--theme-text-secondary);
}

/* Manifesto Section - Light Mode */
[data-theme="light"] .manifesto-section {
  background: linear-gradient(180deg, var(--theme-bg) 0%, var(--theme-bg-tertiary) 100%);
}

[data-theme="light"] .manifesto-bg {
  opacity: 0.08;
  filter: grayscale(100%) brightness(1.5);
}

[data-theme="light"] .manifesto-item {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(245, 245, 245, 0.98) 100%);
  border-color: var(--theme-border);
  box-shadow: var(--shadow-sm);
}

[data-theme="light"] .manifesto-icon {
  background: linear-gradient(135deg, rgba(66, 149, 90, 0.15) 0%, rgba(66, 149, 90, 0.1) 100%);
}

[data-theme="light"] .manifesto-icon svg {
  fill: var(--color-green-light);
}

[data-theme="light"] .manifesto-title {
  color: var(--theme-text);
}

[data-theme="light"] .manifesto-text {
  color: var(--theme-text-secondary);
}

[data-theme="light"] .manifesto-highlight {
  background: linear-gradient(135deg, rgba(66, 149, 90, 0.12) 0%, rgba(66, 149, 90, 0.06) 100%);
  border-color: rgba(66, 149, 90, 0.35);
}

[data-theme="light"] .manifesto-quote {
  color: var(--color-green-dark);
}

/* Footer - Light Mode */
[data-theme="light"] .footer {
  background: linear-gradient(180deg, var(--theme-bg-tertiary) 0%, var(--theme-bg) 100%);
  border-color: rgba(66, 149, 90, 0.2);
}

[data-theme="light"] .footer-tagline {
  color: var(--theme-text-secondary);
}

[data-theme="light"] .footer-column-title {
  color: var(--theme-text);
}

[data-theme="light"] .footer-link {
  color: var(--theme-text-secondary);
}

[data-theme="light"] .footer-link:hover {
  color: var(--color-green-light);
}

[data-theme="light"] .footer-bottom {
  border-color: var(--theme-border);
  color: var(--theme-text-muted);
}

[data-theme="light"] .social-link {
  background: rgba(0, 0, 0, 0.05);
  border-color: var(--theme-border);
}

[data-theme="light"] .social-link:hover {
  background: rgba(66, 149, 90, 0.15);
  border-color: var(--color-green-light);
}

[data-theme="light"] .social-link svg {
  fill: var(--theme-text);
}

/* Section labels - Light Mode */
[data-theme="light"] .section-label {
  color: var(--color-green-light);
}

/* WhatsApp Float - Light Mode */
[data-theme="light"] .whatsapp-float a {
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

/* Mobile Nav - Light Mode */
@media (max-width: 768px) {
  [data-theme="light"] .nav {
    background: linear-gradient(180deg, rgba(248, 249, 250, 0.98) 0%, rgba(255, 255, 255, 0.99) 100%);
  }

  [data-theme="light"] .nav::before {
    background:
      radial-gradient(100% 120% at 20% 0%, rgba(66, 149, 90, 0.1) 0%, rgba(66, 149, 90, 0) 50%),
      radial-gradient(90% 120% at 80% 12%, rgba(39, 118, 50, 0.1) 0%, rgba(39, 118, 50, 0) 52%),
      linear-gradient(180deg, rgba(248, 249, 250, 0.98) 0%, rgba(255, 255, 255, 0.99) 100%);
  }

  [data-theme="light"] .nav-link,
  [data-theme="light"] .nav-cta {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.03) 0%, rgba(0, 0, 0, 0.06) 100%);
    border-color: var(--theme-border);
    color: var(--theme-text);
    text-shadow: none;
  }

  [data-theme="light"] .nav-link:hover,
  [data-theme="light"] .nav-link:focus-visible {
    background: linear-gradient(180deg, rgba(66, 149, 90, 0.1) 0%, rgba(66, 149, 90, 0.15) 100%);
    border-color: rgba(66, 149, 90, 0.4);
  }
}

/* Logo filter for light mode */
[data-theme="light"] .logo-img,
[data-theme="light"] .hero-logo,
[data-theme="light"] .footer-logo {
  filter: brightness(0) saturate(100%);
}

/* Text colors - Light Mode */
[data-theme="light"] .text-gray {
  color: var(--theme-text-secondary);
}

[data-theme="light"] .body-md.text-gray {
  color: var(--theme-text-secondary);
}

/* Menu toggle - Light Mode */
[data-theme="light"] .menu-toggle span {
  background: var(--theme-text);
}

/* Scrollbar - Light Mode */
[data-theme="light"]::-webkit-scrollbar-track {
  background: var(--theme-bg);
}

[data-theme="light"]::-webkit-scrollbar-thumb {
  border-color: var(--theme-bg);
}

/* ============================================
   Site Loader - Sweep Animation
   ============================================ */

.site-loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.site-loader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-logo {
  position: relative;
  width: min(320px, 70vw);
}

.loader-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.loader-logo .logo-off {
  opacity: 0.25;
  filter: brightness(0) invert(1);
}

.loader-logo .logo-on {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: auto;
  clip-path: inset(0 100% 0 0);
  animation: logoSweep 2.5s ease forwards;
}

@keyframes logoSweep {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}

body.is-loading {
  overflow: hidden;
  padding-right: 0 !important;
}

/* Prevent layout shift when scrollbar appears — desktop only */
@media (min-width: 769px) {
  html {
    scrollbar-gutter: stable;
  }
}

/* ============================================
   Footer - Original Style Layout
   ============================================ */

.footer-original {
  background: var(--theme-bg-secondary);
  border-top: 1px solid var(--theme-border);
  padding-top: var(--space-md);
  padding-bottom: var(--space-xs);
}

.footer-original .footer-logo {
  height: 42px;
  margin-bottom: 0;
}

/* Footer Logo Hover Effect */
.footer-logo-hover {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.footer-logo-hover .footer-logo-off {
  display: block;
  transition: opacity 0.4s ease;
}

.footer-logo-hover .footer-logo-on {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.footer-logo-hover:hover .footer-logo-off {
  opacity: 0;
}

.footer-logo-hover:hover .footer-logo-on {
  opacity: 1;
}

.footer-grid-original {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: var(--space-lg);
  align-items: center;
  padding: var(--space-lg) 0 var(--space-md) 0;
}

.footer-col {
  display: flex;
  align-items: center;
}

.footer-col-social {
  justify-content: flex-end;
  padding-right: 40px;
}

.footer-col-center {
  justify-content: center;
}

.footer-locations {
  display: flex;
  gap: 20px;
  font-size: 12px;
  line-height: 1.4;
}

.footer-social-icons-original {
  display: flex;
  gap: 8px;
}

.social-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: opacity 0.3s ease;
}

.social-icon-btn svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

.social-icon-btn.whatsapp {
  background-color: #25d366;
}

.social-icon-btn.instagram {
  background-color: #E1306C;
}

.social-icon-btn:hover {
  opacity: 0.9;
}

/* Footer Bottom Row */
.footer-bottom-original {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) 0 var(--space-xs) 0;
  border-top: 1px solid var(--theme-border);
  font-size: 13px;
  color: var(--theme-text-secondary);
}

.footer-bottom-original p {
  margin: 0;
  line-height: 1;
}

.footer-divider {
  margin: 0 8px;
  opacity: 0.4;
}

.footer-dev {
  opacity: 0.7;
  transition: opacity 0.3s ease, color 0.3s ease;
}

.footer-dev:hover {
  color: #ff6b35;
}


.footer-tagline a {
  color: var(--theme-text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-tagline a:hover {
  color: var(--color-green-light);
}

@media (max-width: 992px) {
  .footer-grid-original {
    grid-template-columns: 1fr;
    gap: var(--space-md);
    text-align: center;
  }

  .footer-col {
    justify-content: center;
  }

  .footer-col-social {
    justify-content: center;
    padding-right: 0;
  }

  .footer-social-icons-original {
    justify-content: center;
  }

  .footer-locations {
    justify-content: center;
  }

  .footer-bottom-original {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }
}

@media (max-width: 576px) {
  .footer-locations {
    flex-direction: column;
    gap: 15px;
  }
}

/* ============================================
   INSTAGRAM SECTION FIXES
   ============================================ */

.instagram-section {
  background: var(--theme-bg-secondary);
}

.instagram-cta {
  background: transparent;
}

.instagram-link {
  font-weight: 700;
  padding: 10px 20px;
  font-size: 0.9rem;
}

.instagram-link::after {
  bottom: 8px;
}

.instagram-link:hover::after {
  width: calc(100% - 40px);
}

.instagram-link:hover {
  /* no opacity change */
}

/* ============================================
   FOOTER FIXES
   ============================================ */

.footer-original {
  border-top: none;
  padding-top: 15px;
}

.footer-bottom-original {
  border-top: 1px solid rgba(66, 149, 90, 0.3);
}

.footer::before {
  display: none;
}

/* ============================================
   MAP FIXES
   ============================================ */

.map-container-styled iframe {
  pointer-events: none;
}

/* ============================================
   MAP PINS ANIMATION
   ============================================ */

@keyframes pinBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pinPulse {
  0% {
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.3));
  }
  50% {
    filter: drop-shadow(0 0 12px rgba(3, 100, 76, 0.7));
  }
  100% {
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.3));
  }
}

/* ============================================
   ELEGANT LOCATION CARDS - VERTICAL
   ============================================ */

.locations-container-elegant {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 15px;
}

.location-card-elegant {
  position: relative;
  flex: 1 1 calc(50% - 8px);
  min-width: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(66, 149, 90, 0.2);
  border-radius: 12px;
  padding: 25px 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  text-align: center;
}

/* Clickable location card link */
a.location-card-elegant {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  cursor: pointer;
}

.location-card-elegant:hover {
  background: linear-gradient(135deg, rgba(66, 149, 90, 0.08) 0%, rgba(3, 100, 76, 0.05) 100%);
  border-color: rgba(66, 149, 90, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), 0 0 25px rgba(66, 149, 90, 0.15);
}

.location-card-elegant .card-accent {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-green-light) 0%, var(--color-green-dark) 100%);
  border-radius: 12px 12px 0 0;
  transition: height 0.3s ease;
}

.location-card-elegant:hover .card-accent {
  height: 6px;
  box-shadow: 0 0 15px rgba(66, 149, 90, 0.5);
}

.location-card-elegant .location-title {
  font-family: var(--font-dasport);
  font-size: 1.5rem;
  color: var(--theme-text);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.location-card-elegant .location-type {
  display: inline-block;
  background: rgba(66, 149, 90, 0.15);
  color: var(--color-green-light);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.location-card-elegant .location-address {
  color: var(--theme-text-secondary);
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 0;
}

/* Tablet: 2x2 grid */
@media (max-width: 991px) {
  .location-card-elegant {
    flex: 1 1 calc(50% - 8px);
  }
}

@media (max-width: 768px) {
  .location-card-elegant {
    flex: 1 1 calc(50% - 8px);
    padding: 20px 15px;
  }

  .location-card-elegant .location-title {
    font-size: 1.2rem;
  }
}

/* Small mobile: single column */
@media (max-width: 480px) {
  .locations-container-elegant {
    flex-direction: column;
  }

  .location-card-elegant {
    flex: 1 1 100%;
    padding: 18px 14px;
  }
}

/* ============================================
   UNITS TWO-COLUMN LAYOUT
   ============================================ */

.units-two-column {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: var(--space-lg);
  align-items: start;
}

.units-left-column {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.units-right-column {
  position: relative;
}

.units-cta {
  align-self: flex-start;
}

@media (max-width: 768px) {
  .units-cta {
    align-self: center;
  }
}

/* Map Container */
.map-container-styled {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  height: 400px;
  border: 1px solid rgba(66, 149, 90, 0.08);
}

.grayscale-map {
  filter: grayscale(100%) contrast(1.1) brightness(0.8);
  width: 100%;
  height: 100%;
}

/* Pin Tooltip */
.pin-tooltip {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  color: #333;
  padding: 10px 15px;
  border-radius: 8px;
  font-size: 0.85rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  z-index: 100;
  pointer-events: none;
}

.pin-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-top-color: #fff;
}

.map-pin:hover .pin-tooltip {
  opacity: 1 !important;
  visibility: visible !important;
}

/* Responsive */
@media (max-width: 991px) {
  .units-two-column {
    grid-template-columns: 1fr;
    gap: var(--space-md);
    width: 100%;
    overflow: hidden;
  }

  .map-container-styled {
    height: 340px;
    width: 100%;
    max-width: 100%;
  }

  .units-right-column {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
}

@media (max-width: 768px) {
  .map-container-styled {
    height: 300px;
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden;
  }

  /* Constrain Leaflet internals to the container */
  .map-container-styled .leaflet-container,
  #healthgym-map.leaflet-container {
    width: 100% !important;
    max-width: 100% !important;
  }
}

@media (max-width: 576px) {
  .map-container-styled {
    height: 260px;
  }
}

@media (max-width: 480px) {
  .map-container-styled {
    height: 240px;
  }
}

/* ============================================
   INSTAGRAM CAROUSEL SECTION
   ============================================ */

.instagram-section {
  width: 100%;
  background: var(--theme-bg-secondary);
  margin-bottom: 0;
  padding-bottom: 0;
}

.instagram-carousel {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.instagram-gallery-wrapper {
  width: 100%;
  overflow: hidden;
}

.instagram-gallery {
  display: flex;
  gap: 0;
  transition: transform 0.4s ease;
}

.instagram-item {
  flex: 0 0 20%;
  aspect-ratio: 6/7;
  overflow: hidden;
}

.instagram-item a {
  display: block;
  width: 100%;
  height: 100%;
}

.instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.instagram-item:hover img {
  transform: scale(1.1);
}

/* Setas de navegação */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(66, 149, 90, 0.5);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  opacity: 0;
}

.instagram-carousel:hover .carousel-arrow {
  opacity: 1;
}

.carousel-arrow:hover {
  background: var(--color-green-dark);
  border-color: var(--color-green-light);
  transform: translateY(-50%) scale(1.1);
}

.carousel-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.carousel-arrow:disabled:hover {
  background: rgba(0, 0, 0, 0.7);
  transform: translateY(-50%);
}

.carousel-arrow-left {
  left: 15px;
}

.carousel-arrow-right {
  right: 15px;
}

.carousel-arrow svg {
  width: 24px;
  height: 24px;
}

/* Instagram CTA */
.instagram-cta {
  background: var(--theme-bg-secondary);
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 15px 0;
}

.instagram-cta .instagram-link {
  transform: translateY(-35px);
}

.instagram-link {
  display: inline-block;
  background: var(--color-green-dark);
  color: #fff !important;
  font-family: var(--font-ethos);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none !important;
  letter-spacing: 1px;
  padding: 10px 20px;
  border-radius: 5px;
  position: relative;
  transition: all 0.4s ease;
}

.instagram-link::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #fff;
  transition: width 0.4s ease;
}

.instagram-link:hover::after {
  width: calc(100% - 40px);
}

/* Responsive Instagram Carousel */
@media (max-width: 992px) {
  .instagram-item {
    flex: 0 0 25%;
  }

  .carousel-arrow {
    width: 44px;
    height: 44px;
    opacity: 1;
  }

  .carousel-arrow-left {
    left: 10px;
  }

  .carousel-arrow-right {
    right: 10px;
  }
}

@media (max-width: 768px) {
  .instagram-item {
    flex: 0 0 33.333%;
  }

  .carousel-arrow {
    width: 40px;
    height: 40px;
  }

  .carousel-arrow svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 480px) {
  .instagram-item {
    flex: 0 0 50%;
  }

  .carousel-arrow {
    width: 36px;
    height: 36px;
  }

  .carousel-arrow-left {
    left: 5px;
  }

  .carousel-arrow-right {
    right: 5px;
  }
}



/* Instagram Video Styles */
.instagram-item.instagram-video {
  position: relative;
  cursor: pointer;
}

.instagram-item.instagram-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Botão Play centralizado */
.instagram-item.instagram-video::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E");
  background-size: 30px 30px;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 10;
  transition: all 0.3s ease;
}

.instagram-item.instagram-video:hover::after {
  background-color: rgba(66, 149, 90, 0.8);
  transform: translate(-50%, -50%) scale(1.1);
}

.instagram-item.instagram-video.playing::after {
  opacity: 0;
  pointer-events: none;
}

/* ============================================
   Activity Modal - Modern Glassmorphism Design
   ============================================ */

.activity-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              visibility 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.activity-modal.is-open {
  opacity: 1;
  visibility: visible;
}

/* Backdrop with blur and gradient */
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(3, 100, 76, 0.15) 50%,
    rgba(0, 0, 0, 0.95) 100%
  );
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.activity-modal.is-open .modal-backdrop {
  animation: backdropReveal 0.5s ease forwards;
}

@keyframes backdropReveal {
  from {
    opacity: 0;
    backdrop-filter: blur(0);
  }
  to {
    opacity: 1;
    backdrop-filter: blur(20px);
  }
}

/* Modal Container */
.modal-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  overflow: hidden;
  background: linear-gradient(
    145deg,
    rgba(20, 20, 20, 0.95) 0%,
    rgba(10, 10, 10, 0.98) 100%
  );
  border: 1px solid rgba(66, 149, 90, 0.3);
  border-radius: 24px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.05),
    0 25px 50px -12px rgba(0, 0, 0, 0.8),
    0 0 100px rgba(66, 149, 90, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: scale(0.9) translateY(30px);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
              opacity 0.4s ease;
}

.activity-modal.is-open .modal-container {
  transform: scale(1) translateY(0);
  opacity: 1;
  animation: modalBounce 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalBounce {
  0% {
    transform: scale(0.8) translateY(50px);
    opacity: 0;
  }
  50% {
    transform: scale(1.02) translateY(-5px);
  }
  100% {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

/* Close Button */
.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  cursor: pointer;
  z-index: 20;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.modal-close svg {
  width: 20px;
  height: 20px;
  color: #fff;
  transition: transform 0.3s ease;
}

.modal-close:hover {
  background: rgba(66, 149, 90, 0.3);
  border-color: var(--color-green-light);
  transform: rotate(90deg);
  box-shadow: 0 0 20px rgba(66, 149, 90, 0.4);
}

/* Modal Content Layout */
.modal-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 450px;
}

/* Modal Image Section */
.modal-image {
  position: relative;
  overflow: hidden;
}

.modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.activity-modal.is-open .modal-image img {
  animation: imageReveal 0.8s ease forwards;
}

@keyframes imageReveal {
  from {
    transform: scale(1.2);
    filter: blur(10px);
  }
  to {
    transform: scale(1);
    filter: blur(0);
  }
}

.modal-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(10, 10, 10, 0.3) 70%,
    rgba(10, 10, 10, 0.95) 100%
  );
  pointer-events: none;
}

/* Animated scan line effect */
.modal-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-green-neon), transparent);
  opacity: 0.7;
  animation: scanLine 2.5s ease-in-out infinite;
}

@keyframes scanLine {
  0%, 100% {
    top: 0;
    opacity: 0;
  }
  10% {
    opacity: 0.7;
  }
  90% {
    opacity: 0.7;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}

/* Modal Body */
.modal-body {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow-y: auto;
}

/* Subtle grid pattern background */
.modal-body::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(66, 149, 90, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(66, 149, 90, 0.03) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
  opacity: 0.5;
}

/* Badge */
.modal-badge {
  display: inline-block;
  width: fit-content;
  margin-bottom: 1rem;
  position: relative;
  padding: 0.3rem 10rem 0.3rem 0.8rem;
  background: linear-gradient(135deg, var(--color-green-light) 0%, var(--color-green-dark) 100%);
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  white-space: nowrap;
  clip-path: polygon(0 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
}

.modal-badge::after {
  content: '';
  position: absolute;
  right: -15px;
  top: 0;
  width: 85px;
  height: 100%;
  background:
    linear-gradient(-65deg, transparent 40%, #121312 40%, #121312 60%, transparent 60%) 0 0 / 16px 100% no-repeat,
    linear-gradient(-65deg, transparent 40%, #121312 40%, #121312 60%, transparent 60%) 16px 0 / 16px 100% no-repeat,
    linear-gradient(-65deg, transparent 40%, #121312 40%, #121312 60%, transparent 60%) 32px 0 / 16px 100% no-repeat,
    linear-gradient(-65deg, transparent 40%, #121312 40%, #121312 60%, transparent 60%) 48px 0 / 16px 100% no-repeat,
    linear-gradient(-65deg, transparent 40%, #121312 40%, #121312 60%, transparent 60%) 64px 0 / 20px 100% no-repeat;
}

/* Title */
.modal-title {
  font-family: var(--font-dasport);
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #fff 0%, #ccc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.activity-modal.is-open .modal-title {
  animation: titleSlide 0.6s ease forwards;
  animation-delay: 0.2s;
  opacity: 0;
  transform: translateX(-20px);
}

@keyframes titleSlide {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Description */
.modal-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1.5rem;
  position: relative;
}

.activity-modal.is-open .modal-desc {
  animation: fadeSlideUp 0.6s ease forwards;
  animation-delay: 0.3s;
  opacity: 0;
  transform: translateY(15px);
}

@keyframes fadeSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Features Grid */
.modal-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.modal-feature {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0.8rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  transition: all 0.3s ease;
}

.modal-feature:hover {
  background: rgba(66, 149, 90, 0.15);
  border-color: rgba(66, 149, 90, 0.3);
  transform: translateX(5px);
}

.modal-feature-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-green-light), var(--color-green-dark));
  border-radius: 50%;
}

.modal-feature-icon svg {
  width: 10px;
  height: 10px;
  color: #fff;
}

.activity-modal.is-open .modal-feature {
  animation: featureReveal 0.5s ease forwards;
  opacity: 0;
  transform: translateY(10px);
}

.activity-modal.is-open .modal-feature:nth-child(1) { animation-delay: 0.35s; }
.activity-modal.is-open .modal-feature:nth-child(2) { animation-delay: 0.4s; }
.activity-modal.is-open .modal-feature:nth-child(3) { animation-delay: 0.45s; }
.activity-modal.is-open .modal-feature:nth-child(4) { animation-delay: 0.5s; }

@keyframes featureReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* CTA Button */
.modal-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--color-green-light) 0%, var(--color-green-dark) 100%);
  border: none;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  margin-top: auto;
}

.modal-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.modal-cta:hover::before {
  transform: translateX(100%);
}

.modal-cta:hover {
  transform: translateY(-3px);
  box-shadow:
    0 10px 30px rgba(66, 149, 90, 0.4),
    0 0 50px rgba(66, 149, 90, 0.2);
}

.modal-cta svg {
  transition: transform 0.3s ease;
}

.modal-cta:hover svg {
  transform: translateX(5px);
}

/* ============================================
   ACTIVITY MODAL — MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .activity-modal {
    padding: 0;
    align-items: flex-end;
  }

  .modal-container {
    width: 100%;
    max-width: 100%;
    max-height: 92svh;
    border-radius: 20px 20px 0 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .modal-content {
    grid-template-columns: 1fr;
    min-height: unset;
  }

  .modal-image {
    height: 220px;
  }

  .modal-image-overlay {
    background: linear-gradient(
      180deg,
      transparent 0%,
      rgba(10, 10, 10, 0.95) 100%
    );
  }

  .modal-body {
    padding: 1.5rem 1.25rem 2rem;
    overflow-y: visible;
  }

  .modal-badge {
    padding: 0.3rem 4rem 0.3rem 0.8rem;
  }

  .modal-title {
    font-size: 1.6rem;
  }

  .modal-desc {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .modal-features {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
  }

  .modal-feature {
    font-size: 0.78rem;
    padding: 0.5rem 0.6rem;
  }

  .modal-close {
    top: 0.875rem;
    right: 0.875rem;
    width: 36px;
    height: 36px;
  }

  .modal-close svg {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 480px) {
  .modal-container {
    max-height: 95svh;
  }

  .modal-image {
    height: 180px;
  }

  .modal-features {
    grid-template-columns: 1fr;
  }

  .modal-body {
    padding: 1.25rem 1rem 1.75rem;
  }
}

.activity-modal.is-open .modal-cta {
  animation: ctaReveal 0.6s ease forwards;
  animation-delay: 0.55s;
  opacity: 0;
  transform: translateY(20px);
}

@keyframes ctaReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Modal */
@media (max-width: 768px) {
  .activity-modal {
    padding: 1rem;
  }

  .modal-container {
    max-height: 95vh;
    border-radius: 16px;
  }

  .modal-content {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .modal-image {
    height: 200px;
  }

  .modal-image-overlay {
    background: linear-gradient(
      180deg,
      transparent 0%,
      rgba(10, 10, 10, 0.5) 70%,
      rgba(10, 10, 10, 0.95) 100%
    );
  }

  .modal-body {
    padding: 2rem 1.5rem;
  }

  .modal-features {
    grid-template-columns: 1fr;
  }

  .modal-close {
    top: 0.75rem;
    right: 0.75rem;
    width: 38px;
    height: 38px;
  }
}

/* Prevent body scroll when modal is open */
body.modal-open {
  overflow: hidden;
}

/* Make act-items clickable */
.act-item {
  cursor: pointer;
}

.act-item:hover .act-more {
  color: var(--color-green-light);
}

.act-more {
  transition: color 0.3s ease;
}

/* ============================================
   UNIT LOCATION SECTION - TWO COLUMN (like index.html)
   ============================================ */
.unit-location-section {
  margin-top: var(--space-md);
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 1.25rem;
  align-items: stretch;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Left Column */
.unit-location-left {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Location Card - Same style as index.html */
.unit-location-card {
  position: relative;
  background: linear-gradient(135deg, rgba(20, 20, 20, 0.9) 0%, rgba(15, 15, 15, 0.95) 100%);
  border: 1px solid rgba(66, 149, 90, 0.2);
  border-radius: 12px;
  padding: 1.25rem;
  overflow: hidden;
  transition: all 0.4s ease;
}

.unit-location-card:hover {
  border-color: rgba(66, 149, 90, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.unit-location-card .card-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--gradient-green);
  border-radius: 3px 0 0 3px;
}

.unit-location-badge {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-green-light);
  margin-bottom: 0.5rem;
}

.unit-location-title {
  font-family: var(--font-ethos);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-white);
  margin: 0 0 0.2rem 0;
}

.unit-location-type {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-green-light);
  background: rgba(66, 149, 90, 0.15);
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  margin-bottom: 0.75rem;
}

.unit-location-address {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
  margin: 0 0 1rem 0;
}

/* Location Details */
.unit-location-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.unit-location-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.unit-location-detail svg {
  width: 16px;
  height: 16px;
  color: var(--color-green-light);
  flex-shrink: 0;
  margin-top: 1px;
}

.unit-location-detail div {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.unit-location-detail strong {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.5);
}

.unit-location-detail span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
}

.unit-location-detail a {
  font-size: 0.8rem;
  color: var(--color-green-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.unit-location-detail a:hover {
  color: var(--color-green-neon);
}

/* CTA Button */
.unit-location-cta {
  width: 100%;
  text-align: center;
  padding: 0.75rem 1.5rem;
  font-size: 0.85rem;
}

/* Right Column - Map */
.unit-location-right {
  display: flex;
  align-items: stretch;
}

.unit-map-container {
  position: relative;
  width: 100%;
  min-height: 240px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(66, 149, 90, 0.2);
}

.unit-map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 240px;
}

.unit-map-container .grayscale-map {
  filter: grayscale(100%) invert(92%) contrast(90%);
  opacity: 0.8;
}

.unit-map-container .map-pin {
  position: absolute;
  transform: translate(-50%, -100%);
  cursor: pointer;
  z-index: 10;
}

.unit-map-container .map-pin svg {
  width: 24px;
  height: 32px;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease;
}

.unit-map-container .map-pin:hover svg {
  transform: scale(1.15);
}

.unit-map-container .pin-tooltip {
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.9);
  color: #fff;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  font-size: 0.7rem;
  line-height: 1.4;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(66, 149, 90, 0.3);
}

.unit-map-container .pin-tooltip strong {
  color: var(--color-green-light);
  display: block;
  margin-bottom: 0.15rem;
}

.unit-map-container .map-pin:hover .pin-tooltip {
  opacity: 1;
  visibility: visible;
}

/* Clickable Map Link */
.unit-map-link {
  display: block;
  cursor: pointer;
  transition: all 0.3s ease;
}

.unit-map-link:hover {
  border-color: rgba(66, 149, 90, 0.5);
  box-shadow: 0 8px 24px rgba(66, 149, 90, 0.2);
}

.unit-map-link:hover iframe {
  opacity: 0.9;
}

/* Click Hint */
.map-click-hint {
  position: absolute;
  bottom: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 500;
  opacity: 0;
  transform: translateY(4px);
  transition: all 0.3s ease;
  border: 1px solid rgba(66, 149, 90, 0.3);
}

.map-click-hint svg {
  width: 14px;
  height: 14px;
  color: var(--color-green-light);
}

.unit-map-link:hover .map-click-hint {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 991px) {
  .unit-location-section {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .unit-location-section {
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 100%;
  }

  .unit-location-left {
    order: 2;
  }

  .unit-location-right {
    order: 1;
  }

  .unit-map-container {
    min-height: 220px;
  }

  .unit-map-container iframe {
    min-height: 220px;
  }

  .unit-location-card {
    padding: 1.1rem;
  }

  .unit-location-title {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .unit-location-card {
    padding: 1rem;
  }

  .unit-location-title {
    font-size: 1.2rem;
  }

  .unit-map-container {
    min-height: 180px;
  }

  .unit-map-container iframe {
    min-height: 180px;
  }
}

/* ============================================
   COMPACT LOCATION INFO SECTION (Legacy)
   ============================================ */
.location-info-compact {
  margin-top: var(--space-lg);
  background: linear-gradient(180deg, rgba(20, 20, 20, 0.6) 0%, rgba(10, 10, 10, 0.8) 100%);
  border: 1px solid rgba(66, 149, 90, 0.15);
  border-radius: 16px;
  overflow: visible;
}

/* Compact Map Container */
.compact-map {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: visible;
}

.compact-map-frame {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: visible;
  border-radius: 16px 16px 0 0;
}

.compact-map-frame iframe {
  width: 100%;
  height: 100%;
  filter: grayscale(100%) invert(92%) contrast(90%);
  opacity: 0.7;
  border-radius: 16px 16px 0 0;
}

/* Overlay to block map interaction */
.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  cursor: default;
  z-index: 5;
}

/* Map Pin */
.map-pin-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -100%);
  z-index: 10;
  cursor: pointer;
}

.map-pin-icon {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
  animation: pinBounce 2s ease-in-out infinite;
}

.map-pin-icon svg {
  width: 100%;
  height: 100%;
}

@keyframes pinBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Pin Tooltip */
.map-pin-tooltip {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) scale(0.9);
  background: rgba(15, 15, 15, 0.98);
  border: 1px solid rgba(66, 149, 90, 0.4);
  border-radius: 12px;
  padding: 1rem;
  min-width: 200px;
  display: flex;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(66, 149, 90, 0.15);
}

.map-pin-tooltip::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 16px;
  height: 16px;
  background: rgba(15, 15, 15, 0.98);
  border-right: 1px solid rgba(66, 149, 90, 0.4);
  border-bottom: 1px solid rgba(66, 149, 90, 0.4);
}

.map-pin-wrapper:hover .map-pin-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) scale(1);
}

.pin-tooltip-logo {
  width: 50px;
  height: auto;
  flex-shrink: 0;
}

.pin-tooltip-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.pin-tooltip-info strong {
  color: var(--color-green-light);
  font-size: 0.9rem;
  font-weight: 600;
}

.pin-tooltip-info span {
  color: var(--color-gray);
  font-size: 0.8rem;
  line-height: 1.3;
}

/* Compact Info Row */
.compact-info-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(66, 149, 90, 0.15);
}

.compact-info-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-right: 1px solid rgba(66, 149, 90, 0.1);
  transition: background 0.3s ease;
}

.compact-info-item:last-child {
  border-right: none;
}

.compact-info-item:hover {
  background: rgba(66, 149, 90, 0.08);
}

.compact-info-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-green-light);
}

.compact-info-icon svg {
  width: 20px;
  height: 20px;
}

.compact-info-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.compact-info-text strong {
  color: var(--color-white);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.compact-info-text span,
.compact-info-text a {
  color: var(--color-gray);
  font-size: 0.85rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.compact-info-text a {
  text-decoration: none;
  transition: color 0.3s ease;
}

.compact-info-text a:hover {
  color: var(--color-green-light);
}

/* Responsive Compact Location */
@media (max-width: 768px) {
  .location-info-compact {
    margin-top: 2rem;
    border-radius: 12px;
    overflow: visible;
  }

  .compact-map {
    height: 240px;
  }

  .map-pin-icon {
    width: 32px;
    height: 32px;
  }

  .map-pin-tooltip {
    min-width: 180px;
    padding: 0.75rem;
    gap: 0.75rem;
  }

  .pin-tooltip-logo {
    width: 40px;
  }

  .compact-info-row {
    grid-template-columns: 1fr;
  }

  .compact-info-item {
    border-right: none;
    border-bottom: 1px solid rgba(66, 149, 90, 0.1);
    padding: 0.875rem 1rem;
  }

  .compact-info-item:last-child {
    border-bottom: none;
  }

  .compact-info-text span,
  .compact-info-text a {
    white-space: normal;
  }
}

/* ============================================
   MOBILE TOOLTIP FIX - Must be at end for priority
   ============================================ */
@media (max-width: 768px) {
  /* Clip map containers to prevent horizontal overflow */
  .map-container-styled,
  .units-map-container,
  .map-container {
    overflow: hidden;
  }

  /* Move tooltip below pin on mobile */
  .map-pin .pin-tooltip {
    bottom: auto !important;
    top: calc(100% + 8px) !important;
    transform: translateX(-50%) !important;
    font-size: 0.7rem !important;
    padding: 6px 10px !important;
    white-space: normal !important;
    max-width: 150px !important;
    text-align: center !important;
  }

  .map-pin .pin-tooltip::after {
    top: auto !important;
    bottom: 100% !important;
    border-top-color: transparent !important;
    border-bottom-color: #fff !important;
  }
}


/* ============================================
   LEAFLET MAP CUSTOM STYLES
   ============================================ */

/* Map container styling */
#healthgym-map {
  width: 100%;
  height: 360px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(66, 149, 90, 0.2) !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
  outline: none !important;
}

#healthgym-map:hover {
  border-color: rgba(66, 149, 90, 0.6) !important;
  box-shadow: 0 8px 24px rgba(66, 149, 90, 0.25);
}

/* Leaflet base overrides - HIGHEST SPECIFICITY to override Leaflet defaults */
#healthgym-map.leaflet-container,
.leaflet-container#healthgym-map,
#healthgym-map.leaflet-container.leaflet-fade-anim,
#healthgym-map.leaflet-container.leaflet-grab,
#healthgym-map.leaflet-container.leaflet-touch-drag {
  background: #0a0a0a !important;
  font-family: var(--font-ethos), 'Helvetica Neue', Arial, sans-serif;
  border: 1px solid rgba(66, 149, 90, 0.2) !important;
  outline: none !important;
}

/* Override any Leaflet default borders */
#healthgym-map.leaflet-container::after,
#healthgym-map.leaflet-container::before {
  display: none !important;
}

/* Custom marker styling */
.healthgym-marker {
  background: transparent;
  border: none;
}

/* Custom marker styling */
.healthgym-marker {
  background: transparent;
  border: none;
}

.healthgym-marker svg {
  display: block;
  transition: transform 0.3s ease;
}

.healthgym-marker:hover svg {
  transform: scale(1.1) translateY(-5px);
}

/* Custom popup styling */
.healthgym-popup .leaflet-popup-content-wrapper {
  background: rgba(20, 20, 20, 0.98);
  border: 1px solid rgba(122, 164, 139, 0.4);
  border-radius: 12px;
  box-shadow: 
    0 10px 40px rgba(0, 0, 0, 0.6),
    0 0 20px rgba(3, 100, 76, 0.2);
  padding: 0;
  overflow: hidden;
}

.healthgym-popup .leaflet-popup-content {
  margin: 0;
  padding: 0;
  width: 280px !important;
}

/* Popup content inner styling */
.healthgym-popup .popup-content-inner {
  font-family: var(--font-ethos), 'Helvetica Neue', Arial, sans-serif;
}

.healthgym-popup .popup-header {
  background: linear-gradient(135deg, #03644c 0%, #0a8c6d 100%);
  color: white;
  padding: 14px 16px;
  margin: 0;
}

.healthgym-popup .popup-header-title {
  font-size: 1.1rem;
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-ethos), sans-serif;
}

.healthgym-popup .popup-header-badge {
  background: rgba(255,255,255,0.2);
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
}

.healthgym-popup .popup-body {
  padding: 16px;
  background: rgba(20, 20, 20, 0.98);
}

.healthgym-popup .popup-address {
  color: #ccc;
  font-size: 0.85rem;
  margin: 0 0 12px 0;
  line-height: 1.5;
}

.healthgym-popup .popup-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(122, 164, 139, 0.2);
}

.healthgym-popup .popup-status {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.healthgym-popup .popup-status.open {
  color: #7aa48b;
}

.healthgym-popup .popup-status.coming {
  color: #ff9800;
}

.healthgym-popup .popup-link {
  background: #03644c;
  color: white;
  padding: 8px 14px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.healthgym-popup .popup-link:hover {
  background: #0a8c6d;
  transform: translateY(-1px);
}

.healthgym-popup .leaflet-popup-tip {
  background: rgba(20, 20, 20, 0.98);
  border: 1px solid rgba(122, 164, 139, 0.4);
  border-top: none;
  border-left: none;
}

/* Close button styling */
.healthgym-popup .leaflet-popup-close-button {
  color: rgba(255, 255, 255, 0.6);
  font-size: 20px;
  font-weight: 300;
  padding: 8px;
  top: 4px;
  right: 4px;
  transition: color 0.3s ease;
  z-index: 10;
}

.healthgym-popup .leaflet-popup-close-button:hover {
  color: #fff;
}

/* Zoom controls styling */
#healthgym-map .leaflet-control-zoom {
  border: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  border-radius: 8px;
  overflow: hidden;
}

#healthgym-map .leaflet-control-zoom a {
  background: rgba(20, 20, 20, 0.95);
  color: #fff;
  border: 1px solid rgba(122, 164, 139, 0.3);
  width: 36px;
  height: 36px;
  line-height: 36px;
  font-size: 18px;
  transition: all 0.3s ease;
}

#healthgym-map .leaflet-control-zoom a:hover {
  background: rgba(3, 100, 76, 0.9);
  color: #fff;
  border-color: rgba(122, 164, 139, 0.5);
}

#healthgym-map .leaflet-control-zoom a.leaflet-disabled {
  background: rgba(20, 20, 20, 0.6);
  color: rgba(255, 255, 255, 0.3);
}

/* Attribution styling */
#healthgym-map .leaflet-control-attribution {
  background: rgba(0, 0, 0, 0.7);
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  padding: 4px 8px;
  border-radius: 4px 0 0 0;
}

#healthgym-map .leaflet-control-attribution a {
  color: rgba(122, 164, 139, 0.8);
}

/* Mobile adjustments */
@media (max-width: 991px) {
  #healthgym-map {
    height: 340px;
  }
}

@media (max-width: 768px) {
  #healthgym-map {
    height: 300px;
  }

  .healthgym-popup .leaflet-popup-content-wrapper {
    max-width: 280px;
  }

  .healthgym-popup .leaflet-popup-content {
    width: auto !important;
    min-width: 240px;
  }

  .healthgym-popup .popup-body {
    padding: 10px 12px;
  }

  .healthgym-popup .popup-address {
    font-size: 0.72rem;
    line-height: 1.4;
    margin-bottom: 6px;
    white-space: normal;
    word-break: break-word;
  }

  .healthgym-popup .popup-footer {
    margin-top: 8px;
    padding-top: 8px;
    gap: 6px;
  }

  .healthgym-popup .popup-status {
    font-size: 0.65rem;
    white-space: nowrap;
  }

  .healthgym-popup .popup-link {
    font-size: 0.7rem;
    padding: 5px 10px;
    white-space: nowrap;
  }
}

@media (max-width: 576px) {
  #healthgym-map {
    height: 260px;
    border-radius: var(--radius-lg);
  }
}

@media (max-width: 480px) {
  #healthgym-map {
    height: 240px;
  }

  #healthgym-map .leaflet-control-zoom {
    display: none;
  }
}

/* ===== MOBILE FIXES — unit-inhauma.html ===== */

/* Fix 1: Service names no longer break into two lines */
@media (max-width: 500px) {
  .act-name {
    font-size: 0.65rem;
    white-space: nowrap;
  }
}

/* Fix 2: Wellhub badge/button/hint centered on mobile */
@media (max-width: 768px) {
  .wellhub-action {
    margin-right: 0;
    align-self: center;
  }
}

/* === Card desabilitado (sem professor / em breve) === */
.act-item.is-disabled {
  position: relative;
  opacity: 0.55;
  filter: grayscale(0.85);
  cursor: not-allowed;
  pointer-events: none;
}
.act-item.is-disabled .act-more { display: none; }
.act-item.is-disabled .act-img::after { opacity: 0 !important; }
.act-item.is-disabled .act-img img { transform: none !important; filter: none !important; }
.act-coming-soon-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: rgba(20, 20, 20, 0.85);
  color: #fff;
  font-family: var(--font-ethos);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
  pointer-events: none;
}
