/* ==========================================================================
   DESIGN SYSTEM & DESIGN TOKENS
   ========================================================================== */
:root {
    /* Color Palette */
    --primary: #0066FF;
    --primary-hover: #0052cc;
    --secondary: #1E88E5;
    --dark-blue: #0A192F;
    --dark-blue-light: #112240;
    --black: #000000;
    --white: #FFFFFF;
    --gray-light: #F5F7FA;
    --gray-medium: #E2E8F0;
    --gray-dark: #333333;
    
    /* Call to Action */
    --cta-green: #00C853;
    --cta-green-hover: #00B24A;
    
    /* Text Colors */
    --text-dark: #1E293B;
    --text-muted: #64748B;
    --text-light: #F5F7FA;
    --text-blue-gray: #a8b2d1;

    /* Fonts */
    --font-headings: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Transitions & Borders */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease-in-out;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 28px;
    --border-radius-round: 50px;
    
    /* Shadows & Glows */
    --box-shadow-sm: 0 4px 10px rgba(0, 0, 0, 0.05);
    --box-shadow-md: 0 10px 25px rgba(0, 0, 0, 0.1);
    --box-shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.15);
    --glow-blue: 0 0 30px rgba(0, 102, 255, 0.35);
    --glow-green: 0 0 30px rgba(0, 200, 83, 0.35);
    --glow-neon: 0 0 15px rgba(30, 136, 229, 0.45);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: var(--font-body);
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headings);
    color: var(--dark-blue);
    font-weight: 700;
    line-height: 1.25;
}

p {
    font-family: var(--font-body);
    color: var(--text-muted);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
    font-family: inherit;
}

/* Skip link for A11y */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background-color: var(--primary);
    color: var(--white);
    padding: 1rem 1.5rem;
    z-index: 2000;
    transition: top 0.3s ease;
    font-family: var(--font-headings);
    font-weight: 600;
}

.skip-link:focus {
    top: 0;
    outline: 3px solid var(--cta-green);
    outline-offset: 2px;
}

/* Focus indicator for keyboard users (WCAG compliance) */
*:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 3px;
}

/* ==========================================================================
   LAYOUT UTILITIES
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 6.5rem 0;
}

.section-benefits {
    background-color: var(--gray-light);
}

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

.section-services {
    background-color: var(--gray-light);
}

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

.section-testimonials {
    background-color: var(--gray-light);
}

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

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

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

.section-title-wrapper {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4.5rem auto;
}

.section-subtitle {
    display: inline-block;
    color: var(--primary);
    font-family: var(--font-headings);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
    color: var(--dark-blue);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 70px;
    height: 4px;
    background-color: var(--primary);
    margin: 0.75rem auto 0 auto;
    border-radius: var(--border-radius-round);
}

.section-title.text-left::after {
    margin: 0.75rem 0 0 0;
}

.section-desc {
    font-size: 1.0625rem;
    color: var(--text-muted);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.9375rem 2rem;
    border-radius: var(--border-radius-sm);
    font-family: var(--font-headings);
    font-weight: 600;
    font-size: 0.9375rem;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 102, 255, 0.3);
}

.btn-outline {
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.25);
    color: var(--white);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: var(--white);
    transform: translateY(-3px);
}

.btn-cta {
    background-color: var(--cta-green);
    color: var(--white);
    box-shadow: var(--glow-green);
}

.btn-cta:hover {
    background-color: var(--cta-green-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(0, 200, 83, 0.45);
}

.btn-lg {
    padding: 1.125rem 2.5rem;
    font-size: 1.0625rem;
}

.whatsapp-icon {
    fill: currentColor;
}

/* ==========================================================================
   TOP BAR INFO
   ========================================================================== */
.top-bar {
    background-color: var(--dark-blue);
    color: var(--text-light);
    font-size: 0.8125rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    padding: 0.5rem 0;
    z-index: 1002;
    position: relative;
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.top-info {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.top-info span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-blue-gray);
}

.top-info .icon {
    font-size: 0.9375rem;
}

.top-status {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--cta-green);
    font-weight: 500;
}

.dot-blink {
    width: 8px;
    height: 8px;
    background-color: var(--cta-green);
    border-radius: 50%;
    display: inline-block;
    animation: blink 1.5s infinite alternate;
}

@keyframes blink {
    0% { opacity: 0.3; transform: scale(0.9); }
    100% { opacity: 1; transform: scale(1.1); box-shadow: 0 0 8px var(--cta-green); }
}

.top-btn {
    background-color: rgba(0, 200, 83, 0.12);
    border: 1px solid var(--cta-green);
    color: var(--cta-green);
    padding: 0.25rem 0.75rem;
    border-radius: var(--border-radius-round);
    font-weight: 600;
    transition: var(--transition-fast);
}

.top-btn:hover {
    background-color: var(--cta-green);
    color: var(--white);
}

/* ==========================================================================
   STICKY HEADER & NAVIGATION MENU
   ========================================================================== */
.header {
    position: fixed;
    top: 36px; /* below top bar */
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 25, 47, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

body.scrolled .header {
    top: 0;
    background: rgba(10, 25, 47, 0.95);
    border-bottom-color: rgba(0, 102, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 76px;
    transition: var(--transition-smooth);
}

body.scrolled .header-container {
    height: 64px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-headings);
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 0.5px;
}

.logo span {
    color: var(--primary);
}

.logo-icon {
    color: var(--primary);
}

nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.75rem;
}

.nav-link {
    font-family: var(--font-headings);
    font-weight: 500;
    font-size: 0.9375rem;
    color: var(--text-blue-gray);
    padding: 0.5rem 0;
    position: relative;
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--white);
}

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

.nav-cta-item {
    margin-left: 0.75rem;
}

/* Hamburger toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    z-index: 1005;
}

.hamburger-bar {
    width: 100%;
    height: 2px;
    background-color: var(--white);
    border-radius: var(--border-radius-round);
    transition: var(--transition-smooth);
}

/* Hamburger active transformation */
.nav-toggle.active .hamburger-bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav-toggle.active .hamburger-bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .hamburger-bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ==========================================================================
   HERO SECTION PREMIUM
   ========================================================================== */
.hero {
    position: relative;
    background: radial-gradient(circle at 75% 30%, rgba(0, 102, 255, 0.15) 0%, transparent 55%),
                radial-gradient(circle at 15% 75%, rgba(30, 136, 229, 0.08) 0%, transparent 50%),
                var(--dark-blue);
    color: var(--white);
    padding: 11rem 0 7rem 0;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.12) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 650px;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(0, 102, 255, 0.15);
    border: 1px solid rgba(0, 102, 255, 0.35);
    color: var(--secondary);
    font-family: var(--font-headings);
    font-weight: 600;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--border-radius-round);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.hero-title span {
    background: linear-gradient(135deg, var(--white) 20%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-blue-gray);
    margin-bottom: 2.5rem;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-bottom: 3.5rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-num {
    font-family: var(--font-headings);
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-desc {
    font-size: 0.8125rem;
    color: var(--text-blue-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hero right-side visual image */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-slider-container {
    position: relative;
    width: 320px;
    height: 520px;
    animation: float 6s ease-in-out infinite;
    z-index: 2;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.96);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0.8s;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.hero-visual-card {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #112240 0%, #0c1c38 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-lg);
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--glow-blue), 0 30px 60px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.hero-visual-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        rgba(255, 255, 255, 0) 45%,
        rgba(255, 255, 255, 0.05) 50%,
        rgba(255, 255, 255, 0) 55%
    );
    transform: rotate(45deg);
    animation: shine 4s ease-in-out infinite;
}

@keyframes shine {
    0% { transform: translate(-30%, -30%) rotate(45deg); }
    100% { transform: translate(30%, 30%) rotate(45deg); }
}

.hero-product-tag {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background-color: var(--primary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0.35rem 0.85rem;
    border-radius: var(--border-radius-round);
}

.hero-image {
    width: 210px;
    height: auto;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.65));
    transition: var(--transition-smooth);
}

.hero-visual-card:hover .hero-image {
    transform: scale(1.08) translateY(-5px);
}

.hero-glow-glow {
    position: absolute;
    bottom: -20px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.25) 0%, transparent 70%);
    filter: blur(10px);
    z-index: -1;
}

.hero-product-info {
    margin-top: 2rem;
    text-align: center;
}

.hero-product-info h3 {
    font-size: 1.125rem;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.hero-product-info p {
    font-size: 0.8125rem;
    color: var(--text-blue-gray);
}

/* Floating Widgets */
.floating-badge {
    position: absolute;
    background: rgba(17, 34, 64, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--border-radius-md);
    padding: 0.875rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: var(--box-shadow-lg);
    z-index: 3;
}

.badge-1 {
    top: 15%;
    left: -40px;
    animation: float-badge 8s ease-in-out infinite 0.5s;
}

.badge-2 {
    bottom: 15%;
    right: -40px;
    animation: float-badge 7s ease-in-out infinite 2s;
}

.badge-icon {
    width: 32px;
    height: 32px;
    background-color: rgba(0, 102, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--secondary);
}

.floating-badge h4 {
    font-size: 0.8125rem;
    color: var(--white);
}

.floating-badge p {
    font-size: 0.6875rem;
    color: var(--text-blue-gray);
}

/* Keyframes for Float Animations */
@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(1.5deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

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

/* ==========================================================================
   BENEFITS SECTION
   ========================================================================== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.benefit-card {
    background-color: var(--white);
    border: 1px solid var(--gray-medium);
    border-radius: var(--border-radius-md);
    padding: 2.5rem 2rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow-md);
    border-color: transparent;
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-icon-wrapper {
    width: 56px;
    height: 56px;
    background-color: rgba(0, 102, 255, 0.05);
    color: var(--primary);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
}

.benefit-card:hover .benefit-icon-wrapper {
    background-color: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.benefit-card p {
    font-size: 0.9375rem;
    color: var(--text-muted);
}

/* ==========================================================================
   PRODUCTOS DESTACADOS
   ========================================================================== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Generic product card styling */
.product-card {
    background-color: var(--white);
    border: 1px solid var(--gray-medium);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--box-shadow-lg);
    border-color: rgba(0, 102, 255, 0.2);
}

.product-img-holder {
    height: 220px;
    background-color: var(--gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 1.5rem;
    transition: var(--transition-smooth);
}

.bg-tech-svg {
    background: radial-gradient(circle at center, #f0f4ff 0%, #e2e8f0 100%);
    color: var(--secondary);
}

.product-vector {
    width: 90px;
    height: 90px;
    opacity: 0.8;
    transition: var(--transition-smooth);
}

.product-card:hover .product-vector {
    transform: scale(1.15);
    opacity: 1;
}

.product-info-holder {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-name {
    font-size: 1.1875rem;
    margin-bottom: 0.75rem;
    color: var(--dark-blue);
}

.product-description {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.product-action-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.btn-product-cta {
    width: 100%;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
}

/* OBLIGATORY FEATURED CARD: Power Bank Master-G */
.card-featured {
    grid-column: span 3;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    border: 2px solid rgba(0, 102, 255, 0.15);
    background: radial-gradient(circle at 10% 20%, rgba(0, 102, 255, 0.03) 0%, transparent 60%);
    position: relative;
}

.card-featured:hover {
    border-color: rgba(0, 102, 255, 0.35);
}

.product-badge-main {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    background-color: var(--cta-green);
    color: var(--white);
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.4rem 1rem;
    border-radius: var(--border-radius-round);
    box-shadow: 0 4px 10px rgba(0, 200, 83, 0.25);
    z-index: 2;
}

.card-featured .product-img-holder {
    height: 100%;
    min-height: 320px;
    padding: 2.5rem;
    background: linear-gradient(135deg, var(--gray-light) 0%, var(--gray-medium) 100%);
}

.card-featured .product-img {
    max-height: 250px;
    width: auto;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.2));
    transition: var(--transition-smooth);
}

.card-featured:hover .product-img {
    transform: scale(1.08) translateY(-5px);
}

.card-featured .product-info-holder {
    padding: 2.5rem;
}

.card-featured .product-name {
    font-size: 1.625rem;
    margin-bottom: 1rem;
}

.card-featured .product-description {
    font-size: 0.975rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.product-features-list {
    margin-bottom: 2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.product-features-list li {
    font-size: 0.875rem;
    color: var(--text-dark);
    font-weight: 500;
}

.product-tag-inline {
    font-size: 0.8125rem;
    color: var(--cta-green);
    background-color: rgba(0, 200, 83, 0.08);
    border: 1px solid rgba(0, 200, 83, 0.2);
    padding: 0.35rem 0.85rem;
    border-radius: var(--border-radius-round);
    font-weight: 600;
}

.card-featured .btn-product-cta {
    width: auto;
    min-width: 200px;
}

/* ==========================================================================
   PROMOTIONAL BANNER & SLIDER (CAROUSEL)
   ========================================================================== */
.banner-promo {
    position: relative;
    background: radial-gradient(circle at 10% 30%, rgba(30, 136, 229, 0.1) 0%, transparent 40%),
                var(--dark-blue);
    padding: 6.5rem 0;
    color: var(--white);
    overflow: hidden;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 20px 20px;
    z-index: 0;
    pointer-events: none;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    display: flex;
}

.slide {
    width: 100%;
    flex-shrink: 0;
    display: none;
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

.banner-container {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.banner-badge {
    display: inline-block;
    color: var(--cta-green);
    font-family: var(--font-headings);
    font-weight: 600;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
}

.banner-title {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
    color: var(--white);
    line-height: 1.2;
}

.banner-subtitle {
    font-size: 1.0625rem;
    color: var(--text-blue-gray);
    margin-bottom: 2.25rem;
    max-width: 650px;
}

.banner-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-img {
    height: 260px;
    width: auto;
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.55));
    animation: float 5s ease-in-out infinite;
}

.banner-badge-discount {
    position: absolute;
    top: 5%;
    right: 5%;
    background-color: var(--primary);
    color: var(--white);
    font-size: 0.9375rem;
    font-weight: 700;
    padding: 0.75rem 1.25rem;
    border-radius: 50%;
    box-shadow: var(--glow-blue);
    transform: rotate(12deg);
}

/* Slider buttons styling */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    z-index: 10;
    transition: var(--transition-smooth);
}

.slider-btn:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    box-shadow: var(--glow-blue);
    transform: translateY(-50%) scale(1.05);
}

.prev-btn {
    left: 2rem;
}

.next-btn {
    right: 2rem;
}

/* Slider dots navigation */
.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.25);
    transition: var(--transition-smooth);
    border: none;
    padding: 0;
}

.slider-dot:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.slider-dot.active {
    background-color: var(--primary);
    width: 24px;
    border-radius: 5px;
    box-shadow: var(--glow-blue);
}

/* Responsive adjustment for slider controls on tablet */
@media (max-width: 1024px) {
    .prev-btn { left: 1rem; }
    .next-btn { right: 1rem; }
}

@media (max-width: 768px) {
    .banner-promo {
        padding: 5rem 0 6rem 0;
    }
    .slider-btn {
        width: 36px;
        height: 36px;
        font-size: 0.875rem;
    }
    .prev-btn { left: 0.5rem; }
    .next-btn { right: 0.5rem; }
    
    .banner-title {
        font-size: 2rem;
    }
}


/* ==========================================================================
   SERVICIO TÉCNICO
   ========================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background-color: var(--white);
    border: 1px solid var(--gray-medium);
    border-radius: var(--border-radius-md);
    padding: 2.5rem 2.25rem;
    position: relative;
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow-md);
    border-color: rgba(0, 102, 255, 0.15);
}

.service-tag {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    font-size: 0.75rem;
    color: var(--primary);
    background-color: rgba(0, 102, 255, 0.08);
    padding: 0.25rem 0.75rem;
    border-radius: var(--border-radius-round);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.service-icon-holder {
    font-size: 2.25rem;
    margin-bottom: 1.25rem;
}

.service-card h3 {
    font-size: 1.3125rem;
    margin-bottom: 0.75rem;
    color: var(--dark-blue);
}

.service-card p {
    font-size: 0.9375rem;
    margin-bottom: 1.75rem;
    color: var(--text-muted);
}

.service-link {
    font-family: var(--font-headings);
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    transition: var(--transition-fast);
}

.service-card:hover .service-link {
    color: var(--primary-hover);
    transform: translateX(3px);
}

/* ==========================================================================
   POR QUÉ ELEGIRNOS (APPLE STYLE)
   ========================================================================== */
.why-container {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 4.5rem;
    align-items: center;
}

.why-visual {
    display: flex;
    justify-content: center;
}

.why-graphic {
    position: relative;
    width: 320px;
    height: 320px;
}

.why-badge-experience {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: rgba(10, 25, 47, 0.9);
    border: 1px solid rgba(0, 102, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: var(--box-shadow-lg);
}

.exp-num {
    font-family: var(--font-headings);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.exp-text {
    font-size: 0.75rem;
    color: var(--text-blue-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.25rem;
    text-align: center;
}

.why-bullets {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.why-bullets li {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.bullet-check {
    width: 28px;
    height: 28px;
    background-color: rgba(0, 200, 83, 0.1);
    color: var(--cta-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.why-bullets h4 {
    font-size: 1.0625rem;
    margin-bottom: 0.25rem;
    color: var(--dark-blue);
}

.why-bullets p {
    font-size: 0.875rem;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background-color: var(--white);
    border: 1px solid var(--gray-medium);
    border-radius: var(--border-radius-md);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
}

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

.stars {
    color: #FFB300;
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 0.9375rem;
    color: var(--text-dark);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.75rem;
}

.testimonial-author {
    border-top: 1px solid var(--gray-medium);
    padding-top: 1.25rem;
    display: flex;
    flex-direction: column;
    font-style: normal;
}

.testimonial-author strong {
    font-family: var(--font-headings);
    color: var(--dark-blue);
    font-size: 0.9375rem;
}

.testimonial-author span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ==========================================================================
   GALLERY (MASONRY)
   ========================================================================== */
.gallery-masonry {
    columns: 3;
    column-gap: 1.5rem;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 1.5rem;
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--box-shadow-sm);
    transition: var(--transition-smooth);
}

.gallery-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-placeholder-img {
    width: 100%;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--white);
    padding: 2.5rem;
    text-align: center;
}

.bg-cyan { background: linear-gradient(135deg, #00C9FF 0%, #92FE9D 100%); }
.bg-purple { background: linear-gradient(135deg, #e96443 0%, #904e95 100%); }
.bg-green { background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%); }
.bg-orange { background: linear-gradient(135deg, #f857a6 0%, #ff5858 100%); }
.bg-blue-light { background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%); }

.gallery-icon {
    font-size: 3rem;
}

.gallery-label {
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 1.125rem;
}

.gallery-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(transparent 10%, rgba(10, 25, 47, 0.95) 90%);
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: var(--transition-smooth);
    opacity: 0;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover .gallery-info {
    transform: translateY(0);
    opacity: 1;
}

.gallery-info h4 {
    color: var(--white);
    font-size: 1.0625rem;
    margin-bottom: 0.25rem;
}

.gallery-info p {
    color: var(--secondary);
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   CTA SECTION
   ========================================================================== */
.cta-banner {
    position: relative;
    background: radial-gradient(circle at 50% 50%, rgba(0, 102, 255, 0.2) 0%, transparent 60%),
                var(--dark-blue);
    padding: 7rem 0;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(0, 200, 83, 0.15) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.75rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.125rem;
    color: var(--text-blue-gray);
    margin-bottom: 2.5rem;
}

/* ==========================================================================
   LOCATION & CONTACT SECTION
   ========================================================================== */
.location-container {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 4.5rem;
    align-items: center;
}

.location-info {
    max-width: 550px;
}

.contact-details-box {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.detail-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.detail-icon {
    width: 44px;
    height: 44px;
    background-color: var(--gray-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.detail-item strong {
    font-family: var(--font-headings);
    color: var(--dark-blue);
    font-size: 0.9375rem;
    display: block;
    margin-bottom: 0.25rem;
}

.detail-item p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.detail-item a:hover {
    color: var(--primary);
}

.location-map {
    width: 100%;
}

.map-wrapper {
    height: 450px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--box-shadow-lg);
    border: 1px solid var(--gray-medium);
}

/* ==========================================================================
   FAQ (ACCORDION)
   ========================================================================== */
.faq-container {
    max-width: 800px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.faq-item {
    background-color: var(--white);
    border: 1px solid var(--gray-medium);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    transition: var(--transition-fast);
}

.faq-item:hover {
    border-color: rgba(0, 102, 255, 0.15);
}

.faq-trigger {
    width: 100%;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-family: var(--font-headings);
    font-weight: 600;
    font-size: 1.0625rem;
    color: var(--dark-blue);
}

.faq-arrow {
    font-size: 0.75rem;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-content {
    padding: 0 1.5rem 1.5rem 1.5rem;
    border-top: 1px solid transparent;
}

.faq-item.active .faq-content {
    border-top-color: var(--gray-light);
}

.faq-content p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ==========================================================================
   FOOTER PREMIUM
   ========================================================================== */
.footer {
    background-color: var(--dark-blue);
    color: var(--white);
    padding: 6.5rem 0 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 4.5rem;
    padding-bottom: 5rem;
}

.footer-col-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    color: var(--white);
}

.footer-brand-desc {
    font-size: 0.875rem;
    color: var(--text-blue-gray);
    line-height: 1.6;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 38px;
    height: 38px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-blue-gray);
    transition: var(--transition-fast);
}

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

.footer-grid h3 {
    font-size: 1.125rem;
    color: var(--white);
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.footer-grid h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 35px;
    height: 3px;
    background-color: var(--primary);
    border-radius: var(--border-radius-round);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: var(--text-blue-gray);
    display: block;
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(4px);
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-info li {
    font-size: 0.875rem;
    color: var(--text-blue-gray);
}

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

.footer-hours {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 1rem;
    margin-top: 0.5rem;
    line-height: 1.5;
}

.footer-bottom {
    background-color: #050d1a;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding: 1.5rem 0;
    color: var(--text-blue-gray);
    font-size: 0.8125rem;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

/* ==========================================================================
   LIGHTBOX DIALOG (INTERACTIVE GALLERY MOCKUP)
   ========================================================================== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 25, 47, 0.98);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 3rem;
    color: var(--white);
    transition: var(--transition-fast);
}

.lightbox-close:hover {
    color: var(--primary);
    transform: scale(1.1);
}

.lightbox-content {
    max-width: 800px;
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.lightbox-media-wrapper {
    max-height: 70vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#lightbox-img {
    max-height: 70vh;
    max-width: 100%;
    object-fit: contain;
    border-radius: var(--border-radius-md);
    box-shadow: var(--glow-blue);
    display: none;
}

.lightbox.has-img #lightbox-img {
    display: block;
}

#lightbox-placeholder {
    width: 100%;
    height: 380px;
    display: none;
    border-radius: var(--border-radius-md);
}

.lightbox.has-placeholder #lightbox-placeholder {
    display: flex;
}

.lightbox-caption {
    text-align: center;
    color: var(--white);
    max-width: 600px;
}

.lightbox-caption h4 {
    font-size: 1.375rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.lightbox-caption p {
    font-size: 0.9375rem;
    color: var(--text-blue-gray);
}

/* ==========================================================================
   SCROLL REVEAL INITIAL ANIMATION RULES
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.reveal-delay-1 {
    transition-delay: 0.15s;
}

.reveal.reveal-delay-2 {
    transition-delay: 0.3s;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */

/* Tablet & Smaller Layouts (1024px Breakpoint) */
@media (max-width: 1024px) {
    .section {
        padding: 5rem 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
        width: 100%;
    }
    
    .hero-visual {
        margin-top: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .card-featured {
        grid-column: span 2;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-container {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    
    .why-graphic {
        width: 280px;
        height: 280px;
    }
    
    .why-bullets {
        grid-template-columns: repeat(2, 1fr);
        display: grid;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .location-container {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    
    .location-map {
        order: -1;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .footer-col-contact {
        grid-column: span 2;
    }
}

/* Mobile Breakpoint (768px) */
@media (max-width: 768px) {
    .top-bar {
        font-size: 0.75rem;
    }
    
    .top-bar-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .header {
        top: 60px;
    }
    
    body.scrolled .header {
        top: 0;
    }
    
    /* Mobile Menu Controller */
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 76px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 76px);
        background-color: var(--dark-blue);
        flex-direction: column;
        padding: 3rem 2rem;
        gap: 2rem;
        transition: var(--transition-smooth);
        z-index: 1004;
        overflow-y: auto;
    }
    
    body.scrolled .nav-menu {
        top: 64px;
        height: calc(100vh - 64px);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        font-size: 1.25rem;
    }
    
    .nav-cta-item {
        width: 100%;
        margin-left: 0;
        margin-top: 1rem;
    }
    
    .nav-cta-item .btn {
        width: 100%;
    }
    
    /* Hero typography adjustments */
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .stat-num {
        font-size: 1.5rem;
    }
    
    /* Products grid featured card adaptivity */
    .card-featured {
        grid-template-columns: 1fr;
        grid-column: span 1;
    }
    
    .card-featured .product-img-holder {
        height: 280px;
        min-height: 280px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .card-featured {
        grid-column: span 1;
    }
    
    .product-features-list {
        grid-template-columns: 1fr;
    }
    
    /* Promotional Banner */
    .banner-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .banner-visual {
        order: -1;
    }
    
    .why-bullets {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-masonry {
        columns: 2;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-col-contact {
        grid-column: span 1;
    }
}

/* Small Screens Mobile (480px Breakpoint) */
@media (max-width: 480px) {
    .section {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 1.875rem;
    }
    
    .hero {
        padding: 9.5rem 0 5rem 0;
    }
    
    .hero-title {
        font-size: 2.125rem;
    }
    
    .hero-ctas .btn {
        width: 100%;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-masonry {
        columns: 1;
    }
    
    .hero-visual-card {
        width: 100%;
        max-width: 280px;
        padding: 2.5rem 1.5rem;
    }
    
    .hero-image {
        width: 170px;
    }
    
    .floating-badge {
        display: none; /* Hide floating badges on very small phones to prevent layout clutter */
    }
    
    .map-wrapper {
        height: 320px;
    }
}

/* Very Small Mobile Breakpoint (320px) */
@media (max-width: 320px) {
    .hero-title {
        font-size: 1.875rem;
    }
    
    .stat-item {
        gap: 0;
    }
    
    .stat-num {
        font-size: 1.25rem;
    }
}
