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

/* ===== CSS VARIABLES ===== */
:root {
  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --white: #ffffff;

  --teal-700: #1678b8;
  --teal-600: #1F99E5;
  --teal-500: #3aa8ee;
  --teal-400: #5fbdf3;
  --teal-100: #dbeffe;
  --teal-50: #eef7ff;

  --amber-600: #d97706;
  --amber-500: #f59e0b;
  --amber-50: #fffbeb;

  --green-600: #059669;
  --green-500: #10b981;
  --whatsapp: #25d366;

  --shadow-xs: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.07), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0,0,0,0.15);

  --section-py: 110px;
  --container-max: 1200px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 17px; overflow-x: hidden; width: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--slate-700);
  line-height: 1.75;
  background: var(--white);
  overflow-x: hidden;
  width: 100%;
  position: relative;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: all 0.3s var(--ease); }
ul, ol { list-style: none; }

/* ===== UTILITIES ===== */
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 24px; }

.section-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--teal-600);
  margin-bottom: 14px;
  display: block;
}

.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.7rem);
  font-weight: 800;
  color: var(--slate-900);
  line-height: 1.15;
  margin-bottom: 18px;
}

.section-subtitle {
  font-size: 1.08rem;
  color: var(--slate-500);
  max-width: 560px;
  line-height: 1.75;
}

/* ===== HEADER ===== */
.header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: clamp(8px, 1.8vw, 14px) clamp(12px, 2.4vw, 20px);
  transition: all 0.4s var(--ease);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: clamp(8px, 2vw, 18px);
  padding: 12px clamp(14px, 3vw, 28px); max-width: var(--container-max); margin: 0 auto;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
  transition: all 0.4s var(--ease);
}
.header.scrolled { padding: 8px clamp(12px, 2.4vw, 20px); }
.header.scrolled .header-inner {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 4px 30px rgba(0,0,0,0.1), 0 1px 4px rgba(0,0,0,0.06);
  border-color: var(--slate-200);
}
.header-logo { display: flex; align-items: center; z-index: 1001; }
.header-logo img { height: 38px; width: auto; transition: all 0.3s var(--ease); }
.header.scrolled .header-logo img { height: 32px; }

.nav-menu { display: flex; align-items: center; gap: 2px; justify-content: center; flex: 1; min-width: 0; }
.nav-link {
  font-family: 'Outfit', sans-serif; font-size: 0.88rem; font-weight: 500;
  color: var(--slate-600); padding: 8px 14px; border-radius: 10px;
  transition: all 0.2s var(--ease);
}
.nav-link:hover { color: var(--slate-900); background: rgba(0,0,0,0.04); }
.nav-link.active { color: var(--teal-600); font-weight: 600; }
.mobile-menu-actions { display: none; }

.header-cta { display: flex; align-items: center; gap: 10px; }
.header-phone {
  display: flex; align-items: center; gap: 7px;
  font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 0.88rem;
  color: var(--slate-700); padding: 8px 12px; border-radius: 10px;
}
.header-phone:hover { background: rgba(0,0,0,0.04); }
.header-phone svg { width: 16px; height: 16px; color: var(--teal-600); }

.btn-header {
  font-family: 'Outfit', sans-serif; font-size: 0.82rem; font-weight: 600;
  padding: 10px 20px; border-radius: 10px; border: none; cursor: pointer;
  background: var(--slate-900); color: var(--white);
  transition: all 0.3s var(--ease);
}
.btn-header:hover { background: var(--slate-800); transform: translateY(-1px); box-shadow: var(--shadow-md); }

@media (max-width: 1200px) {
  .header-phone-text { display: none; }
  .header-phone { padding: 8px; width: 36px; height: 36px; justify-content: center; }
  .btn-header { padding: 10px 16px; font-size: 0.78rem; }
}

.mobile-toggle {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  padding: 8px; z-index: 1001; background: none; border: none;
}
.mobile-toggle span { display: block; width: 22px; height: 2px; background: var(--slate-800); border-radius: 2px; transition: all 0.3s var(--ease); }
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

body.mobile-menu-open::before {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,0.42);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  z-index: 998;
}

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding-top: 80px; overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(59,130,246,0.28), transparent 32%),
    linear-gradient(118deg, #0d3b91 0%, #0c3280 54%, #0a1d46 100%);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.12) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.28;
  pointer-events: none;
}
.hero-bg { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.08; mix-blend-mode: screen; }
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(8,29,70,0.18) 0%, rgba(8,29,70,0.08) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr); gap: 36px; align-items: center;
  padding: 58px 0 86px;
}
.hero-text { animation: fadeInUp 0.7s ease-out; }

.hero h1 {
  font-family: 'Outfit', sans-serif; font-size: clamp(2.25rem, 4.3vw, 3.65rem);
  font-weight: 800; color: var(--white); line-height: 1.02; margin-bottom: 20px;
  max-width: 640px;
  margin-top: 8px;
}

.hero-description {
  font-size: 1.02rem; color: rgba(255,255,255,0.82); line-height: 1.72;
  max-width: 540px; margin-bottom: 30px;
}

.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary {
  font-family: 'Outfit', sans-serif; font-size: 0.92rem; font-weight: 600;
  padding: 14px 28px; border-radius: var(--radius-sm); border: none; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  background: #f25c1d; color: var(--white); transition: all 0.3s var(--ease);
}
.btn-primary:hover { background: #de5319; transform: translateY(-2px); box-shadow: 0 10px 24px rgba(242,92,29,0.32); }
.btn-secondary {
  font-family: 'Outfit', sans-serif; font-size: 0.92rem; font-weight: 600;
  padding: 14px 28px; border-radius: var(--radius-sm); cursor: pointer;
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.06); color: var(--white); border: 1.5px solid rgba(255,255,255,0.18);
  transition: all 0.3s var(--ease);
}
.btn-secondary:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.12); }
.btn-primary svg, .btn-secondary svg { width: 18px; height: 18px; }

.hero-stats {
  display: flex; gap: 14px; margin-top: 26px; padding-top: 0;
  border-top: none;
  flex-wrap: wrap;
}
.hero-stat-number {
  font-family: 'Outfit', sans-serif; font-size: 1.45rem; font-weight: 800;
  color: var(--white); line-height: 1; margin-bottom: 4px;
}
.hero-stat {
  min-width: 150px;
  padding: 15px 16px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
}
.hero-stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.72); font-weight: 500; }

.hero-visual {
  position: relative;
  min-height: 560px;
  animation: fadeInRight 0.7s ease-out 0.1s both;
}
.hero-visual-frame {
  position: relative;
  height: 100%;
  min-height: 560px;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 28px 60px rgba(4, 17, 45, 0.34);
}
.hero-visual-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4,17,45,0.02), rgba(4,17,45,0.22));
  z-index: 1;
  pointer-events: none;
}
.hero-visual-frame img {
  position: absolute;
  inset: -1px;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  object-fit: cover;
  object-position: center;
  clip-path: polygon(16% -2%, 102% -2%, 102% 102%, -2% 102%);
}

.form-group { margin-bottom: 12px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 11px 15px; border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-sm); font-family: 'Inter', sans-serif; font-size: 0.88rem;
  color: var(--slate-800); background: var(--white); transition: all 0.2s var(--ease);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--teal-500); box-shadow: 0 0 0 3px rgba(13,148,136,0.08);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--slate-400); }
.form-group textarea { resize: vertical; min-height: 72px; }

.btn-form {
  width: 100%; font-family: 'Outfit', sans-serif; font-size: 0.92rem; font-weight: 600;
  padding: 13px; border-radius: var(--radius-sm); border: none; cursor: pointer;
  background: var(--slate-900); color: var(--white);
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: all 0.3s var(--ease); margin-top: 4px;
}
.btn-form:hover { background: var(--slate-800); transform: translateY(-1px); box-shadow: var(--shadow-md); }

/* ===== FEATURES BAR ===== */
.features-bar {
  position: relative; z-index: 3;
  background: var(--white);
  padding: 56px 0;
  border-bottom: 1px solid var(--slate-100);
}
.features-bar-inner {
  display: flex; align-items: flex-start; justify-content: center;
  gap: 0;
}
.feature-item {
  flex: 1; text-align: center;
  padding: 10px 32px;
  position: relative;
  border-right: 1px solid var(--slate-200);
}
.feature-item:last-child { border-right: none; }

.feature-icon {
  width: auto; height: auto; min-width: auto; border-radius: 0;
  display: flex; align-items: center; justify-content: center;
  background: none; color: var(--slate-500);
  margin: 0 auto 12px;
}
.feature-icon svg { width: 24px; height: 24px; stroke-width: 1.5; }
.feature-text h4 {
  font-family: 'Outfit', sans-serif; font-size: 0.95rem; font-weight: 700;
  color: var(--slate-800); margin-bottom: 6px;
}
.feature-text p {
  display: block;
  font-size: 0.85rem; color: var(--slate-400); line-height: 1.55;
  max-width: 220px; margin: 0 auto;
}

/* ===== ABOUT ===== */
.about { padding: var(--section-py) 0; background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }

.about-image { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.about-image img {
  width: 100%; height: 460px; object-fit: cover; border-radius: var(--radius-lg);
  transition: transform 0.6s var(--ease);
}
.about-image:hover img { transform: scale(1.03); }

.about-experience-badge {
  position: absolute; bottom: 20px; left: 20px;
  background: var(--slate-900); color: var(--white);
  padding: 18px 24px; border-radius: var(--radius-md);
  display: flex; align-items: center; gap: 12px; box-shadow: var(--shadow-lg);
}
.about-experience-badge .badge-number {
  font-family: 'Outfit', sans-serif; font-size: 2.2rem; font-weight: 800; line-height: 1;
}
.about-experience-badge .badge-text { font-size: 0.78rem; font-weight: 500; line-height: 1.3; opacity: 0.7; }

.about-content .section-subtitle { margin-bottom: 28px; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 32px; }
.about-feature {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: var(--radius-sm); transition: all 0.2s var(--ease);
}
.about-feature:hover { background: var(--slate-50); }
.about-feature svg { width: 18px; height: 18px; color: var(--teal-600); min-width: 18px; }
.about-feature span { font-size: 0.86rem; font-weight: 500; color: var(--slate-600); }

.about-cta { display: flex; align-items: center; gap: 14px; }
.btn-about {
  font-family: 'Outfit', sans-serif; font-size: 0.88rem; font-weight: 600;
  padding: 12px 26px; border-radius: var(--radius-sm); border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px; transition: all 0.3s var(--ease);
}
.btn-about-primary { background: var(--slate-900); color: var(--white); }
.btn-about-primary:hover { background: var(--slate-800); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-about-secondary { background: transparent; color: var(--slate-700); border: 1.5px solid var(--slate-200); }
.btn-about-secondary:hover { border-color: var(--slate-400); }

/* ===== SERVICES ===== */
.services { padding: var(--section-py) 0; background: var(--slate-50); }
.services-header { text-align: center; margin-bottom: 56px; }
.services-header .section-subtitle { margin: 0 auto; }

.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.service-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--slate-100); transition: all 0.35s var(--ease);
  display: flex; flex-direction: row; min-height: 280px;
}
.service-card:hover { box-shadow: var(--shadow-lg); border-color: transparent; transform: translateY(-4px); }

.service-card-image { position: relative; width: 220px; min-width: 220px; overflow: hidden; }
.service-card-image img {
  width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease);
}
.service-card:hover .service-card-image img { transform: scale(1.06); }
.service-card-overlay { display: none; }
.service-card-icon { display: none; }

.service-card-body { padding: 28px 26px; flex-grow: 1; display: flex; flex-direction: column; }
.service-card-body h3 {
  font-family: 'Outfit', sans-serif; font-size: 1.15rem; font-weight: 700;
  color: var(--slate-900); margin-bottom: 10px;
  display: flex; align-items: center; gap: 10px;
}
.service-card-body h3::before {
  content: ''; width: 3px; height: 20px; border-radius: 2px; background: var(--teal-500);
  flex-shrink: 0;
}
.service-card-body > p {
  font-size: 0.92rem; color: var(--slate-500); line-height: 1.7;
  margin-bottom: 16px; flex-grow: 1;
}

.service-list { display: flex; flex-direction: column; gap: 7px; }
.service-list li {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.88rem; color: var(--slate-600); font-weight: 500;
}
.service-list li svg { width: 14px; height: 14px; color: var(--teal-500); min-width: 14px; }

/* ===== CTA BANNER ===== */
.cta-banner { background: var(--slate-900); padding: 72px 0; position: relative; overflow: hidden; }
.cta-banner::before {
  content: ''; position: absolute; top: -40%; right: -8%;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(13,148,136,0.06);
}
.cta-content {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: minmax(0, 1.2fr) auto; align-items: center; gap: 40px;
  padding: 34px 38px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.16);
}
.cta-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
}
.cta-text h2 {
  font-family: 'Outfit', sans-serif; font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800; color: var(--white); margin-bottom: 10px; line-height: 1.2;
}
.cta-text p { font-size: 1rem; color: rgba(255,255,255,0.7); max-width: 560px; }

.cta-buttons { display: flex; gap: 12px; flex-shrink: 0; align-items: center; }
.btn-cta-whatsapp {
  font-family: 'Outfit', sans-serif; font-size: 0.92rem; font-weight: 600;
  padding: 14px 28px; border-radius: var(--radius-sm); border: none; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  background: #f25c1d; color: var(--white); transition: all 0.3s var(--ease);
}
.btn-cta-whatsapp:hover { background: #de5319; transform: translateY(-2px); box-shadow: 0 10px 24px rgba(242,92,29,0.32); }
.btn-cta-call {
  font-family: 'Outfit', sans-serif; font-size: 0.92rem; font-weight: 600;
  padding: 14px 28px; border-radius: var(--radius-sm); cursor: pointer;
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.2);
  transition: all 0.3s var(--ease);
}
.btn-cta-call:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.4); }
.btn-cta-whatsapp svg, .btn-cta-call svg { width: 18px; height: 18px; }

/* ===== WHY US ===== */
.why-us { padding: var(--section-py) 0; background: var(--slate-50); }
.why-us-header { margin-bottom: 50px; }
.why-us-header .section-subtitle { margin: 0; }

.why-us-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

.why-card {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 32px 28px;
  border-radius: 14px;
  background: var(--white);
  transition: all 0.3s var(--ease);
  border: 1px solid transparent;
}
.why-card:hover {
  background: var(--white);
  border-color: var(--slate-200);
  box-shadow: 0 8px 28px rgba(0,0,0,0.06);
}
.why-card::before { display: none; }

.why-card-number {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem; font-weight: 800;
  color: var(--teal-600);
  opacity: 0.3;
  line-height: 1;
  min-width: 40px;
}

.why-card-content h3 {
  font-family: 'Outfit', sans-serif; font-size: 1.05rem; font-weight: 700;
  color: var(--slate-800); margin-bottom: 6px;
}
.why-card-content p {
  font-size: 0.9rem; color: var(--slate-400); line-height: 1.65;
}

.why-card-icon { display: none; }

/* ===== AREAS ===== */
.areas { padding: var(--section-py) 0; background: var(--slate-50); }
.areas-content { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

.areas-map {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md); border: 1px solid var(--slate-100);
}
.areas-map iframe { width: 100%; height: 400px; border: none; }

.areas-text .area-locations { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
.area-location {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px; background: var(--white);
  border-radius: var(--radius-md); border: 1px solid var(--slate-100);
  transition: all 0.2s var(--ease);
}
.area-location:hover { border-color: var(--slate-300); transform: translateX(4px); }
.area-location-icon {
  width: 40px; height: 40px; min-width: 40px; border-radius: var(--radius-sm);
  background: var(--slate-50); color: var(--slate-600);
  display: flex; align-items: center; justify-content: center;
}
.area-location-icon svg { width: 18px; height: 18px; }
.area-location h4 {
  font-family: 'Outfit', sans-serif; font-size: 0.95rem; font-weight: 700;
  color: var(--slate-800); margin-bottom: 1px;
}
.area-location p { font-size: 0.8rem; color: var(--slate-400); }

/* ===== CONTACT ===== */
.contact {
  padding: var(--section-py) 0;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.08), transparent 26%),
    linear-gradient(135deg, #0c3280 0%, #0a255d 100%);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact .section-label { color: rgba(255,255,255,0.72); }
.contact .section-title { color: var(--white); }
.contact .section-subtitle { color: rgba(255,255,255,0.78); max-width: 520px; }
.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.contact-method {
  display: inline-flex; align-items: center; gap: 10px;
  min-height: 0;
  padding: 8px 14px;
  background: rgba(255,255,255,0.1);
  border-radius: 999px;
  transition: all 0.2s var(--ease);
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
}
.contact-method:hover { background: rgba(255,255,255,0.16); transform: translateY(-1px); }
.contact-method-icon {
  width: 32px; height: 32px; min-width: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.18); color: var(--white);
}
.contact-method-icon.whatsapp { background: var(--whatsapp); }
.contact-method-icon svg { width: 14px; height: 14px; }
.contact-method-copy { display: block; }
.contact-method-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
}

.contact-form-card {
  background: rgba(255,255,255,0.96); border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 24px 50px rgba(5, 18, 48, 0.22);
}
.contact-form-card h3 {
  font-family: 'Outfit', sans-serif; font-size: 1.3rem; font-weight: 700;
  color: var(--slate-900); margin-bottom: 4px;
}
.contact-form-card > p { font-size: 0.85rem; color: var(--slate-400); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* ===== FOOTER ===== */
.footer { background: var(--white); padding: 64px 0 0; color: var(--slate-700); border-top: 1px solid var(--slate-200); }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 44px; padding-bottom: 44px; border-bottom: 1px solid var(--slate-100);
}
.footer-brand img { width: auto; height: auto; max-height: 60px; max-width: 180px; margin-bottom: 18px; }
.footer-brand p { font-size: 0.9rem; color: var(--slate-400); line-height: 1.75; margin-bottom: 20px; }

.footer-social { display: flex; gap: 8px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: var(--radius-sm);
  background: var(--slate-50); display: flex; align-items: center; justify-content: center;
  color: var(--slate-400); transition: all 0.2s var(--ease);
  border: 1px solid var(--slate-100);
}
.footer-social a:hover { background: var(--slate-100); color: var(--slate-700); }
.footer-social a svg { width: 16px; height: 16px; }

.footer-title {
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  font-family: 'Outfit', sans-serif; font-size: 0.9rem; font-weight: 700;
  margin-bottom: 18px; color: var(--slate-800);
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: default;
}
.footer-title-icon { display: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  font-size: 0.85rem; color: var(--slate-400); display: flex; align-items: center; gap: 6px;
}
.footer-col ul li a:hover { color: var(--slate-700); }
.footer-col ul li a svg { width: 13px; height: 13px; opacity: 0.4; }

.footer-bottom {
  padding: 20px 0; display: flex; align-items: center; justify-content: space-between;
}
.footer-bottom p { font-size: 0.78rem; color: var(--slate-400); }
.footer-bottom a { color: var(--teal-600); }
.footer-bottom a:hover { color: var(--teal-700); }

/* ===== FLOATING BUTTONS ===== */
.floating-buttons { position: fixed; bottom: 24px; right: 24px; display: flex; flex-direction: column; gap: 10px; z-index: 999; }
.float-btn {
  width: 54px; height: 54px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); box-shadow: var(--shadow-lg); cursor: pointer;
  transition: all 0.3s var(--ease); border: none; position: relative;
}
.float-btn:hover { transform: scale(1.08); }
.float-btn.whatsapp { background: var(--whatsapp); }
.float-btn.whatsapp:hover { box-shadow: 0 6px 20px rgba(37,211,102,0.35); }
.float-btn.phone { background: var(--slate-800); }
.float-btn.phone:hover { box-shadow: 0 6px 20px rgba(15,23,42,0.35); }
.float-btn svg { width: 22px; height: 22px; }

.float-btn .tooltip {
  position: absolute; right: 62px; top: 50%; transform: translateY(-50%);
  background: var(--slate-900); color: var(--white);
  padding: 5px 12px; border-radius: 6px; font-size: 0.75rem; font-weight: 500;
  white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity 0.2s;
}
.float-btn:hover .tooltip { opacity: 1; }

.float-btn.whatsapp::after {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  background: var(--whatsapp); animation: pulse 2.5s ease-in-out infinite; z-index: -1;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(25px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(25px); } to { opacity: 1; transform: translateX(0); } }
@keyframes pulse { 0%,100% { transform: scale(1); opacity: 0; } 50% { transform: scale(1.5); opacity: 0.15; } }

.reveal { opacity: 0; transform: translateY(30px); transition: all 0.6s var(--ease); }
.reveal.active { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 36px; }
  .hero-visual { min-height: 420px; }
  .hero-visual-frame { min-height: 420px; border-radius: 24px 24px 40px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { flex-direction: column; }
  .service-card-image { width: 100%; min-width: auto; height: 200px; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-image img { height: 340px; }

  .areas-content { grid-template-columns: 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }

  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-content { grid-template-columns: 1fr; text-align: center; padding: 28px 24px; }
  .cta-text p { margin: 0 auto; }
  .contact-meta { margin-top: 16px; }
}

@media (max-width: 1024px) {
  :root { --section-py: 50px; }
  html { scroll-behavior: auto !important; }
  .container { padding: 0 14px; }
  .header, .header.scrolled { padding: 0 !important; }
  .header-inner {
    gap: 8px;
    padding: 16px 18px;
    border-radius: 0;
    border-top: none;
    border-left: none;
    border-right: none;
    min-height: 72px;
    background: rgba(255,255,255,0.98);
    border-color: rgba(226,232,240,0.95);
  }
  .header.scrolled .header-inner {
    border-radius: 0;
  }
  .header-logo { z-index: 998; }
  .header-logo img, .header.scrolled .header-logo img { height: 24px !important; }
  .header-cta { display: none; }
  .mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 42px; height: 42px; padding: 0;
    border-radius: 12px;
    align-items: center; justify-content: center;
    background: #0c3280;
    box-shadow: 0 4px 12px rgba(12, 50, 128, 0.2);
  }
  .mobile-toggle span { width: 22px; height: 2px; background: var(--white); transition: all 0.3s var(--ease); }
  .mobile-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .mobile-toggle.active span:nth-child(2) { opacity: 0; }
  .mobile-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav-menu {
    position: fixed; top: 0; right: 0; left: auto;
    width: min(84vw, 330px); height: 100vh; height: 100dvh;
    overflow-y: auto;
    background: rgba(255,255,255,0.99);
    border-left: 1px solid var(--slate-200);
    border-radius: 0;
    flex-direction: column; justify-content: flex-start; align-items: stretch;
    gap: 8px; padding: 74px 14px 18px;
    transform: translateX(105%);
    opacity: 1; pointer-events: none;
    transition: transform 0.28s var(--ease);
    box-shadow: -12px 0 30px rgba(15,23,42,0.18);
    z-index: 999;
  }
  .nav-menu.active { transform: translateX(0); pointer-events: auto; }
  .nav-link {
    font-size: 0.98rem; font-weight: 600;
    padding: 12px 12px;
    width: 100%; text-align: left;
    border-radius: 10px;
    border: 1px solid var(--slate-100);
    color: var(--slate-700);
    background: var(--white);
  }
  .nav-link.active { color: var(--teal-700); background: var(--teal-50); border-color: var(--teal-100); }
  .nav-link:hover { background: var(--slate-50); }
  .mobile-menu-actions { display: grid; gap: 8px; margin-top: 8px; }
  .mobile-menu-btn {
    display: inline-flex; align-items: center; justify-content: center;
    min-height: 42px;
    padding: 10px 12px;
    border-radius: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--slate-700);
    border: 1px solid var(--slate-200);
    background: var(--slate-50);
  }
  .mobile-menu-btn.mobile-menu-btn-primary {
    color: var(--white);
    background: var(--slate-900);
    border-color: var(--slate-900);
  }

  .hero { min-height: auto; padding-top: 96px; padding-bottom: 10px; }
  .hero::before { opacity: 0.16; }
  .hero-bg img { opacity: 0.05; mix-blend-mode: normal; }
  .hero-content { padding: 14px 0 24px; gap: 16px; text-align: center; }
  .hero-text { display: flex; flex-direction: column; align-items: center; }
  .hero h1 {
    font-size: clamp(2.1rem, 9vw, 2.6rem);
    line-height: 1.05;
    margin-top: 0;
    margin-bottom: 16px;
    letter-spacing: -1px;
    text-wrap: balance;
  }
  .hero-description { 
    font-size: 1rem; 
    line-height: 1.5; 
    margin-bottom: 24px; 
    text-wrap: balance;
    opacity: 0.95;
  }
  .hero-buttons { gap: 8px; flex-direction: column; align-items: center; width: 100%; }
  .btn-primary, .btn-secondary { width: 100%; max-width: 270px; margin: 0 auto; justify-content: center; padding: 13px 20px; font-size: 0.88rem; border-radius: var(--radius-sm); }
  .hero-stats {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    padding: 10px 0;
    gap: 0;
  }
  .hero-stat {
    min-width: 0;
    flex: 1;
    text-align: center;
    padding: 0 4px;
    border: none;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
  }
  .hero-stat-number { font-size: 1.25rem; margin-bottom: 2px; font-weight: 800; color: var(--white); }
  .hero-stat-label { font-size: 0.65rem; line-height: 1.2; opacity: 0.75; color: var(--white); }
  .hero-visual { display: none; }

  .features-bar { padding: 24px 0 20px; }
  .features-bar-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }
  .feature-item {
    border: none;
    border-radius: 0;
    padding: 18px 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    text-align: center;
    background: transparent;
    box-shadow: none;
  }
  .feature-item:nth-child(odd) { border-right: 1px solid var(--slate-100); }
  .feature-item:nth-child(1), .feature-item:nth-child(2) { border-bottom: 1px solid var(--slate-100); }
  .feature-icon {
    width: 36px; height: 36px; min-width: 36px;
    border-radius: 10px;
    margin: 0;
    background: var(--teal-50);
    color: var(--teal-700);
  }
  .feature-icon svg { width: 16px; height: 16px; stroke-width: 1.8; }
  .feature-text h4 { font-size: 0.82rem; margin-bottom: 2px; }
  .feature-text p {
    max-width: none;
    font-size: 0.73rem;
    line-height: 1.45;
  }

  .services-header {
    text-align: center;
    margin-bottom: 32px;
  }
  .services-header .section-label {
    display: inline-flex;
    align-items: center;
    background: rgba(31, 153, 229, 0.1);
    color: var(--teal-600);
    padding: 7px 16px;
    border-radius: 999px;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
    font-weight: 700;
  }
  .services-header .section-title {
    font-size: clamp(1.8rem, 7vw, 2.1rem);
    margin-bottom: 12px;
    text-wrap: balance;
    line-height: 1.15;
  }
  .services-header .section-subtitle {
    font-size: 0.96rem;
    line-height: 1.65;
    margin: 0 auto;
    text-wrap: balance;
  }
  .why-us-header {
    text-align: center;
    margin-bottom: 32px;
  }
  .why-us-header .section-label {
    display: inline-flex;
    align-items: center;
    background: rgba(31, 153, 229, 0.1);
    color: var(--teal-600);
    padding: 7px 16px;
    border-radius: 999px;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
    font-weight: 700;
  }
  .why-us-header .section-title {
    font-size: clamp(1.8rem, 7vw, 2.1rem);
    text-wrap: balance;
    line-height: 1.15;
  }
  .services-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    margin: -30px -14px 0; /* Add negative top margin */
    padding: 30px calc(50vw - min(41vw, 170px)) 48px; /* Add internal padding space for shadows */
    width: calc(100% + 28px);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .services-grid::-webkit-scrollbar { display: none; }
  .slider-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: -12px;
    margin-bottom: 32px;
  }
  .indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--slate-300);
    transition: all 0.3s var(--ease);
    cursor: pointer;
  }
  .indicator.active {
    width: 24px;
    border-radius: 4px;
    background: var(--teal-600);
  }
  .service-card {
    min-width: 82vw; /* Allows the next card to peek */
    width: 82vw;
    max-width: 340px;
    scroll-snap-align: center;
    flex-shrink: 0;
    border-radius: 24px;
    min-height: auto;
    box-shadow: 0 12px 36px rgba(0,0,0,0.08);
    border: none;
    overflow: hidden;
  }
  .service-card-image { 
    height: clamp(200px, 28vw, 240px); 
    object-position: center 25%; 
  }
  .service-card-body { padding: 24px 22px; }
  .service-card-body h3 { font-size: 1.25rem; font-weight: 800; margin-bottom: 12px; }
  .service-card-body > p { font-size: 0.92rem; margin-bottom: 18px; line-height: 1.6; }
  .about-grid { gap: 18px; }
  .about-image img { 
    height: clamp(260px, 45vw, 420px); 
    border-radius: 14px; 
    object-position: center 20%;
  }
  .about-experience-badge { display: none; }
  .about-content { text-align: center; }
  .about-content .section-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(31, 153, 229, 0.1);
    color: var(--teal-600);
    padding: 7px 16px;
    border-radius: 999px;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
    font-weight: 700;
  }
  .about-content .section-title {
    text-wrap: balance;
    font-size: clamp(1.8rem, 7vw, 2.1rem);
    line-height: 1.15;
  }
  .about-content .section-subtitle {
    margin: 0 auto 18px;
    font-size: 0.96rem;
    line-height: 1.65;
    text-wrap: balance;
  }
  .about-features {
    text-align: left;
    grid-template-columns: 1fr;
    gap: 0;
    margin: 0 auto 24px;
    width: 100%;
    max-width: 290px;
    padding-left: 18px;
  }
  .about-feature {
    border-bottom: 1px dashed var(--slate-200);
    border-radius: 0;
    padding: 12px 6px;
    justify-content: flex-start;
  }
  .about-feature:nth-child(n+4) { display: none; }
  .about-cta { flex-direction: column; align-items: center; margin-top: 10px; }
  .btn-about { width: 100%; max-width: 270px; justify-content: center; padding: 13px 20px; border-radius: var(--radius-sm); }
  .btn-about-secondary { display: none; }
  .why-us-grid { grid-template-columns: 1fr; gap: 14px; }
  .why-card { 
    padding: 22px 18px; 
    border-radius: 18px; 
    box-shadow: 0 4px 20px rgba(0,0,0,0.03); 
    border: 1px solid var(--slate-100); 
    align-items: flex-start;
  }
  .why-card-number { font-size: 1.8rem; min-width: 38px; margin-top: -4px; color: var(--teal-500); opacity: 0.8; }
  .why-card-content h3 { font-size: 1rem; margin-bottom: 8px; }
  .why-card-content p { font-size: 0.9rem; line-height: 1.6; color: var(--slate-500); }
  .cta-banner { padding: 48px 0; }
  .cta-content { border-radius: 24px; padding: 36px 20px 40px; gap: 28px; text-align: center; }
  .cta-kicker { display: none; }
  .cta-text h2 { font-size: clamp(1.7rem, 7.5vw, 2.1rem); margin-bottom: 14px; text-wrap: balance; }
  .cta-text p { font-size: 0.96rem; line-height: 1.65; margin: 0 auto; text-wrap: balance; color: rgba(255,255,255,0.85); }
  .cta-buttons { flex-direction: column; width: 100%; align-items: center; gap: 12px; margin-top: 8px; }
  .btn-cta-whatsapp, .btn-cta-call {
    width: 100%;
    max-width: 270px;
    margin: 0 auto;
    justify-content: center;
    padding: 13px 20px;
    font-size: 0.88rem;
    border-radius: var(--radius-sm);
  }
  .areas-map iframe { height: 280px; }
  .area-location { padding: 14px; }
  .contact-grid { gap: 32px; }
  .contact-info { text-align: center; }
  .contact .section-label { 
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    padding: 7px 16px;
    border-radius: 999px;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
    font-weight: 700;
  }
  .contact .section-title { font-size: clamp(1.8rem, 7vw, 2.1rem); text-wrap: balance; line-height: 1.15; margin-bottom: 12px; }
  .contact .section-subtitle { margin: 0 auto; text-wrap: balance; font-size: 0.96rem; line-height: 1.65; }
  .contact-methods { margin-top: 24px; width: 100%; display: flex; flex-direction: column; align-items: center; gap: 12px; }
  .contact-method { width: 100%; max-width: 270px; justify-content: center; padding: 12px 16px; border-radius: 999px; }
  .contact-form-card { padding: 32px 20px; border-radius: 24px; }
  .contact-form-card h3 { font-size: 1.3rem; text-align: center; margin-bottom: 6px; }
  .form-row { grid-template-columns: 1fr; }
  .footer { padding: 48px 0 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 0; padding-bottom: 24px; }
  .footer-brand { margin-bottom: 24px; padding: 0 4px; }
  .footer-brand img { max-height: 52px; margin-bottom: 16px; }
  .footer-brand p { font-size: 0.94rem; line-height: 1.65; margin-bottom: 20px; color: var(--slate-500); }
  .footer-social a { width: 38px; height: 38px; }
  .footer-col {
    border: none;
    border-top: 1px solid var(--slate-200);
    border-radius: 0;
    padding: 0 4px;
    background: transparent;
  }
  .footer-title {
    margin: 0;
    padding: 20px 0;
    font-size: 0.96rem;
    cursor: pointer;
  }
  .footer-title-icon {
    display: inline-flex;
    font-size: 0.95rem;
    line-height: 1;
    transition: transform 0.2s ease;
  }
  .footer-col ul {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding-bottom: 0;
    transition: max-height 0.25s ease, opacity 0.2s ease, padding-bottom 0.2s ease;
  }
  .footer-col.is-open ul { max-height: 260px; opacity: 1; padding-bottom: 10px; }
  .footer-col.is-open .footer-title-icon { transform: rotate(180deg); }
  .footer-col ul li { margin-bottom: 8px; }
  .footer-col ul li:last-child { margin-bottom: 0; }
  .footer-bottom { padding: 16px 0 20px; flex-direction: column; gap: 6px; text-align: center; }
  .footer-bottom p { font-size: 0.74rem; line-height: 1.4; }
  .floating-buttons { bottom: 12px; right: 12px; }
  .float-btn { width: 50px; height: 50px; }
  .float-btn .tooltip { display: none; }

  /* LANDSCAPE ORIENTATION FIXES (MOBILE/TABLET) */
  @media (orientation: landscape) and (max-height: 600px) {
    .hero { padding-top: 80px; padding-bottom: 20px; min-height: auto; }
    .hero-content { padding: 10px 0 20px; }
    .hero h1 { font-size: clamp(1.6rem, 6vw, 2rem); margin-bottom: 10px; }
    .hero-description { font-size: 0.9rem; margin-bottom: 16px; margin-top: 0; }
    .hero-stats { margin-top: 10px; }
    .hero-stat-number { font-size: 1.1rem; }
    
    /* Services section in landscape mobile */
    .services-grid { margin-top: -10px; padding-bottom: 32px; }
    .service-card { width: 70vw; min-width: 70vw; max-width: 320px; }
    .service-card-image { height: 190px; }
    
    /* Contact sections */
    .contact-form-card { padding: 24px 16px; }
    .about-image img { height: 240px; }
  }
}

@media (max-width: 480px) {
  :root { --section-py: 42px; }
  .container { padding: 0 12px; }

  .header-inner { min-height: 52px; padding: 9px 12px; }
  .header-logo img { height: 24px; }
  .mobile-toggle { width: 32px; height: 32px; border-radius: 9px; }
  .nav-menu { width: 88vw; padding-top: 68px; }





  .features-bar-inner { gap: 0; }
  .feature-item { padding: 14px 8px; }
  .feature-text h4 { font-size: 0.82rem; line-height: 1.25; margin-bottom: 2px; }
  .feature-text p { font-size: 0.72rem; line-height: 1.35; }

  .about-image img { height: 190px; }
  .section-title { font-size: 1.35rem; }
  .btn-primary, .btn-secondary, .btn-cta-whatsapp, .btn-cta-call { font-size: 0.84rem; }
}
