/*
Theme Name: Caja Chica
Theme URI: https://cajachica.cl
Author: Caja Chica
Author URI: https://cajachica.cl
Description: Tema premium para landing page de conversión de cupo dólares a pesos chilenos. Diseño profesional, responsivo y optimizado para conversión.
Version: 1.0.0
Requires at least: 5.8
Tested up to: 6.4
Requires PHP: 7.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: caja-chica
Tags: landing-page, financiero, one-page, responsive, custom-colors

Caja Chica WordPress Theme, Copyright 2025
Caja Chica is distributed under the terms of the GNU GPL.
*/

/* ═══════════════════════════════════════════════════════════════════════════
   RESET Y VARIABLES
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
  --primary: #003D82;
  --primary-light: #2563eb;
  --primary-dark: #002859;
  --secondary: #f3f4f6;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-800);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ═══════════════════════════════════════════════════════════════════════════
   TIPOGRAFÍA
   ═══════════════════════════════════════════════════════════════════════════ */

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 3rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
  color: var(--gray-600);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* ═══════════════════════════════════════════════════════════════════════════
   UTILIDADES
   ═══════════════════════════════════════════════════════════════════════════ */

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
  .container { padding: 0 2rem; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  box-shadow: 0 10px 25px rgba(0, 61, 130, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(0, 61, 130, 0.3);
  color: var(--white);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--primary);
}

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

/* ═══════════════════════════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════════════════════════ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

.site-logo img {
  height: 2.5rem;
  width: auto;
  transition: transform 0.3s ease;
}

.site-logo img:hover {
  transform: scale(1.05);
}

.main-navigation {
  display: none;
}

.main-navigation ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.main-navigation a {
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--gray-800);
  position: relative;
  padding-bottom: 0.5rem;
}

.main-navigation a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.main-navigation a:hover::after {
  width: 100%;
}

.header-ctas {
  display: none;
  gap: 0.75rem;
}

.mobile-menu-toggle {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 0.5rem;
  transition: background 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: var(--gray-100);
}

.mobile-menu-toggle svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--gray-800);
}

.mobile-menu {
  display: none;
  padding: 1rem 0;
  border-top: 1px solid var(--gray-200);
  animation: slideDown 0.3s ease;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-menu nav li {
  margin-bottom: 1rem;
}

.mobile-menu nav a {
  display: block;
  padding: 0.5rem 0;
  color: var(--gray-800);
  font-weight: 500;
  transition: all 0.3s ease;
}

.mobile-menu nav a:hover {
  color: var(--primary);
  padding-left: 0.5rem;
}

.mobile-menu-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.trust-bar {
  display: none;
  border-top: 1px solid var(--gray-200);
  background: linear-gradient(90deg, #f0fdf4 0%, #eff6ff 50%, #f0fdf4 100%);
  padding: 0.5rem 0;
}

.trust-bar-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 0.75rem;
  font-weight: 500;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.trust-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.trust-dot.green { background: #10b981; }
.trust-dot.blue { background: #3b82f6; }
.trust-dot.purple { background: #a855f7; }

@media (min-width: 1024px) {
  .main-navigation,
  .header-ctas,
  .trust-bar {
    display: flex;
  }
  
  .mobile-menu-toggle,
  .mobile-menu {
    display: none !important;
  }
  
  .site-logo img {
    height: 3rem;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   HERO SECTION
   ═════════════════════════════════════════════════════��═════════════════════ */

.hero-section {
  background: linear-gradient(180deg, var(--white) 0%, rgba(239, 246, 255, 0.3) 100%);
  padding: 6rem 0 4rem;
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

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

.hero-title {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--gray-600);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-benefits {
  margin-bottom: 2rem;
}

.benefit-item {
  display: flex;
  align-items: start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.benefit-check {
  width: 1.25rem;
  height: 1.25rem;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1rem;
  background: var(--gray-100);
  border-radius: 0.5rem;
  border: 1px solid var(--gray-200);
  font-size: 0.875rem;
  color: var(--gray-600);
  width: fit-content;
}

.hero-illustration {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.illustration-container {
  width: 100%;
  max-width: 28rem;
  padding: 2rem;
}

.card-mockup {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 1rem;
  padding: 2rem;
  transform: rotate(3deg);
  transition: transform 0.3s ease;
  box-shadow: var(--shadow-xl);
  margin-bottom: 1.5rem;
}

.card-mockup:hover {
  transform: rotate(0deg);
}

.card-placeholder {
  height: 1rem;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 0.25rem;
  margin-bottom: 0.5rem;
}

.result-mockup {
  background: var(--white);
  border-radius: 1rem;
  padding: 2rem;
  transform: rotate(-2deg);
  transition: transform 0.3s ease;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-200);
}

.result-mockup:hover {
  transform: rotate(0deg);
}

@media (min-width: 1024px) {
  .hero-section {
    padding: 8rem 0 6rem;
  }
  
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
  
  .hero-title {
    font-size: 3.5rem;
  }
  
  .hero-ctas {
    flex-direction: row;
  }
  
  .hero-illustration {
    min-height: 600px;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════════════════════════════════════════ */

section {
  padding: 4rem 0;
}

.section-bg-gray {
  background: var(--gray-50);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(0, 61, 130, 0.1);
  border-radius: 50px;
  font-weight: 700;
  color: var(--primary);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.125rem;
  color: var(--gray-600);
}

@media (min-width: 1024px) {
  section {
    padding: 6rem 0;
  }
  
  .section-title {
    font-size: 3rem;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   BENEFITS CARDS
   ═══════════════════════════════════════════════════════════════════════════ */

.benefits-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.benefit-card {
  background: var(--white);
  padding: 2rem 1.5rem;
  border-radius: 1rem;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: var(--shadow-xl);
}

.benefit-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.benefit-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--gray-900);
}

.benefit-text {
  color: var(--gray-600);
  font-size: 0.9375rem;
}

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

@media (min-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   SECURITY SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

.security-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.security-points {
  margin-bottom: 1.5rem;
}

.security-point {
  padding: 1.25rem;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
}

.security-point.green {
  background: #f0fdf4;
  border-left: 4px solid #22c55e;
}

.security-point.blue {
  background: #eff6ff;
  border-left: 4px solid #3b82f6;
}

.security-point.purple {
  background: #faf5ff;
  border-left: 4px solid #a855f7;
}

.security-point p {
  margin: 0;
  font-weight: 500;
  color: var(--gray-900);
}

.security-warning {
  padding: 1.5rem;
  background: #eff6ff;
  border: 2px solid #93c5fd;
  border-radius: 1rem;
}

.security-warning h4 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #1e40af;
  margin-bottom: 0.75rem;
}

.security-warning p {
  color: #1e40af;
  font-size: 0.875rem;
  margin: 0;
}

.security-visual {
  text-align: center;
  padding: 5rem 2.5rem;
  background: rgba(16, 185, 129, 0.05);
  border-radius: 1rem;
  border: 1px solid var(--success);
}

.security-icon {
  width: 7.5rem;
  height: 7.5rem;
  background: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin: 0 auto 2rem;
}

@media (min-width: 1024px) {
  .security-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   STEPS (How it works)
   ═══════════════════════════════════════════════════════════════════════════ */

.steps-grid {
  display: grid;
  gap: 1.5rem;
}

.step-card {
  background: var(--white);
  padding: 2rem 1.5rem;
  border-radius: 1rem;
  border: 2px solid var(--gray-200);
  transition: all 0.3s ease;
}

.step-card:nth-child(1) { border-color: var(--primary); }
.step-card:nth-child(2) { border-color: var(--primary-light); }
.step-card:nth-child(3) { border-color: var(--success); }
.step-card:nth-child(4) { border-color: var(--warning); }

.step-card:hover {
  transform: scale(1.05);
}

.step-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--gray-900);
}

.step-description {
  color: var(--gray-600);
  font-size: 0.9375rem;
  margin: 0;
}

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

@media (min-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   FAQ ACCORDION
   ═══════════════════════════════════════════════════════════════════════════ */

.faq-container {
  max-width: 56rem;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  padding: 1.25rem;
  background: transparent;
  border: none;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gray-900);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}

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

.faq-icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

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

.faq-answer-content {
  padding: 0 1.25rem 1.25rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.faq-item.active {
  background: #f0f9ff;
  border-color: var(--primary);
  box-shadow: 0 4px 15px rgba(0, 61, 130, 0.1);
}

/* ═══════════════════════════════════════════════════════════════════════════
   CONTACT FORM
   ═══════════════════════════════════════════════════════════════════════════ */

.contact-grid {
  display: grid;
  gap: 2rem;
}

.contact-form {
  background: var(--white);
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.form-row {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select {
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-200);
  border-radius: 0.5rem;
  font-size: 1rem;
  background: var(--gray-50);
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(0, 61, 130, 0.1);
}

.form-submit {
  width: 100%;
  padding: 1rem 2rem;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 0.75rem;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.form-submit:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 61, 130, 0.3);
}

.form-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--gray-500);
  margin-top: 1rem;
}

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-box {
  background: var(--white);
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.contact-box h3 {
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
}

.whatsapp-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem;
  background: #dcfce7;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
  margin-bottom: 1rem;
}

.whatsapp-link:hover {
  background: #bbf7d0;
  transform: translateY(-2px);
}

.schedule-box {
  padding: 2rem;
  background: var(--white);
  border-radius: 1rem;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  color: var(--gray-600);
}

.schedule-box h4 {
  color: var(--gray-900);
  margin-bottom: 1rem;
}

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

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════════════ */

.site-footer {
  background: var(--gray-800);
  color: var(--gray-400);
  padding: 5rem 0 3rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-column h3,
.footer-column h4 {
  color: var(--white);
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.footer-column p {
  color: var(--gray-400);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--gray-400);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-light);
}

.footer-bottom {
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin: 0;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   FLOATING WHATSAPP
   ═══════════════════════════════════════════════════════════════════════════ */

.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9998;
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, #22c55e 0%, #10b981 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(34, 197, 94, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  animation: float 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 40px rgba(34, 197, 94, 0.5);
}

.whatsapp-float::before {
  content: '💬';
  font-size: 2rem;
}

.whatsapp-float::after {
  content: '';
  position: absolute;
  top: -4px;
  right: -4px;
  width: 1rem;
  height: 1rem;
  background: var(--success);
  border-radius: 50%;
  border: 3px solid var(--white);
  animation: pulse 2s infinite;
}

/* ═══════════════════════════════════════════════════════════════════════════
   ANIMACIONES
   ═══════════════════════════════════════════════════════════════════════════ */

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.95);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════════ */

@media (max-width: 767px) {
  h1 { font-size: 2.25rem; }
  h2 { font-size: 2rem; }
  
  section {
    padding: 3rem 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .whatsapp-float {
    width: 3.5rem;
    height: 3.5rem;
    bottom: 1.25rem;
    right: 1.25rem;
  }
  
  .whatsapp-float::before {
    font-size: 1.75rem;
  }
}