/* ============================================================
   GETELMA C.A. — Static CSS
   Compiled from Tailwind v4 + custom utilities
   ============================================================ */

/* ---------- Custom Properties (Design Tokens) ---------- */
:root {
  --radius: 0.75rem;
  --background: oklch(0.24 0.05 245);
  --foreground: oklch(0.98 0.005 245);
  --card: oklch(0.28 0.05 245);
  --card-foreground: oklch(0.98 0.005 245);
  --primary: oklch(0.78 0.22 145);
  --primary-foreground: oklch(0.16 0.04 245);
  --primary-glow: oklch(0.85 0.20 140);
  --secondary: oklch(0.55 0.14 240);
  --secondary-foreground: oklch(0.99 0 0);
  --muted: oklch(0.32 0.05 245);
  --muted-foreground: oklch(0.78 0.02 245);
  --accent: oklch(0.60 0.24 25);
  --accent-foreground: oklch(0.99 0 0);
  --border: oklch(0.38 0.05 245);
  --input: oklch(0.32 0.05 245);
  --ring: oklch(0.78 0.22 145);
  --surface: oklch(0.22 0.05 245);
  --surface-foreground: oklch(0.98 0 0);

  --grad-hero: linear-gradient(135deg, oklch(0.18 0.05 245) 0%, oklch(0.30 0.08 235) 50%, oklch(0.42 0.12 200) 100%);
  --grad-primary: linear-gradient(135deg, oklch(0.55 0.20 150) 0%, oklch(0.78 0.22 145) 50%, oklch(0.85 0.20 140) 100%);
  --grad-sunset: linear-gradient(135deg, oklch(0.78 0.22 145) 0%, oklch(0.60 0.24 25) 100%);
  --shadow-glow: 0 20px 50px -12px oklch(0.78 0.22 145 / 0.40);
  --shadow-card: 0 10px 40px -12px oklch(0.08 0.03 245 / 0.55);
  --shadow-vivid: 0 24px 60px -16px oklch(0.10 0.05 245 / 0.55);
  --text-shadow-card: 0 1px 4px oklch(0.08 0.03 245 / 0.6);

  --font-display: "Bebas Neue", ui-sans-serif, system-ui, sans-serif;
  --font-sans: "Barlow", ui-sans-serif, system-ui, sans-serif;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
*, *::before, *::after { border-color: var(--border); }

html { scroll-behavior: smooth; }

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: 0.02em;
}

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

/* ---------- Utilities ---------- */
.container {
  width: 100%;
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container { padding-left: 1.5rem; padding-right: 1.5rem; }
}
@media (min-width: 1024px) {
  .container { padding-left: 2rem; padding-right: 2rem; }
}

.text-center { text-align: center; }
.text-balance { text-wrap: balance; }
.break-all { word-break: break-all; }

.text-primary { color: var(--primary); }
.shadow-glow { box-shadow: var(--shadow-glow); }
.shadow-card { box-shadow: var(--shadow-card); }
.shadow-vivid { box-shadow: var(--shadow-vivid); }
.text-shadow-card { text-shadow: var(--text-shadow-card); }

/* ---------- Shared Buttons & Badges ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: none;
  border-radius: 9999px;
  background: var(--primary);
  color: var(--primary-foreground);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.btn-primary:hover { transform: scale(1.03); }
.btn-glow { box-shadow: var(--shadow-glow); }

.btn-primary .icon-arrow { transition: transform 0.2s ease; }
.btn-primary:hover .icon-arrow { transform: translateX(4px); }

.services-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 9999px;
  background: var(--primary);
  padding: 0.75rem 2rem;
  box-shadow: var(--shadow-glow);
  margin: 0 auto;
}
.badge-dot {
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background: var(--accent);
  flex-shrink: 0;
}
.badge-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-foreground);
}
@media (min-width: 640px) { .badge-title { font-size: 1.875rem; } }
@media (min-width: 768px) { .badge-title { font-size: 2.25rem; } }

.section-header { text-align: center; margin-bottom: 2.5rem; }
.section-title-white {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: white;
  text-align: center;
}
.section-title-dark {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--surface);
  text-align: center;
}
@media (min-width: 640px) {
  .section-title-white, .section-title-dark { font-size: 2.25rem; }
}

.title-bar {
  width: 6rem;
  height: 0.25rem;
  border-radius: 9999px;
  background: var(--primary);
  margin: 1rem auto 0;
}
.title-bar-lg {
  width: 8rem;
  height: 0.375rem;
  margin-top: 1rem;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  inset: 0;
  bottom: auto;
  z-index: 50;
  background: oklch(0.22 0.05 245 / 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0.75rem 1rem;
}
@media (min-width: 640px) { .header-inner { padding-left: 1.5rem; padding-right: 1.5rem; } }
@media (min-width: 1024px) { .header-inner { padding-left: 2rem; padding-right: 2rem; } }

.header-logo { display: flex; align-items: center; gap: 0.5rem; }
.header-logo-img { height: 3.5rem; width: auto; }
@media (min-width: 640px) { .header-logo-img { height: 4rem; } }
@media (min-width: 1024px) { .header-logo-img { height: 4.5rem; } }

.header-nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 1024px) { .header-nav-desktop { display: flex; } }

.nav-link {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: oklch(0.98 0.005 245 / 0.9);
  transition: color 0.2s;
}
.nav-link:hover { color: white; }

.mobile-menu-btn {
  display: block;
  border: none;
  background: none;
  color: white;
  padding: 0.5rem;
  border-radius: 0.375rem;
  cursor: pointer;
}
@media (min-width: 1024px) { .mobile-menu-btn { display: none; } }

.mobile-menu-btn .icon-close { display: none; }
.mobile-menu-btn.is-open .icon-menu { display: none; }
.mobile-menu-btn.is-open .icon-close { display: block; }

.mobile-menu {
  display: none;
  border-top: 1px solid oklch(1 0 0 / 0.1);
  background: oklch(0.22 0.05 245 / 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.mobile-menu.is-open { display: block; }
@media (min-width: 1024px) { .mobile-menu { display: none !important; } }

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0.75rem 1rem;
}

.mobile-nav-link {
  display: block;
  padding: 0.75rem;
  border-radius: 0.375rem;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: oklch(0.98 0.005 245 / 0.9);
  transition: background 0.2s;
}
.mobile-nav-link:hover { background: oklch(1 0 0 / 0.1); }

.mobile-nav-cta {
  margin-top: 0.5rem;
  text-align: center;
}

/* ============================================================
   HERO
   ============================================================ */
.hero-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--surface);
  padding-top: 6rem;
  color: white;
}
@media (min-width: 640px) { .hero-section { padding-top: 7rem; } }

.hero-video-wrap {
  position: relative;
  overflow: hidden;
}
.hero-video {
  width: 100%;
  height: 240px;
  object-fit: cover;
}
@media (min-width: 640px) { .hero-video { height: 340px; } }
@media (min-width: 768px) { .hero-video { height: 440px; } }
@media (min-width: 1024px) { .hero-video { height: 520px; } }

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, oklch(0.22 0.05 245 / 0.7), transparent, transparent);
  pointer-events: none;
}

.hero-content {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-bottom: 2.5rem;
}
@media (min-width: 640px) {
  .hero-content {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.hero-title {
  max-width: 48rem;
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.2;
  color: white;
  text-wrap: balance;
}
@media (min-width: 640px) { .hero-title { font-size: 2.25rem; } }
@media (min-width: 768px) { .hero-title { font-size: 3rem; } }

.hero-cta { flex-shrink: 0; }

/* ============================================================
   STATS
   ============================================================ */
.stats-section {
  position: relative;
  background: white;
  padding: 4rem 0;
}
@media (min-width: 640px) { .stats-section { padding: 5rem 0; } }

.stats-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 640px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .stats-grid { grid-template-columns: repeat(3, 1fr); } }

.stat-card {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid oklch(1 0 0 / 0.1);
  background: var(--surface);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: background 0.2s;
}
.stat-card:hover { background: oklch(0.24 0.05 245); }

.stat-glow {
  position: absolute;
  right: -1.5rem;
  top: -1.5rem;
  width: 6rem;
  height: 6rem;
  border-radius: 9999px;
  background: oklch(0.78 0.22 145 / 0.1);
  filter: blur(40px);
  transition: opacity 0.3s;
}
.stat-card:hover .stat-glow { opacity: 0.7; }

.stat-inner { position: relative; }

.stat-value-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--primary);
}
@media (min-width: 640px) { .stat-number { font-size: 3.75rem; } }
@media (min-width: 768px) { .stat-number { font-size: 4.5rem; } }

.stat-suffix {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--accent);
}
@media (min-width: 640px) { .stat-suffix { font-size: 2.25rem; } }
@media (min-width: 768px) { .stat-suffix { font-size: 3rem; } }

.stat-label {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: oklch(0.98 0.005 245 / 0.8);
}
@media (min-width: 640px) { .stat-label { font-size: 1rem; } }

.coverage-block {
  margin-top: 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (min-width: 640px) { .coverage-block { margin-top: 4rem; } }

.coverage-text {
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--surface);
}
@media (min-width: 640px) { .coverage-text { font-size: 2.25rem; } }
@media (min-width: 768px) { .coverage-text { font-size: 3rem; } }

/* ============================================================
   ABOUT
   ============================================================ */
.about-section {
  position: relative;
  background: var(--surface);
  padding: 5rem 0;
}
@media (min-width: 640px) { .about-section { padding: 6rem 0; } }

.about-card {
  border-radius: 1.5rem;
  background: white;
  padding: 2rem;
  color: var(--surface);
  box-shadow: var(--shadow-vivid);
}
@media (min-width: 768px) { .about-card { padding: 3rem; } }

.about-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) { .about-grid { grid-template-columns: 0.9fr 1.1fr; } }

.about-heading {
  text-align: left;
}
@media (min-width: 640px) { .about-heading { font-size: 3rem; } }

.about-text {
  margin-top: 1.25rem;
  text-align: justify;
  font-size: 1rem;
  line-height: 1.75;
  color: oklch(0.22 0.05 245 / 0.75);
}
@media (min-width: 640px) { .about-text { font-size: 1.125rem; } }

.values-panel {
  border-radius: 1rem;
  background: var(--surface);
  padding: 1.5rem;
  color: white;
}
@media (min-width: 640px) { .values-panel { padding: 2rem; } }

.values-heading {
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: white;
}

.values-grid {
  margin-top: 1.5rem;
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }

.value-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.value-icon {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  flex-shrink: 0;
  border-radius: 9999px;
  background: oklch(0.78 0.22 145 / 0.15);
  color: var(--primary);
}
.value-icon-lg {
  width: 2.5rem;
  height: 2.5rem;
}

.value-title {
  font-size: 1rem;
  font-weight: 600;
  color: oklch(0.98 0.005 245 / 0.9);
}

.about-divider {
  height: 1px;
  background: oklch(0.22 0.05 245 / 0.1);
  margin: 2rem 0;
}

.mission-vision-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) { .mission-vision-grid { grid-template-columns: 1fr 1fr; } }

.mv-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mv-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--surface);
}

.mv-text {
  margin-top: 1rem;
  text-align: justify;
  font-size: 1rem;
  line-height: 1.75;
  color: oklch(0.22 0.05 245 / 0.75);
}

/* ============================================================
   STRENGTHS
   ============================================================ */
.strengths-section {
  position: relative;
  background: var(--surface);
  padding: 4rem 0;
}
@media (min-width: 640px) { .strengths-section { padding: 5rem 0; } }

.strengths-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 640px) { .strengths-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .strengths-grid { grid-template-columns: repeat(3, 1fr); } }

.strength-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-radius: 1rem;
  border: 1px solid oklch(1 0 0 / 0.1);
  background: oklch(1 0 0 / 0.07);
  padding: 1.5rem;
  box-shadow: 0 1px 3px oklch(0 0 0 / 0.1);
  transition: background 0.2s;
}
.strength-card:hover { background: oklch(1 0 0 / 0.12); }

.strength-icon {
  display: grid;
  place-items: center;
  width: 3.5rem;
  height: 3.5rem;
  flex-shrink: 0;
  border-radius: 0.75rem;
  background: oklch(0.78 0.22 145 / 0.15);
  color: var(--primary);
  transition: all 0.2s;
}
.strength-card:hover .strength-icon {
  background: var(--primary);
  color: var(--primary-foreground);
}

.strength-text { display: flex; flex-direction: column; gap: 0.25rem; }

.strength-title {
  font-family: var(--font-sans);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
  color: white;
}
@media (min-width: 640px) { .strength-title { font-size: 1.25rem; } }

.strength-desc {
  font-size: 1rem;
  line-height: 1.6;
  color: oklch(0.98 0.005 245 / 0.8);
}

/* ============================================================
   PARTNERS
   ============================================================ */
.partners-section {
  position: relative;
  background: white;
}

.partners-section .container {
  padding-top: 4rem;
  padding-bottom: 4rem;
  text-align: center;
}
@media (min-width: 640px) {
  .partners-section .container { padding-top: 5rem; padding-bottom: 5rem; }
}

.partners-subtitle {
  margin: 1rem auto 0;
  max-width: 48rem;
  font-size: 1rem;
  color: oklch(0.22 0.05 245 / 0.7);
}
@media (min-width: 640px) { .partners-subtitle { font-size: 1.125rem; } }

.marquee-wrap {
  position: relative;
  margin-top: 2.5rem;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 25s linear infinite;
  align-items: center;
}

.partner-logo {
  flex-shrink: 0;
  margin: 0 2rem;
  object-fit: contain;
  opacity: 0.9;
  transition: all 0.3s;
}
.partner-logo:hover { opacity: 1; }
.partner-logo-default { height: 2.5rem; }
.partner-logo-md { height: 4rem; }
.partner-logo-lg { height: 9rem; }
@media (min-width: 640px) {
  .partner-logo { margin: 0 2.5rem; }
  .partner-logo-default { height: 3.5rem; }
  .partner-logo-md { height: 5rem; }
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-section {
  position: relative;
  background: var(--surface);
  padding: 5rem 0;
}
@media (min-width: 640px) { .services-section { padding: 6rem 0; } }

.services-section .container { text-align: center; }

.services-subtitle {
  margin: 1.5rem auto 0;
  max-width: 48rem;
  font-size: 1rem;
  color: oklch(0.98 0.005 245 / 0.75);
}
@media (min-width: 640px) { .services-subtitle { font-size: 1.125rem; } }

.services-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }

.service-card {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid oklch(1 0 0 / 0.1);
}

.service-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.service-card:hover .service-img { transform: scale(1.1); }
.service-img-zoom { transform: scale(1.4); }
.service-card:hover .service-img-zoom { transform: scale(1.5); }

.service-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--surface), oklch(0.22 0.05 245 / 0.4), transparent);
  pointer-events: none;
}

.service-side-gradient {
  position: absolute;
  inset: 0;
  right: 0;
  width: 3rem;
  background: linear-gradient(to left, oklch(0.22 0.05 245 / 0.8), oklch(0.22 0.05 245 / 0.3), transparent);
  pointer-events: none;
}
@media (min-width: 640px) { .service-side-gradient { width: 3.5rem; } }

.service-label-wrap {
  position: absolute;
  inset: 0;
  right: 0;
  width: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 640px) { .service-label-wrap { width: 3.5rem; } }

.service-label {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: white;
  text-shadow: var(--text-shadow-card);
  writing-mode: vertical-rl;
  transform: rotate(180deg) translateZ(0);
}
@media (min-width: 640px) { .service-label { font-size: 1.25rem; } }

/* ============================================================
   PROJECTS
   ============================================================ */
.projects-section {
  position: relative;
  background: white;
  padding: 5rem 0;
}
@media (min-width: 640px) { .projects-section { padding: 6rem 0; } }

.projects-section .container { text-align: center; }

.projects-grid {
  margin-top: 3rem;
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) { .projects-grid { grid-template-columns: repeat(3, 1fr); } }

.project-card {
  display: flex;
  flex-direction: column;
  border-radius: 1rem;
  border: 1px solid oklch(0.22 0.05 245 / 0.1);
  background: oklch(0.22 0.05 245 / 0.03);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease;
  text-align: left;
}
.project-card:hover { transform: translateY(-4px); }

.project-logo-wrap {
  display: flex;
  height: 8rem;
  align-items: center;
  justify-content: center;
}
.project-logo-sm { max-height: 4rem; }
.project-logo-lg { max-height: 8rem; }

.project-logo {
  max-height: inherit;
  width: auto;
  object-fit: contain;
}

.project-name {
  margin-top: 1.5rem;
  border-left: 4px solid var(--accent);
  padding-left: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--surface);
}
@media (min-width: 640px) { .project-name { font-size: 1.5rem; } }

.project-services {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.project-services li {
  display: flex;
  gap: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.4;
  color: oklch(0.22 0.05 245 / 0.75);
}
@media (min-width: 640px) { .project-services li { font-size: 1rem; } }

.service-dot {
  margin-top: 0.5rem;
  width: 0.375rem;
  height: 0.375rem;
  flex-shrink: 0;
  border-radius: 9999px;
  background: var(--primary);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
  position: relative;
  background: var(--surface);
  padding: 5rem 0;
}
@media (min-width: 640px) { .testimonials-section { padding: 6rem 0; } }

.testimonials-section .container { text-align: center; }

.testimonials-subtitle {
  margin: 1rem auto 0;
  max-width: 48rem;
  font-size: 1rem;
  color: oklch(0.98 0.005 245 / 0.7);
}
@media (min-width: 640px) { .testimonials-subtitle { font-size: 1.125rem; } }

.testimonials-grid {
  margin-top: 3.5rem;
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 640px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .testimonials-grid { grid-template-columns: repeat(4, 1fr); } }

.testimonial-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 1rem;
  background: white;
  padding: 1.5rem;
  color: var(--surface);
  box-shadow: var(--shadow-card);
  text-align: left;
}

.testimonial-dot {
  position: absolute;
  right: 1rem;
  top: 1rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background: var(--accent);
}

.testimonial-quote {
  width: 2rem;
  height: 2rem;
  color: var(--primary);
}

.testimonial-text {
  margin-top: 1rem;
  flex: 1;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-form-section {
  position: relative;
  background: white;
  padding: 5rem 0;
}
@media (min-width: 640px) { .contact-form-section { padding: 6rem 0; } }

.contact-form-section .container { text-align: center; }

.contact-form-subtitle {
  margin: 1rem auto 0;
  max-width: 40rem;
  font-size: 1rem;
  color: oklch(0.22 0.05 245 / 0.7);
}
@media (min-width: 640px) { .contact-form-subtitle { font-size: 1.125rem; } }

.contact-form {
  margin: 2.5rem auto 0;
  max-width: 40rem;
  border-radius: 1rem;
  border: 1px solid oklch(0.22 0.05 245 / 0.1);
  background: white;
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  text-align: left;
}
@media (min-width: 640px) { .contact-form { padding: 2rem; } }

.form-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) { .form-grid { grid-template-columns: repeat(2, 1fr); } }

.form-field { display: block; }

.form-label {
  display: block;
  margin-bottom: 0.375rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--surface);
}

.form-input {
  width: 100%;
  border-radius: 0.5rem;
  border: 1px solid oklch(0.22 0.05 245 / 0.2);
  background: oklch(0.22 0.05 245 / 0.05);
  padding: 0.625rem 0.75rem;
  font-size: 1rem;
  font-family: var(--font-sans);
  color: var(--surface);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input::placeholder { color: oklch(0.22 0.05 245 / 0.4); }
.form-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px oklch(0.78 0.22 145 / 0.2);
}

.form-textarea { resize: none; }

.form-submit-wrap { margin-top: 1.5rem; display: flex; justify-content: center; }
.form-submit { padding: 0.75rem 2.5rem; }

.form-success {
  margin-top: 1rem;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
}
.form-success.is-visible { display: flex; }

/* ============================================================
   CONTACT INFO
   ============================================================ */
.contact-info-section {
  position: relative;
  border-top: 1px solid oklch(0.22 0.05 245 / 0.1);
  background: white;
  padding: 5rem 0;
}
@media (min-width: 640px) { .contact-info-section { padding: 6rem 0; } }

.contact-info-section .container { text-align: center; }

.contact-info-subtitle {
  margin: 1rem auto 0;
  max-width: 40rem;
  font-size: 1rem;
  color: oklch(0.22 0.05 245 / 0.7);
}
@media (min-width: 640px) { .contact-info-subtitle { font-size: 1.125rem; } }

.contact-links-grid {
  margin-top: 2.5rem;
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) { .contact-links-grid { grid-template-columns: repeat(3, 1fr); } }

.contact-social-grid {
  margin-top: 1rem;
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) { .contact-social-grid { grid-template-columns: repeat(2, 1fr); } }

.contact-link-pill {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 9999px;
  border: 1px solid oklch(0.22 0.05 245 / 0.1);
  background: oklch(0.22 0.05 245 / 0.05);
  padding: 0.75rem 1.25rem;
  color: var(--surface);
  transition: background 0.2s;
}
.contact-link-pill:hover { background: oklch(0.22 0.05 245 / 0.1); }

.contact-link-icon {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  flex-shrink: 0;
  border-radius: 9999px;
  background: var(--primary);
  color: var(--primary-foreground);
}

.contact-link-text {
  font-size: 1rem;
  font-weight: 600;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  color: var(--surface-foreground);
}

.footer-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, oklch(0.78 0.22 145 / 0.1), oklch(0.55 0.14 240 / 0.1), oklch(0.60 0.24 25 / 0.1));
  opacity: 0.4;
  pointer-events: none;
}

.footer-inner {
  position: relative;
  max-width: 80rem;
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
  padding: 3.5rem 1rem;
}
@media (min-width: 640px) { .footer-inner { padding-left: 1.5rem; padding-right: 1.5rem; } }
@media (min-width: 768px) {
  .footer-inner { grid-template-columns: repeat(4, 1fr); padding-left: 2rem; padding-right: 2rem; }
}

.footer-brand { grid-column: span 1; }
@media (min-width: 768px) { .footer-brand { grid-column: span 2; } }

.footer-logo-wrap { display: inline-flex; align-items: center; }
.footer-logo { height: 5rem; width: auto; }

.footer-desc {
  margin-top: 1.25rem;
  max-width: 28rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  color: oklch(0.98 0.005 245 / 0.7);
}

.footer-tagline {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  letter-spacing: 0.05em;
  color: oklch(0.98 0.005 245 / 0.6);
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: white;
}

.footer-links {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: oklch(0.98 0.005 245 / 0.7);
}
.footer-links a { transition: color 0.2s; }
.footer-links a:hover { color: var(--primary-glow); }

.footer-contact-list {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  color: oklch(0.98 0.005 245 / 0.7);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.footer-contact-icon {
  margin-top: 0.125rem;
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  color: var(--primary-glow);
}

.footer-contact-item a { transition: color 0.2s; }
.footer-contact-item a:hover { color: white; }

.footer-bottom {
  border-top: 1px solid oklch(1 0 0 / 0.1);
}

.footer-bottom-inner {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: oklch(0.98 0.005 245 / 0.6);
}
@media (min-width: 640px) { .footer-bottom-inner { padding-left: 1.5rem; padding-right: 1.5rem; } }
@media (min-width: 1024px) { .footer-bottom-inner { padding-left: 2rem; padding-right: 2rem; } }

.footer-credit { white-space: nowrap; }
.footer-credit-link {
  font-weight: 700;
  color: white;
  transition: color 0.2s;
}
.footer-credit-link:hover { color: var(--primary-glow); }

/* ============================================================
   WHATSAPP BUTTON
   ============================================================ */
.whatsapp-btn {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 9999px;
  background-color: #25d366;
  transition: transform 0.2s;
}
@media (min-width: 640px) {
  .whatsapp-btn { bottom: 1.5rem; right: 1.5rem; width: 4rem; height: 4rem; }
}
.whatsapp-btn:hover { transform: scale(1.1); }

.whatsapp-icon {
  width: 1.75rem;
  height: 1.75rem;
  filter: brightness(0) invert(1);
}
@media (min-width: 640px) { .whatsapp-icon { width: 2rem; height: 2rem; } }

@keyframes float-pulse {
  0%, 100% { box-shadow: 0 8px 24px -6px rgba(37, 211, 102, 0.55), 0 0 0 0 rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 8px 24px -6px rgba(37, 211, 102, 0.55), 0 0 0 14px rgba(37, 211, 102, 0); }
}
.wa-pulse { animation: float-pulse 2.4s ease-out infinite; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }

/* Grid background pattern */
.grid-bg {
  background-image:
    linear-gradient(oklch(1 0 0 / 0.06) 1px, transparent 1px),
    linear-gradient(90deg, oklch(1 0 0 / 0.06) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* Diagonal clip */
.clip-diagonal {
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}
