/* =========================================
    Version: 1.0
   ========================================= */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

/* =========================================
    Root Variables & Custom Properties
   ========================================= */
:root {
    /* Brand Colors */
    --swappit-blue: #3468c0;
    --swappit-orange: #ffa424;
    --swappit-blue-hover: #1d4ed8;
    --swappit-orange-hover: #ff5722;

    /* Neutral Colors */
    --neutral-dark: #1e293b;
    --neutral-medium: #64748b;
    --neutral-light: #f1f5f9;

    /* Functional Colors */
    --background-white: #ffffff;
    --shadow-color: rgba(37, 99, 235, 0.1);

    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Inter', sans-serif;
}

/* =========================================
    Global Typography Settings
   ========================================= */
body {
    font-family: var(--font-secondary);
    color: var(--neutral-dark);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Section Title Styles */
.section-title {
    font-family: var(--font-primary);
    color: var(--swappit-blue);
    font-weight: 700;
    text-shadow: none;
    text-align: center;
}

/* Responsive centering for About Us content */
@media (max-width: 1024px) {
    .section-title {
        text-align: center;
    }
    
    .features-section .container,
    .swappit-zone-section .container {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .section-title {
        text-align: center;
        font-size: 2rem;
    }
    
    .features-section .container,
    .swappit-zone-section .container {
        text-align: center;
    }
    
    .features-section .row,
    .swappit-zone-section .row {
        justify-content: center;
    }
}

/* =========================================
    Header & Navigation Styles
   ========================================= */
.navbar-custom {
    background-color: var(--background-white);
    box-shadow: 0 4px 6px var(--shadow-color);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(37, 99, 235, 0.08);
    height: 80px; /* match marketplace header height */
    display: flex;
    align-items: center;
}

/* Fix logo size and left alignment inside navbar-custom */

.navbar-custom .navbar-brand img {
    width: 160px;  /* match marketplace logo size */
    height: auto;  /* keep aspect ratio */
    display: block;
}

.navbar-custom .container {
    display: flex;
    justify-content: flex-start; /* align content left */
    padding-left: 0; /* optional to reduce left padding for flush left */
}

/* Brand Logo Styles */
.navbar-brand {
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 2rem;
    letter-spacing: -0.5px;
    margin-right: 3rem;
    transition: transform 0.3s ease;
}

.navbar-brand:hover {
    transform: translateY(-1px);
}

.brand-swap {
    color: var(--swappit-blue);
}

.brand-pit {
    color: var(--swappit-orange);
}

/* Navigation Center Alignment */
.nav-center {
    display: flex;
    justify-content: center;
    flex-grow: 1;
}

/* Navigation Links Styling */
.nav-link {
    font-family: var(--font-primary);
    color: var(--neutral-dark) !important;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.75rem 1.5rem !important;
    position: relative;
    text-transform: capitalize;
    letter-spacing: 0.3px;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--swappit-blue);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
    opacity: 0;
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 70%;
    opacity: 1;
}

.nav-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.1), transparent);
    transform: translateX(-50%) scaleX(0);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-link.active {
    color: var(--swappit-blue) !important;
    font-weight: 600;
    transform: translateY(-1px);
}

/* Navigation Items Spacing */
.nav-item {
    margin: 0 0.5rem;
}

/* Authentication Buttons Container */
.auth-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Login Button Styles */
.btn-login {
    background-color: transparent;
    border: 2px solid var(--swappit-blue);
    color: var(--swappit-blue);
    padding: 0.5rem 1.5rem;
    font-family: var(--font-primary);
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-login:hover {
    background-color: var(--swappit-blue);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px var(--shadow-color);
}

/* Register Button Styles */
.btn-register {
    background-color: var(--swappit-orange);
    border: none;
    color: white;
    padding: 0.5rem 1.5rem;
    font-family: var(--font-primary);
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(255, 107, 53, 0.2);
    font-size: 0.9rem;
}

.btn-register:hover {
    background-color: var(--swappit-orange-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(255, 107, 53, 0.3);
}

/* =========================================
   Responsive Design Adjustments
   ========================================= */
@media (max-width: 991.98px) {
    /* Mobile navbar layout */
    .navbar-custom .container {
        justify-content: space-between;
        align-items: center;
    }
    
    /* Logo positioning on mobile */
    .navbar-brand {
        margin-right: 0;
        order: 1;
    }
    
    /* Hamburger menu positioning on mobile */
    .navbar-toggler {
        order: 2;
        margin-left: auto;
        border: none;
        padding: 0.25rem 0.5rem;
        background: transparent;
    }
    
    .navbar-toggler:focus {
        box-shadow: none;
        outline: none;
    }
    
    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(52, 104, 192, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
    
    /* Navigation content positioning */
    .navbar-collapse {
        order: 3;
        width: 100%;
        text-align: center;
        background-color: var(--background-white);
        padding: 1rem;
        border-radius: 1rem;
        margin-top: 0.5rem;
        box-shadow: 0 4px 6px var(--shadow-color);
    }
    
    .nav-center {
        justify-content: center;
        margin: 1rem 0;
        width: 100%;
    }
    
    .navbar-nav {
        width: 100%;
        justify-content: center;
        align-items: center;
    }
    
    .nav-item {
        text-align: center;
        margin: 0.5rem 0;
    }
    
    .auth-buttons {
        margin-top: 1rem;
        width: 100%;
        justify-content: center;
        padding: 1rem 0;
        border-top: 1px solid var(--neutral-light);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .auth-buttons .btn {
        width: 200px;
        max-width: 100%;
    }

    .nav-link {
        padding: 0.875rem 1rem !important;
    }
}

/* =========================================
   Main Content Spacing
   ========================================= */
/* main { */
    /* ELIMINADO: width, max-width, margin, padding, overflow, box-shadow, border-radius, background, min-height, height, display, flex, grid, align-items, justify-content, position, top, left, right, bottom, z-index, transition, opacity, transform, etc. */
/* } */

/* =========================================
    Hero Section Styles
   ========================================= */
.hero-section {
    background: url('/assets/logos/Banner.jpg') no-repeat center center;
    background-size: cover;
    background-color: rgba(0, 0, 0, 0.5);
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: calc(100vh - 80px);  
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 2rem;
    margin: 0;
    position: relative;
    color: black;
    overflow: hidden;
}

/* Eliminar imagen decorativa en la esquina para evitar conflicto */
.hero-section::after {
    display: none !important;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
}

.hero-title {
    color: white;
    text-shadow: 0 2px 8px rgba(255,255,255,0.15);
}

.hero-subtitle {
    color: white;
    text-shadow: 0 1px 4px rgba(255,255,255,0.10);
}

.hero-title {
    font-family: var(--font-primary);
    font-weight: 900;
    font-size: 4.5rem;
    margin-bottom: 2rem;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero-title span {
    color: var(--swappit-blue);
}

.hero-subtitle {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    margin-bottom: 3rem;
    line-height: 1.6;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.btn-primary-large {
    background: #fff;
    color: #ffa424 !important;
    border: 2px solid #ffa424;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(255,164,36,0.18);
    padding: 1.25rem 3rem;
    border-radius: 50px;
    font-family: var(--font-primary);
    font-size: 1.25rem;
    display: inline-flex;
    align-items: center;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
    min-width: 200px;
    justify-content: center;
}

.btn-primary-large:hover {
    background: #ffa424;
    color: #fff !important;
    box-shadow: 0 8px 24px rgba(255,164,36,0.25);
    transform: translateY(-2px) scale(1.04);
    text-decoration: none;
}

.btn-secondary-large {
    background: rgba(255,255,255,0.15);
    color: var(--swappit-blue);
    border: 2px solid var(--swappit-blue);
    padding: 1.25rem 3rem;
    border-radius: 50px;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.10);
    display: inline-flex;
    align-items: center;
    min-width: 200px;
    justify-content: center;
}

.btn-secondary-large:hover {
    background: var(--swappit-blue);
    color: white;
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.20);
    text-decoration: none;
}

/* Features Section */
.features-section {
    padding: 5rem 0;
    background-color: white;
}

.section-title { 
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 2.25rem;
    color: var(--swappit-blue) !important;
    text-shadow: none !important;
    text-align: center;
    margin-bottom: 3rem;
}

.feature-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--neutral-light);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 1.75rem;
    color: var(--swappit-blue);
}

.feature-title {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--neutral-dark);
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--neutral-medium);
    font-size: 1rem;
    line-height: 1.6;
}

/* Stats Section */
.stats-section {
    background-color: var(--neutral-light);
    padding: 4rem 0;
    text-align: center;
}

.stat-item {
    margin-bottom: 2rem;
}

.stat-number {
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 2.5rem;
    color: var(--swappit-blue);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-family: var(--font-secondary);
    color: var(--neutral-medium);
    font-size: 1.125rem;
}

/* Responsive Adjustments */
/* Pantallas muy grandes - evitar estiramiento horizontal */
@media (min-width: 1400px) {
    .hero-section {
        background-size: cover;
        background-position: center center;
    }
}

/* Orientación landscape en móviles - mantener parallax */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-section {
        background: url('/assets/logos/Banner.jpg') no-repeat center center;
        background-size: cover;
        background-attachment: fixed; /* Mantener parallax en landscape móvil */
        background-position: center center;
        min-height: 100vh;
    }
    
    .swappit-zone-bg {
        background: url('/assets/logos/SwappZone.jpg') no-repeat center center;
        background-size: cover;
        background-attachment: fixed; /* Mantener parallax en landscape móvil para Swappit Zone */
    }
}

@media (max-width: 768px) {
    .hero-section {
        background: url('/assets/logos/Banner.jpg') no-repeat center center;
        background-size: cover;
        background-attachment: fixed; /* Mantener parallax en móviles */
        background-position: center center;
        padding: 0 1rem;
    }
    
    .hero-content {
        padding: 0 0.5rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 300px;
    }

    .btn-primary-large,
    .btn-secondary-large {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1.125rem;
        min-width: unset;
    }

    .feature-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        background: url('/assets/logos/Banner.jpg') no-repeat center center;
        background-size: cover;
        background-attachment: fixed; /* Mantener parallax en móviles pequeños */
        background-position: center center;
        padding: 0 0.5rem;
        min-height: calc(100vh - 60px); /* Altura ajustada para móviles */
    }
    
    .hero-content {
        padding: 0 0.25rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        max-width: 280px;
    }
    
    .btn-primary-large,
    .btn-secondary-large {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

/* =========================================
   About Section Styles
   ========================================= */
.about-section {
    padding: 6rem 0;
    background-color: var(--background-white);
    position: relative;
    overflow: hidden;
}

.about-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(37, 99, 235, 0.1);
    color: var(--swappit-blue);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    color: var(--neutral-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-description {
    font-size: 1.1rem;
    color: var(--neutral-medium);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.about-image-container {
    position: relative;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-container img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    object-fit: contain;
    object-position: center;
}

.main-image {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

/* =========================================
   Business CTA Section Styles
   ========================================= */
.business-cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%);
    position: relative;
    overflow: hidden;
}

.cta-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 107, 53, 0.1);
    color: var(--swappit-orange);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-title {
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 2.75rem;
    color: var(--neutral-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-description {
    font-size: 1.1rem;
    color: var(--neutral-medium);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.cta-features {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.cta-features .feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.cta-features .feature:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.1);
}

.cta-features .feature i {
    font-size: 1.5rem;
    color: var(--swappit-orange);
}

.cta-features .feature span {
    font-weight: 500;
    color: var(--neutral-dark);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-outline-primary {
    background-color: transparent;
    border: 2px solid var(--swappit-blue);
    color: var(--swappit-blue);
    padding: 0.75rem 1.75rem;
    font-family: var(--font-primary);
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

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

.business-cta-image {
    position: relative;
    padding: 2rem;
}

.business-cta-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.floating-stats {
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    gap: 1rem;
    transform: translateY(30%);
}

.floating-stats .stat {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.floating-stats .stat i {
    font-size: 1.5rem;
    color: var(--swappit-blue);
    margin-bottom: 0.5rem;
}

.floating-stats .stat h4 {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--neutral-dark);
    margin: 0.5rem 0;
}

.floating-stats .stat p {
    color: var(--neutral-medium);
    font-size: 0.875rem;
    margin: 0;
}

@media (max-width: 991px) {
    .about-section,
    .business-cta-section {
        padding: 4rem 0;
    }

    .about-title,
    .cta-title {
        font-size: 2rem;
    }

    .about-image-container,
    .business-cta-image {
        margin-top: 3rem;
        padding: 2rem;
    }

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

    .floating-stats {
        position: relative;
        transform: none;
        margin-top: 2rem;
        flex-direction: column;
    }
}

/* =========================================
   Services Section Styles
   ========================================= */
.services-section {
    background: linear-gradient(135deg, var(--swappit-blue) 0%, #1e40af 100%);
    padding: 6rem 0;
    position: relative;
    color: white;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: white;
    clip-path: polygon(0 60%, 100% 100%, 100% 100%, 0% 100%);
}

.services-title {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: white;
}

.services-subtitle {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
    color: rgba(255, 255, 255, 0.9);
}

.service-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 1.75rem;
    background: linear-gradient(135deg, var(--swappit-blue) 0%, var(--swappit-orange) 100%);
    --webkit-background-clip: text;
    --webkit-text-fill-color: transparent;
}

.service-title {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.service-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .services-section {
        padding: 4rem 0;
    }

    .services-title {
        font-size: 2rem;
    }

    .service-card {
        margin-bottom: 2rem;
    }
}

/* =========================================
   Contact Section Styles
   ========================================= */
.contact-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.03) 0%, rgba(255, 107, 53, 0.03) 100%);
}

.section-title {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--neutral-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--neutral-medium);
    max-width: 600px;
    margin: 0 auto;
}

.contact-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 0 auto;
}

/* Quick Contact Info */
.quick-contact {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--neutral-light);
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 200px;
}

.contact-item i {
    font-size: 1.25rem;
    color: var(--swappit-blue);
}

.contact-item span {
    color: var(--neutral-dark);
    font-weight: 500;
}

/* Contact Form */
.contact-form {
    margin-bottom: 2.5rem;
    width: 100%;
}

.contact-form .row {
    margin: 0;
}

.contact-form .col-md-6,
.contact-form .col-12 {
    padding: 0 0.75rem;
    margin-bottom: 1rem;
}

/* Keep button aligned to the center on mobile */
.contact-form .col-12:last-child {
    text-align: center;
}

.contact-form .btn-primary-large {
    display: inline-block;
    margin: 0 auto;
}

.form-control {
    padding: 0.875rem 1.25rem;
    border: 2px solid var(--neutral-light);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.form-control:focus {
    border-color: var(--swappit-blue);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.form-control::placeholder {
    color: var(--neutral-medium);
}

select.form-control {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2364748b' viewBox='0 0 16 16'%3E%3Cpath d='M8 10.5l4-4H4l4 4z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.25rem center;
    padding-right: 2.5rem;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--neutral-light);
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--neutral-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neutral-dark);
    transition: all 0.3s ease;
}

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

/* Responsive Adjustments */
@media (max-width: 991px) {
    .contact-section {
        padding: 4rem 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .contact-card {
        padding: 2rem;
        max-width: 100%;
        margin: 0 1rem;
    }

    .quick-contact {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .contact-item {
        min-width: auto;
        justify-content: center;
    }
    
    .contact-form .col-md-6,
    .contact-form .col-12 {
        padding: 0 0.5rem;
        margin-bottom: 0.75rem;
    }
}

@media (max-width: 767px) {
    .section-title {
        font-size: 1.75rem;
    }

    .contact-card {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
    
    .contact-form .col-md-6,
    .contact-form .col-12 {
        padding: 0 0.25rem;
        margin-bottom: 0.5rem;
    }
    
    /* Keep button aligned to the center on mobile */
    .contact-form .col-12:last-child {
        text-align: center;
    }
    
    .form-control {
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }
}

/* Decorative Elements */
.shape-1,
.shape-2,
.shape-3 {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}

.shape-1 {
    top: 10%;
    right: -5%;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(255, 107, 53, 0.1) 100%);
}

.shape-2 {
    bottom: 20%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(37, 99, 235, 0.1) 100%);
}

.shape-3 {
    top: 40%;
    left: 50%;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(255, 107, 53, 0.05) 100%);
    transform: translateX(-50%);
}

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

@media (max-width: 991px) {
    .contact-header {
        padding: 4rem 0 3rem;
    }

    .contact-title {
        font-size: 2.5rem;
    }

    .contact-wrapper {
        padding: 3rem 0;
    }

    .contact-form,
    .contact-info {
        padding: 2rem;
    }

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

@media (max-width: 767px) {
    .contact-title {
        font-size: 2rem;
    }

    .contact-form,
    .contact-info {
        padding: 1.5rem;
    }

    .info-card {
        padding: 1rem;
    }

    .social-links {
        justify-content: center;
    }
}

/* =========================================
   Smooth Scrolling & Navigation Styles
   ========================================= */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px; /* Height of fixed header */
    margin: 0;
    padding: 0;
    height: 100%;
}

main {
    flex: 0 0 auto;
}

/* Section Transition Styles */
/* section { */
    /* ELIMINADO: opacity, transform, transition, width, max-width, min-width, margin, padding, overflow, box-shadow, border-radius, background, min-height, height, display, flex, grid, align-items, justify-content, position, top, left, right, bottom, z-index, etc. */
/* } */

/* section.visible { */
    /* ELIMINADO: opacity, transform, transition, width, max-width, min-width, margin, padding, overflow, box-shadow, border-radius, background, min-height, height, display, flex, grid, align-items, justify-content, position, top, left, right, bottom, z-index, etc. */
/* } */

/* Contact Page Custom Styles */
.contact-svg-anim {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: floatMail 2.5s ease-in-out infinite;
}
@keyframes floatMail {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.contact-separator {
    width: 60px;
    height: 5px;
    margin: 0 auto 10px auto;
    border-radius: 3px;
    background: linear-gradient(90deg, #3468c0 0%, #ffa424 100%);
    opacity: 0.8;
}
.card.contact-highlight {
    border: 2.5px solid #3468c0;
    box-shadow: 0 8px 32px 0 rgba(52,104,192,0.10), 0 1.5px 8px 0 rgba(255,164,36,0.10);
    border-radius: 18px;
    background: linear-gradient(135deg, #fff 80%, #f1f5f9 100%);
    transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
}
.card.contact-highlight:hover {
    box-shadow: 0 12px 36px 0 rgba(52,104,192,0.18), 0 3px 12px 0 rgba(255,164,36,0.15);
    border-color: #ffa424;
    transform: translateY(-4px) scale(1.02);
}
.card.contact-highlight .card-body h4,
.card.contact-highlight .card-body h5 {
    color: #3468c0;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.card.contact-highlight .card-body i {
    font-size: 1.2em;
    color: #ffa424;
}
.card.contact-highlight .card-body a.text-primary {
    color: #3468c0 !important;
}
.card.contact-highlight .card-body a.text-primary:hover {
    color: #ffa424 !important;
}

/* Contact Information Card with Map */
.contact-info-card {
    min-height: 540px;
    padding-bottom: 0;
    overflow: visible;
}
.contact-map-container {
    width: 100%;
    height: 260px;
    border-radius: 0 0 0 0;
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.contact-map {
    width: 100%;
    height: 100%;
    border: 0;
    min-height: 220px;
    filter: grayscale(0.1) contrast(1.1) brightness(0.98);
    border-radius: 0 0 0 0;
}
.contact-info-box {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 6px 32px 0 rgba(52,104,192,0.10), 0 1.5px 8px 0 rgba(255,164,36,0.10);
    margin-top: -48px;
    max-width: 90%;
    position: relative;
    z-index: 2;
    text-align: center;
}
@media (max-width: 991px) {
    .contact-info-card {
        min-height: 420px;
    }
    .contact-map-container {
        height: 180px;
    }
    .contact-info-box {
        margin-top: -36px;
        padding: 1.5rem 1rem;
    }
}
@media (max-width: 575px) {
    .contact-info-card {
        min-height: 320px;
    }
    .contact-map-container {
        height: 120px;
    }
    .contact-info-box {
        margin-top: -24px;
        padding: 1rem 0.5rem;
    }
}

/* Cuadro flotante sobre el mapa en Contact Information */
.contact-map-container {
    position: relative;
    height: 400px;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    border-radius: 18px;
    box-shadow: 0 6px 32px 0 rgba(52,104,192,0.10), 0 1.5px 8px 0 rgba(255,164,36,0.10);
    overflow: hidden;
}
.contact-map {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 18px;
}
@media (min-width: 1200px) {
    .contact-map-container {
        max-width: 800px;
    }
}
@media (max-width: 991px) {
    .contact-map-container {
        height: 220px;
        max-width: 98vw;
    }
    .contact-map {
        min-height: 180px;
    }
}
@media (max-width: 575px) {
    .contact-map-container {
        height: 120px;
        max-width: 100vw;
    }
    .contact-map {
        min-height: 100px;
    }
}

.contact-info-box-overlay.right {
    left: auto;
    right: 18px;
    top: 18px;
    transform: none;
    text-align: left;
    min-width: 180px;
    max-width: 240px;
    padding: 0.7rem 1rem;
    font-size: 0.97rem;
    opacity: 0.96;
}
@media (max-width: 991px) {
    .contact-info-box-overlay.right {
        right: 6px;
        top: 6px;
        min-width: 120px;
        max-width: 180px;
        font-size: 0.93rem;
        padding: 0.5rem 0.6rem;
    }
}

/* =========================================
    Website Tutorial Section Styles
   ========================================= */
.website-tutorial-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%);
    position: relative;
    overflow: hidden;
}

.tutorial-content {
    position: relative;
    z-index: 2;
}

.tutorial-header {
    text-align: center;
    margin-bottom: 4rem;
}

.tutorial-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 107, 53, 0.1);
    color: var(--swappit-orange);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tutorial-title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--neutral-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.tutorial-subtitle {
    font-size: 1.1rem;
    color: var(--neutral-medium);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.video-container {
    margin: 3rem 0 4rem 0;
    display: flex;
    justify-content: center;
}

.video-wrapper {
    position: relative;
    background: var(--background-white);
    border-radius: 18px;
    box-shadow: 0 6px 32px 0 rgba(52,104,192,0.10), 0 1.5px 8px 0 rgba(255,164,36,0.10);
    overflow: hidden;
    max-width: 800px;
    width: 100%;
}

.tutorial-video {
    width: 100%;
    height: auto;
    min-height: 400px;
    display: block;
    border-radius: 18px;
}

.video-loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    z-index: 10;
}

.loading-spinner {
    text-align: center;
    color: var(--swappit-blue);
}

.loading-spinner i {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.loading-spinner p {
    font-family: var(--font-primary);
    font-weight: 600;
    margin: 0;
}

.video-error-message {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    z-index: 10;
    text-align: center;
    padding: 2rem;
}

.video-error-message i {
    font-size: 3rem;
    color: var(--swappit-orange);
    margin-bottom: 1rem;
}

.video-error-message p {
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--neutral-dark);
    margin-bottom: 1.5rem;
}


/* Responsive Design for Website Tutorial */
@media (max-width: 768px) {
    .website-tutorial-section {
        padding: 4rem 0;
    }
    
    .tutorial-title {
        font-size: 2rem;
    }
    
    .tutorial-subtitle {
        font-size: 1rem;
    }
    
    .tutorial-video {
        min-height: 250px;
    }
}

@media (max-width: 480px) {
    .tutorial-title {
        font-size: 1.8rem;
    }
    
    .tutorial-video {
        min-height: 200px;
    }
}

/* =========================================
    Swappit Zone Section Styles
   ========================================= */
.swappit-zone-section {
    position: relative;
    padding: 80px 0;
    background: none;
    overflow: hidden;
    min-height: 450px;
    cursor: grab;
    user-select: none;
}

.swappit-zone-section:active {
    cursor: grabbing;
}

.swappit-zone-section.dragging {
    cursor: grabbing;
}

.swappit-zone-bg {
    background: url('/assets/logos/SwappZone.jpg') no-repeat center center;
    background-size: cover !important; /* Mantener tamaño original */
    background-attachment: fixed; /* Efecto parallax */
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    opacity: 1;
    filter: brightness(0.6) contrast(1.1) saturate(1.05);
    transform: none !important; /* Eliminar cualquier transformación */
}

/* Overlay oscuro para mejorar el contraste del texto */
.swappit-zone-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 2;
    pointer-events: none;
}

/* Tooltip de información del producto - ELIMINADOS */
/* .product-tooltip {
  position: absolute;
  background: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  z-index: 1000;
  pointer-events: none;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.product-tooltip.show {
  opacity: 1;
  transform: translateY(0);
}

.product-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: rgba(0, 0, 0, 0.9);
} */

.swappit-zone-content {
    position: relative;
    z-index: 2;
    padding: 0;
    pointer-events: none;
}

.swappit-zone-content * {
    pointer-events: auto;
}

/* Asegurar que el contenido no interfiera con el arrastre */
.swappit-zone-content .btn,
.swappit-zone-content a,
.swappit-zone-content button {
    pointer-events: auto;
}
.zone-text-content {
    padding: 2rem 0;
    color: #ffffff;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.zone-text-content p {
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.section-title {
    color: var(--swappit-orange);
    font-size: 4.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.8), 0 2px 8px rgba(52, 104, 192, 0.6);
    margin-bottom: 1.5rem;
    animation: swappZoneTitleIn 1.1s 0.2s cubic-bezier(.22,1.12,.58,1) both;
}

.section-subtitle {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 0;
    animation: swappZoneSubtitleIn 1.1s 0.5s cubic-bezier(.22,1.12,.58,1) both;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8), 0 1px 4px rgba(52, 104, 192, 0.4);
    line-height: 1.4;
    font-weight: 500;
}

.zone-cards-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 3rem 0;
    flex-wrap: wrap;
}

.zone-cards-container-horizontal {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

@keyframes swappZoneTitleIn {
    0% { opacity: 0; transform: translateY(-20px); }
    100% { opacity: 1; transform: translateY(0); }
}
@keyframes swappZoneSubtitleIn {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}
.swappit-benefit-card {
  background: linear-gradient(135deg, #3468c0 0%, #2a5aa0 50%, #1e3a8a 100%);
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(52, 104, 192, 0.3), 
              0 4px 10px rgba(52, 104, 192, 0.2),
              inset 0 1px 0 rgba(255, 255, 255, 0.2);
  padding: 2rem 1.5rem;
  width: 220px;
  min-width: 200px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: swappZoneCardIn 1.1s cubic-bezier(.22,1.12,.58,1) both;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.swappit-benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.swappit-benefit-card:hover::before {
  left: 100%;
}

.swappit-benefit-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 40px rgba(52, 104, 192, 0.4), 
              0 8px 20px rgba(52, 104, 192, 0.3),
              inset 0 1px 0 rgba(255, 255, 255, 0.3);
  background: linear-gradient(135deg, #2a5aa0 0%, #1e40af 50%, #1e3a8a 100%);
}

.swappit-benefit-card:active {
  transform: translateY(-4px) scale(0.98);
  transition: all 0.1s ease;
}

/* Card Content Styling */
.swappit-benefit-card h5 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}

.swappit-benefit-card p {
  font-size: 0.95rem;
  margin-bottom: 0;
  opacity: 0.95;
  line-height: 1.4;
  font-weight: 400;
  position: relative;
  z-index: 2;
}

/* Icon Styling */
.swappit-benefit-card i {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  display: block;
  opacity: 0.9;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}

/* Individual Card Animations */
.swappit-benefit-card:nth-child(1) {
  animation-delay: 0.1s;
}

.swappit-benefit-card:nth-child(2) {
  animation-delay: 0.2s;
}

.swappit-benefit-card:nth-child(3) {
  animation-delay: 0.3s;
}

/* Enhanced Animation */
@keyframes swappZoneCardIn {
  0% { 
    opacity: 0; 
    transform: translateY(50px) scale(0.8); 
  }
  50% {
    opacity: 0.8;
    transform: translateY(-10px) scale(1.05);
  }
  100% { 
    opacity: 1; 
    transform: translateY(0) scale(1); 
  }
}

/* Glow Effect */
.swappit-benefit-card::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #3468c0, #2a5aa0, #1e40af, #3468c0);
  border-radius: 22px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.swappit-benefit-card:hover::after {
  opacity: 0.7;
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from {
    box-shadow: 0 0 20px rgba(52, 104, 192, 0.5);
  }
  to {
    box-shadow: 0 0 30px rgba(52, 104, 192, 0.8), 0 0 40px rgba(52, 104, 192, 0.6);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .swappit-benefit-card {
    width: 200px;
    padding: 1.5rem 1.2rem;
  }
  
  .swappit-benefit-card h5 {
    font-size: 1.2rem;
  }
  
  .swappit-benefit-card p {
    font-size: 0.9rem;
  }
  
  .swappit-benefit-card i {
    font-size: 2rem;
  }
}

.zone-cta {
  background: rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  box-shadow: 0 12px 40px rgba(52,104,192,0.15);
  margin-top: 3rem;
  text-align: center;
  animation: swappZoneCtaIn 1.2s 0.8s cubic-bezier(.22,1.12,.58,1) both;
  position: relative;
  transition: all 0.5s ease;
}

.zone-cta.hidden {
  opacity: 0;
  transform: translateY(20px);
  max-height: 0;
  padding: 0;
  margin: 0;
  overflow: hidden;
}

/* Cuando el CTA está cerrado, expandir la sección */
.swappit-zone-section.cta-closed {
  padding: 150px 0;
  min-height: 700px;
}

.swappit-zone-section.cta-closed .zone-text-content {
  padding: 4rem 0;
}

.swappit-zone-section.cta-closed .zone-cards-container {
  padding: 4rem 0;
}

.cta-close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255,255,255,0.2);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.cta-close-btn:hover {
  background: rgba(255,255,255,0.3);
  transform: scale(1.1);
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}
@keyframes swappZoneCtaIn {
  0% { opacity: 0; transform: scale(0.95); }
  100% { opacity: 1; transform: scale(1); }
}

.zone-cta h3 {
  color: #fff;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 8px #0005;
}

.zone-cta p {
  color: #e2e8f0;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.zone-cta .btn-primary-large, .zone-cta .btn-outline-primary-large {
  font-size: 1.1rem;
  padding: 0.9rem 2.2rem;
  border-radius: 30px;
  font-weight: 700;
  margin: 0 0.5rem;
  box-shadow: 0 2px 12px #3468c033;
  transition: background 0.3s, color 0.3s, transform 0.2s;
}

.zone-cta .btn-primary-large:hover {
  background: #fff;
  color: #3468c0;
  transform: translateY(-3px) scale(1.04);
}

.zone-cta .btn-outline-primary-large {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.zone-cta .btn-outline-primary-large:hover {
  background: #3468c0;
  color: #fff;
  border-color: #3468c0;
  transform: translateY(-3px) scale(1.04);
}

.zone-feature-card {
    background: var(--background-white);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(52, 104, 192, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(52, 104, 192, 0.05);
    position: relative;
    overflow: hidden;
}

.zone-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--swappit-blue), var(--swappit-orange));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.zone-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(52, 104, 192, 0.15);
}

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

.zone-feature-card .feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--swappit-blue), var(--swappit-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.zone-feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.zone-feature-card .feature-icon i {
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.zone-feature-card h3 {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--neutral-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.zone-feature-card p {
    color: var(--neutral-medium);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Zone Stats */
.zone-stats {
    background: var(--background-white);
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 8px 32px rgba(52, 104, 192, 0.1);
    margin-top: 3rem;
    border: 1px solid rgba(52, 104, 192, 0.05);
}

.stat-item {
    text-align: center;
    padding: 1rem;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-4px);
}

.stat-number {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--swappit-blue);
    margin-bottom: 0.5rem;
    line-height: 1;
    background: linear-gradient(135deg, var(--swappit-blue), var(--swappit-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-family: var(--font-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--neutral-medium);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Zone Call to Action */
.zone-cta {
    background: linear-gradient(135deg, var(--swappit-blue), var(--swappit-orange));
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    color: white;
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
}

.zone-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.zone-cta h3 {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.zone-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.cta-buttons {
    position: relative;
    z-index: 2;
}

.btn-outline-primary-large {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 0.875rem 2rem;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-outline-primary-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: white;
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-outline-primary-large:hover {
    color: var(--swappit-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.btn-outline-primary-large:hover::before {
    left: 0;
}

/* Responsive Design for Swappit Zone */
@media (max-width: 991px) {
    .swappit-zone-section {
        padding: 60px 0;
        min-height: 380px;
    }
    
    .swappit-zone-bg {
        background: url('/assets/logos/SwappZone.jpg') no-repeat center center;
        background-size: cover;
        background-attachment: fixed; /* Mantener parallax en tablets */
    }
    
    .zone-cards-container {
        align-items: center;
        margin-top: 1.5rem;
    }
    
    .swappit-benefit-card {
        width: 200px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .zone-stats {
        padding: 1.5rem 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .zone-cta {
        padding: 1.5rem 1rem;
    }
    
    .zone-cta h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 767px) {
    .swappit-zone-section {
        padding: 40px 0;
        min-height: 320px;
    }
    
    .swappit-zone-bg {
        background: url('/assets/logos/SwappZone.jpg') no-repeat center center;
        background-size: cover;
        background-attachment: fixed; /* Mantener parallax en móviles medianos */
    }
    
    .zone-text-content {
        padding: 1.5rem 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .swappit-zone-section {
        padding: 30px 0;
        min-height: 280px;
    }
    
    .swappit-zone-bg {
        background: url('/assets/logos/SwappZone.jpg') no-repeat center center;
        background-size: cover;
        background-attachment: fixed; /* Mantener parallax en móviles pequeños */
    }
    
    .zone-text-content {
        padding: 1rem 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
}

/* =========================================
    Mission & Values Section Styles
   ========================================= */
.about-mission-values {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.mission-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 25px;
    padding: 5rem 4rem;
    box-shadow: 0 20px 60px rgba(52, 104, 192, 0.15), 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
    text-align: center;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(52, 104, 192, 0.1);
}

.mission-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(52, 104, 192, 0.05) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    z-index: 1;
}

.mission-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 164, 36, 0.03) 100%);
    z-index: 1;
}

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

.mission-card .badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--swappit-blue), var(--swappit-orange));
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(52, 104, 192, 0.4);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.mission-card .badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(52, 104, 192, 0.5);
}

.mission-card h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--neutral-dark);
    margin-bottom: 2rem;
    line-height: 1.2;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, var(--swappit-blue), var(--swappit-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mission-card .lead {
    font-size: 1.2rem;
    color: var(--neutral-medium);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    font-weight: 500;
}

.feature-list-new {
    list-style: none;
    padding: 0;
    margin: 2.5rem 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.feature-list-new li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: var(--neutral-dark);
    padding: 1rem;
    border-radius: 12px;
    background: rgba(52, 104, 192, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(52, 104, 192, 0.1);
    font-size: 1.1rem;
}

.feature-list-new li:hover {
    background: rgba(52, 104, 192, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 104, 192, 0.2);
}

.feature-list-new li i {
    color: var(--swappit-orange);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.feature-list-new li:hover i {
    color: var(--swappit-blue);
    transform: scale(1.1);
}

.values-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto 0;
    padding: 0 1rem;
}

.value-card-new {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.value-card-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.value-icon-new {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--swappit-blue), var(--swappit-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon-new i {
    font-size: 2rem;
    color: white;
}

.value-card-new h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--neutral-dark);
    margin-bottom: 1rem;
}

.value-card-new p {
    color: var(--neutral-medium);
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for Mission Section */
@media (max-width: 768px) {
    .about-mission-values {
        padding: 3rem 0;
    }
    
    .mission-card {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .mission-card h2 {
        font-size: 2rem;
    }
    
    .mission-card .lead {
        font-size: 1rem;
    }
    
    .feature-list-new {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .values-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .value-card-new {
        padding: 1.5rem;
    }
    
    .value-icon-new {
        width: 60px;
        height: 60px;
    }
    
    .value-icon-new i {
        font-size: 1.5rem;
    }
}

/* Swapp-it Zone Expanded Content */
.zone-details {
    margin-top: 2rem;
}

.detail-item {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(52, 104, 192, 0.05);
    border-radius: 12px;
    border-left: 4px solid #3468c0;
}

.detail-item h4 {
    color: #3468c0;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.detail-item p {
    color: #666;
    margin-bottom: 0;
    line-height: 1.5;
}

/* Enhanced Benefit Cards */
.swappit-benefit-card {
    background: #3468c0;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(52,104,192,0.2);
    padding: 1.5rem 1.8rem;
    width: 220px;
    text-align: center;
    transition: all 0.3s ease;
    animation: swappZoneCardIn 1.1s cubic-bezier(.22,1.12,.58,1) both;
    cursor: pointer;
}

.swappit-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(52,104,192,0.3);
    background: #2a5aa0;
}

.swappit-benefit-card i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.swappit-benefit-card h5 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.swappit-benefit-card p {
    font-size: 0.9rem;
    margin-bottom: 0;
    opacity: 0.9;
}

/* Statistics Section */
.zone-stats {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem;
    border-radius: 20px;
    margin: 2rem 0;
}

.zone-stats h3 {
    color: #3468c0;
    font-weight: 700;
}

.stat-item {
    padding: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3468c0;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #666;
    font-weight: 500;
    margin-bottom: 0;
}

/* Modal Styles */
.modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.modal-header {
    background: linear-gradient(135deg, #3468c0 0%, #2a5aa0 100%);
    color: white;
    border-radius: 15px 15px 0 0;
    border-bottom: none;
}

.modal-title {
    font-weight: 600;
}

.btn-close {
    filter: invert(1);
}

.step-item {
    padding: 1rem;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #3468c0;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.feature-item {
    padding: 1rem;
    border-radius: 10px;
    background: rgba(52, 104, 192, 0.05);
    margin-bottom: 1rem;
}

.feature-item h6 {
    color: #3468c0;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .swappit-benefit-card {
        width: 200px;
        padding: 1.2rem 1.5rem;
    }
    
    .zone-details {
        margin-top: 1.5rem;
    }
    
    .detail-item {
        padding: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .zone-stats {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* Swapp-it Zone Text Content */
.zone-description {
    margin-top: 1.5rem;
}

.main-description {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.description-text {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

.key-features {
    background: rgba(52, 104, 192, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    margin: 1.5rem 0;
    border-left: 4px solid #3468c0;
}

.key-features h4 {
    color: #3468c0;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.feature-list li {
    padding: 0.5rem 0;
    color: #555;
    line-height: 1.5;
}

.feature-list li strong {
    color: #3468c0;
}

.call-to-action-text {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    font-style: italic;
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(52, 104, 192, 0.08);
    border-radius: 8px;
    border-left: 3px solid #3468c0;
}

/* Additional Information Cards */
.zone-additional-info {
    margin-top: 1.5rem;
    width: 100%;
    max-width: 800px;
    color: #000;
}

.zone-additional-info p {
    color: #000;
    text-shadow: 0 2px 8px rgba(255, 255, 255, 0.5);
}

.zone-additional-info h5 {
    color: #000;
    text-shadow: 0 2px 8px rgba(255, 255, 255, 0.5);
}

.info-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    height: 100%;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.info-card h5 {
    color: #3468c0;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.info-card h5 i {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.info-card p {
    color: #666;
    line-height: 1.5;
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .swappit-benefit-card {
        width: 200px;
        padding: 1.2rem 1.5rem;
    }
    
    .main-description {
        font-size: 1rem;
    }
    
    .description-text {
        font-size: 0.95rem;
    }
    
    .key-features {
        padding: 1.2rem;
    }
    
    .info-card {
        margin-bottom: 1rem;
    }
}

.quick-tips {
    background: rgba(255, 255, 255, 0.95);
    color: #1e293b;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    text-align: left;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 4px 12px rgba(52, 104, 192, 0.2);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.quick-tips::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3468c0, #ffa424, #3468c0);
}

.quick-tips h5 {
    color: #3468c0;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.quick-tips-title-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.quick-tips-title {
    color: #3468c0;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.quick-tips-title i {
    margin-right: 0.8rem;
    color: #ffa424;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-size: 1.6rem;
}

.quick-tips-marketplace-btn {
    background: linear-gradient(135deg, #ffa424, #ff8c00);
    color: white;
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 164, 36, 0.3);
    position: relative;
    overflow: hidden;
}

.quick-tips-marketplace-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.quick-tips-marketplace-btn:hover::before {
    left: 100%;
}

.quick-tips-marketplace-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 164, 36, 0.5);
    color: white;
    text-decoration: none;
}

.quick-tips-marketplace-btn i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.quick-tips-marketplace-btn:hover i {
    transform: translateX(3px);
}

.quick-tips h5 i {
    margin-right: 0.8rem;
    color: #ffa424;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-size: 1.6rem;
}

.quick-tips ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-tips li {
    padding: 0.8rem 0;
    color: #1e293b;
    font-size: 1.3rem;
    position: relative;
    padding-left: 2rem;
    font-weight: 500;
    line-height: 1.5;
}

.quick-tips li:before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0.8rem;
    color: #ffa424;
    font-weight: bold;
    font-size: 1.2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Hover effect for the entire quick-tips section */
.quick-tips:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4), 0 8px 20px rgba(52, 104, 192, 0.3);
    transition: all 0.3s ease;
}

/* Visual Steps Container */
.steps-visual-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    padding: 3rem;
    margin: 3rem 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 8px 20px rgba(52, 104, 192, 0.2);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    max-width: 900px;
    margin: 3rem auto;
}

.steps-visual-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #3468c0, #ffa424, #3468c0, #ffa424, #3468c0);
    border-radius: 25px 25px 0 0;
}

.steps-visual-title {
    text-align: center;
    margin-bottom: 2rem;
    color: #1e293b;
    font-size: 2rem;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.steps-visual-content {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    position: relative;
    min-height: 400px;
}

.steps-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-visual-item {
    background: linear-gradient(135deg, #3468c0, #2a5aa0);
    color: white;
    padding: 1.5rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 4px 15px rgba(52, 104, 192, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.step-visual-item:nth-child(even) {
    background: linear-gradient(135deg, #ffa424, #ff8c00);
    box-shadow: 0 4px 15px rgba(255, 164, 36, 0.3);
}

.step-visual-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(52, 104, 192, 0.4);
}

.step-visual-item:nth-child(even):hover {
    box-shadow: 0 8px 25px rgba(255, 164, 36, 0.4);
}

.step-visual-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.step-visual-text {
    flex: 1;
}

.step-visual-text h6 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.step-visual-text p {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.9;
    line-height: 1.4;
}

/* Central Circle */
.central-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    z-index: 10;
    border: 4px solid #f8fafc;
}

.central-circle i {
    font-size: 3rem;
    background: linear-gradient(135deg, #3468c0, #ffa424);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* QR Code Section */
.qr-section {
    background: linear-gradient(135deg, #ffa424, #ff8c00);
    color: white;
    padding: 1.5rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 4px 15px rgba(255, 164, 36, 0.3);
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}

.qr-section:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 164, 36, 0.4);
}

.qr-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.qr-text {
    flex: 1;
}

.qr-text h6 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.qr-text p {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.9;
    line-height: 1.4;
}

/* Individual Steps Section */
.steps-section {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    padding: 3rem;
    margin: 3rem 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 8px 20px rgba(52, 104, 192, 0.2);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.steps-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #3468c0, #ffa424, #3468c0, #ffa424, #3468c0);
    border-radius: 25px 25px 0 0;
}

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

.steps-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.steps-title i {
    font-size: 2.5rem;
    color: #ffa424;
    text-shadow: 0 2px 4px rgba(255, 164, 36, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

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

.steps-title h5 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #3468c0, #ffa424);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.steps-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    font-weight: 500;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Steps Container Layout */
.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Individual Step Cards */
.step-card {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08), 0 4px 10px rgba(52, 104, 192, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3468c0, #ffa424);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.step-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15), 0 8px 20px rgba(52, 104, 192, 0.2);
    border-color: rgba(52, 104, 192, 0.2);
}

/* Step Number Badge */
.step-number {
    position: absolute;
    top: -10px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3468c0, #2a5aa0);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(52, 104, 192, 0.4);
    z-index: 2;
}

.step-2 .step-number,
.step-4 .step-number {
    background: linear-gradient(135deg, #ffa424, #ff8c00);
    box-shadow: 0 4px 15px rgba(255, 164, 36, 0.4);
}

/* Step Icon */
.step-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3468c0, #2a5aa0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 1.5rem;
    box-shadow: 0 6px 20px rgba(52, 104, 192, 0.3);
    transition: all 0.3s ease;
}

.step-2 .step-icon,
.step-4 .step-icon {
    background: linear-gradient(135deg, #ffa424, #ff8c00);
    box-shadow: 0 6px 20px rgba(255, 164, 36, 0.3);
}

.step-card:hover .step-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Step Content */
.step-content h6 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.step-content p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

/* Marketplace Button */
.marketplace-button {
    background: linear-gradient(135deg, #ffa424, #ff8c00);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 164, 36, 0.4);
    position: relative;
    overflow: hidden;
    margin-top: 2rem;
}

.marketplace-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.marketplace-button:hover::before {
    left: 100%;
}

.marketplace-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 164, 36, 0.6);
    color: white;
    text-decoration: none;
}

.marketplace-button i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.marketplace-button:hover i {
    transform: translateX(5px);
}

/* Responsive Design for Visual Steps */
@media (max-width: 768px) {
    .steps-visual-container {
        padding: 2rem;
        margin: 2rem 1rem;
    }
    
    .steps-visual-title {
        font-size: 1.5rem;
    }
    
    .steps-visual-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .central-circle {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin: 1rem auto;
        width: 100px;
        height: 100px;
    }
    
    .central-circle i {
        font-size: 2.5rem;
    }
    
    .step-visual-item {
        padding: 1rem;
    }
    
    .step-visual-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .step-visual-text h6 {
        font-size: 1rem;
    }
    
    .step-visual-text p {
        font-size: 0.85rem;
    }
    
    .qr-section {
        padding: 1rem;
    }
    
    .qr-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .qr-text h6 {
        font-size: 1rem;
    }
    
    .qr-text p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .steps-visual-container {
        padding: 1.5rem;
        margin: 1.5rem 0.5rem;
    }
    
    .steps-visual-title {
        font-size: 1.3rem;
    }
    
    .central-circle {
        width: 80px;
        height: 80px;
    }
    
    .central-circle i {
        font-size: 2rem;
    }
    
    .step-visual-item {
        padding: 0.8rem;
        gap: 0.8rem;
    }
    
    .step-visual-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .step-visual-text h6 {
        font-size: 0.95rem;
    }
    
    .step-visual-text p {
        font-size: 0.8rem;
    }
}

/* Responsive Design for Steps */
@media (max-width: 768px) {
    .steps-section {
        padding: 2rem;
        margin: 2rem 0;
    }
    
    .steps-title h5 {
        font-size: 2rem;
    }
    
    .steps-title i {
        font-size: 2rem;
    }
    
    .steps-subtitle {
        font-size: 1rem;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .step-card {
        padding: 1.5rem;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    
    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .step-content h6 {
        font-size: 1.2rem;
    }
    
    .step-content p {
        font-size: 0.95rem;
    }
    
    .marketplace-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .steps-section {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .steps-title h5 {
        font-size: 1.8rem;
    }
    
    .steps-title i {
        font-size: 1.8rem;
    }
    
    .steps-subtitle {
        font-size: 0.95rem;
    }
    
    .steps-container {
        gap: 1rem;
    }
    
    .step-card {
        padding: 1.2rem;
    }
    
    .step-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        top: -8px;
        right: 15px;
    }
    
    .step-content h6 {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }
    
    .step-content p {
        font-size: 0.9rem;
    }
    
    .marketplace-button {
        padding: 0.7rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* Responsive Design for Quick Tips */
@media (max-width: 768px) {
    .quick-tips {
        padding: 1.5rem;
    }
    
    .quick-tips h5 {
        font-size: 1.5rem;
    }
    
    .quick-tips h5 i {
        font-size: 1.3rem;
    }
    
    .quick-tips-title-container {
        gap: 0.8rem;
    }
    
    .quick-tips-title {
        font-size: 1.5rem;
    }
    
    .quick-tips-title i {
        font-size: 1.3rem;
    }
    
    .quick-tips-marketplace-btn {
        padding: 0.5rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .quick-tips li {
        font-size: 1.1rem;
        padding-left: 1.8rem;
    }
    
    .quick-tips li:before {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .quick-tips h5 {
        font-size: 1.3rem;
    }
    
    .quick-tips h5 i {
        font-size: 1.1rem;
    }
    
    .quick-tips li {
        font-size: 1rem;
        padding-left: 1.5rem;
    }
}

.featured-categories {
    background: white;
    padding: 1.25rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
}

.featured-categories h5 {
    color: #3468c0;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.featured-categories h5 i {
    margin-right: 0.5rem;
    color: #ffd700;
}

.category-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.tag {
    background: #3468c0;
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tag:hover {
    background: #2a5aa0;
    transform: translateY(-1px);
}

/* Responsive Design - Updated */
@media (max-width: 991px) {
    .swappit-zone-bg {
        background-size: 100%;
        opacity: 1;
        filter: brightness(0.5) contrast(1.2) saturate(1.1);
    }
    
    .swappit-zone-section::before {
        background: rgba(0, 0, 0, 0.5); /* Overlay más oscuro en móviles */
    }
    
    .zone-cards-container-horizontal {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .swappit-benefit-card {
        width: 100%;
        max-width: 400px;
    }
    
    .zone-vertical-layout {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .swappit-zone-bg {
        background-size: 100%;
        opacity: 1;
        filter: brightness(0.45) contrast(1.3) saturate(1.2);
    }
    
    .swappit-zone-section::before {
        background: rgba(0, 0, 0, 0.6); /* Overlay aún más oscuro en móviles pequeños */
    }
    
    .swappit-benefit-card {
        width: 100%;
        max-width: 350px;
        padding: 1.5rem 1.2rem;
    }
    
    .swappit-benefit-card h5 {
        font-size: 1.2rem;
    }
    
    .swappit-benefit-card p {
        font-size: 0.9rem;
    }
    
    .swappit-benefit-card i {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .swappit-zone-bg {
        background-size: 100%;
        filter: brightness(0.4) contrast(1.4) saturate(1.3);
    }
    
    .zone-vertical-layout {
        gap: 1rem;
    }
    
    .swappit-benefit-card {
        padding: 1.2rem 1rem;
        min-height: 160px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .zone-cards-container-horizontal {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .swappit-benefit-card {
        width: 180px;
        min-width: 160px;
        padding: 1.5rem 1rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .zone-cards-container-horizontal {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .swappit-benefit-card {
        width: 100%;
        max-width: 300px;
    }
}

/* Responsive adjustments for larger text */
@media (max-width: 1200px) {
  .section-title{
    font-size: 4rem;
  }
  
  .section-subtitle {
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .section-title{
    font-size: 3.2rem;
    letter-spacing: 1px;
  }
  
  .section-subtitle {
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 2.8rem;
  }
  
  .section-subtitle {
    font-size: 1.2rem;
  }
}

.zone-vertical-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 2rem;
}

.zone-text-content p {
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.section-title {
  color: #3468c0;
  font-size: 4.5rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.8), 0 2px 8px rgba(52, 104, 192, 0.6);
  margin-bottom: 1.5rem;
  animation: swappZoneTitleIn 1.1s 0.2s cubic-bezier(.22,1.12,.58,1) both;
  text-align: center;
  width: 100%;
}

.section-subtitle {
  color: #ffffff;
  font-size: 1.8rem;
  margin-bottom: 0;
  animation: swappZoneSubtitleIn 1.1s 0.5s cubic-bezier(.22,1.12,.58,1) both;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8), 0 1px 4px rgba(52, 104, 192, 0.4);
  line-height: 1.4;
  font-weight: 500;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}