/* ============================================
   NO ESTÁS SOLO - DESIGN SYSTEM
   Warm, empathetic, human-centered styling
   ============================================ */

/* ============================================
   CSS CUSTOM PROPERTIES (Design Tokens)
   ============================================ */
:root {
  /* Color Palette - Warm & Empathetic */
  --color-primary: #6B9AC4;
  /* Soft, calming blue */
  --color-primary-dark: #4A7BA7;
  /* Deeper blue for depth */
  --color-primary-light: #A8C5E0;
  /* Light blue for accents */

  --color-secondary: #E8B4A1;
  /* Warm peach/terracotta */
  --color-secondary-dark: #D49578;
  /* Richer terracotta */

  --color-accent: #F4E4D7;
  /* Soft cream */
  --color-accent-warm: #FFE5D0;
  /* Warm cream */

  /* Neutral Palette */
  --color-dark: #2C3E50;
  /* Deep blue-gray */
  --color-text: #3D4E5C;
  /* Softer text gray */
  --color-text-light: #6C7A89;
  /* Light text */
  --color-background: #FDFBF7;
  /* Warm off-white */
  --color-white: #FFFFFF;

  /* Semantic Colors */
  --color-success: #7FB685;
  /* Soft green */
  --color-warning: #F4B860;
  /* Warm yellow */
  --color-danger: #E07A5F;
  /* Soft coral-red */

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #6B9AC4 0%, #A8C5E0 100%);
  --gradient-warm: linear-gradient(135deg, #E8B4A1 0%, #F4E4D7 100%);
  --gradient-hero: linear-gradient(135deg, rgba(107, 154, 196, 0.9) 0%, rgba(168, 197, 224, 0.8) 100%);

  /* Spacing System (8px base) */
  --space-xs: 0.5rem;
  /* 8px */
  --space-sm: 1rem;
  /* 16px */
  --space-md: 1.5rem;
  /* 24px */
  --space-lg: 2rem;
  /* 32px */
  --space-xl: 3rem;
  /* 48px */
  --space-2xl: 4rem;
  /* 64px */
  --space-3xl: 6rem;
  /* 96px */

  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Outfit', 'Inter', sans-serif;

  --font-size-xs: 0.875rem;
  /* 14px */
  --font-size-sm: 1rem;
  /* 16px */
  --font-size-base: 1.125rem;
  /* 18px */
  --font-size-lg: 1.25rem;
  /* 20px */
  --font-size-xl: 1.5rem;
  /* 24px */
  --font-size-2xl: 2rem;
  /* 32px */
  --font-size-3xl: 2.5rem;
  /* 40px */
  --font-size-4xl: 3rem;
  /* 48px */

  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  /* Border Radius */
  --radius-sm: 0.5rem;
  /* 8px */
  --radius-md: 1rem;
  /* 16px */
  --radius-lg: 1.5rem;
  /* 24px */
  --radius-xl: 2rem;
  /* 32px */
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.15);

  /* Transitions */
  --transition-fast: 150ms ease-in-out;
  --transition-base: 250ms ease-in-out;
  --transition-slow: 400ms ease-in-out;

  /* Layout */
  --container-max: 1200px;
  --container-padding: var(--space-md);
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-background);
  overflow-x: hidden;
}

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

h1 {
  font-size: var(--font-size-4xl);
  letter-spacing: -0.02em;
}

h2 {
  font-size: var(--font-size-3xl);
  letter-spacing: -0.01em;
}

h3 {
  font-size: var(--font-size-2xl);
}

h4 {
  font-size: var(--font-size-xl);
}

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

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-base);
}

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

strong {
  font-weight: var(--font-weight-semibold);
  color: var(--color-dark);
}

/* ============================================
   LAYOUT COMPONENTS
   ============================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

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

.section--hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--gradient-hero);
  color: var(--color-white);
  text-align: center;
  overflow: hidden;
}

.section--alt {
  background-color: var(--color-white);
}

.section--warm {
  background: linear-gradient(135deg, #FDFBF7 0%, #F4E4D7 100%);
}

.section--tarifas {
  position: relative;
  overflow: hidden;
}

.tarifas__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.tarifas__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.15;
  z-index: 0;
}

.section--tarifas .container {
  position: relative;
  z-index: 1;
}

/* ============================================
   BUTTON COMPONENTS
   ============================================ */
.btn {
  display: inline-block;
  padding: var(--space-md) var(--space-xl);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  font-family: var(--font-heading);
  text-align: center;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

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

.btn--primary:hover {
  background: var(--color-secondary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: var(--color-white);
}

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

.btn--large {
  padding: var(--space-lg) var(--space-2xl);
  font-size: var(--font-size-xl);
}

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

.btn--outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn--small {
  padding: var(--space-sm) var(--space-lg);
  font-size: var(--font-size-sm);
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.header__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--space-md) var(--container-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  display: flex;
  align-items: center;
}

.logo__image {
  height: 50px;
  width: auto;
  transition: transform var(--transition-base);
}

.logo__image:hover {
  transform: scale(1.05);
}

.header__nav {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav__link {
  font-family: var(--font-heading);
  font-weight: var(--font-weight-semibold);
  color: var(--color-dark);
  text-decoration: none;
  transition: color var(--transition-base);
  font-size: var(--font-size-base);
}

.nav__link:hover {
  color: var(--color-primary);
}

/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: all var(--transition-base);
  text-decoration: none;
}

.whatsapp-float:hover {
  background: #20BA5A;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-icon {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

/* ============================================
   CARD COMPONENTS
   ============================================ */
.card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

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

.card__title {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-sm);
  color: var(--color-primary-dark);
}

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

/* ============================================
   GRID SYSTEM
   ============================================ */
.grid {
  display: grid;
  gap: var(--space-lg);
}

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

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

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  z-index: 1;
}

.hero__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-hero);
  z-index: -1;
}

.hero__background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.3;
}

.hero__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.3;
  z-index: 0;
}


.hero__content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-md);
}

.hero__title {
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-md);
  color: var(--color-white);
  animation: fadeInUp 0.8s ease-out;
}

.hero__subtitle {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-medium);
  margin-bottom: var(--space-lg);
  color: rgba(255, 255, 255, 0.95);
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero__text {
  font-size: var(--font-size-lg);
  line-height: 1.8;
  margin-bottom: var(--space-xl);
  color: rgba(255, 255, 255, 0.9);
  animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.hero__cta {
  animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

/* ============================================
   PRICING CARDS
   ============================================ */
.pricing-grid {
  display: grid;
  gap: var(--space-lg);
  grid-template-columns: 1fr;
  margin-top: var(--space-xl);
  position: relative;
  z-index: 10;
}

.pricing-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  border: 3px solid transparent;
  position: relative;
  z-index: 10;
}

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

.pricing-card--featured {
  border-color: var(--color-primary);
  position: relative;
  overflow: hidden;
}

.pricing-card--featured::before {
  content: 'Más popular';
  position: absolute;
  top: var(--space-md);
  right: -30px;
  background: var(--color-secondary);
  color: var(--color-white);
  padding: var(--space-xs) var(--space-2xl);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  transform: rotate(45deg);
}

.pricing-card__duration {
  font-size: var(--font-size-lg);
  color: var(--color-text-light);
  margin-bottom: var(--space-sm);
  font-weight: var(--font-weight-medium);
}

.pricing-card__price {
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary-dark);
  margin-bottom: var(--space-lg);
}

.pricing-card__currency {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-normal);
  color: var(--color-text-light);
}

/* ============================================
   LIST STYLES
   ============================================ */
.feature-list {
  list-style: none;
  margin: var(--space-lg) 0;
}

.feature-list__item {
  padding: var(--space-sm) 0;
  padding-left: var(--space-xl);
  position: relative;
  color: var(--color-text);
}

.feature-list__item::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-success);
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-lg);
}

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

.check-list__item {
  padding: var(--space-md);
  padding-left: 3rem;
  position: relative;
  background: rgba(107, 154, 196, 0.05);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-primary);
}

.check-list__item::before {
  content: '✓';
  position: absolute;
  left: var(--space-md);
  color: var(--color-primary);
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-xl);
}

/* ============================================
   TRANSPARENCY SECTION STYLES
   ============================================ */
.transparency-section {
  background: linear-gradient(135deg, #FFFFFF 0%, #F4E4D7 100%);
}

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

.transparency-box {
  background: var(--color-white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.transparency-box--no {
  border-left: 4px solid var(--color-danger);
}

.transparency-box--yes {
  border-left: 4px solid var(--color-success);
}

.transparency-box h3 {
  color: var(--color-primary-dark);
  margin-bottom: var(--space-md);
}

.transparency-list {
  list-style: none;
  margin: 0;
}

.transparency-list li {
  padding: var(--space-sm) 0;
  color: var(--color-text);
}

/* ============================================
   STEP CARDS (Cómo funciona)
   ============================================ */
.steps-grid {
  display: grid;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.step-card {
  background: var(--color-white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  position: relative;
  transition: all var(--transition-base);
}

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

.step-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: var(--gradient-primary);
  color: var(--color-white);
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-md);
}

.step-card__title {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-sm);
  color: var(--color-primary-dark);
}

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

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-list {
  margin-top: var(--space-xl);
  display: grid;
  gap: var(--space-md);
}

.faq-item {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

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

.faq-question:hover {
  background: rgba(107, 154, 196, 0.05);
}

.faq-question::after {
  content: '+';
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  transition: transform var(--transition-base);
}

.faq-question.active::after {
  transform: rotate(45deg);
}

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

.faq-answer.active {
  max-height: 500px;
}

.faq-answer__content {
  padding: 0 var(--space-lg) var(--space-lg);
  color: var(--color-text-light);
}

/* ============================================
   CRISIS ALERT BOX
   ============================================ */
.crisis-box {
  background: linear-gradient(135deg, #E07A5F 0%, #F4B860 100%);
  color: var(--color-white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  text-align: center;
  margin: var(--space-xl) 0;
}

.crisis-box h3 {
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.crisis-box p {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-sm);
}

.crisis-box a {
  color: var(--color-white);
  font-weight: var(--font-weight-bold);
  text-decoration: underline;
}

.crisis-box a:hover {
  color: rgba(255, 255, 255, 0.9);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--color-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: var(--space-2xl) 0 var(--space-lg);
}

.footer__content {
  display: grid;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

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

.footer__links {
  list-style: none;
}

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

.footer__links a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-base);
}

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

/* Legal link tooltips */
.legal-link {
  position: relative;
  cursor: pointer;
}

.legal-tooltip {
  position: fixed;
  background: var(--color-white);
  color: var(--color-text);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  max-width: 400px;
  width: 90vw;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-base), visibility var(--transition-base);
  pointer-events: none;
}

.legal-tooltip.active {
  opacity: 1;
  visibility: visible;
}

.legal-tooltip h3 {
  color: var(--color-primary-dark);
  margin-bottom: var(--space-md);
  font-size: var(--font-size-lg);
}

.legal-tooltip p {
  font-size: var(--font-size-sm);
  line-height: 1.6;
  margin-bottom: var(--space-sm);
}

.legal-tooltip__close {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  background: transparent;
  border: none;
  font-size: var(--font-size-xl);
  color: var(--color-text-light);
  cursor: pointer;
  padding: var(--space-xs);
  line-height: 1;
}

.legal-tooltip__close:hover {
  color: var(--color-primary);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-lg);
  text-align: center;
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

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

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center {
  text-align: center;
}

.text-success {
  color: var(--color-success);
}

.text-danger {
  color: var(--color-danger);
}

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

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

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

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

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

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

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

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

/* ============================================
   RESPONSIVE DESIGN (Mobile First)
   ============================================ */

/* Mobile adjustments */
@media (max-width: 767px) {
  .logo__image {
    height: 40px;
  }

  .nav__link {
    display: none;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-icon {
    width: 26px;
    height: 26px;
  }
}

/* Tablet (768px and up) */
@media (min-width: 768px) {
  :root {
    --container-padding: var(--space-xl);
  }

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

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

  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

  .hero__title {
    font-size: 4rem;
  }
}

/* Desktop (1024px and up) */
@media (min-width: 1024px) {
  .grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer__content {
    grid-template-columns: repeat(4, 1fr);
  }

  .hero__title {
    font-size: 4.5rem;
  }
}

/* Large Desktop (1440px and up) */
@media (min-width: 1440px) {
  :root {
    --font-size-base: 1.25rem;
    --font-size-4xl: 4rem;
  }
}

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

/* Focus styles for keyboard navigation */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 3px solid var(--color-primary);
  outline-offset: 2px;
}

/* Reduced motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {

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