/* --- VARIABLES & RESET --- */
:root {
    --primary-orange: #ff7f00;
    --primary-orange-hover: #e66e00;
    --dark-blue: #002F49;
    /* Color oscuro del header */
    --text-dark: #1a1a1a;
    --text-grey: #555;
    --white: #ffffff;
    --off-white: #f0f0f0;
    --shadow-orange: 0 6px 15px rgba(255, 127, 0, 0.3);
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.1);
    --border-radius: 25px;
    --font-primary: 'League Spartan', sans-serif;
    --font-special: 'MuseoModerno', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    background-color: var(--off-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h3,
h4,
h5,
h6 {
    font-family: var(--font-special);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: var(--font-special);
}

.btn-icon {
    height: 1.5em;
    /* Define el tamaño del SVG para que sea proporcional al texto */
    width: auto;
    object-fit: contain;
}

.btn-primary {
    background: linear-gradient(90deg, #ff9a3d 0%, var(--primary-orange) 100%);
    color: var(--white);
    box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 127, 0, 0.4);
}

.btn-secondary {
    background-color: var(--primary-orange);
    color: var(--white);
    padding: 16px 25px;
    border-radius: 50px;
    box-shadow: var(--shadow-orange);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 127, 0, 0.4);
}

.btn-primary-sm {
    background: transparent;
    border: 2px solid var(--primary-orange);
    color: var(--primary-orange);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
}

.btn-primary-sm:hover {
    background: var(--primary-orange);
    color: white;
}

.btn-primary-lg {
    background: var(--primary-orange);
    color: white;
    font-size: 1.2rem;
    padding: 15px 40px;
    box-shadow: var(--shadow-orange);
}

.btn-primary-lg:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 127, 0, 0.4);
}

/* --- HEADER --- */
.main-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.header-container .main-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.main-nav ul {
    background: rgba(0, 123, 255, 0.1);
    border: 1px solid #cecece;
    border-radius: 50px;
    padding: 20px 30px;
    color: white;
    font-size: 0.9rem;
    font-weight: 400;
    display: flex;
    gap: 35px;
}

.logo h1 {
    color: white;
    font-size: 4rem;
    font-weight: 800;
}

.main-nav .btn-primary {
    color: white;
    /* font-size: 0.95rem; */
    font-weight: 400;
}

.main-nav li:hover {
    color: var(--primary-orange);
}

.main-nav .btn-primary:hover {
    color: white;
}

.menu-toggle {
    display: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* --- HERO --- */
.hero {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content h2 {
    color: white;
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 30px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.highlight {
    background-color: var(--primary-orange);
    padding: 0 15px 6px;
    border-radius: 10px;
    display: inline-block;
    /* transform: rotate(-2deg); */
}

/* --- FEATURES SLIDER --- */
.features-slider-section {
    position: relative;
    margin-top: -150px;
    z-index: 10;
    padding-bottom: 80px;
    overflow: hidden;
    /* Importante para que no salga scroll horizontal en la página */
}

.slider-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 450px;
    padding: 60px 0 20px;
}

.slide {
    position: absolute;
    width: 500px;
    max-width: 85vw;
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    z-index: 0;
    transform: translateX(0) scale(0.85);
}

.slide.active {
    opacity: 1;
    transform: translateX(0) scale(1);
    z-index: 2;
    pointer-events: auto;
}

.slide.prev {
    opacity: 0.5;
    transform: translateX(-105%) scale(0.85);
    z-index: 1;
    pointer-events: auto;
}

.slide.next {
    opacity: 0.5;
    transform: translateX(105%) scale(0.85);
    z-index: 1;
    pointer-events: auto;
}

.feature-card {
    position: relative;
    background: transparent;
    height: 320px;
    border-radius: 30px;
    overflow: visible;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.card-icon-top {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: white;
    border: 2px solid var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-orange);
    z-index: 20;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.card-image {
    width: 100%;
    height: 75%;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    background: #000;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
}

.card-content {
    position: absolute;
    bottom: 100px;
    left: 0;
    width: 100%;
    padding: 0 20px;
    text-align: center;
    z-index: 10;
}

.card-content h3 {
    color: white;
    font-size: 1.75rem;
    font-weight: 400;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.btn-floating {
    position: relative;
    left: 50%;
    transform: translate(-50%, 50%);
    background: var(--primary-orange);
    color: white;
    padding: 8px 25px;
    border-radius: 50px;
    font-weight: 400;
    font-size: 0.9rem;
    white-space: nowrap;
    box-shadow: var(--shadow-orange);
    z-index: 20;
    text-decoration: none;
    transition: all 0.3s;
    font-family: var(--font-special);
}

.btn-floating:hover {
    background: #e66e00;
    transform: translate(-50%, 45%);
    box-shadow: 0 10px 20px rgba(255, 127, 0, 0.4);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.dot {
    width: 30px;
    height: 6px;
    background: #ccc;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    background: var(--primary-orange);
    width: 50px;
}

/* --- VALUE PROP --- */
.value-prop {
    padding: 0;
    background-color: var(--off-white);
}

.value-prop h3 {
    color: #002F49;
    text-align: center;
    font-weight: 800;
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 40px;
}

.value-banner {
    position: relative;
    width: 100%;
    aspect-ratio: 1920 / 680;
    min-height: 480px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.value-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.value-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
}

.value-banner .content-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    width: 100%;
}

.value-banner .text-block {
    width: 50%;
    padding: 20px 0;
}

.value-banner .brand-name {
    color: white;
    font-size: 7rem;
    font-weight: 700;
    line-height: 1;
    text-shadow: none;
}

.value-banner p {
    color: white;
    font-size: 1.75rem;
    line-height: 1;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .value-prop h3 {
        font-size: 2rem;
    }

    .value-bg img {
        object-position: center;
    }

    .value-banner {
        aspect-ratio: auto;
        min-height: 400px;
        padding: 60px 0;
    }

    .value-bg::after {
        background: linear-gradient(180deg,
                rgba(255, 127, 0, 0.95) 0%,
                rgba(255, 127, 0, 0.7) 50%,
                rgba(255, 127, 0, 0.4) 100%);
    }

    .value-banner .text-block {
        width: 100%;
    }

    .value-banner .brand-name {
        font-size: 4rem;
    }

    .value-banner p {
        margin: 0 auto 15px;
        font-size: 1.25rem;
    }
}


/* --- ARECOPASS INTRO --- */
.arecopass-intro {
    text-align: center;
    padding: 60px 0;
}

.arecopass-intro h3 {
    color: var(--dark-blue);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.3;
}

.subtitle {
    color: var(--dark-blue);
    margin-bottom: 40px;
    font-size: 1.5rem;
}

.card-visual-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    height: 300px;
}

.whale-bg {
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    margin-top: 180px;
}

.whale-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.floating-cards {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translate(-50%, -40%);
    width: 100%;
    max-width: 600px;
    z-index: 10;
}

.floating-cards img.card-arecopass {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.4));
    transition: transform 0.3s ease;
}

.fade-in {
    opacity: 0;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.fade-in.appear {
    opacity: 1;
    transform: translate(-50%, -50%);
}

/* .floating-cards img.card-arecopass:hover {
    transform: translateY(-10px) scale(1.02);
} */

@media (max-width: 768px) {
    .arecopass-intro h3 {
        font-size: 2.2rem;
    }

    .subtitle {
        font-size: 1.25rem;
    }

    .card-visual-container {
        height: 200px;
    }

    .whale-bg {
        margin-top: 100px;
    }

    .floating-cards {
        max-width: 400px;
    }
}


/* --- BENEFITS CAROUSEL --- */
.benefits-carousel-section {
    padding: 80px 0 220px;
    text-align: center;
}

.benefits-carousel-section h3 {
    color: var(--dark-blue);
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-weight: 800;
}

.carousel-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.carousel-nav-buttons {
    display: flex;
    gap: 15px;
    z-index: 10;
}

.cards-track-container {
    width: 100%;
    overflow: hidden;
    padding-top: 30px;
}

.cards-track {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 480px;
}

.benefit-card {
    position: absolute;
    background: #f4f6f8;
    border-radius: 20px;
    padding: 40px 20px;
    width: 300px;
    box-shadow: none;
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out, box-shadow 0.5s ease-in-out, background 0.5s ease-in-out;
    cursor: pointer;
    text-align: center;
    border: 2px solid transparent;
    opacity: 0;
    pointer-events: none;
    z-index: 0;
    transform: translateX(0) translateY(15px);
}

.benefit-card.active {
    background: #ffffff;
    opacity: 1;
    pointer-events: auto;
    box-shadow: 0 25px 25px rgba(0, 0, 0, 0.1);
    z-index: 5;
}

.icon-circle {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
}

.icon-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.benefit-card h4 {
    color: var(--dark-blue);
    margin-bottom: 15px;
    font-size: 1.25rem;
}

.benefit-card h4::after {
    content: '';
    display: block;
    width: 50%;
    height: 2px;
    background-color: var(--primary-orange);
    margin: 15px auto 0;
}

.benefit-card p {
    font-size: 0.9rem;
    color: var(--text-grey);
}

.nav-btn {
    background: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    color: var(--dark-blue);
    transition: 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.nav-btn:hover {
    background: #e2e2e2;
}

.cta-container {
    margin-top: 50px;
}

@media (max-width: 768px) {
    .benefits-carousel-section {
        padding: 80px 0 120px;
    }

    .benefits-carousel-section h3 {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .benefit-card {
        width: 250px;
        padding: 30px 15px;
    }

    .icon-circle {
        width: 150px;
        height: 150px;
    }

    .benefit-card h4 {
        font-size: 1.1rem;
    }

    .benefit-card p {
        font-size: 0.85rem;
    }

    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .cta-container {
        margin-bottom: 60px;
    }
}

/* --- PRICING --- */
.pricing-section {
    padding-bottom: 80px;
    text-align: center;
    background-color: #FFF;
}

.pricing-banner {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    height: 300px;
    z-index: 1;
    top: -150px;
    width: 80%;
    margin: 0 auto -50px;
}

.pricing-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pricing-banner .banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 0);
    color: white;
    font-size: 2.5rem;
    font-weight: 800;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    line-height: 1.25em;
}

.pricing-cards-container {
    display: flex;
    justify-content: center;
    position: relative;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.pricing-card {
    background: white;
    min-width: 280px;
    width: 32%;
    max-width: 370px;
    padding: 20px 40px 8px 60px;
    border: 1px solid #C3B09A;
    border-radius: 32px;
    text-align: left;
    position: relative;
    display: flex;
    gap: 10px;
}

.week-badge {
    background: var(--primary-orange);
    color: white;
    width: 70px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: bold;
    font-family: var(--font-special);
}

.pricing-details-container {
    width: 100%;
}

.pricing-card .label-semana {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: -20px;
}

.pricing-card .price {
    color: var(--primary-orange);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: -16px;
}

.pricing-card .price-usd {
    color: var(--dark-blue);
    font-weight: 800;
    font-family: var(--font-special);
    margin-bottom: 10px;
    font-size: 1.25rem
}

.tax-info {
    font-size: 0.7rem;
    color: var(--primary-orange);
    text-transform: uppercase;
    display: block;
    text-align: right;
}

.title-pricing-includes {
    color: var(--dark-blue);
    margin: 60px 0 20px;
    font-weight: 800;
    font-size: 1.75em;
}

.pricing-includes {
    background: white;
    border: 1px solid #e0cdb8;
    border-radius: 20px;
    max-width: 650px;
    margin: 0 auto;
    padding: 20px 40px;
    color: var(--dark-blue);
    font-weight: 500;
}

.includes-box ul {
    text-align: left;
}

.includes-box li {
    margin-bottom: 15px;
    color: var(--text-grey);
    display: flex;
    gap: 10px;
    line-height: 1.25em;
}

.includes-box li img {
    width: 20px;
    height: 20px;
    color: var(--primary-orange);
}

.cta-center {
    margin-top: 30px;
}

@media (max-width: 768px) {
    .pricing-section {
        padding-bottom: 60px;
    }

    .pricing-banner {
        height: 200px;
        top: -100px;
        width: 90%;
    }

    .pricing-banner .banner-text {
        font-size: 1.5rem;
    }

    .pricing-cards-container {
        flex-direction: column;
        align-items: center;
    }

    .pricing-card {
        max-width: 100%;
        padding: 20px 20px 8px 30px;
    }

    .week-badge {
        font-size: 2rem;
        width: 70px;
        height: 50px;
    }

    .pricing-card .label-semana {
        font-size: 2rem;
    }

    .pricing-card .price {
        font-size: 2rem;
    }

    .pricing-card .price-usd {
        font-size: 1rem;
    }

    .title-pricing-includes {
        font-size: 1.5rem;
        margin-top: 40px;
    }

    .pricing-includes {
        padding: 15px 20px;
    }

    .includes-box li {
        font-size: 0.9rem;
    }

    .cta-center {
        margin-top: 20px;
    }
}

/* --- FAQ --- */
.faq-section {
    padding: 60px 0;
    background: #f0f0f0;
}

.faq-section h3 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark-blue);
    margin-bottom: 40px;
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background: white;
    border-radius: 50px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
}

.accordion-header {
    width: 100%;
    text-align: left;
    padding: 20px 30px;
    border: none;
    background: none;
    font-weight: 700;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-primary);
    font-size: 1rem;
}

.accordion-icon {
    width: 24px;
    height: 24px;
}

.accordion-content {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-content p {
    padding-bottom: 20px;
    color: var(--text-grey);
}

.accordion-item.active .accordion-content {
    max-height: 200px;
}

.accordion-item.active .accordion-header img {
    transform: rotate(180deg);
}

/* --- NEWSLETTER --- */
.newsletter-section {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.newsletter-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.glass-form {
    background: rgba(0, 123, 255, 0.1);
    padding: 30px;
    border-radius: 50px;
    border: 1px solid #cecece;
    display: inline-block;
    width: 90dvw;
    max-width: 800px;
}

.glass-form form {
    display: flex;
    gap: 10px;
}

.input-group {
    flex-grow: 1;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50px;
    padding: 5px 20px;
    display: flex;
    align-items: center;
    color: white;
}

.input-icon {
    width: 20px;
    height: 20px;
}

.input-group input {
    background: transparent;
    border: none;
    color: white;
    padding: 10px;
    width: 100%;
    outline: none;
}

.input-group input::placeholder {
    color: #ddd;
}

/* --- FOOTER --- */
footer {
    background: #f4f4f4;
    padding-top: 60px;
    border-top: 1px solid #ddd;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 40px;
}

.logo-orange {
    color: var(--primary-orange);
    font-size: 2.5rem;
    font-weight: 800;
}

.socials {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.socials a {
    color: var(--primary-orange);
    font-size: 1.2rem;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.socials a:hover {
    background: var(--primary-orange);
    color: white;
}

.footer-partners {
    text-align: center;
    color: var(--text-grey);
}

.partner-logos {
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--dark-blue);
    margin: 10px 0;
}

.footer-contact h4 {
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.footer-contact li {
    margin-bottom: 10px;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.footer-contact li a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact img {
    width: 0.9em;
    height: 0.9em;
}

.footer-bottom {
    background: #ddd;
    text-align: center;
    padding: 20px;
    font-size: 0.8rem;
    color: #666;
}


/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0;
    }

    .logo h1 {
        font-size: 2.2rem;
    }

    /* Letras más pequeñas para dar espacio */

    .main-nav {
        margin-left: auto;
        margin-right: 15px;
    }

    .main-nav .btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .main-nav ul {
        display: none;
    }

    /* Simplified mobile menu for this demo */
    .menu-toggle {
        display: block;
        position: static;
    }

    .menu-toggle img {
        width: 20px;
        height: 20px;
    }

    .hero-content h2 {
        font-size: 2.5rem;
    }

    .slide {
        flex: 70%;
    }

    .content-wrapper {
        flex-direction: column;
    }

    .text-block {
        width: 100%;
    }

    .gradient-overlay {
        background: rgba(255, 127, 0, 0.9);
    }

    .benefit-card {
        width: 250px;
        min-width: 250px;
    }

    .pricing-cards-container {
        flex-direction: column;
        align-items: center;
    }

    .pricing-banner .banner-text {
        font-size: 1.5rem;
        width: 100%;
        text-align: center;
    }

    .glass-form form {
        flex-direction: column;
    }

    .footer-grid {
        flex-direction: column;
        text-align: center;
    }

    .socials {
        justify-content: center;
    }
}

@media (max-width: 425px) {
    .slide {
        flex: none;
        width: 90vw;
    }
}