/*
Theme Name: Morais Kano
Theme URI: https://moraiskano.com.br
Author: Morais Kano Advogados Associados
Author URI: https://moraiskano.com.br
Description: Tema corporativo sofisticado para o escritório Morais Kano Advogados Associados. Design premium em azul escuro, cinza e aço.
Version: 2.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: Proprietary
Text Domain: moraiskano
*/

/* =====================================================
   CSS CUSTOM PROPERTIES
   ===================================================== */
:root {
  /* Palette */
  --navy:         #0B1A2F;
  --navy-mid:     #122240;
  --navy-light:   #1A3258;
  --steel:        #2E4A6B;
  --steel-light:  #3E6491;
  --silver:       #8CA3BC;
  --silver-light: #B8CEDD;
  --ash:          #D4DDE8;
  --offwhite:     #F0F4F8;
  --white:        #FFFFFF;
  --accent:       #4A8FBF;
  --accent-light: #6AAFDF;
  --accent-glow:  rgba(74,143,191,0.18);

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', 'Helvetica Neue', sans-serif;
  --font-mono:    'DM Mono', 'Courier New', monospace;

  /* Spacing */
  --gap-xs:  0.5rem;
  --gap-sm:  1rem;
  --gap-md:  2rem;
  --gap-lg:  4rem;
  --gap-xl:  7rem;

  /* Radii */
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 16px;

  /* Shadows */
  --shadow-card: 0 4px 32px rgba(11,26,47,0.22), 0 1px 4px rgba(11,26,47,0.12);
  --shadow-nav:  0 2px 24px rgba(11,26,47,0.35);

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --dur:  0.32s;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--offwhite);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* =====================================================
   TYPOGRAPHY SCALE
   ===================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 1rem;
  display: block;
}

/* =====================================================
   UTILITY CLASSES
   ===================================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.container--wide { max-width: 1440px; }
.container--narrow { max-width: 820px; }

.section { padding: var(--gap-xl) 0; }
.section--sm { padding: var(--gap-lg) 0; }

.text-accent   { color: var(--accent-light); }
.text-silver   { color: var(--silver-light); }
.text-muted    { color: var(--silver); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: all var(--dur) var(--ease);
  border: none;
  outline: none;
}
.btn--primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 0 0 0 var(--accent-glow);
}
.btn--primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(74,143,191,0.38);
}
.btn--outline {
  background: transparent;
  color: var(--silver-light);
  border: 1px solid var(--steel-light);
}
.btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent-light);
  background: var(--accent-glow);
}

.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  margin: 1.5rem 0 2rem;
}

/* =====================================================
   SITE HEADER / NAV
   ===================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: background var(--dur) var(--ease), padding var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.site-header.scrolled {
  background: rgba(11, 26, 47, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-nav);
  padding: 0.7rem 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.site-logo .logo-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.01em;
}
.site-logo .logo-sub {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--silver);
  margin-top: 2px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-menu a {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--silver-light);
  position: relative;
  transition: color var(--dur) var(--ease);
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width var(--dur) var(--ease);
}
.nav-menu a:hover { color: var(--white); }
.nav-menu a:hover::after { width: 100%; }

.nav-cta { margin-left: 1rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--silver-light);
  border-radius: 2px;
  transition: all var(--dur) var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
.mobile-nav {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--navy);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--offwhite);
  transition: color var(--dur) var(--ease);
}
.mobile-nav a:hover { color: var(--accent-light); }

/* =====================================================
   HERO
   ===================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(46,74,107,0.45) 0%, transparent 65%),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(74,143,191,0.12) 0%, transparent 55%),
    linear-gradient(160deg, var(--navy) 40%, var(--navy-mid) 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(74,143,191,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74,143,191,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-light);
  border: 1px solid rgba(74,143,191,0.3);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  margin-bottom: 2rem;
  background: rgba(74,143,191,0.06);
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}

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

.hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero h1 em {
  font-style: normal;
  color: var(--accent-light);
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--silver-light);
  max-width: 540px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

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

.hero-scroll {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--silver);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: scrollBounce 2.5s infinite;
}
.hero-scroll svg {
  width: 20px; height: 20px;
  stroke: var(--silver);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* Animated entrance */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s var(--ease) forwards;
}
.fade-up:nth-child(1) { animation-delay: 0.1s; }
.fade-up:nth-child(2) { animation-delay: 0.25s; }
.fade-up:nth-child(3) { animation-delay: 0.4s; }
.fade-up:nth-child(4) { animation-delay: 0.55s; }

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

/* =====================================================
   STATS BAR
   ===================================================== */
.stats-bar {
  background: var(--navy-mid);
  border-top: 1px solid rgba(74,143,191,0.15);
  border-bottom: 1px solid rgba(74,143,191,0.15);
  padding: 2.5rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 1rem 2rem;
  border-right: 1px solid rgba(74,143,191,0.12);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--accent-light);
  line-height: 1;
  display: block;
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver);
  margin-top: 0.4rem;
  display: block;
}

/* =====================================================
   ABOUT SECTION
   ===================================================== */
.about {
  background: var(--navy);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-img-frame {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--navy-mid);
}
.about-img-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-img-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(11,26,47,0.6) 100%);
  z-index: 1;
}
.about-accent-box {
  position: absolute;
  bottom: -2rem; right: -2rem;
  width: 200px;
  background: var(--accent);
  padding: 2rem;
  border-radius: var(--r-md);
  z-index: 2;
}
.about-accent-box .num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.about-accent-box .lbl {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
  margin-top: 0.25rem;
}

.about-content h2 { color: var(--white); margin-bottom: 0; }
.about-content p { color: var(--silver-light); }

.about-features {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: var(--r-md);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(74,143,191,0.1);
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.feature-item:hover {
  border-color: rgba(74,143,191,0.3);
  background: rgba(74,143,191,0.05);
}
.feature-icon {
  width: 40px; height: 40px;
  border-radius: var(--r-sm);
  background: var(--accent-glow);
  border: 1px solid rgba(74,143,191,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent-light);
}
.feature-icon svg { width: 18px; height: 18px; stroke: currentColor; fill: none; }
.feature-text h4 { font-size: 0.95rem; color: var(--white); margin-bottom: 0.2rem; }
.feature-text p { font-size: 0.85rem; color: var(--silver); margin: 0; }

/* =====================================================
   SERVICES / AREAS
   ===================================================== */
.services {
  background: var(--navy-mid);
  position: relative;
  overflow: hidden;
}
.services::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74,143,191,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.services-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 4rem;
  gap: 2rem;
}
.services-header h2 { color: var(--white); }

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.area-card {
  background: rgba(11,26,47,0.5);
  border: 1px solid rgba(74,143,191,0.12);
  border-radius: var(--r-md);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all var(--dur) var(--ease);
  cursor: default;
}
.area-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease);
}
.area-card:hover {
  border-color: rgba(74,143,191,0.3);
  background: rgba(74,143,191,0.06);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.area-card:hover::before { transform: scaleX(1); }

.area-num {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  display: block;
}
.area-card h3 {
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.area-card p {
  font-size: 0.88rem;
  color: var(--silver);
  line-height: 1.65;
  margin: 0;
}

/* =====================================================
   DIFFERENTIATION / PILLARS
   ===================================================== */
.pillars { background: var(--navy); }
.pillars-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6rem;
  align-items: center;
}
.pillars-text h2 { color: var(--white); }
.pillars-text p { color: var(--silver-light); }
.pillars-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}
.pillar {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.pillar-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(74,143,191,0.2);
  line-height: 1;
  min-width: 60px;
}
.pillar h4 { color: var(--white); margin-bottom: 0.3rem; font-size: 1.05rem; }
.pillar p  { color: var(--silver); font-size: 0.88rem; margin: 0; }

/* =====================================================
   INTERNATIONAL / NEWS
   ===================================================== */
.international { background: var(--navy-mid); }
.intl-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.intl-card {
  background: rgba(11,26,47,0.5);
  border: 1px solid rgba(74,143,191,0.12);
  border-radius: var(--r-lg);
  padding: 3rem;
  transition: all var(--dur) var(--ease);
}
.intl-card:hover {
  border-color: rgba(74,143,191,0.3);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}
.intl-card h3 { color: var(--white); margin-bottom: 1rem; font-size: 1.4rem; }
.intl-card p  { color: var(--silver-light); font-size: 0.92rem; }

/* =====================================================
   TEAM
   ===================================================== */
.team { background: var(--navy); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}
.team-card {
  background: var(--navy-mid);
  border: 1px solid rgba(74,143,191,0.1);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all var(--dur) var(--ease);
}
.team-card:hover {
  border-color: rgba(74,143,191,0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.team-photo {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--navy-light), var(--steel));
  position: relative;
  overflow: hidden;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-photo-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-photo-placeholder svg { width: 80px; height: 80px; stroke: var(--steel-light); opacity: 0.4; fill: none; }
.team-info { padding: 1.75rem; }
.team-info h3 { font-size: 1.15rem; color: var(--white); margin-bottom: 0.3rem; }
.team-role {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

/* =====================================================
   CONTACT
   ===================================================== */
.contact { background: var(--navy-mid); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
}
.contact-info h2 { color: var(--white); }
.contact-info p  { color: var(--silver-light); }
.contact-details {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.contact-detail-icon {
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  background: var(--accent-glow);
  border: 1px solid rgba(74,143,191,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 18px; height: 18px; stroke: var(--accent-light); fill: none; }
.contact-detail h4 {
  font-size: 0.72rem;
  font-family: var(--font-mono);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 0.2rem;
}
.contact-detail a,
.contact-detail span { color: var(--offwhite); font-size: 0.95rem; }
.contact-detail a:hover { color: var(--accent-light); }

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-field label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--silver);
}
.form-field input,
.form-field textarea,
.form-field select {
  background: rgba(11,26,47,0.6);
  border: 1px solid rgba(74,143,191,0.18);
  border-radius: var(--r-sm);
  color: var(--offwhite);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  width: 100%;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--silver); }
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}
.form-field textarea { resize: vertical; min-height: 130px; }

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer {
  background: var(--navy);
  border-top: 1px solid rgba(74,143,191,0.12);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}
.footer-brand .logo-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
}
.footer-brand .logo-sub {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver);
}
.footer-brand p {
  font-size: 0.88rem;
  color: var(--silver);
  margin-top: 1rem;
  line-height: 1.7;
}
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: var(--silver);
  transition: color var(--dur) var(--ease);
}
.footer-col ul li a:hover { color: var(--offwhite); }
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(74,143,191,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: var(--silver);
  margin: 0;
}
.footer-bottom a { color: var(--accent); }

/* WhatsApp FAB */
.whatsapp-fab {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 900;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}
.whatsapp-fab svg { width: 28px; height: 28px; fill: white; }

/* =====================================================
   SCROLL REVEAL
   ===================================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
  .about-grid,
  .pillars-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-accent-box { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --gap-xl: 4rem; --gap-lg: 2.5rem; }
  .nav-menu, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .hero h1 { font-size: 2.4rem; }
  .services-header { flex-direction: column; align-items: flex-start; }
  .intl-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
