/**
 * SERVIACEROS LANDING PAGE - Estilos Profesionales
 * Landing page independiente con degradados, animaciones y carousel.
 * Prefijo: lp- (landing page) para evitar colisiones.
 */

/* ===== VARIABLES ===== */
:root {
  --c-primary: #1B5E20;
  --c-primary-light: #2E7D32;
  --c-primary-dark: #0A3D0C;
  --c-accent: #4CAF50;
  --c-accent-hover: #43A047;
  --c-accent-light: #81C784;
  --c-accent-dark: #388E3C;
  --c-secondary: #7CB342;
  --c-offer: #FF6B35;
  --c-gray-50: #FAFAF5;
  --c-gray-100: #F5F5F0;
  --c-gray-200: #EEEEEA;
  --c-gray-300: #E0E0DC;
  --c-gray-400: #9E9E9A;
  --c-gray-500: #757571;
  --c-gray-600: #616160;
  --c-gray-700: #424242;
  --c-gray-800: #2D2D2D;
  --c-gray-900: #1A1A1A;
  --c-white: #FFFFFF;
  --c-bg: #F4F6F1;
  --c-bg-alt: #EAEDE6;
  --c-surface: #FAFBF8;
  --c-text: #2C3E50;
  --c-text-muted: #616160;
  --c-whatsapp: #25D366;
  --c-whatsapp-dark: #1DA851;

  /* Gradient presets — matching main site */
  --grad-surface: linear-gradient(180deg, #FFFFFF 0%, #FAFCFA 100%);
  --grad-surface-alt: linear-gradient(180deg, var(--c-surface) 0%, #F2F4EF 100%);
  --grad-green-soft: linear-gradient(180deg, rgba(27,94,32,0.015) 0%, rgba(76,175,80,0.03) 50%, rgba(27,94,32,0.015) 100%);
  --grad-green-warm: linear-gradient(135deg, rgba(76,175,80,0.03) 0%, rgba(255,255,255,0.97) 40%, rgba(27,94,32,0.02) 100%);
  --grad-dark: linear-gradient(160deg, #0A1A0B 0%, #0D2E10 30%, #1B5E20 70%, #2E7D32 100%);
  --grad-dark-green: linear-gradient(160deg, #0A1A0B 0%, #0D2E10 30%, #1B5E20 70%, #2E7D32 100%);
  --grad-hero-overlay: linear-gradient(135deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.45) 50%, rgba(0,0,0,0.28) 100%);
  --grad-accent: linear-gradient(135deg, #388E3C 0%, #4CAF50 50%, #66BB6A 100%);

  /* Premium shadows */
  --shadow-card-pro: 0 2px 12px rgba(0,0,0,0.06), 0 8px 32px rgba(0,0,0,0.04);
  --shadow-premium: 0 4px 24px rgba(27,94,32,0.08), 0 1px 3px rgba(0,0,0,0.04);
  --shadow-float: 0 20px 60px rgba(0,0,0,0.08), 0 8px 24px rgba(0,0,0,0.04);
  --shadow-btn: 0 2px 8px rgba(27,94,32,0.2), 0 1px 3px rgba(0,0,0,0.08);

  --font-primary: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-heading: 'Montserrat', 'Segoe UI', system-ui, -apple-system, sans-serif;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;

  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
  --radius-xl: 12px;
  --radius-2xl: 16px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0,0,0,0.15);
  --shadow-soft: 0 2px 15px rgba(0,0,0,0.06), 0 0 1px rgba(0,0,0,0.04);
  --shadow-card: 0 4px 20px rgba(0,0,0,0.08), 0 1px 3px rgba(0,0,0,0.04);
  --shadow-card-hover: 0 12px 40px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06);

  --transition-fast: 150ms ease-in-out;
  --transition-base: 250ms ease-in-out;
  --transition-slow: 350ms ease-in-out;

  --header-height: 90px;
  --header-offset: 16px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-height) + var(--header-offset) + 24px);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--c-text);
  background: linear-gradient(180deg, #F4F6F1 0%, #EEF1EB 40%, #F4F6F1 100%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: 120px;
}

ul, ol { list-style: none; }
a { color: var(--c-accent-dark); text-decoration: none; transition: color var(--transition-fast); }
a:hover { color: var(--c-primary); }
img, svg { display: block; max-width: 100%; height: auto; }
input, button, textarea, select { font: inherit; }
button { cursor: pointer; border: none; background: none; }

/* ===== CONTAINER ===== */
.lp-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== UTILITIES ===== */
.lp-text-accent { color: var(--c-accent); }
.lp-text-accent-light { color: var(--c-accent-light); }

.lp-icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

.lp-icon {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  flex-shrink: 0;
}

.lp-icon--star {
  fill: #F59E0B;
  stroke: none;
}

.lp-pretitle {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-accent-dark);
  margin-bottom: 0.75rem;
  position: relative;
}
.lp-section-header { text-align: center; margin-bottom: 3rem; }
.lp-section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 1.2rem + 1.5vw, 2.25rem);
  font-weight: 700;
  color: var(--c-gray-900);
  line-height: 1.25;
}
.lp-section-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  border-radius: 2px;
  background: var(--c-accent);
  margin: 0.75rem auto 0;
}
.lp-section-subtitle {
  font-size: var(--text-base);
  color: var(--c-text-muted);
  margin-top: 0.75rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.lp-badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  background: rgba(76, 175, 80, 0.08);
  color: var(--c-primary);
  font-size: var(--text-sm);
  font-weight: 600;
  margin-bottom: 1rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

/* ===== BUTTONS ===== */
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius-lg);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--text-sm);
  letter-spacing: 0.03em;
  transition: all var(--transition-base);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  position: relative;
  overflow: hidden;
  min-height: 44px;
}
.lp-btn:focus-visible {
  outline: 3px solid var(--c-accent-light);
  outline-offset: 2px;
}
.lp-btn:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  transform: translateY(-1px);
}
.lp-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.lp-btn svg { fill: none; stroke: currentColor; }
.lp-btn--lg { padding: 0.9rem 2rem; font-size: var(--text-base); min-height: 48px; }
.lp-btn--sm { padding: 0.45rem 1rem; font-size: var(--text-xs); min-height: 36px; }
.lp-btn--block { width: 100%; }

.lp-btn--primary {
  background: var(--grad-dark-green);
  color: var(--c-white);
  box-shadow: var(--shadow-btn);
}
.lp-btn--primary:hover {
  background: var(--c-primary-light);
  color: var(--c-white);
  box-shadow: 0 4px 16px rgba(27,94,32,0.3);
}

.lp-btn--whatsapp {
  background: var(--c-whatsapp);
  color: var(--c-white);
}
.lp-btn--whatsapp:hover {
  background: var(--c-whatsapp-dark);
  color: var(--c-white);
}

.lp-btn--outline {
  background: transparent;
  color: var(--c-primary);
  border-color: var(--c-primary);
  box-shadow: none;
}
.lp-btn--outline:hover {
  background: var(--c-primary);
  color: var(--c-white);
  box-shadow: 0 4px 16px rgba(27,94,32,0.25);
}

.lp-btn--outline-white {
  background: transparent;
  color: var(--c-white);
  border-color: rgba(255,255,255,0.5);
  box-shadow: none;
}
.lp-btn--outline-white:hover {
  background: rgba(255,255,255,0.15);
  color: var(--c-white);
  border-color: rgba(255,255,255,0.8);
  box-shadow: 0 4px 16px rgba(255,255,255,0.1);
}

/* ===== HEADER (Floating) — matching main site glass style ===== */
.lp-header {
  position: fixed;
  top: var(--header-offset);
  left: var(--header-offset);
  right: var(--header-offset);
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06), 0 0 1px rgba(0,0,0,0.04);
  border: 1px solid rgba(27,94,32,0.06);
  border-radius: var(--radius-2xl);
  transition: all var(--transition-base);
}
.lp-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 1.5rem;
  padding: 0 1rem;
}
.lp-header__logo img { height: 120px; width: auto; }
.lp-header__nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.lp-header__link {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--c-gray-700);
  padding: 0.25rem 0;
  position: relative;
  cursor: pointer;
}
.lp-header__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--c-accent);
  border-radius: 1px;
  transition: width var(--transition-base);
}
.lp-header__link:hover { color: var(--c-primary); }
.lp-header__link:hover::after { width: 100%; }
.lp-header__link:focus-visible {
  outline: 2px solid var(--c-accent);
  outline-offset: 4px;
  border-radius: 2px;
}
.lp-header__cta { display: none; }

.lp-header__toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: rgba(27,94,32,.08);
  border-radius: var(--radius-lg);
}
.lp-header__toggle:active {
  background: rgba(27,94,32,.15);
}
.lp-header__toggle span {
  display: block;
  width: 20px;
  height: 2.5px;
  background: var(--c-primary);
  border-radius: 2px;
  transition: all var(--transition-fast);
}
.lp-header__toggle[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.lp-header__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.lp-header__toggle[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Header scrolled state */
.lp-header.is-scrolled {
  box-shadow: 0 8px 32px rgba(0,0,0,0.1), 0 2px 6px rgba(0,0,0,0.05);
  background: linear-gradient(135deg, rgba(255,255,255,0.97) 0%, rgba(255,255,255,0.92) 100%);
  border-color: rgba(27,94,32,0.1);
}

@media (min-width: 768px) {
  .lp-header__toggle { display: none; }
  .lp-header__cta { display: inline-flex; }
}
@media (max-width: 767px) {
  .lp-header {
    left: 8px;
    right: 8px;
    top: 8px;
  }
  .lp-header__nav {
    display: none;
    position: absolute;
    top: calc(var(--header-height) + 4px);
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.98);
    flex-direction: column;
    padding: 1.5rem;
    border-radius: 0 0 var(--radius-2xl) var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    gap: 0;
    border: 1px solid rgba(0,0,0,0.06);
    border-top: none;
  }
  .lp-header__nav.is-open { display: flex; }
  .lp-header__link { padding: 0.75rem 0; width: 100%; border-bottom: 1px solid var(--c-gray-200); }
  .lp-header__link:last-child { border-bottom: none; }
}

/* ===== HERO SLIDER ===== */
.lp-hero-slider {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  height: 75vh;
  max-height: 700px;
  margin-top: -120px;
}
.lp-hero-slider__track {
  position: relative;
  width: 100%;
  height: 100%;
}
/* Hero slide — simple states only; JS Web Animations API drives transitions */
.lp-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
}
.lp-hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}
.lp-hero-slide__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.lp-hero-slide__overlay {
  position: absolute;
  inset: 0;
  background: var(--grad-hero-overlay);
  z-index: 2;
}
.lp-hero-slide__inner {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  padding: 4rem 0;
  max-width: 620px;
  color: var(--c-white);
}
.lp-hero-slide__inner .lp-badge {
  background: rgba(255,255,255,0.18);
  color: var(--c-white);
  border: 1px solid rgba(255,255,255,0.15);
  font-size: var(--text-xs);
  letter-spacing: 0.04em;
}
.lp-hero-slide__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 1.4rem + 3vw, 3.5rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.25);
}
.lp-hero-slide__text {
  font-size: var(--text-lg);
  opacity: 0.9;
  margin-bottom: 2rem;
  line-height: 1.7;
  max-width: 540px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.2);
}
.lp-hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Slide content — hidden by default; JS Web Animations API handles staggered reveal */
.lp-hero-slide .lp-badge,
.lp-hero-slide .lp-hero-slide__title,
.lp-hero-slide .lp-hero-slide__text,
.lp-hero-slide .lp-hero__actions {
  opacity: 0;
  transform: translateY(20px);
}
/* First paint: show active slide content immediately (JS can animate later slides) */
.lp-hero-slide.is-active .lp-badge,
.lp-hero-slide.is-active .lp-hero-slide__title,
.lp-hero-slide.is-active .lp-hero-slide__text,
.lp-hero-slide.is-active .lp-hero__actions {
  opacity: 1;
  transform: none;
}

/* Slider arrows */
.lp-hero-slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--c-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-base);
  border: 1px solid rgba(255,255,255,0.2);
}
.lp-hero-slider__arrow:hover {
  background: rgba(255,255,255,0.3);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-50%) scale(1.05);
}
.lp-hero-slider__arrow:focus-visible {
  outline: 3px solid var(--c-accent-light);
  outline-offset: 2px;
}
.lp-hero-slider__arrow--prev { left: 1rem; }
.lp-hero-slider__arrow--next { right: 1rem; }

/* Slider dots — animated */
@keyframes dotActivate {
  0%   { transform: scale(1); width: 12px; background: transparent; border-color: rgba(255,255,255,0.5); }
  40%  { transform: scale(1.35); width: 18px; background: rgba(255,255,255,0.6); }
  100% { transform: scale(1); width: 32px; background: var(--c-white); border-color: var(--c-white); border-radius: 6px; }
}
@keyframes dotDeactivate {
  0%   { width: 32px; background: var(--c-white); border-radius: 6px; }
  50%  { transform: scale(0.85); }
  100% { width: 12px; background: transparent; border-color: rgba(255,255,255,0.5); border-radius: var(--radius-full); transform: scale(1); }
}

.lp-hero-slider__dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 0.5rem;
}
.lp-hero-slider__dot {
  width: 12px;
  height: 12px;
  border-radius: var(--radius-full);
  border: 2px solid rgba(255,255,255,0.5);
  background: transparent;
  cursor: pointer;
  padding: 0;
  min-width: 12px;
  min-height: 12px;
  transition: border-color var(--transition-fast);
}
.lp-hero-slider__dot:hover {
  border-color: var(--c-white);
  background: rgba(255,255,255,0.3);
}
.lp-hero-slider__dot.is-active {
  background: var(--c-white);
  border-color: var(--c-white);
  width: 32px;
  border-radius: 6px;
  animation: dotActivate 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.lp-hero-slider__dot.is-leaving {
  animation: dotDeactivate 0.4s ease-out forwards;
}
.lp-hero-slider__dot:focus-visible {
  outline: 3px solid var(--c-accent-light);
  outline-offset: 2px;
}

@media (max-width: 767px) {
  .lp-hero-slider {
    min-height: 480px;
    height: 70vh;
  }
  .lp-hero-slider__arrow { display: none; }
  .lp-hero-slide__inner {
    align-items: center;
    text-align: center;
    max-width: 100%;
    padding: 2rem 0;
  }
  .lp-hero-slide__title {
    font-size: clamp(1.6rem, 1.2rem + 2.5vw, 2.5rem);
  }
  .lp-hero-slide__text {
    font-size: var(--text-base);
    margin-bottom: 1.5rem;
  }
  .lp-hero__actions {
    justify-content: center;
    width: 100%;
    flex-direction: column;
    align-items: center;
  }
  .lp-hero__actions .lp-btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
  .lp-hero-slider__dots {
    bottom: 1rem;
  }
}
@media (min-width: 1024px) {
  .lp-hero-slider { max-height: 750px; }
}

/* ===== TRUST BAR — dark gradient matching main site ===== */
.lp-trust-bar {
  background: var(--grad-dark);
  color: var(--c-white);
  padding: 1rem 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.lp-trust-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(76,175,80,0.08) 0%, transparent 70%);
}
.lp-trust-bar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(76,175,80,0.3) 50%, transparent 100%);
}
.lp-trust-bar__text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: var(--text-sm);
  font-weight: 600;
  text-align: center;
  position: relative;
  z-index: 1;
}
.lp-trust-bar__text svg { flex-shrink: 0; stroke: var(--c-white); }
@media (max-width: 767px) {
  .lp-trust-bar__text {
    font-size: var(--text-xs);
    gap: 0.35rem;
    line-height: 1.5;
  }
}

/* ===== VALUE PROPS — clean white background like main site ===== */
.lp-value-props {
  padding: 5rem 0;
  background: var(--grad-surface-alt);
  border-bottom: 1px solid var(--c-gray-200);
  position: relative;
}
.lp-value-props::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-green-soft);
  pointer-events: none;
}
.lp-value-props__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  position: relative;
}
.lp-value-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-xl);
  background: var(--c-white);
  border: 1px solid var(--c-gray-200);
  box-shadow: var(--shadow-card-pro);
  transition: all var(--transition-base);
  cursor: default;
}
.lp-value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-premium);
  border-color: rgba(76,175,80,0.2);
}
.lp-value-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(27,94,32,0.05), rgba(76,175,80,0.07));
  border: 1px solid rgba(27,94,32,0.06);
  color: var(--c-accent);
  box-shadow: 0 2px 8px rgba(27,94,32,0.05);
  margin-bottom: 1.25rem;
  transition: all var(--transition-base);
}
.lp-value-card:hover .lp-value-card__icon {
  transform: scale(1.06);
  background: linear-gradient(145deg, rgba(27,94,32,0.08), rgba(76,175,80,0.12));
  box-shadow: 0 4px 12px rgba(27,94,32,0.1);
}
.lp-value-card__icon svg {
  fill: none;
  stroke: var(--c-accent);
  width: 28px;
  height: 28px;
}
.lp-value-card h3 {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--c-gray-900);
}
.lp-value-card p {
  color: var(--c-text-muted);
  font-size: var(--text-sm);
  line-height: 1.6;
}

@media (min-width: 640px) {
  .lp-value-props__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .lp-value-props__grid { grid-template-columns: repeat(4, 1fr); }
}

/* ===== CATEGORIES ===== */
.lp-categories {
  padding: 5rem 0;
  background: linear-gradient(180deg, #F4F6F1 0%, #EEF1EB 100%);
  position: relative;
}
.lp-categories::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(27,94,32,0.008) 0%, rgba(76,175,80,0.02) 50%, transparent 100%);
  pointer-events: none;
}
.lp-categories__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  position: relative;
}
.lp-cat-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--c-white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--c-gray-200);
  box-shadow: var(--shadow-card-pro);
  transition: all var(--transition-base);
  color: var(--c-text);
  cursor: pointer;
  text-decoration: none;
}
.lp-cat-card:hover {
  border-color: rgba(76,175,80,0.25);
  box-shadow: var(--shadow-premium);
  transform: translateY(-3px);
  color: var(--c-text);
}
.lp-cat-card:focus-visible {
  outline: 2px solid var(--c-accent);
  outline-offset: 2px;
}
.lp-cat-card__icon {
  flex-shrink: 0;
  width: 68px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(27,94,32,0.05), rgba(76,175,80,0.07));
  border: 1px solid rgba(27,94,32,0.06);
  box-shadow: 0 2px 8px rgba(27,94,32,0.05);
  transition: all var(--transition-base);
}
.lp-cat-card:hover .lp-cat-card__icon {
  transform: scale(1.06);
  background: linear-gradient(145deg, rgba(27,94,32,0.08), rgba(76,175,80,0.12));
  box-shadow: 0 4px 12px rgba(27,94,32,0.1);
}
.lp-cat-card__icon svg {
  fill: none;
  stroke: var(--c-accent);
  color: var(--c-accent);
  width: 28px;
  height: 28px;
}
.lp-cat-card__body {
  flex: 1;
  min-width: 0;
}
.lp-cat-card__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-base);
  color: var(--c-gray-900);
  display: block;
  line-height: 1.3;
  margin-bottom: 0.2rem;
}
.lp-cat-card__desc {
  font-size: var(--text-sm);
  color: var(--c-text-muted);
  display: none;
  line-height: 1.5;
}
.lp-cat-card__arrow {
  flex-shrink: 0;
  stroke: var(--c-gray-400);
  transition: all var(--transition-base);
  opacity: 0;
}
.lp-cat-card:hover .lp-cat-card__arrow {
  opacity: 1;
  stroke: var(--c-primary);
  transform: translateX(3px);
}
.lp-categories__cta {
  text-align: center;
  margin-top: 2.5rem;
  position: relative;
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .lp-categories__cta {
    padding: 0 1rem;
  }
  .lp-categories__cta .lp-btn {
    width: 100%;
    max-width: 360px;
  }
}

@media (min-width: 640px) {
  .lp-categories__grid { grid-template-columns: repeat(2, 1fr); }
  .lp-cat-card__desc { display: block; }
  .lp-cat-card__arrow { opacity: 0; }
}
@media (min-width: 1024px) {
  .lp-categories__grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
  .lp-cat-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem 1.75rem;
    gap: 1rem;
  }
  .lp-cat-card__icon {
    width: 72px;
    height: 72px;
  }
  .lp-cat-card__icon svg {
    width: 28px;
    height: 28px;
  }
  .lp-cat-card__arrow { display: none; }
}

/* ===== ABOUT ===== */
.lp-about {
  padding: 5rem 0;
  background: var(--grad-surface);
  position: relative;
}
.lp-about::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-green-warm);
  pointer-events: none;
}
.lp-about__intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 3rem;
  position: relative;
}
.lp-about__image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.lp-about__image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  transition: transform var(--transition-slow);
}
.lp-about__image:hover img {
  transform: scale(1.02);
}
.lp-about__years-badge {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: var(--grad-dark-green);
  color: var(--c-white);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-lg);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: var(--text-xl);
  line-height: 1;
  box-shadow: var(--shadow-lg);
}
.lp-about__content {
  position: relative;
}
.lp-about__content p {
  margin-top: 1rem;
  color: var(--c-text-muted);
  line-height: 1.7;
}
.lp-about__certs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.lp-cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--c-white);
  border: 1px solid var(--c-gray-200);
  border-radius: var(--radius-full);
  padding: 0.5rem 1rem;
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--c-gray-700);
  box-shadow: var(--shadow-soft);
  transition: all var(--transition-fast);
  cursor: default;
}
.lp-cert-badge:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--c-accent-light);
  transform: translateY(-1px);
}
.lp-cert-badge svg { color: var(--c-accent); }

@media (min-width: 768px) {
  .lp-about__intro { grid-template-columns: 1fr 1fr; }
}

/* Mission / Vision / Values */
.lp-mvv-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
  position: relative;
}
.lp-mvv-card {
  background: var(--c-white);
  border: 1px solid var(--c-gray-200);
  border-radius: var(--radius-xl);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-card-pro);
  transition: all var(--transition-base);
}
.lp-mvv-card:hover {
  border-color: rgba(76,175,80,0.2);
  box-shadow: var(--shadow-premium);
  transform: translateY(-4px);
}
.lp-mvv-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: linear-gradient(145deg, rgba(27,94,32,0.05), rgba(76,175,80,0.07));
  border: 1px solid rgba(27,94,32,0.06);
  color: var(--c-accent);
  margin-bottom: 1.25rem;
  box-shadow: 0 2px 8px rgba(27,94,32,0.05);
  transition: all var(--transition-base);
}
.lp-mvv-card:hover .lp-mvv-card__icon {
  transform: scale(1.08);
  box-shadow: 0 4px 12px rgba(27,94,32,0.1);
}
.lp-mvv-card__icon svg {
  fill: none;
  width: 28px;
  height: 28px;
  stroke: currentColor;
}
.lp-mvv-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-lg);
  color: var(--c-primary);
  margin-bottom: 0.75rem;
}
.lp-mvv-card p {
  font-size: var(--text-sm);
  color: var(--c-text-muted);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .lp-mvv-grid { grid-template-columns: repeat(3, 1fr); }
}

/* About Stats */
.lp-about__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
  position: relative;
}
.lp-stat {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--c-white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--c-gray-200);
  box-shadow: var(--shadow-card-pro);
  transition: all var(--transition-base);
}
.lp-stat:hover {
  box-shadow: var(--shadow-premium);
  transform: translateY(-2px);
  border-color: rgba(76,175,80,0.15);
}
.lp-stat__number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--c-primary);
  line-height: 1;
}
.lp-stat__label {
  display: block;
  font-size: var(--text-xs);
  color: var(--c-text-muted);
  margin-top: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (min-width: 640px) {
  .lp-about__stats { grid-template-columns: repeat(4, 1fr); }
}

/* ===== TESTIMONIALS ===== */
.lp-testimonials {
  padding: 5rem 0;
  background: linear-gradient(180deg, #EEF1EB 0%, #F4F6F1 100%);
  position: relative;
}
.lp-testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(76,175,80,0.015) 50%, transparent 100%);
  pointer-events: none;
}
.lp-testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  position: relative;
}
.lp-testimonial {
  background: var(--c-white);
  padding: 2rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--c-gray-200);
  box-shadow: var(--shadow-card-pro);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}
.lp-testimonial:hover {
  box-shadow: var(--shadow-premium);
  transform: translateY(-3px);
  border-color: rgba(76,175,80,0.2);
}
.lp-testimonial__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
  color: #F59E0B;
}
.lp-testimonial__quote {
  font-size: var(--text-base);
  color: var(--c-text);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
  flex: 1;
}
.lp-testimonial__author strong {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  color: var(--c-gray-900);
}
.lp-testimonial__author span {
  font-size: var(--text-xs);
  color: var(--c-text-muted);
}

@media (min-width: 768px) {
  .lp-testimonials__grid { grid-template-columns: repeat(3, 1fr); }
}

/* ===== CTA — premium dark gradient ===== */
.lp-cta {
  padding: 5rem 0;
  background: var(--grad-dark);
  color: var(--c-white);
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}
.lp-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(76,175,80,0.08);
  filter: blur(100px);
  pointer-events: none;
}
.lp-cta::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -10%;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  filter: blur(70px);
  pointer-events: none;
}
.lp-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
  position: relative;
  z-index: 1;
}
.lp-cta__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 1.2rem + 1.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
}
.lp-cta__subtitle {
  font-size: var(--text-lg);
  opacity: 0.85;
  max-width: 500px;
}
.lp-cta__actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
@media (max-width: 767px) {
  .lp-cta__actions {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .lp-cta__actions .lp-btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
}

/* ===== TEAM SECTION ===== */
.lp-team {
  padding: 5rem 0;
  background: var(--grad-surface);
  position: relative;
}
.lp-team::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(76,175,80,0.015) 40%, rgba(27,94,32,0.005) 100%);
  pointer-events: none;
}

/* Team Carousel */
.lp-team-carousel {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.lp-team-carousel__viewport {
  overflow: hidden;
  border-radius: var(--radius-xl);
}
.lp-team-carousel__track {
  display: flex;
  transition: transform 0.65s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}
.lp-team-carousel__slide {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding: 0.5rem;
}

@media (min-width: 640px) {
  .lp-team-carousel__slide {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 639px) {
  .lp-team-carousel__slide {
    gap: 1rem;
    padding: 0.25rem;
  }
}

/* Team Cards */
.lp-team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--c-white);
  border: 1px solid var(--c-gray-200);
  border-radius: var(--radius-xl);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-card-pro);
  transition: all var(--transition-base);
  position: relative;
}
.lp-team-card:hover {
  border-color: rgba(76,175,80,0.2);
  box-shadow: var(--shadow-premium);
  transform: translateY(-3px);
}
.lp-team-card--featured {
  border-color: rgba(76,175,80,0.2);
  background: linear-gradient(135deg, rgba(76,175,80,0.02), rgba(255,255,255,1) 50%, rgba(27,94,32,0.015));
  box-shadow: var(--shadow-premium);
}
.lp-team-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--grad-dark-green);
  color: var(--c-white);
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-full);
}
.lp-team-card__photo {
  width: 100px;
  height: 100px;
  border-radius: var(--radius-full);
  object-fit: cover;
  border: 3px solid var(--c-gray-200);
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: all var(--transition-base);
}
.lp-team-card:hover .lp-team-card__photo {
  border-color: var(--c-accent-light);
  box-shadow: 0 6px 20px rgba(76,175,80,0.2);
  transform: scale(1.05);
}
.lp-team-card--featured .lp-team-card__photo {
  border-color: var(--c-accent);
  width: 110px;
  height: 110px;
}
@media (max-width: 639px) {
  .lp-team-card {
    padding: 1.5rem 1rem;
  }
  .lp-team-card__photo {
    width: 80px;
    height: 80px;
  }
  .lp-team-card--featured .lp-team-card__photo {
    width: 90px;
    height: 90px;
  }
  .lp-team-card__name {
    font-size: var(--text-sm);
  }
  .lp-team-card__role {
    font-size: var(--text-xs);
  }
  .lp-team-card__phones a {
    font-size: 0.65rem;
  }
  .lp-team-card .lp-btn--sm {
    font-size: 0.65rem;
    padding: 0.35rem 0.75rem;
    min-height: 32px;
  }
}
.lp-team-card__name {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 0.25rem;
}
.lp-team-card__role {
  font-size: var(--text-sm);
  color: var(--c-accent-dark);
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.lp-team-card__phones {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1rem;
}
.lp-team-card__phones a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: var(--text-xs);
  color: var(--c-text-muted);
  transition: color var(--transition-fast);
  cursor: pointer;
}
.lp-team-card__phones a:hover { color: var(--c-primary); }
.lp-team-card__phones svg {
  fill: none;
  stroke: currentColor;
  opacity: 0.72;
  color: var(--c-accent-dark);
}

/* Team cards entrance animation within carousel */
.lp-team-carousel__slide .lp-team-card {
  opacity: 0;
  transform: translateY(16px) scale(0.97);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.lp-team-carousel__slide .lp-team-card:nth-child(2) {
  transition-delay: 0.12s;
}

/* Carousel Navigation */
.lp-team-carousel__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}
.lp-team-carousel__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--c-white);
  border: 1px solid var(--c-gray-200);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  cursor: pointer;
  color: var(--c-gray-700);
}
.lp-team-carousel__btn:hover {
  background: var(--c-primary);
  color: var(--c-white);
  border-color: var(--c-primary);
  box-shadow: 0 4px 12px rgba(27,94,32,0.3);
  transform: scale(1.05);
}
.lp-team-carousel__btn:focus-visible {
  outline: 3px solid var(--c-accent-light);
  outline-offset: 2px;
}
.lp-team-carousel__btn svg { fill: none; stroke: currentColor; }
.lp-team-carousel__dots {
  display: flex;
  gap: 0.5rem;
}
.lp-team-carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  border: 2px solid var(--c-gray-300);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  padding: 0;
  min-width: 10px;
  min-height: 10px;
}
.lp-team-carousel__dot:hover {
  border-color: var(--c-accent);
}
.lp-team-carousel__dot.is-active {
  background: var(--c-primary);
  border-color: var(--c-primary);
  width: 28px;
  border-radius: 5px;
}
.lp-team-carousel__dot:focus-visible {
  outline: 3px solid var(--c-accent-light);
  outline-offset: 2px;
}

/* ===== CONTACT + MAP ===== */
.lp-contact {
  padding: 5rem 0;
  background: linear-gradient(180deg, #F4F6F1 0%, #EEF1EB 50%, #F4F6F1 100%);
  position: relative;
}
.lp-contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(27,94,32,0.01) 0%, transparent 50%, rgba(76,175,80,0.01) 100%);
  pointer-events: none;
}

/* Quick channel cards (top row) */
.lp-contact__channels {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 3rem;
  position: relative;
}
.lp-channel-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  background: var(--c-white);
  border: 1px solid var(--c-gray-200);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card-pro);
  transition: all var(--transition-base);
  cursor: pointer;
  color: var(--c-text);
  text-decoration: none;
}
.lp-channel-card:hover {
  border-color: rgba(76,175,80,0.25);
  box-shadow: var(--shadow-premium);
  transform: translateY(-2px);
  color: var(--c-text);
}
.lp-channel-card--wa {
  border-color: rgba(37,211,102,0.3);
  background: linear-gradient(135deg, rgba(37,211,102,0.03), var(--c-white) 60%);
}
.lp-channel-card--wa:hover {
  border-color: rgba(37,211,102,0.5);
  box-shadow: 0 8px 24px rgba(37,211,102,0.12);
}
.lp-channel-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: var(--radius-full);
  background: rgba(76,175,80,0.06);
  color: var(--c-accent);
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  transition: transform var(--transition-base);
}
.lp-channel-card--wa .lp-channel-card__icon {
  background: rgba(37,211,102,0.08);
  color: var(--c-whatsapp);
}
.lp-channel-card:hover .lp-channel-card__icon {
  transform: scale(1.08);
}
.lp-channel-card__icon svg {
  fill: none;
  stroke: currentColor;
  width: 22px;
  height: 22px;
}
.lp-channel-card__body {
  flex: 1;
  min-width: 0;
}
.lp-channel-card__body strong {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--c-gray-900);
}
.lp-channel-card__body span {
  font-size: var(--text-sm);
  color: var(--c-text-muted);
}
.lp-channel-card__arrow {
  flex-shrink: 0;
  color: var(--c-gray-400);
  transition: transform var(--transition-fast), color var(--transition-fast);
}
.lp-channel-card:hover .lp-channel-card__arrow {
  transform: translateX(4px);
  color: var(--c-accent);
}

@media (min-width: 640px) {
  .lp-contact__channels { grid-template-columns: repeat(3, 1fr); }
}

/* Location row: details + map */
.lp-contact__location-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
}
.lp-contact__details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.lp-detail-block {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--c-white);
  border: 1px solid var(--c-gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card-pro);
  transition: all var(--transition-base);
}
.lp-detail-block:hover {
  border-color: rgba(76,175,80,0.15);
  box-shadow: var(--shadow-premium);
}
.lp-detail-block__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: var(--radius-full);
  background: rgba(76,175,80,0.06);
  color: var(--c-accent);
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.lp-detail-block__icon svg {
  fill: none;
  stroke: currentColor;
  width: 20px;
  height: 20px;
}
.lp-detail-block h3 {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--c-gray-800);
  margin-bottom: 0.35rem;
}
.lp-detail-block p {
  font-size: var(--text-sm);
  color: var(--c-text-muted);
  line-height: 1.6;
}
.lp-detail-block p a {
  color: var(--c-primary);
  font-weight: 600;
}
.lp-detail-block__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--c-accent) !important;
  margin-top: 0.5rem;
  transition: gap var(--transition-fast);
}
.lp-detail-block__link:hover { gap: 0.6rem; }

/* Schedule table */
.lp-schedule { margin-top: 0.25rem; }
.lp-schedule__row {
  display: flex;
  justify-content: space-between;
  padding: 0.3rem 0;
  font-size: var(--text-sm);
  color: var(--c-text-muted);
  border-bottom: 1px dashed var(--c-gray-200);
}
.lp-schedule__row:last-child { border-bottom: none; }
.lp-schedule__row span:first-child { font-weight: 600; color: var(--c-gray-700); }
.lp-schedule__row--closed span:last-child { color: var(--c-offer); font-weight: 600; }
.lp-schedule__row small { opacity: 0.7; }

/* Google Maps embed */
.lp-contact__map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--c-gray-200);
  background: var(--c-gray-100);
  min-height: 350px;
  box-shadow: var(--shadow-card-pro);
}
.lp-contact__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  min-height: 350px;
}

@media (min-width: 768px) {
  .lp-contact__location-row { grid-template-columns: 1fr 1fr; }
  .lp-contact__map { min-height: 100%; }
  .lp-contact__map iframe { min-height: 400px; }
}

/* Contact form */
.lp-contact__form-wrapper {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}
.lp-contact__form-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--c-text);
  text-align: center;
  margin-bottom: 1.5rem;
}
.lp-contact__form-title svg { color: var(--c-accent); }
.lp-contact__form {
  background: var(--c-white);
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--c-gray-200);
  box-shadow: var(--shadow-card-pro);
}
.lp-form-group { margin-bottom: 1rem; }
.lp-form-group label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--c-gray-700);
  margin-bottom: 0.35rem;
}
.lp-form-group input,
.lp-form-group textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1px solid var(--c-gray-300);
  border-radius: var(--radius-md);
  background: var(--c-white);
  font-size: var(--text-base);
  color: var(--c-text);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.lp-form-group input:focus,
.lp-form-group textarea:focus {
  outline: none;
  border-color: var(--c-accent);
  box-shadow: 0 0 0 3px rgba(76,175,80,0.15);
}
.lp-form-group input::placeholder,
.lp-form-group textarea::placeholder { color: var(--c-gray-400); }

.lp-form-row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.lp-form-row--2 { grid-template-columns: 1fr; }
.lp-form-row--3 { grid-template-columns: 1fr; }
.lp-form-note {
  text-align: center;
  font-size: var(--text-xs);
  color: var(--c-text-muted);
  margin-top: 0.75rem;
}

@media (min-width: 640px) {
  .lp-form-row { grid-template-columns: 1fr 1fr; }
  .lp-form-row--2 { grid-template-columns: 1fr 1fr; }
  .lp-form-row--3 { grid-template-columns: 1fr 1fr 1fr; }
}

/* ===== FOOTER — dark gradient matching main site ===== */
.lp-footer {
  background: var(--grad-dark);
  color: var(--c-gray-300);
  padding: 3.5rem 0 0;
  position: relative;
  overflow: hidden;
}
.lp-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--grad-accent);
}
.lp-footer::after {
  content: '';
  position: absolute;
  top: 0;
  right: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(76,175,80,0.04);
  filter: blur(100px);
  pointer-events: none;
}
.lp-footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
}
.lp-footer__brand img { margin-bottom: 1rem; }
.lp-footer__brand p { font-size: var(--text-sm); line-height: 1.6; color: var(--c-gray-400); }
.lp-footer__links h4,
.lp-footer__contact h4,
.lp-footer__social h4 {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.lp-footer__links ul,
.lp-footer__contact ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.lp-footer__links a { color: var(--c-gray-400); font-size: var(--text-sm); cursor: pointer; transition: color var(--transition-fast); }
.lp-footer__links a:hover { color: var(--c-accent-light); }
.lp-footer__contact li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-sm);
  color: var(--c-gray-400);
}
.lp-footer__contact li svg {
  opacity: 0.7;
  stroke: var(--c-gray-400);
}
.lp-footer__contact a { color: var(--c-gray-400); transition: color var(--transition-fast); }
.lp-footer__contact a:hover { color: var(--c-accent-light); }

.lp-footer__social-links {
  display: flex;
  gap: 0.75rem;
}
.lp-footer__social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  color: var(--c-gray-300);
  transition: all var(--transition-base);
  cursor: pointer;
}
.lp-footer__social-links a:hover {
  background: var(--c-accent);
  color: var(--c-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(76,175,80,0.3);
}
.lp-footer__social-links svg { fill: currentColor; }

.lp-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem 0;
  text-align: center;
  background: rgba(0,0,0,0.15);
}
.lp-footer__bottom p { font-size: var(--text-xs); color: var(--c-gray-500); }

@media (min-width: 768px) {
  .lp-footer__inner { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

/* ===== FLOATING WHATSAPP ===== */
.lp-floating-wa {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  background: var(--c-whatsapp);
  color: var(--c-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(37,211,102,0.3), 0 2px 6px rgba(0,0,0,0.1);
  transition: all var(--transition-base);
  animation: waPulse 2s ease-in-out infinite;
  cursor: pointer;
}
.lp-floating-wa:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 30px rgba(37,211,102,0.35), 0 4px 12px rgba(0,0,0,0.1);
  color: var(--c-white);
  animation: none;
}
.lp-floating-wa:focus-visible {
  outline: 3px solid var(--c-whatsapp-dark);
  outline-offset: 2px;
}
.lp-floating-wa svg { stroke: var(--c-white); fill: none; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-24px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(24px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 14px rgba(37,211,102,0.3), 0 2px 6px rgba(0,0,0,0.1); }
  50% { box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 0 6px rgba(37,211,102,0.1); }
}
@keyframes shimmer {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}

/* Reveal on scroll animation */
.lp-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.lp-reveal.is-visible {
  opacity: 1;
  transform: translateY(0) translateX(0);
}
/* Section header reveal (no translate, just fade) */
.lp-reveal--fade {
  transform: none;
}
/* Stagger children */
.lp-reveal:nth-child(2) { transition-delay: 0.08s; }
.lp-reveal:nth-child(3) { transition-delay: 0.16s; }
.lp-reveal:nth-child(4) { transition-delay: 0.24s; }
.lp-reveal:nth-child(5) { transition-delay: 0.32s; }
.lp-reveal:nth-child(6) { transition-delay: 0.40s; }

/* Reduced motion: skip animation */
@media (prefers-reduced-motion: reduce) {
  .lp-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ===== GLOBAL MOBILE REFINEMENTS ===== */
@media (max-width: 767px) {
  /* Container tighter on mobile */
  .lp-container {
    padding: 0 1rem;
  }
  /* Section padding reduced */
  .lp-value-props,
  .lp-categories,
  .lp-about,
  .lp-testimonials,
  .lp-team,
  .lp-contact {
    padding: 3rem 0;
  }
  .lp-cta {
    padding: 3rem 0;
  }
  .lp-section-header {
    margin-bottom: 2rem;
  }
  /* Footer mobile grid */
  .lp-footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  .lp-footer__brand {
    grid-column: 1 / -1;
  }
  /* Form mobile padding */
  .lp-contact__form {
    padding: 1.5rem;
  }
  /* Floating WhatsApp slightly smaller on mobile */
  .lp-floating-wa {
    width: 52px;
    height: 52px;
    bottom: 1rem;
    right: 1rem;
  }
  .lp-floating-wa svg {
    width: 24px;
    height: 24px;
  }
}

/* ===== PRINT ===== */
@media print {
  .lp-header, .lp-floating-wa, .lp-cta, .lp-hero-slider { display: none; }
  body { background: white; color: black; padding-top: 0; }
}
