@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@400;500;600;700&display=swap');

:root {
  /* Color Palette - Bright Light Theme */
  --bg-dark: #FFFFFF;
  --bg-darker: #F1F5F9;
  --bg-card: #FFFFFF;
  --bg-card-hover: #F8FFFE;
  --bg-card-solid: #FFFFFF;
  --primary: #0D9488;
  --primary-dim: #0F766E;
  --primary-glow: rgba(13, 148, 136, 0.2);
  --primary-subtle: rgba(13, 148, 136, 0.06);
  --secondary: #0891B2;
  --secondary-glow: rgba(8, 145, 178, 0.2);
  --accent: #7C3AED;
  --accent-glow: rgba(124, 58, 237, 0.2);
  --danger: #DC2626;
  --warning: #F59E0B;
  --text-main: #1E293B;
  --text-muted: #475569;
  --text-dim: #94A3B8;
  --border-light: #E2E8F0;
  --border-hover: #CBD5E1;

  /* Glassmorphism (light) */
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(0, 0, 0, 0.06);
  --glass-blur: blur(20px);

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing & Shapes */
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1.25rem;
  --radius-xl: 1.75rem;
  --radius-full: 999px;
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
  --transition-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Shadows */
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-glow: 0 0 40px rgba(13, 148, 136, 0.1);
  --shadow-deep: 0 20px 60px rgba(0, 0, 0, 0.12);
}

/* ======================== BASE RESET ======================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--primary-dim) #F1F5F9;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #F1F5F9; }
::-webkit-scrollbar-thumb { background: var(--primary-dim); border-radius: 999px; }

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

/* Ambient background glow */
body::before {
  content: '';
  position: fixed;
  top: -20%;
  left: -10%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.05) 0%, transparent 70%);
  z-index: -1;
  animation: floatGlow 20s ease-in-out infinite alternate;
}
body::after {
  content: '';
  position: fixed;
  bottom: -10%;
  right: -10%;
  width: 45vw;
  height: 45vw;
  background: radial-gradient(circle, rgba(8, 145, 178, 0.04) 0%, transparent 70%);
  z-index: -1;
  animation: floatGlow 25s ease-in-out infinite alternate-reverse;
}
@keyframes floatGlow {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(5vw, 3vh) scale(1.1); }
  100% { transform: translate(-3vw, -5vh) scale(0.95); }
}

/* ======================== TYPOGRAPHY ======================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  color: var(--text-main);
}

h1 { font-size: clamp(2.25rem, 5vw, 4rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.75rem); }

p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.8;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: all var(--transition-fast);
}
a:hover {
  color: var(--primary-dim);
  text-shadow: none;
}

/* ======================== LAYOUT ======================== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 7rem 0;
  position: relative;
}

.section-dark {
  background: #F1F5F9;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

/* ======================== UTILITIES ======================== */
.text-center { text-align: center; }
.text-primary { color: var(--primary) !important; }
.text-secondary { color: var(--secondary) !important; }
.text-gradient {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.text-gradient-warm {
  background: linear-gradient(135deg, #F59E0B, #EA580C);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mt-8 { margin-top: 2rem; }

/* ======================== SECTION HEADERS ======================== */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}
.section-header .overline {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
  position: relative;
  padding: 0 1rem;
}
.section-header .overline::before,
.section-header .overline::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30px;
  height: 1px;
  background: var(--primary);
  opacity: 0.4;
}
.section-header .overline::before { left: -30px; }
.section-header .overline::after { right: -30px; }

/* ======================== BADGE ======================== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  border: 1px solid;
}
.badge-blue {
  background: rgba(8, 145, 178, 0.08);
  color: var(--secondary);
  border-color: rgba(8, 145, 178, 0.2);
}
.badge-green {
  background: var(--primary-subtle);
  color: var(--primary);
  border-color: rgba(13, 148, 136, 0.2);
}
.badge-purple {
  background: rgba(124, 58, 237, 0.06);
  color: var(--accent);
  border-color: rgba(124, 58, 237, 0.2);
}

/* ======================== PAGE HEADER (Inner Pages) ======================== */
.page-header {
  background: linear-gradient(135deg, #0D9488 0%, #0891B2 50%, #0EA5E9 100%);
  padding: 7rem 0 3rem;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 70%);
  border-radius: 50%;
  animation: particleFloat 15s ease-in-out infinite;
}
.page-header::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.06), transparent 70%);
  border-radius: 50%;
  animation: particleFloat 20s ease-in-out infinite reverse;
}
.page-header .container {
  position: relative;
  z-index: 2;
}
.page-header .breadcrumb a {
  color: rgba(255,255,255,0.7);
}
.page-header .breadcrumb a:hover {
  color: white;
}
.page-header .breadcrumb .separator {
  color: rgba(255,255,255,0.4);
}
.page-header .breadcrumb .current {
  color: rgba(255,255,255,0.9);
}
.page-header h1 {
  color: white;
}
.page-header p {
  color: rgba(255,255,255,0.85);
}
.page-header .overline {
  color: rgba(255,255,255,0.8);
}
.page-header .overline::before,
.page-header .overline::after {
  background: rgba(255,255,255,0.4);
}
.page-header .text-gradient {
  background: linear-gradient(135deg, #FDE68A, #FBBF24);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.page-header .badge {
  background: rgba(255,255,255,0.15);
  color: white;
  border-color: rgba(255,255,255,0.3);
}

/* ======================== NAVBAR ======================== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: all var(--transition-smooth);
  padding: 0.75rem 0;
}
.navbar.scrolled {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--border-light);
  padding: 0.25rem 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}
.nav-logo h2 {
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: -0.5px;
  margin: 0;
  color: white;
}
.nav-logo span { color: #FDE68A; }
.navbar.scrolled .nav-logo h2 { color: var(--text-main); }
.navbar.scrolled .nav-logo span { color: var(--primary); }
.nav-logo a { text-decoration: none; }
.nav-logo a:hover { text-shadow: none; }
.nav-links {
  display: flex;
  gap: 0.25rem;
  list-style: none;
  align-items: center;
}
.nav-links li a {
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}
.nav-links li a:hover {
  color: white;
  background: rgba(255,255,255,0.12);
  text-shadow: none;
}
.nav-links li a.active {
  color: white;
}
.navbar.scrolled .nav-links li a {
  color: var(--text-muted);
}
.navbar.scrolled .nav-links li a:hover {
  color: var(--primary);
  background: rgba(13, 148, 136, 0.06);
}
.navbar.scrolled .nav-links li a.active {
  color: var(--primary);
}

/* ======================== BUTTONS ======================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition-smooth);
  border: none;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity var(--transition-fast);
  background: linear-gradient(rgba(255,255,255,0.15), transparent);
}
.btn:hover::after { opacity: 1; }

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dim));
  color: white !important;
  box-shadow: 0 4px 20px var(--primary-glow);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px var(--primary-glow), 0 0 60px rgba(13, 148, 136, 0.1);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid rgba(13, 148, 136, 0.4);
}
.btn-outline:hover {
  background: var(--primary-subtle);
  border-color: var(--primary);
  transform: translateY(-2px);
}
.btn-ghost {
  background: rgba(0,0,0,0.03);
  color: var(--text-main);
  border: 1px solid var(--border-light);
}
.btn-ghost:hover {
  background: rgba(0,0,0,0.06);
  border-color: var(--border-hover);
}
.btn-sm {
  padding: 0.45rem 1rem;
  font-size: 0.8rem;
}

.nav-mobile-btn {
  display: none;
  background: none;
  border: 1px solid rgba(255,255,255,0.4);
  color: white;
  font-size: 1.25rem;
  cursor: pointer;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-md);
}
.navbar.scrolled .nav-mobile-btn {
  border-color: var(--border-light);
  color: var(--text-main);
}

/* ======================== CARDS ======================== */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  opacity: 0;
  transition: opacity var(--transition-smooth);
}
.card:hover::before {
  opacity: 1;
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  box-shadow: var(--shadow-card);
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
.card-icon.green {
  background: rgba(13, 148, 136, 0.08);
  border: 1px solid rgba(13, 148, 136, 0.15);
}
.card-icon.blue {
  background: rgba(8, 145, 178, 0.08);
  border: 1px solid rgba(8, 145, 178, 0.15);
}
.card-icon.purple {
  background: rgba(124, 58, 237, 0.06);
  border: 1px solid rgba(124, 58, 237, 0.15);
}

/* ======================== HERO ======================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0D9488 0%, #0891B2 50%, #0EA5E9 100%);
}
.hero-content {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.hero h1 {
  font-weight: 900;
  margin-bottom: 1.5rem;
  color: white;
}
.hero p {
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.9;
  color: rgba(255,255,255,0.85);
}
.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero .btn-primary {
  background: white;
  color: var(--primary) !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.hero .btn-primary:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}
.hero .btn-outline {
  color: white;
  border-color: rgba(255,255,255,0.5);
}
.hero .btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: white;
}
.hero .badge {
  background: rgba(255,255,255,0.15);
  color: white;
  border-color: rgba(255,255,255,0.3);
}
.hero .text-gradient {
  background: linear-gradient(135deg, #FDE68A, #FBBF24);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero .btn-ghost {
  background: rgba(255,255,255,0.15);
  color: white;
  border-color: rgba(255,255,255,0.3);
}
.hero .btn-ghost:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.5);
}

/* Hero floating particles */
.hero-particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  background: white;
  animation: particleFloat 15s ease-in-out infinite;
}
@keyframes particleFloat {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(30px, -40px) rotate(90deg); }
  50% { transform: translate(-20px, 20px) rotate(180deg); }
  75% { transform: translate(10px, 30px) rotate(270deg); }
}

/* ======================== GRID LAYOUTS ======================== */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

/* ======================== ANIMATIONS ======================== */
.animate-slide-up {
  opacity: 0;
  transform: translateY(40px);
  animation: slideUp 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }

@keyframes slideUp {
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.9s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children reveal */
.stagger-children .card:nth-child(1) { transition-delay: 0.05s; }
.stagger-children .card:nth-child(2) { transition-delay: 0.15s; }
.stagger-children .card:nth-child(3) { transition-delay: 0.25s; }
.stagger-children .card:nth-child(4) { transition-delay: 0.35s; }
.stagger-children .card:nth-child(5) { transition-delay: 0.45s; }
.stagger-children .card:nth-child(6) { transition-delay: 0.55s; }

/* Number counter animation */
@keyframes countPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* Glow pulse animation */
@keyframes glowPulse {
  0%, 100% { box-shadow: 0 4px 20px var(--primary-glow); }
  50% { box-shadow: 0 8px 30px var(--primary-glow); }
}

/* ======================== STATS COUNTER ======================== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin: 4rem 0;
}
.stat-item {
  text-align: center;
  padding: 2rem 1rem;
  border-radius: var(--radius-lg);
  background: white;
  border: 1px solid var(--border-light);
  transition: all var(--transition-smooth);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.stat-item:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 20px rgba(13, 148, 136, 0.1);
}
.stat-number {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.5rem;
  color: var(--primary);
}
.stat-label {
  color: var(--text-dim);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ======================== TABLES ======================== */
.table-wrapper {
  overflow-x: auto;
  width: 100%;
}
table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
th, td {
  padding: 1rem;
  border-bottom: 1px solid var(--border-light);
}
th {
  color: var(--text-dim);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: #F8FAFC;
}

/* ======================== FORMS ======================== */
.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-main);
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}
.form-control {
  width: 100%;
  padding: 0.9rem 1.25rem;
  background: white;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all 0.3s ease;
}
.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
  background: white;
}
.form-control::placeholder {
  color: var(--text-dim);
}

/* ======================== TESTIMONIALS ======================== */
.testimonial-card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  position: relative;
  transition: all var(--transition-smooth);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-card);
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-size: 4rem;
  font-family: Georgia, serif;
  color: var(--primary);
  opacity: 0.2;
  line-height: 1;
}
.testimonial-text {
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: white;
}
.testimonial-name {
  font-weight: 600;
  color: var(--text-main);
  font-size: 0.95rem;
}
.testimonial-role {
  color: var(--text-dim);
  font-size: 0.8rem;
}

/* ======================== FOOTER ======================== */
footer {
  background: #0F172A;
  padding: 5rem 0 2rem;
  border-top: 1px solid var(--border-light);
  margin-top: 5rem;
  position: relative;
  color: white;
}
footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.25fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-col h4 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}
.footer-brand-desc {
  color: #94A3B8;
  font-size: 0.9rem;
  line-height: 1.8;
}
.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 0.85rem;
}
.footer-links a {
  color: #94A3B8;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.footer-links a:hover {
  color: #2DD4BF;
  text-shadow: none;
  transform: translateX(3px);
}
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  color: #64748B;
  font-size: 0.8rem;
  margin: 0;
}
.footer-disclaimer {
  max-width: 900px;
  margin: 2rem auto 0;
  text-align: center;
  padding: 1.5rem;
  background: rgba(248, 113, 113, 0.08);
  border: 1px solid rgba(248, 113, 113, 0.15);
  border-radius: var(--radius-md);
}
.footer-disclaimer p {
  color: #94A3B8;
  font-size: 0.75rem;
  margin: 0;
  line-height: 1.6;
}

/* ======================== WHATSAPP FLOAT ======================== */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--transition-smooth);
  cursor: pointer;
  animation: whatsappPulse 2s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}
.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: white;
}
.whatsapp-tooltip {
  position: absolute;
  right: 72px;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  color: #333;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
}
.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
}
@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 12px rgba(37, 211, 102, 0.1); }
}

/* ======================== RESPONSIVE ======================== */
@media (max-width: 1024px) {
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: var(--glass-blur);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    z-index: 999;
  }
  .nav-links.show { display: flex; }
  .nav-links li a { font-size: 1.2rem; color: var(--text-main); }
  .nav-mobile-btn { display: block; z-index: 1001; }
  .grid-2 { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .stats-row { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
}

/* ======================== CARD ICON SVG ======================== */
.card-icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.75;
}
.card-icon.green svg { color: var(--primary); }
.card-icon.blue svg { color: var(--secondary); }
.card-icon.purple svg { color: var(--accent); }

/* ======================== BREADCRUMB ======================== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 1.5rem;
}
.breadcrumb a {
  color: var(--text-dim);
  transition: color var(--transition-fast);
}
.breadcrumb a:hover {
  color: var(--primary);
  text-shadow: none;
}
.breadcrumb .separator { opacity: 0.4; }
.breadcrumb .current { color: var(--text-muted); }

/* ======================== FAQ ACCORDION ======================== */
.faq-item {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: border-color var(--transition-fast);
  box-shadow: 0 1px 4px rgba(0,0,0,0.03);
}
.faq-item:hover {
  border-color: var(--border-hover);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--text-main);
  font-family: var(--font-heading);
  font-size: 1rem;
  transition: color var(--transition-fast);
  user-select: none;
  gap: 1rem;
}
.faq-question:hover { color: var(--primary); }
.faq-toggle {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--text-dim);
  transition: transform var(--transition-smooth), color var(--transition-fast);
  flex-shrink: 0;
}
.faq-item.open .faq-toggle {
  transform: rotate(45deg);
  color: var(--primary);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.faq-item.open .faq-answer { max-height: 600px; }
.faq-answer-inner {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 0.95rem;
}

/* ======================== TEAM CARDS ======================== */
.team-card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all var(--transition-smooth);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.team-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-card);
}
.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.5rem;
  color: white;
  margin: 0 auto 1.5rem;
  font-family: var(--font-heading);
}
.team-name { font-weight: 700; color: var(--text-main); margin-bottom: 0.25rem; }
.team-role { color: var(--primary); font-size: 0.85rem; font-weight: 600; margin-bottom: 1rem; }
.team-desc { color: var(--text-dim); font-size: 0.9rem; line-height: 1.7; margin: 0; }

/* ======================== CONTACT GRID ======================== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}
.contact-item {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 2rem;
  text-align: center;
  transition: all var(--transition-smooth);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.contact-item:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: 0 4px 20px rgba(13, 148, 136, 0.1);
}
.contact-item-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(13, 148, 136, 0.08);
  border: 1px solid rgba(13, 148, 136, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
.contact-item-icon svg { width: 24px; height: 24px; color: var(--primary); }
.contact-item h4 { font-size: 1rem; margin-bottom: 0.5rem; }
.contact-item p { font-size: 0.9rem; margin: 0; }

/* ======================== LEGAL / POLICY CONTENT ======================== */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}
.legal-content h2 {
  font-size: 1.5rem;
  margin-top: 3rem;
  margin-bottom: 1rem;
  color: var(--text-main);
}
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content p {
  margin-bottom: 1.25rem;
  line-height: 1.9;
}
.legal-content ul {
  list-style: none;
  margin-bottom: 1.5rem;
  padding: 0;
}
.legal-content ul li {
  padding: 0.5rem 0 0.5rem 1.5rem;
  color: var(--text-muted);
  position: relative;
  line-height: 1.7;
}
.legal-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}

/* ======================== HIGHLIGHT BOX ======================== */
.highlight-box {
  background: #F0FDFA;
  border: 1px solid rgba(13, 148, 136, 0.15);
  border-left: 3px solid var(--primary);
  border-radius: var(--radius-md);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
}
.highlight-box p { margin: 0; }

/* ======================== ADDITIONAL RESPONSIVE ======================== */
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
  .faq-question { font-size: 0.9rem; padding: 1rem 1.25rem; }
}
