/* ==========================================================================
   Maidro Cleaning Services - main stylesheet
   ========================================================================== */

:root {
  --primary: #1e5396;
  --primary-dark: #174279;
  --primary-light: #2563b8;
  --secondary: #0a8148;
  --secondary-dark: #086637;
  --secondary-light: #0d9e59;
  --accent: #e31e24;
  --accent-dark: #c41317;
  --whatsapp: #25d366;
  --whatsapp-dark: #128c7e;

  --gray-900: #111827;
  --gray-800: #1f2937;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-500: #6b7280;
  --gray-400: #9ca3af;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --gray-50: #f9fafb;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, .05);
  --shadow: 0 1px 3px rgba(0, 0, 0, .1), 0 1px 2px -1px rgba(0, 0, 0, .1);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, .1), 0 2px 4px -2px rgba(0, 0, 0, .1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -4px rgba(0, 0, 0, .1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, .1), 0 8px 10px -6px rgba(0, 0, 0, .1);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, .25);

  --ease: cubic-bezier(.4, 0, .2, 1);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  width: 100%;
  position: relative;
  overflow-x: hidden;
  background: #fff;
  color: var(--gray-900);
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 { margin: 0; font-weight: 700; line-height: 1.25; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; color: inherit; }
hr { border: 0; border-top: 1px solid var(--gray-200); margin: .5rem 0; }
ul { margin: 0; padding: 0; list-style: none; }

:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--slate-50); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary-dark); }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: 80rem; margin: 0 auto; padding: 0 1.5rem; }
.relative { position: relative; z-index: 1; }
.section { padding: 5rem 0; }
.section-sm { padding: 6rem 0; }
.bg-white { background: #fff; }
.bg-fade-down { background: linear-gradient(to bottom, var(--slate-50), #fff); }
.bg-fade-up { background: linear-gradient(to bottom, #fff, var(--slate-50)); }
.bg-quote { background: linear-gradient(135deg, rgba(30, 83, 150, .05), rgba(147, 51, 234, .03), rgba(10, 129, 72, .05)); }

.grid-2 { display: grid; grid-template-columns: 1fr; gap: 3rem; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.align-center { align-items: center; }
.stack-4 > * + * { margin-top: 1rem; }
.stack-6 > * + * { margin-top: 1.5rem; }
.stack-8 > * + * { margin-top: 2rem; }

.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-white { color: #fff !important; }
.text-muted { color: var(--gray-600); }
.fw-600 { font-weight: 600; }
.break-all { word-break: break-all; }
.lead { font-size: 1.125rem; line-height: 2rem; color: var(--gray-600); }
.mt-16 { margin-top: 4rem; }
.mb-16 { margin-bottom: 4rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 1rem; }

/* ---------- Icons ---------- */
.icon-4 { width: 1rem; height: 1rem; flex-shrink: 0; }
.icon-5 { width: 1.25rem; height: 1.25rem; flex-shrink: 0; }
.icon-6 { width: 1.5rem; height: 1.5rem; flex-shrink: 0; }
.icon-7 { width: 1.75rem; height: 1.75rem; flex-shrink: 0; }
.icon-8 { width: 2rem; height: 2rem; flex-shrink: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .75rem 2rem;
  border: 2px solid transparent;
  border-radius: .75rem;
  font-weight: 600;
  line-height: 1.5rem;
  cursor: pointer;
  text-align: center;
  transition: all .2s var(--ease);
}
.btn:hover { transform: scale(1.02); box-shadow: var(--shadow-lg); }
.btn:active { transform: scale(.98); }
.btn:disabled { opacity: .7; cursor: wait; transform: none; }

.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); }
.btn-outline { border-color: var(--primary); color: var(--primary); background: transparent; }
.btn-outline:hover { background: var(--primary); color: #fff; box-shadow: none; }
.btn-whatsapp { background: var(--whatsapp); color: #fff; }
.btn-whatsapp:hover { background: #20b858; }
.btn-outline-white { border-color: #fff; color: #fff; background: transparent; }
.btn-outline-white:hover { background: #fff; color: var(--primary); box-shadow: none; }
.btn-block { display: flex; width: 100%; }
.btn-wide { padding-left: 2.5rem; padding-right: 2.5rem; }

.btn-row { display: flex; flex-direction: column; gap: 1rem; }
.btn-row.justify-center { align-items: center; }
.hero-ctas { padding-top: 1rem; }

/* ---------- Tags / pills ---------- */
.tag {
  display: inline-block;
  padding: .375rem 1rem;
  margin-bottom: 1rem;
  border-radius: 9999px;
  font-size: .875rem;
  font-weight: 600;
  line-height: 1.5rem;
}
.tag-secondary { background: rgba(10, 129, 72, .1); color: var(--secondary); }
.tag-accent { background: linear-gradient(to right, rgba(227, 30, 36, .1), rgba(196, 19, 23, .1)); color: var(--accent); }
.tag-primary { background: linear-gradient(to right, rgba(30, 83, 150, .1), rgba(10, 129, 72, .1)); color: var(--primary); }

.pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1rem;
  border-radius: 9999px;
  font-size: .875rem;
  font-weight: 500;
  color: var(--gray-700);
}
.pill-primary { background: rgba(30, 83, 150, .05); border: 1px solid rgba(30, 83, 150, .1); }
.dot { width: .5rem; height: .5rem; border-radius: 9999px; display: inline-block; }
.dot-secondary { background: var(--secondary); }

.tone-primary { background: rgba(30, 83, 150, .1); color: var(--primary); }
.tone-secondary { background: rgba(10, 129, 72, .1); color: var(--secondary); }
.tone-accent { background: rgba(227, 30, 36, .1); color: var(--accent); }

.grad-primary { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); }
.grad-secondary { background: linear-gradient(135deg, var(--secondary), var(--secondary-dark)); }
.grad-whatsapp { background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark)); }

/* ---------- Section headings ---------- */
.section-head { text-align: center; margin-bottom: 4rem; }
.section-title { font-size: 1.875rem; line-height: 2.5rem; color: var(--gray-900); margin-bottom: 1rem; }
.section-subtitle { font-size: 1.125rem; line-height: 2rem; color: var(--gray-600); max-width: 42rem; margin: 0 auto; }
.section-subtitle.wide { max-width: 48rem; }

/* ---------- Image frames ---------- */
.image-frame { position: relative; overflow: hidden; border-radius: 1rem; box-shadow: var(--shadow-xl); }
.image-frame img { width: 100%; height: 100%; object-fit: cover; }
.image-shade { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0, 0, 0, .1), transparent); }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  background: #fff;
  padding: 1rem 0;
  transition: all .3s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, .95);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: .75rem 0;
}
.nav { display: flex; align-items: center; justify-content: space-between; }
.logo img { width: 10rem; height: 3rem; object-fit: contain; object-position: left center; }

.nav-links, .nav-actions { display: none; }
.nav-links a, .nav-phone {
  color: var(--gray-700);
  font-weight: 500;
  transition: color .2s var(--ease);
}
.nav-links a:hover, .nav-phone:hover { color: var(--primary); }
.nav-phone { display: flex; align-items: center; gap: .5rem; }
.xl-only { display: none; }

.menu-toggle {
  display: inline-flex;
  padding: .5rem;
  border: 0;
  border-radius: .5rem;
  background: transparent;
  color: var(--gray-700);
  cursor: pointer;
  transition: background .2s;
}
.menu-toggle:hover { background: var(--gray-100); }
.menu-close-icon { display: none; }
.menu-open .menu-close-icon { display: inline; }
.menu-open .menu-open-icon { display: none; }

.mobile-menu { display: none; background: #fff; border-top: 1px solid var(--gray-200); margin-top: 1rem; }
.menu-open .mobile-menu { display: block; }
.mobile-menu-inner { display: flex; flex-direction: column; gap: 1rem; padding-top: 1.5rem; padding-bottom: 1.5rem; }
.mobile-link { color: var(--gray-700); font-weight: 500; padding: .5rem 0; transition: color .2s; }
.mobile-link:hover { color: var(--primary); }
.mobile-phone { display: flex; align-items: center; gap: .5rem; color: var(--primary); font-weight: 600; padding: .5rem 0; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  background: linear-gradient(to bottom, var(--slate-50), #fff);
}
.hero-inner { padding-top: 5rem; padding-bottom: 5rem; }
.hero-grid { align-items: center; }
.hero-title { font-size: 2.25rem; line-height: 1.25; color: var(--gray-900); }
.hero-text { font-size: 1.125rem; line-height: 2rem; color: var(--gray-600); max-width: 36rem; }
.trust-list { display: flex; flex-wrap: wrap; align-items: center; gap: 1.5rem; font-size: .875rem; color: var(--gray-600); }
.trust-item { display: flex; align-items: center; gap: .5rem; font-weight: 500; }

.hero-media { position: relative; }
.hero-image { height: 400px; }
.floating-card {
  position: absolute;
  left: 2rem;
  right: 2rem;
  bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  background: #fff;
  border-radius: .75rem;
  box-shadow: var(--shadow-lg);
}
.floating-title { font-size: 1.875rem; line-height: 2.5rem; font-weight: 700; color: var(--gray-900); }
.floating-icon { padding: .75rem; border-radius: .5rem; background: rgba(30, 83, 150, .1); color: var(--primary); }

/* ==========================================================================
   Services
   ========================================================================== */
.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 2rem;
  border-radius: 1rem;
  background: var(--slate-50);
  transition: all .3s var(--ease);
}
.service-card:hover { background: #fff; box-shadow: var(--shadow-lg); }
.service-icon {
  width: 3.5rem;
  height: 3.5rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: .75rem;
  background: rgba(30, 83, 150, .1);
  color: var(--primary);
  transition: all .3s var(--ease);
}
.service-card:hover .service-icon { background: var(--primary); color: #fff; }
.service-card h3 { font-size: 1.25rem; line-height: 2rem; color: var(--gray-900); margin-bottom: .75rem; }
.service-card p { color: var(--gray-600); line-height: 1.625; flex-grow: 1; }
.learn-more {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1rem;
  color: var(--primary);
  font-weight: 600;
  transition: gap .3s var(--ease);
}
.service-card:hover .learn-more { gap: .75rem; }

/* ==========================================================================
   Move in / Move out
   ========================================================================== */
.move-section { position: relative; overflow: hidden; }
.blob { position: absolute; width: 18rem; height: 18rem; border-radius: 9999px; filter: blur(64px); pointer-events: none; }
.blob-tl { top: 0; left: 0; background: rgba(30, 83, 150, .05); transform: translate(-50%, -50%); }
.blob-br { bottom: 0; right: 0; background: rgba(10, 129, 72, .05); transform: translate(50%, 50%); }

.info-card {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  border-radius: 1rem;
  background: #fff;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .3s var(--ease);
}
.info-card:hover { box-shadow: var(--shadow-md); }
.info-icon {
  flex-shrink: 0;
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: .75rem;
}
.info-card h3 { font-size: 1.25rem; line-height: 2rem; color: var(--gray-900); margin-bottom: .25rem; }
.info-card p { color: var(--gray-600); line-height: 1.625; }

.included-box { background: var(--primary); color: #fff; border-radius: 1rem; padding: 2rem; }
.included-box h3 { font-size: 1.5rem; line-height: 2.25rem; margin-bottom: 1.5rem; }
.included-item { display: flex; gap: .75rem; }
.included-check { color: var(--secondary-light); margin-top: .125rem; filter: brightness(1.35); }
.included-item h4 { font-weight: 600; color: #fff; line-height: 1.75rem; }
.included-item p { font-size: .875rem; line-height: 1.625; color: rgba(255, 255, 255, .75); }

/* ==========================================================================
   About
   ========================================================================== */
.about-image { height: 400px; }
.feature-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; padding-top: 1rem; }
.feature { display: flex; gap: 1rem; }
.feature-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: .75rem;
  background: rgba(30, 83, 150, .1);
  color: var(--primary);
}
.feature h3 { font-size: 1rem; line-height: 1.75rem; color: var(--gray-900); margin-bottom: .25rem; }
.feature p { font-size: .875rem; line-height: 1.5rem; color: var(--gray-600); }

/* ==========================================================================
   Free quote
   ========================================================================== */
.channel-grid { max-width: 64rem; margin: 0 auto 4rem; display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.channel-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem;
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: 1.5rem;
  box-shadow: var(--shadow-lg);
  transition: box-shadow .3s var(--ease), transform .3s var(--ease), opacity .6s var(--ease);
}
.channel-card:hover { box-shadow: var(--shadow-2xl); transform: translateY(-4px); }
.channel-icon {
  width: 4rem;
  height: 4rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  color: #fff;
  box-shadow: var(--shadow-md);
  transition: transform .3s var(--ease);
}
.channel-card:hover .channel-icon { transform: scale(1.1); }
.channel-card h3 { font-size: 1.25rem; line-height: 2rem; color: var(--gray-900); margin-bottom: .5rem; }
.channel-desc { font-size: .875rem; line-height: 1.625; color: var(--gray-500); margin-bottom: 1rem; }
.channel-detail { font-size: .875rem; font-weight: 600; color: var(--gray-700); margin-bottom: 1.5rem; }
.channel-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.5rem;
  border-radius: .75rem;
  color: #fff;
  font-size: .875rem;
  font-weight: 600;
  transition: opacity .2s;
}
.channel-card:hover .channel-cta { opacity: .9; }

.reasons-box {
  max-width: 48rem;
  margin: 0 auto;
  padding: 2rem;
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: 1.5rem;
  box-shadow: var(--shadow-lg);
}
.reasons-box h3 { text-align: center; font-size: 1.125rem; color: var(--gray-800); margin-bottom: 1.5rem; }
.reasons-box li { display: flex; align-items: flex-start; gap: .75rem; color: var(--gray-600); }
.reasons-box li + li { margin-top: 1rem; }
.reason-emoji { font-size: 1.25rem; line-height: 1.75rem; }

/* ==========================================================================
   Service areas
   ========================================================================== */
.areas-grid { max-width: 72rem; margin: 0 auto; }
.map-box {
  position: relative;
  aspect-ratio: 4 / 3;
  padding: 2rem;
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid var(--gray-100);
  background: linear-gradient(135deg, rgba(30, 83, 150, .05), rgba(10, 129, 72, .05));
  box-shadow: var(--shadow-xl);
}
.map-svg { width: 100%; height: 100%; }
.map-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: .5rem 1rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, .9);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  box-shadow: var(--shadow-lg);
  font-size: .875rem;
  font-weight: 600;
  color: var(--primary);
}
.pulse { animation: pulse 2s cubic-bezier(.4, 0, .6, 1) infinite; }

.areas-title { font-size: 1.5rem; line-height: 2.25rem; color: var(--gray-900); margin-bottom: 1.5rem; }
.area-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: .75rem; }
.area-chip {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem;
  border-radius: .75rem;
  background: var(--gray-50);
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.25rem;
  color: var(--gray-700);
}
.area-dot { width: .5rem; height: .5rem; border-radius: 9999px; background: var(--secondary); flex-shrink: 0; }
.area-chip.is-highlight { background: linear-gradient(to right, rgba(30, 83, 150, .1), rgba(10, 129, 72, .1)); color: var(--primary); }
.area-chip.is-highlight .area-dot { background: var(--primary); }
.area-note { margin-top: 2rem; padding: 1rem; border-radius: .75rem; background: rgba(227, 30, 36, .1); font-size: .875rem; color: var(--gray-700); }
.area-note strong, .area-note a { color: var(--accent); font-weight: 600; }
.area-note a:hover { text-decoration: underline; }

/* ==========================================================================
   CTA
   ========================================================================== */
.cta-section { position: relative; overflow: hidden; background: var(--primary); color: #fff; }
.cta-bg { position: absolute; inset: 0; opacity: .1; }
.cta-blob { position: absolute; width: 24rem; height: 24rem; border-radius: 9999px; filter: blur(64px); }
.cta-blob-1 { top: 0; right: 0; background: #fff; transform: translate(50%, -50%); }
.cta-blob-2 { bottom: 0; left: 0; background: var(--secondary); transform: translate(-50%, 50%); }
.cta-inner { max-width: 56rem; margin: 0 auto; text-align: center; }
.cta-inner .section-title { margin-bottom: 1.5rem; }
.cta-text { font-size: 1.125rem; line-height: 2rem; color: rgba(255, 255, 255, .9); max-width: 42rem; margin: 0 auto 2.5rem; }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-title { font-size: 1.5rem; line-height: 2.25rem; color: var(--gray-900); margin-bottom: 1rem; }
.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: .75rem;
  background: var(--slate-50);
  transition: background .2s;
}
a.contact-card:hover { background: var(--slate-100); }
.contact-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: .75rem;
}
.contact-card h4 { color: var(--gray-900); line-height: 1.75rem; }
.contact-image { display: none; height: 300px; box-shadow: var(--shadow-lg); }

.contact-form > * + * { margin-top: 1.5rem; }
.field label { display: block; margin-bottom: .5rem; font-size: .875rem; font-weight: 600; color: var(--gray-900); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1px solid var(--gray-200);
  border-radius: .75rem;
  background: #fff;
  line-height: 1.5rem;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.field textarea { resize: none; }
.field input::placeholder, .field textarea::placeholder { color: var(--gray-400); }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: transparent;
  box-shadow: 0 0 0 2px var(--primary);
}
.field-row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.form-or { padding-top: 1rem; }

.form-alert { padding: 1rem 1.25rem; border-radius: .75rem; font-weight: 500; font-size: .95rem; line-height: 1.5rem; }
.form-alert[hidden] { display: none; }
.form-alert.is-success { background: rgba(10, 129, 72, .1); color: var(--secondary-dark); border: 1px solid rgba(10, 129, 72, .25); }
.form-alert.is-error { background: rgba(227, 30, 36, .08); color: var(--accent-dark); border: 1px solid rgba(227, 30, 36, .25); }

.hp-field { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--gray-900); color: #fff; }
.footer-inner { padding-top: 4rem; padding-bottom: 4rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
.footer-logo {
  display: inline-block;
  margin-bottom: 1.5rem;
  padding: .5rem;
  background: #fff;
  border-radius: .5rem;
}
.footer-logo img { width: 10rem; height: 2.5rem; object-fit: contain; }
.footer-about p { color: var(--gray-400); max-width: 28rem; line-height: 1.625; margin-bottom: 1.5rem; }
.socials { display: flex; gap: .75rem; }
.social {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: .5rem;
  background: rgba(255, 255, 255, .1);
  transition: background .2s;
}
.social-fb:hover { background: var(--primary); }
.social-ig:hover { background: linear-gradient(135deg, #a855f7, #ec4899); }
.social-wa:hover { background: var(--whatsapp); }
.site-footer h3 { font-size: 1rem; color: #fff; margin-bottom: 1.5rem; }
.site-footer li + li { margin-top: .75rem; }
.site-footer li a, .footer-muted { color: var(--gray-400); transition: color .2s; }
.site-footer li a:hover { color: #fff; }
.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-size: .875rem;
  color: var(--gray-400);
  text-align: center;
}
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: var(--gray-400); transition: color .2s; }
.footer-legal a:hover { color: #fff; }

/* ---------- Floating WhatsApp button ---------- */
.whatsapp-float {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 50;
  padding: 1rem;
  border-radius: 9999px;
  background: var(--whatsapp);
  color: #fff;
  box-shadow: var(--shadow-2xl);
  transition: background .3s, transform .2s;
  animation: pop-in .5s cubic-bezier(.34, 1.56, .64, 1) 1s both;
}
.whatsapp-float:hover { background: var(--whatsapp-dark); transform: scale(1.1); }
.whatsapp-float:active { transform: scale(.9); }
.whatsapp-wiggle { position: relative; display: block; animation: wiggle 3.5s ease-in-out infinite; }
.whatsapp-ping {
  position: absolute;
  inset: -.25rem;
  border-radius: 9999px;
  background: var(--whatsapp);
  opacity: .3;
  animation: ping 1s cubic-bezier(0, 0, .2, 1) infinite;
}

/* ==========================================================================
   Animations
   ========================================================================== */
.js .reveal, .js .reveal-left, .js .reveal-right, .js .reveal-scale {
  opacity: 0;
  transition: opacity .6s var(--ease) var(--d, 0s), transform .6s var(--ease) var(--d, 0s),
              background-color .3s var(--ease), box-shadow .3s var(--ease);
}
.js .reveal { transform: translateY(20px); }
.js .reveal-left { transform: translateX(-30px); }
.js .reveal-right { transform: translateX(30px); }
.js .reveal-scale { transform: scale(.9); }
.js .reveal.in, .js .reveal-left.in, .js .reveal-right.in, .js .reveal-scale.in { opacity: 1; transform: none; }
/* Cards with their own hover transform keep it after revealing */
.js .channel-card.in:hover { transform: translateY(-4px); }

@keyframes pulse { 50% { opacity: .5; } }
@keyframes ping { 75%, 100% { transform: scale(2); opacity: 0; } }
@keyframes pop-in { from { transform: scale(0); opacity: 0; } to { transform: scale(1); opacity: 1; } }
@keyframes wiggle {
  0%, 85.7%, 100% { transform: rotate(0); }
  90% { transform: rotate(10deg); }
  95% { transform: rotate(-10deg); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; transition-delay: 0s !important; }
  .js .reveal, .js .reveal-left, .js .reveal-right, .js .reveal-scale { opacity: 1; transform: none; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (min-width: 640px) {
  .btn-row { flex-direction: row; }
  .btn-row.justify-center { justify-content: center; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .field-row { grid-template-columns: repeat(2, 1fr); }
  .area-list { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 768px) {
  .hero-title { font-size: 3rem; line-height: 1.2; }
  .section-title { font-size: 2.25rem; line-height: 3rem; }
  .hero-image { height: 500px; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .channel-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

@media (min-width: 1024px) {
  .container { padding: 0 2rem; }
  .section { padding: 8rem 0; }
  .section-head { margin-bottom: 5rem; }
  .section-title { font-size: 3rem; line-height: 3.5rem; }
  .section-subtitle, .lead.hero-text, .hero-text { font-size: 1.25rem; }
  .hero-inner { padding-top: 6rem; padding-bottom: 6rem; }
  .hero-title { font-size: 3.75rem; line-height: 1.15; }

  .grid-2 { grid-template-columns: repeat(2, 1fr); gap: 4rem; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
  .areas-grid { gap: 3rem; }

  .logo img { width: 11rem; height: 3.5rem; }
  .nav-links { display: flex; align-items: center; gap: 2.5rem; }
  .nav-actions { display: flex; align-items: center; gap: 1rem; }
  .menu-toggle, .mobile-menu, .menu-open .mobile-menu { display: none; }

  .about-image { height: 600px; }
  .included-box { padding: 2.5rem; }
  .contact-title { font-size: 1.875rem; line-height: 2.5rem; }
  .contact-image { display: block; }

  .footer-inner { padding-top: 5rem; padding-bottom: 5rem; }
  .footer-grid { grid-template-columns: repeat(4, 1fr); gap: 2rem; }
  .footer-about { grid-column: span 2; }
}

@media (min-width: 1280px) {
  .xl-only { display: inline; }
  .hero-image { height: 600px; }
}
