/* ============================================
   PUSH FIT MADRID - Main Stylesheet
   Modern, minimalist, professional design
   Color palette: Blues + White
   ============================================ */

/* CSS Variables */
:root {
  /* Brand Palette */
  --primary-blue: #1d4ed8;
  --primary-blue-dark: #1e40af;
  --primary-blue-light: #3b82f6;
  --secondary-blue: #0f172a;
  --accent-blue: #60a5fa;

  /* Neutral Palette */
  --white: #ffffff;
  --light-gray: #f8fafc;
  --medium-gray: #e2e8f0;
  --dark-gray: #94a3b8;
  --text-dark: #0f172a;
  --text-light: #334155;
  --text-muted: #64748b;
  --surface: #f1f5f9;
  --surface-strong: #e2e8f0;
  --border-soft: rgba(148, 163, 184, 0.35);
  --text-on-dark: #f8fafc;
  --text-on-primary: #ffffff;
  --placeholder-text: #cbd5e1;
  --info-surface: #eff6ff;
  --info-border: #bfdbfe;

  /* Semantic Colors */
  --success: #10b981;
  --warning: #f59e0b;
  --error: #ef4444;
  --info: #38bdf8;

  /* Typography */
  --font-heading: 'Sora', 'Poppins', system-ui, -apple-system, sans-serif;
  --font-body: 'Manrope', 'Open Sans', system-ui, -apple-system, sans-serif;
  --font-primary: var(--font-heading);
  --font-secondary: var(--font-body);

  /* Spacing Scale */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;

  --space-xs: var(--space-1);
  --space-sm: var(--space-2);
  --space-md: var(--space-4);
  --space-lg: var(--space-5);
  --space-xl: var(--space-6);
  --space-2xl: var(--space-7);
  --space-3xl: calc(var(--space-8) + 1rem);
  --space-4xl: calc(var(--space-8) + 2rem);

  /* Radius */
  --radius-sm: 8px;
  --radius: 12px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 6px 20px rgba(15, 23, 42, 0.08);
  --shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
  --shadow-md: 0 20px 40px rgba(15, 23, 42, 0.18);
  --shadow-lg: 0 30px 60px rgba(15, 23, 42, 0.2);
  --shadow-xl: 0 40px 80px rgba(15, 23, 42, 0.22);

  /* Motion system: short + consistent for 60fps */
  --motion-fast: 120ms;
  --motion-medium: 180ms;
  --motion-slow: 240ms;
  --motion-xslow: 360ms;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: var(--motion-fast) var(--ease-out);
  --transition: var(--motion-medium) var(--ease-out);
  --transition-slow: var(--motion-xslow) var(--ease-out);

  /* Aliases */
  --primary-color: var(--primary-blue);
  --secondary-color: var(--success);

  /* Bootstrap Overrides */
  --bs-primary: var(--primary-blue);
  --bs-secondary: var(--secondary-blue);
  --bs-success: var(--success);
  --bs-info: var(--info);
  --bs-warning: var(--warning);
  --bs-danger: var(--error);
  --bs-body-bg: var(--white);
  --bs-body-color: var(--text-dark);
  --bs-body-font-family: var(--font-body);
  --bs-border-color: var(--border-soft);
  --bs-link-color: var(--primary-blue);
  --bs-link-hover-color: var(--primary-blue-dark);
  --bs-border-radius: var(--radius);
  --bs-border-radius-lg: var(--radius-lg);
  --bs-border-radius-xl: var(--radius-xl);
  --bs-box-shadow: var(--shadow);
  --bs-focus-ring-color: rgba(29, 78, 216, 0.35);
}

/* Reset & Base Styles */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 2000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  padding: 0.75rem 1rem;
  background: var(--primary-blue);
  color: var(--text-on-primary);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

p {
  margin-bottom: var(--space-md);
  color: var(--text-light);
}

a {
  color: var(--primary-blue);
  text-decoration: none;
  transition: color var(--motion-medium) var(--ease-out);
}

a:hover {
  color: var(--primary-blue-dark);
}

/* Layout */
.container {
  padding-left: var(--bs-gutter-x, 1.5rem);
  padding-right: var(--bs-gutter-x, 1.5rem);
}

.section {
  padding: var(--space-8) 0;
  position: relative;
  scroll-margin-top: 100px;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.section-title {
  position: relative;
  display: inline-block;
  margin-bottom: var(--space-sm);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto var(--space-lg);
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary-blue);
  background: rgba(96, 165, 250, 0.12);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
}

.text-muted {
  color: var(--text-muted) !important;
}

.title-line {
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-blue), var(--accent-blue));
  margin: var(--space-md) auto;
  border-radius: var(--radius-full);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.85rem 1.6rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition), color var(--transition);
  text-align: center;
  line-height: 1;
  position: relative;
  overflow: hidden;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn:active {
  transform: translateY(0);
}

.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 0.25rem rgba(29, 78, 216, 0.25);
}

.btn-primary {
  background-color: var(--primary-blue);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--primary-blue-dark);
  color: var(--white);
}

.btn-secondary {
  background-color: var(--secondary-blue);
  color: var(--text-on-dark);
}

.btn-secondary:hover {
  background-color: var(--primary-blue-dark);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
}

.btn-outline:hover {
  background-color: var(--primary-blue);
  color: var(--white);
}

.btn-success {
  background-color: var(--success);
  color: var(--white);
}

.btn-success:hover {
  background-color: #0da271;
}

#whatsappHeroBtn {
  background-color: #0f9a5f;
  border-color: #0f9a5f;
  color: #ffffff;
}

#whatsappHeroBtn:hover,
#whatsappHeroBtn:focus-visible {
  background-color: #0b7c4c;
  border-color: #0b7c4c;
  color: #ffffff;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-block {
  display: block;
  width: 100%;
}

.btn i {
  font-size: 1.125em;
}

/* Cards */
.card {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.card-hover {
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.card-hover:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(29, 78, 216, 0.2);
}

.icon-badge {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: rgba(29, 78, 216, 0.12);
  color: var(--primary-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

/* Preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity var(--transition-slow), visibility var(--transition-slow);
}

.preloader-content {
  text-align: center;
}

.preloader-logo {
  margin-bottom: var(--space-xl);
}

.spinner-circle {
  width: 40px;
  height: 40px;
  border: 3px solid var(--medium-gray);
  border-top-color: var(--primary-blue);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(248, 250, 252, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-soft);
  z-index: 1000;
  transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition);
}

.header.scrolled,
.header.is-scrolled {
  background-color: rgba(248, 250, 252, 0.98);
  box-shadow: var(--shadow-sm);
}

.header.is-hidden {
  transform: translateY(-100%);
}

.navbar {
  padding: var(--space-3) 0;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-blue);
}

.logo-placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--primary-blue);
  letter-spacing: -0.5px;
}

.logo-placeholder img {
  display: block;
  height: 40px;
  width: auto;
}

.nav-logo .logo-placeholder img {
  height: clamp(56px, 5vw, 80px);
}

.preloader-logo .logo-placeholder img {
  height: 64px;
}

.footer-brand .logo-placeholder img {
  height: 48px;
}

.nav-menu {
  gap: var(--space-lg);
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-dark);
  padding: 0.5rem 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-blue);
  transition: width var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: var(--primary-blue);
}

.navbar-nav {
  gap: var(--space-md);
}

.nav-toggle {
  display: none;
  background: rgba(15, 23, 42, 0.06);
  border: 1px solid var(--border-soft);
  cursor: pointer;
  padding: 0.55rem 0.7rem;
  border-radius: var(--radius);
}

.nav-toggle-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-dark);
  margin: 4px 0;
  transition: all var(--transition);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.nav-logo .logo-placeholder {
  background: transparent;
  background-image: none;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 8rem;
  padding-bottom: var(--space-4xl);
  background: radial-gradient(circle at top left, rgba(96, 165, 250, 0.18), transparent 45%),
    linear-gradient(135deg, var(--light-gray) 0%, #eef2ff 100%);
  overflow: hidden;
}

.hero-coach {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.hero .container {
  padding-top: 4rem;
}

.hero-grid {
  min-height: calc(100vh - 8rem);
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.03;
  background-image: radial-gradient(var(--primary-blue) 1px, transparent 1px);
  background-size: 40px 40px;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0;
  text-align: left;
}

.hero-badge {
  display: inline-block;
  background-color: rgba(29, 78, 216, 0.12);
  color: var(--primary-blue);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: var(--space-xl);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-title {
  margin-bottom: var(--space-lg);
  color: var(--text-dark);
}

.hero-title .highlight {
  color: var(--primary-blue);
  position: relative;
}

.hero-title .highlight::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0.1em;
  width: 100%;
  height: 0.35em;
  background: rgba(96, 165, 250, 0.25);
  z-index: -1;
  border-radius: var(--radius);
}

.title-line {
  display: block;
}

.title-line.highlight {
  color: var(--primary-blue);
  position: relative;
  display: inline-block;
}

.title-line.highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 6px;
  background-color: var(--accent-blue);
  opacity: 0.2;
  border-radius: var(--radius);
  z-index: -1;
}

.hero-subtitle {
  font-size: 1.25rem;
  max-width: 600px;
  margin-bottom: var(--space-2xl);
  max-width: 560px;
  color: var(--text-light);
}

.hero-stats {
  display: flex;
  justify-content: flex-start;
  gap: var(--space-2xl);
  margin: var(--space-2xl) 0;
}

.stat-item {
  text-align: left;
}

.stat-number {
  font-family: var(--font-primary);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: var(--space-xs);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--dark-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-cta {
  display: flex;
  gap: var(--space-md);
  justify-content: flex-start;
  margin-top: var(--space-2xl);
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: flex-start;
  margin-top: var(--space-xl);
}

.hero-features .feature {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-full);
  padding: 0.5rem 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  box-shadow: var(--shadow-sm);
  color: var(--text-dark);
}

.hero-image {
  position: relative;
  z-index: 1;
}

.hero-image .image-placeholder {
  height: 460px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.hero-image .logo-hero {
  background: var(--white);
  border: 1px solid var(--border-soft);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.hero-image .logo-hero img {
  object-fit: contain;
  padding: 1.5rem 2.5rem;
}

.hero-scroll {
  position: absolute;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
}

.scroll-down {
  display: block;
  width: 30px;
  height: 50px;
}

.scroll-line {
  display: block;
  width: 2px;
  height: 30px;
  background-color: var(--primary-blue);
  margin: 0 auto;
  animation: scrollDown 2s infinite;
}

@keyframes scrollDown {

  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }

  50% {
    transform: translateY(10px);
    opacity: 0.5;
  }
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
  margin: var(--space-2xl) 0;
}

/* Steps Section */
.steps-section {
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.06), rgba(255, 255, 255, 0.95));
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.step-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.steps-grid .step-number {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  width: auto;
  height: auto;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-full);
  background: rgba(96, 165, 250, 0.15);
  color: var(--primary-blue);
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: none;
}

.step-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: var(--space-lg);
}

.step-title {
  margin-bottom: var(--space-sm);
}

.step-description {
  color: var(--text-light);
  margin-bottom: 0;
}

/* Domicilio Section */
.domicilio-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-2xl);
  align-items: center;
}

.benefits-grid {
  display: grid;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.benefit-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--primary-blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.benefit-content h3 {
  margin-bottom: var(--space-xs);
}

.domicilio-cta {
  margin-top: var(--space-xl);
}

.domicilio-image .image-placeholder {
  height: 420px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

/* Methodology Grid */
.methodology-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.methodology-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow);
}

.card-number {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--accent-blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.card-title {
  margin-bottom: var(--space-sm);
}

.card-description {
  color: var(--text-light);
  margin-bottom: 0;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border: 1px solid var(--border-soft);
  text-align: center;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-blue-light);
}

.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  color: var(--white);
  font-size: 1.5rem;
}

.service-title {
  margin-bottom: var(--space-sm);
}

.service-description {
  color: var(--text-light);
  margin-bottom: var(--space-lg);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-weight: 500;
  color: var(--primary-blue);
}

.service-link i {
  transition: transform var(--transition);
}

.service-link:hover i {
  transform: translateX(4px);
}

/* Philosophy Section */
.philosophy {
  background-color: var(--light-gray);
  border-radius: var(--radius-xl);
  margin: var(--space-3xl) auto;
  overflow: hidden;
}

.philosophy-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.philosophy-quote {
  font-size: 1.5rem;
  font-style: italic;
  color: var(--primary-blue);
  margin-bottom: var(--space-xl);
  position: relative;
  padding-left: var(--space-lg);
}

.philosophy-quote::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 4rem;
  color: var(--accent-blue);
  opacity: 0.3;
  font-family: serif;
}

.philosophy-points {
  display: grid;
  gap: var(--space-lg);
}

.point {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.point-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background-color: var(--primary-blue);
  color: var(--white);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.point-content h4 {
  margin-bottom: var(--space-xs);
}

/* Testimonials */
.testimonials {
  background-color: var(--white);
}

.testimonials-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform var(--transition-slow);
}

.testimonial-slide {
  flex: 0 0 100%;
  padding: 0 var(--space-md);
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow);
  border: 1px solid var(--border-soft);
}

.testimonial-rating {
  color: var(--warning);
  margin-bottom: var(--space-md);
}

.testimonial-text {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: var(--space-lg);
  color: var(--text-dark);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.author-avatar {
  width: 48px;
  height: 48px;
  background: var(--surface);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.author-info h4 {
  margin-bottom: 0;
  color: var(--text-dark);
}

.author-info p {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 0;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.slider-prev,
.slider-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--primary-blue);
  background: var(--white);
  color: var(--primary-blue);
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-prev:hover,
.slider-next:hover {
  background-color: var(--primary-blue);
  color: var(--white);
}

.slider-dots {
  display: flex;
  gap: var(--space-sm);
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--medium-gray);
  cursor: pointer;
  transition: all var(--transition);
}

.slider-dot.active {
  background-color: var(--primary-blue);
  transform: scale(1.2);
}

/* CTA Section */
.cta {
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  color: var(--white);
  text-align: center;
}

.cta-title {
  color: var(--text-dark);
  margin-bottom: var(--space-md);
  text-align: center;
}

.cta-text {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto var(--space-xl);
  text-align: center;
}

.cta-buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  margin-bottom: var(--space-xl);
}

.cta-features {
  display: flex;
  gap: var(--space-xl);
  justify-content: center;
  flex-wrap: wrap;
}

.feature {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--text-dark);
}

.feature i {
  color: var(--accent-blue);
}

/* Premium Sections */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-lg);
}

.metric-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
}

.metric-value {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: var(--space-xs);
}

.metric-label {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-lg);
}

.process-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
}

.process-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(29, 78, 216, 0.12);
  color: var(--primary-blue);
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: var(--space-md);
}

.cert-card {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border-soft);
  padding: var(--space-md);
  text-align: center;
  font-weight: 600;
  color: var(--text-dark);
}

.services-compare .table {
  border-color: var(--border-soft);
}

.services-compare .table thead th {
  background: var(--surface);
  color: var(--text-dark);
  border-color: var(--border-soft);
}

.cta .cta-title,
.cta .cta-text,
.cta .feature {
  color: var(--text-on-dark);
}

.cta .feature i {
  color: var(--accent-blue);
}

/* Footer */
.footer {
  background-color: var(--text-dark);
  color: var(--white);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0;
}

.social-links {
  display: flex;
  gap: var(--space-md);
}

.social-links a {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all var(--transition);
}

.social-links a:hover {
  background-color: var(--primary-blue);
  transform: translateY(-2px);
}

a.icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 8px;
}

.follow-links {
  display: flex;
  gap: var(--space-sm);
}

.follow-links a {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
}

.follow-links a:hover {
  color: var(--white);
  background: rgba(59, 130, 246, 0.8);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.link-group h4 {
  color: var(--white);
  margin-bottom: var(--space-lg);
  font-size: 1rem;
}

.link-group ul {
  list-style: none;
}

.link-group li {
  margin-bottom: var(--space-sm);
}

.link-group a {
  color: rgba(255, 255, 255, 0.82);
  transition: color var(--transition);
}

.link-group a:hover {
  color: var(--white);
}

.footer-newsletter h4 {
  color: var(--white);
  margin-bottom: var(--space-md);
}

.footer-newsletter p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-md);
}

.newsletter-form {
  display: flex;
  gap: var(--space-sm);
}

.newsletter-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  color: var(--white);
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-xl);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-dev {
  background: radial-gradient(120% 140% at 0% 0%, rgba(96, 165, 250, 0.18) 0%, rgba(255, 255, 255, 0) 55%),
    rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  display: grid;
  gap: var(--space-sm);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.footer-dev h4 {
  color: var(--white);
  margin: 0 0 4px;
  letter-spacing: 0.2px;
  font-size: 0.95rem;
  text-transform: uppercase;
  opacity: 0.9;
}

.dev-card {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.dev-logo {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, #0ea5e9, #1d4ed8);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 18px rgba(14, 165, 233, 0.32);
}

.dev-logo.pill {
  width: 120px;
  height: 56px;
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

.dev-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: inherit;
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.2));
}

.dev-meta {
  display: grid;
  gap: 2px;
  color: rgba(255, 255, 255, 0.9);
}

.dev-name {
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.1px;
}

.dev-role {
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
  font-size: 0.9rem;
}

.dev-note {
  color: rgba(255, 255, 255, 0.84);
  margin: 0;
  font-size: 0.9rem;
}

.dev-btn {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
  padding-inline: var(--space-md);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.dev-btn:hover {
  background: var(--white);
  color: var(--text-dark);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0;
}

.footer-legal {
  display: flex;
  gap: var(--space-xl);
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.875rem;
}

.footer-legal a:hover {
  color: var(--white);
}

.footer-pwa-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-color: rgba(255, 255, 255, 0.36);
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
}

.footer-pwa-btn:hover {
  color: var(--text-dark);
  background: var(--white);
}

.pwa-modal-open {
  overflow: hidden;
}

.pwa-install-modal {
  position: fixed;
  inset: 0;
  z-index: 4500;
  display: none;
}

.pwa-install-modal.is-open {
  display: block;
}

.pwa-install-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.72);
  backdrop-filter: blur(4px);
}

.pwa-install-dialog {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 8vh auto;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  padding: var(--space-2xl);
  border: 1px solid var(--border-soft);
}

.pwa-install-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  border: 0;
  background: transparent;
  color: var(--text-dark);
  font-size: 1.15rem;
  cursor: pointer;
}

.pwa-install-kicker {
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.pwa-install-steps {
  margin: var(--space-lg) 0;
  padding-left: 1.25rem;
  display: grid;
  gap: 0.5rem;
}

.pwa-install-note {
  background: var(--info-surface);
  border: 1px solid var(--info-border);
  color: var(--text-light);
  border-radius: var(--radius);
  padding: 0.7rem 0.9rem;
  margin-bottom: var(--space-lg);
}

.pwa-install-actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.pwa-tips-panel {
  margin-top: var(--space-lg);
  border-top: 1px solid var(--medium-gray);
  padding-top: var(--space-lg);
}

.pwa-tips-panel ul {
  margin: 0;
  padding-left: 1.25rem;
  display: grid;
  gap: 0.4rem;
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: var(--space-xl);
  right: var(--space-xl);
  width: 60px;
  height: 60px;
  background-color: var(--success);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  transition: all var(--transition);
}

.whatsapp-float:hover {
  background-color: #0da271;
  transform: scale(1.1);
  box-shadow: var(--shadow-xl);
}

/* Page Hero */
.page-hero {
  padding-top: 8rem;
  padding-bottom: var(--space-2xl);
  background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
  text-align: center;
}

.contact-hero {
  text-align: left;
}

.contact-hero .page-hero-content {
  max-width: 640px;
}

.contact-hero .page-hero-subtitle {
  margin-left: 0;
  margin-right: 0;
}

.contact-hero-image {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
}

.page-hero-title {
  margin-bottom: var(--space-md);
}

.page-hero-subtitle {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto var(--space-lg);
  color: var(--text-light);
}

.page-hero-breadcrumb {
  color: var(--dark-gray);
  font-size: 0.875rem;
}

.page-hero-breadcrumb a {
  color: var(--dark-gray);
}

.page-hero-breadcrumb a:hover {
  color: var(--primary-blue);
}

.page-hero-breadcrumb span {
  color: var(--primary-blue);
}

/* Legal Pages */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
  color: var(--text-light);
  line-height: 1.7;
}

.legal-content h2,
.legal-content h3 {
  color: var(--text-dark);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
}

.legal-content ul {
  padding-left: 1.2rem;
  margin-bottom: var(--space-md);
}

.legal-content li {
  margin-bottom: 0.5rem;
}

/* Service Detail */
.service-detail {
  padding: var(--space-2xl) 0;
}

.service-detail-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.service-detail-content.reverse {
  direction: rtl;
}

.service-detail-content.reverse>* {
  direction: ltr;
}

.service-badge {
  display: inline-block;
  background-color: var(--accent-blue);
  color: var(--white);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: var(--space-lg);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-detail-title {
  margin-bottom: var(--space-md);
}

.service-detail-description {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: var(--space-xl);
}

.service-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.service-features .feature {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--text-dark);
}

.service-features .feature i {
  color: var(--success);
}

.service-benefits {
  margin-bottom: var(--space-xl);
}

.service-benefits h3 {
  margin-bottom: var(--space-md);
}

.service-benefits ul {
  list-style: none;
}

.service-benefits li {
  margin-bottom: var(--space-sm);
  padding-left: var(--space-lg);
  position: relative;
}

.service-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: bold;
}

.service-detail-image .image-placeholder {
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.image-placeholder {
  background: linear-gradient(135deg, var(--surface), var(--surface-strong));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--placeholder-text);
  padding: 0;
  overflow: hidden;
  position: relative;
}

.image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.image-placeholder.large {
  height: 400px;
}

.image-placeholder.profile {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  margin: 0 auto;
}

.placeholder-content {
  text-align: center;
}

.placeholder-content i {
  font-size: 3rem;
  margin-bottom: var(--space-md);
  color: var(--placeholder-text);
}

/* Pricing */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
  margin: var(--space-2xl) 0;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow);
  border: 2px solid var(--border-soft);
  position: relative;
  transition: all var(--transition);
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
  border-color: var(--primary-blue);
  transform: scale(1.05);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-8px);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary-blue);
  color: var(--white);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.pricing-header h3 {
  margin-bottom: var(--space-sm);
}

.price {
  font-size: 1.5rem;
  color: var(--text-light);
}

.price span {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-blue);
}

.pricing-features {
  margin-bottom: var(--space-xl);
}

.pricing-features .feature {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  color: var(--text-dark);
}

.pricing-features .feature i {
  color: var(--success);
}

.pricing-note {
  text-align: center;
  color: var(--text-light);
  font-weight: 500;
  font-size: 0.875rem;
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 800px;
  margin: var(--space-2xl) auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary-blue), var(--accent-blue));
}

.timeline-item {
  position: relative;
  margin-bottom: var(--space-2xl);
  padding-left: 80px;
}

.timeline-year {
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.125rem;
  box-shadow: var(--shadow);
}

.timeline-content {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border-soft);
}

.timeline-content h3 {
  color: var(--primary-blue);
  margin-bottom: var(--space-sm);
}

/* Philosophy Grid */
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
  margin: var(--space-2xl) 0;
}

.philosophy-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-soft);
  transition: all var(--transition);
}

.philosophy-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-blue-light);
}

.philosophy-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  color: var(--white);
  font-size: 1.5rem;
}

/* Methodology Steps */
.methodology-steps {
  max-width: 800px;
  margin: var(--space-2xl) auto;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
  position: relative;
}

.step::after {
  content: '';
  position: absolute;
  left: 30px;
  top: 60px;
  bottom: -40px;
  width: 2px;
  background-color: var(--medium-gray);
  z-index: -1;
}

.step:last-child::after {
  display: none;
}

.step-number {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: var(--shadow);
}

.step-content {
  flex: 1;
}

.step-content h3 {
  color: var(--primary-blue);
  margin-bottom: var(--space-sm);
}

/* Contact Cards */
.quick-contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
  margin: var(--space-2xl) 0;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-soft);
  transition: all var(--transition);
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.contact-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  color: var(--white);
  font-size: 2rem;
}

.contact-content h3 {
  margin-bottom: var(--space-sm);
}

.contact-content p {
  color: var(--dark-gray);
  margin-bottom: var(--space-lg);
}

/* Contact Form */
.contact-form-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.form-intro {
  position: sticky;
  top: 100px;
}

.form-benefits {
  margin: var(--space-xl) 0;
}

.form-benefits .benefit {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  color: var(--text-dark);
}

.form-benefits .benefit i {
  color: var(--success);
}

.qr-container {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  background: var(--light-gray);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  margin-top: var(--space-xl);
}

.qr-placeholder {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 3rem;
}

.qr-info h4 {
  margin-bottom: var(--space-sm);
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow);
  border: 1px solid var(--border-soft);
}

/* Quick Reserve */
.quick-reserve-section {
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.06), rgba(255, 255, 255, 0.96));
}

.reserve-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: var(--space-2xl);
  margin-top: var(--space-2xl);
  align-items: start;
}

.reserve-wrapper > *,
.contact-form-wrapper > * {
  min-width: 0;
}

.reserve-form-container {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-soft);
}

.reserve-form {
  display: grid;
  gap: var(--space-md);
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
}

.form-buttons {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  justify-content: space-between;
}

.reserve-benefits {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow);
  border: 1px solid var(--border-soft);
  position: sticky;
  top: 110px;
}

.benefits-list {
  list-style: none;
  display: grid;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.benefits-list li {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
  color: var(--text-dark);
}

.benefits-list i {
  color: var(--success);
  margin-top: 0.2rem;
}

.alternative-contact {
  display: grid;
  gap: var(--space-sm);
}

.form-summary {
  margin-top: var(--space-xl);
  background: var(--light-gray);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
}

.summary-actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-top: var(--space-md);
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-group label {
  display: block;
  margin-bottom: var(--space-sm);
  font-weight: 500;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--medium-gray);
  border-radius: var(--radius);
  font-family: var(--font-secondary);
  font-size: 1rem;
  transition: all var(--transition);
  background-color: var(--white);
}

.form-control,
.form-select,
.form-check-input {
  border-color: var(--border-soft);
  border-radius: var(--radius);
  box-shadow: none;
}

.form-control:focus,
.form-select:focus,
.form-check-input:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 0.2rem rgba(29, 78, 216, 0.2);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.form-consent input[type="checkbox"] {
  margin-top: 4px;
}

.form-consent label {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.4;
}

.form-note {
  margin-top: var(--space-md);
  text-align: center;
  color: var(--dark-gray);
  font-size: 0.875rem;
}

/* FAQ */
.faq-container {
  max-width: 800px;
  margin: var(--space-2xl) auto;
}

.faq-grid {
  display: grid;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.faq-item {
  margin-bottom: var(--space-md);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: var(--space-lg);
  background: var(--white);
  border: none;
  text-align: left;
  font-family: var(--font-primary);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all var(--transition);
}

.faq-question:hover {
  background-color: var(--light-gray);
}

.faq-question i {
  transition: transform var(--transition);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 var(--space-lg);
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition);
}

.faq-item.active .faq-answer {
  padding: var(--space-lg);
  max-height: 500px;
}

.faq-cta {
  text-align: center;
  margin-top: var(--space-2xl);
}

/* Final CTA */
.final-cta {
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  color: var(--white);
  text-align: center;
  padding: var(--space-4xl) 0;
}

.final-cta-section {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(30, 64, 175, 0.08));
}

.final-cta-section .final-cta-content {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-soft);
}

.final-cta h2 {
  color: var(--white);
  margin-bottom: var(--space-md);
}

.final-cta p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto var(--space-xl);
}

.cta-guarantee {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
  flex-wrap: wrap;
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: rgba(255, 255, 255, 0.9);
}

.guarantee-item i {
  color: var(--accent-blue);
}

/* Service Area */
.map-container {
  position: relative;
  margin: var(--space-2xl) 0;
  border-radius: var(--radius-lg);
  display: grid;
  gap: var(--space-lg);
}

.map-wrapper {
  width: 100%;
  max-width: 100%;
  justify-self: stretch;
  aspect-ratio: 16 / 9;
  min-height: 280px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--light-gray);
  box-shadow: var(--shadow-lg);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.area-content {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: var(--space-2xl);
  align-items: center;
  margin-top: var(--space-2xl);
}

.map-preview {
  height: 360px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--light-gray), var(--medium-gray));
  box-shadow: var(--shadow-lg);
}

.map-preview .map-overlay {
  background: rgba(37, 99, 235, 0.12);
}

.area-zones h3 {
  margin-bottom: var(--space-md);
}

.zone-chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.zone-chip {
  background: var(--light-gray);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-full);
  padding: 0.35rem 0.75rem;
  font-size: 0.875rem;
  color: var(--text-dark);
}

.area-features {
  display: grid;
  gap: var(--space-md);
}

.area-features .feature {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  padding: var(--space-md);
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
}

.area-features .feature i {
  color: var(--primary-blue);
  font-size: 1.25rem;
  margin-top: 0.2rem;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.gallery-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow);
}

.gallery-image {
  position: relative;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.4);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-view {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--white);
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow);
  min-width: 44px;
  min-height: 44px;
}

.gallery-caption {
  padding: var(--space-md);
}

.gallery-caption h3,
.gallery-caption h4 {
  font-size: 1.1rem;
}

.gallery-caption p {
  font-size: 1rem;
  opacity: 0.8;
  color: var(--text-light);
}

.gallery-master {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(15, 23, 42, 0.2));
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
}

.gallery-master .gallery-image {
  background: radial-gradient(circle at 30% 30%, rgba(59, 130, 246, 0.35), rgba(14, 165, 233, 0.15), rgba(15, 23, 42, 0.2));
  min-height: 220px;
  display: grid;
  place-items: center;
}

.gallery-master-overlay {
  display: grid;
  place-items: center;
  gap: var(--space-sm);
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.2px;
  text-transform: uppercase;
}

.gallery-master-overlay i {
  font-size: 1.8rem;
}

.gallery-master .master-cta {
  width: auto;
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--white);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.9), rgba(14, 165, 233, 0.85));
  box-shadow: 0 12px 30px rgba(14, 165, 233, 0.35);
  gap: 0.5rem;
  display: inline-flex;
  align-items: center;
}

.gallery-master .master-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 36px rgba(14, 165, 233, 0.45);
  color: var(--white);
}

/* Media Modal Pro */
.media-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 4000;
}

.media-modal.is-open {
  display: block;
}

.media-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.72);
  backdrop-filter: blur(6px);
}

.media-dialog {
  position: relative;
  max-width: 1100px;
  margin: 40px auto;
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.media-stage {
  position: relative;
  background: var(--black-soft, #0f172a);
  min-height: 520px;
  display: grid;
  align-items: center;
  justify-items: center;
}

.media-body {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  padding: var(--space-lg);
}

.media-body img,
.media-body video {
  width: 100%;
  max-height: 540px;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.media-body .video-placeholder {
  position: relative;
  width: 100%;
  max-height: 540px;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.media-body .video-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9);
}

.media-body .video-badge {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--white);
  background: radial-gradient(circle at center, rgba(15, 23, 42, 0.35), rgba(15, 23, 42, 0.65));
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.media-counter {
  position: absolute;
  bottom: var(--space-md);
  right: var(--space-md);
  background: rgba(0, 0, 0, 0.6);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.9rem;
}

.media-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.88);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  box-shadow: var(--shadow);
}

.media-prev { left: var(--space-md); }
.media-next { right: var(--space-md); }

.media-close {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  z-index: 2;
}

.media-meta {
  padding: var(--space-lg) var(--space-xl);
  display: grid;
  gap: 6px;
}

.media-title {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-dark);
}

.media-desc {
  color: var(--text-light);
  line-height: 1.5;
}

.media-thumbs {
  display: flex;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl) var(--space-lg);
  overflow-x: auto;
}

.media-thumbs button {
  border: 2px solid transparent;
  background: none;
  padding: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  min-width: 90px;
  aspect-ratio: 4 / 3;
  cursor: pointer;
  transition: transform var(--transition), border-color var(--transition);
}

.media-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-thumbs button.is-active {
  border-color: var(--primary-blue);
  transform: translateY(-2px);
}

/* Testimonials Enhanced */
.testimonials-section {
  background: var(--light-gray);
}

.testimonials-disclaimer {
  background: var(--white);
  border-left: 4px solid var(--primary-blue);
  padding: var(--space-md);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.reviews-meta {
  margin-top: var(--space-md);
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
  box-shadow: var(--shadow-sm);
}

.rating-group {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.rating-group i {
  color: var(--warning);
}

.rating-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.rating-copy strong {
  color: var(--text-dark);
}

.rating-copy span {
  color: var(--text-muted);
  font-weight: 500;
}

.reviews-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.review-pill {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
}

.review-pill .reviewer {
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.review-pill p {
  margin: 0;
  color: var(--text-light);
  line-height: 1.5;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.google-profile {
  margin-top: var(--space-lg);
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: var(--space-md);
}

.google-profile .gp-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-sm);
  align-items: start;
  color: var(--text-light);
}

.google-profile .gp-row i {
  color: var(--primary-blue);
  margin-top: 2px;
}

.google-profile .gp-row strong {
  color: var(--text-dark);
  display: block;
}

.testimonial-label {
  font-size: 0.95rem;
  color: var(--primary-blue);
  font-weight: 600;
  margin-bottom: var(--space-sm);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.social-proof {
  margin-top: var(--space-2xl);
  text-align: center;
}

.social-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.social-link {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  padding: var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  color: var(--text-dark);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.social-link:hover {
  transform: translateY(-4px);
  border-color: var(--primary-blue);
  color: var(--primary-blue);
}

/* About Page */
.about-hero {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(255, 255, 255, 0.95));
}

.about-gabri {
  padding: var(--space-3xl) 0;
}

.about-gabri-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-2xl);
  align-items: center;
}

.profile-large {
  width: min(360px, 100%);
  aspect-ratio: 4 / 5;
  height: auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  padding: 6px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(255, 255, 255, 0.9));
  box-shadow: var(--shadow-lg);
}

.profile-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: calc(var(--radius-xl) - 6px);
}

.about-summary {
  list-style: none;
  display: grid;
  gap: var(--space-sm);
  padding: 0;
  margin: var(--space-lg) 0;
}

.about-summary li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  color: var(--text-dark);
}

.about-summary i {
  color: var(--success);
  margin-top: 0.2rem;
}

.about-accordion .accordion-item {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: var(--space-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.about-accordion .accordion-button {
  font-weight: 600;
  color: var(--text-dark);
  background: var(--white);
}

.about-accordion .accordion-button:not(.collapsed) {
  background: var(--light-gray);
  color: var(--text-dark);
  box-shadow: none;
}

.personal-bio p {
  margin-bottom: var(--space-md);
}

.personal-values {
  display: grid;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.value-item {
  display: flex;
  gap: var(--space-md);
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
}

.value-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--primary-blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-born-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-2xl);
  align-items: start;
}

.real-list {
  list-style: none;
  display: grid;
  gap: var(--space-sm);
  margin: var(--space-lg) 0;
}

.real-list i {
  color: var(--error);
  margin-right: var(--space-sm);
}

.highlight-text {
  background: rgba(96, 165, 250, 0.15);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius);
  color: var(--primary-blue-dark);
  display: inline-block;
}

.visual-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow);
  text-align: center;
  margin-bottom: var(--space-md);
}

.visual-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
}

.what-not-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.not-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow);
  text-align: center;
}

.not-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.12);
  color: var(--error);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  font-size: 1.25rem;
}

.real-steps .methodology-step {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--space-lg);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-lg);
  align-items: start;
}

.real-steps .step-number {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--primary-blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.step-note {
  color: var(--dark-gray);
  font-style: italic;
}

.for-whom-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.profile-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  padding: var(--space-xl);
  text-align: center;
  box-shadow: var(--shadow);
}

.profile-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
}

.for-whom-note {
  margin-top: var(--space-xl);
  background: var(--light-gray);
  border-radius: var(--radius);
  padding: var(--space-md);
}

.madrid-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-2xl);
  margin-top: var(--space-2xl);
}

.training-options {
  display: grid;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.option {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
}

.option-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--primary-blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.zone-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  padding: var(--space-lg);
  box-shadow: var(--shadow);
  margin-bottom: var(--space-md);
}

.zone-header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  color: var(--primary-blue);
}

.final-cta-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-soft);
}

.final-cta-buttons {
  display: grid;
  gap: var(--space-sm);
  justify-items: center;
  margin-top: var(--space-lg);
}

.cta-note {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--dark-gray);
  font-size: 0.95rem;
}

.cta-message p {
  margin-bottom: var(--space-md);
}

.btn-xl {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
}

.guarantee-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(96, 165, 250, 0.15);
  color: var(--primary-blue-dark);
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-full);
  margin-top: var(--space-lg);
}

/* Services Page Enhancements */
.valuation-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-2xl);
  align-items: center;
}

.valuation-features {
  display: grid;
  gap: var(--space-md);
  margin: var(--space-xl) 0;
}

.valuation-features .feature {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--primary-blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.selector-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
}

.service-structure,
.service-intro,
.routines-content,
.routines-section {
  margin-top: var(--space-2xl);
}

.routines-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-2xl);
  align-items: center;
}

.routines-features {
  display: grid;
  gap: var(--space-md);
}

/* Contact Page */
.quick-contact {
  padding: var(--space-3xl) 0;
}

.contact-note {
  margin-top: var(--space-xl);
  background: var(--info-surface);
  border: 1px solid var(--info-border);
  border-radius: var(--radius);
  padding: var(--space-md);
  display: flex;
  gap: var(--space-sm);
  align-items: center;
  color: var(--primary-blue-dark);
}

.contact-form-section {
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.05), rgba(255, 255, 255, 0.95));
  padding: var(--space-3xl) 0;
}

.form-container {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-lg);
}

.error-message {
  color: var(--error);
  font-size: 0.875rem;
  margin-top: var(--space-xs);
}

.map-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--light-gray), var(--medium-gray));
  position: relative;
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(37, 99, 235, 0.1), rgba(37, 99, 235, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-info {
  background: var(--white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  max-width: 400px;
  text-align: center;
}

.map-info h3 {
  color: var(--primary-blue);
  margin-bottom: var(--space-md);
}

.area-list {
  list-style: none;
  margin: var(--space-lg) 0;
  text-align: left;
}

.area-list li {
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.area-list i {
  color: var(--primary-blue);
}

.area-note {
  color: var(--dark-gray);
  font-size: 0.875rem;
  margin-top: var(--space-md);
}

.area-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-lg);
  margin: var(--space-2xl) 0;
}

.area-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: var(--space-lg);
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-soft);
  transition: all var(--transition);
}

.area-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.area-card h4 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.area-card i {
  color: var(--primary-blue);
}

/* Utilities */
.text-center {
  text-align: center;
}

.mt-0 {
  margin-top: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.mt-1 {
  margin-top: var(--space-sm);
}

.mb-1 {
  margin-bottom: var(--space-sm);
}

.mt-2 {
  margin-top: var(--space-md);
}

.mb-2 {
  margin-bottom: var(--space-md);
}

.mt-3 {
  margin-top: var(--space-lg);
}

.mb-3 {
  margin-bottom: var(--space-lg);
}

.mt-4 {
  margin-top: var(--space-xl);
}

.mb-4 {
  margin-bottom: var(--space-xl);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-in {
  animation: fadeIn 0.6s ease forwards;
}

/* Blog */
.blog-home-section {
  background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
}

.blog-home-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--space-xl);
}

.blog-home-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow);
}

.blog-home-meta {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: var(--space-sm);
}

.blog-home-title {
  margin-bottom: var(--space-md);
}

.blog-home-excerpt {
  margin-bottom: var(--space-lg);
  color: var(--text-light);
}

.blog-index-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow);
  display: grid;
  gap: var(--space-md);
}

.blog-card-title {
  margin: 0;
}

.blog-card-date {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}

.blog-card-desc {
  margin: 0;
  color: var(--text-light);
}

.blog-article-wrap {
  max-width: 860px;
  margin: 0 auto;
}

.blog-article {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: var(--space-2xl);
}

.blog-article-meta {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: var(--space-md);
}

.blog-article p {
  color: var(--text-light);
  margin-bottom: var(--space-lg);
}

.blog-article ul {
  margin: 0 0 var(--space-lg);
  padding-left: 1.3rem;
}

.blog-article li {
  color: var(--text-light);
  margin-bottom: 0.55rem;
}

.blog-hero-media {
  margin: 0 0 var(--space-xl);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.blog-hero-media img {
  width: 100%;
  height: min(540px, 62vh);
  object-fit: cover;
  display: block;
}

.blog-highlight-box {
  border: 1px solid var(--info-border);
  background: var(--info-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin: var(--space-xl) 0;
}

.blog-highlight-box h2 {
  margin-bottom: var(--space-md);
}

.blog-inline-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-md);
  margin: var(--space-xl) 0;
}

.blog-inline-gallery figure {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.blog-inline-gallery img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}

.blog-plan-line {
  font-size: 1.06rem;
  color: var(--primary-blue-dark);
}

.blog-article-actions {
  margin-top: var(--space-xl);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

/* Responsive Design */
@media (max-width: 1024px) {

  .philosophy-content,
  .service-detail-content,
  .contact-form-wrapper {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  
  .hero .container {
  grid-template-columns: 1fr;
  text-align: left;
}

.hero-image {
  order: -1;
}

.hero {
  min-height: auto;
  padding-top: 7rem;
}
  
  .hero-stats {
    flex-direction: column;
    gap: var(--space-xl);
  }

  .hero-cta,
  .cta-buttons {
    flex-direction: column;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }

  .media-dialog {
    margin: 20px auto;
  }

  .media-stage {
    min-height: 360px;
  }

  .media-nav {
    width: 36px;
    height: 36px;
  }

  .whatsapp-float {
    bottom: var(--space-md);
    right: var(--space-md);
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  .service-detail-content.reverse {
    direction: ltr;
  }
}

@media (max-width: 480px) {
  .section {
    padding: var(--space-2xl) 0;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    transform: none;
  }

  .pricing-card.featured:hover {
    transform: translateY(-8px);
  }

  .service-features {
    grid-template-columns: 1fr;
  }

  .cta-features,
  .cta-guarantee {
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    padding-left: 60px;
  }

  .timeline-year {
    width: 40px;
    height: 40px;
    font-size: 0.875rem;
  }
}

/* Print Styles */
@media print {

  .header,
  .footer,
  .whatsapp-float,
  .cta,
  .hero-cta {
    display: none;
  }

  .hero,
  .section {
    padding: 1rem 0;
    margin: 0;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  a {
    color: var(--text-dark);
    text-decoration: underline;
  }

  .container {
    max-width: 100%;
    padding: 0 1rem;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}

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

/* High Contrast Mode */
@media (prefers-contrast: high) {
  :root {
    --primary-blue: #0000ff;
    --white: #ffffff;
    --text-dark: #000000;
  }

  .btn-primary,
  .btn-secondary {
    border: 2px solid #000000;
  }
}
