:root {
    --apple-blue: #007AFF;
    --apple-dark: #1D1D1F;
    --apple-light: #F5F5F7;
    --apple-gray: #86868B;
    --apple-border: #D2D2D7;
    --success-green: #30D158;
    --warning-orange: #FF9500;
    --system-font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --radius: 12px;
    --radius-large: 24px;
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    --shadow-large: 0 16px 64px rgba(0, 0, 0, 0.15);
}

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

body {
    font-family: var(--system-font);
    color: orange;
    background: #ffffff;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
.display-large {
    font-size: clamp(3rem, 4vw, 4rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.display-medium {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.headline {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 600;
    line-height: 1.2;
}

.subheadline {
    font-size: 1.25rem;
    font-weight: 400;
    color: grey;
    line-height: 1.4;
}

.subheadline1 {
    font-size: 1.25rem;
    font-weight: 400;
    color: rgb(0, 0, 0);
    line-height: 1.4;
}

.subheadline2 {
    font-size: 1.25rem;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.4;
}

.body-large {
    font-size: 1.125rem;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: clamp(60px, 10vw, 10px) 0;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--apple-border);
    z-index: 1000;
    transition: all 0.3s ease;
    height: 80px;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    position: relative;
}

/* Logo flotante */
.nav-logo {
    position: absolute;
    top: 0px;
    left: 20px;
    z-index: 1001;
}

.nav-logo img {
    width: 250px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
}

/* Menú de navegación */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-left: 300px;
}

.nav-menu a {
    color: var(--apple-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.2s ease;
    position: relative;
    padding: 8px 0;
}

.nav-menu a:hover {
    color: var(--apple-blue);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--apple-blue);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a.active {
    color: var(--apple-blue);
}

.nav-menu a.active::after {
    width: 100%;
}

/* CTA Button */
.nav-cta {
    background: #128c7e;
    color: #b1e8d0;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.nav-cta:hover {
    background: #128c7e8c;
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.75rem;
    color: var(--apple-dark);
    cursor: pointer;
    padding: 8px 12px;
    z-index: 1002;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    color: var(--apple-blue);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 24px;
    overflow-y: auto;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu.active {
    display: block;
    opacity: 1;
    visibility: visible;
}

.mobile-menu-toggle:active {
    transform: scale(0.95);
}

.mobile-menu a {
    display: block;
    padding: 20px 16px;
    color: var(--apple-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    border-bottom: 1px solid var(--apple-border);
    transition: all 0.3s ease;
}

.mobile-menu a:last-child {
    border-bottom: none;
}

.mobile-menu a:hover,
.mobile-menu a:active {
    color: var(--apple-blue);
    padding-left: 24px;
    background: var(--apple-light);
}

.mobile-menu .nav-cta {
    display: inline-block;
    margin-top: 16px;
    text-align: center;
    width: 100%;
}

/* About Section */
.about-section {
    background: #000000;
    border-bottom: 1px solid var(--apple-border);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 32px;
    color: orange;
}

.about-text .body-large {
    margin-bottom: 24px;
    color: #ffffff;
    line-height: 1.7;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 48px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: orange;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 0.9375rem;
    color: var(--apple-gray);
    font-weight: 500;
}

.about-image {
    display: flex;
    justify-content: center;
}

.about-image-placeholder {
    width: auto;
    height: 400px;
    background: #b1e8d0;
    border-radius: var(--radius-large);
    /* border: 1px dashed var(--apple-border); */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: var(--apple-gray);
    font-size: 1.125rem;
    position: relative;
    overflow: hidden;
}

.about-image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.05) 0%, rgba(88, 86, 214, 0.05) 100%);
    border-radius: var(--radius-large);
}

.about-image-icon {
    width: 80px;
    height: 80px;
    background: var(--apple-blue);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    margin-bottom: 16px;
    z-index: 2;
    position: relative;
}

.about-image-placeholder>div:last-child {
    z-index: 2;
    position: relative;
    text-align: center;
}


/* Hero Section */
.hero {

    padding-top: 160px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url(images/hero3.png);
    opacity: 0.4;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 149, 0, 0.1);
    color: var(--warning-orange);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 32px;
    border: 1px solid rgba(255, 149, 0, 0.2);
}

.hero-title {
    margin-bottom: 24px;
    background: #000000;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    margin-bottom: 64px;
}

.cta-primary {
    background: #128c7e;
    color: white;
    padding: 16px 32px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cta-primary:hover {
    background: #128c7e8c;
    transform: translateY(-2px);
    box-shadow: var(--shadow-large);
}

.cta-secondary {
    background: transparent;
    color: var(--apple-blue);
    padding: 16px 32px;
    border: 2px solid var(--apple-blue);
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: var(--apple-blue);
    color: white;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 50px;
}

.hero-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-feature-icon {
    width: 48px;
    height: 48px;
    background: var(--apple-blue);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: white;
}

.hero-feature h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.hero-feature p {
    color: var(--apple-gray);
    font-size: 0.95rem;
}

/* Hero Image Slider - Reemplaza la sección "Hero Image Frame" */
.hero-image-frame {
    margin: 64px auto 0;
    max-width: 1200px;
    perspective: 1000px;
}

.hero-image-slider {
    background: #0000004a;
    border-radius: 24px;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    position: relative;
    overflow: hidden;
}

.hero-image-slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.3) 50%,
            transparent);
    z-index: 2;
}

/* Slider Track */
.slider-track {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
}

.slider-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    border-radius: 16px;
    overflow: hidden;
}

.slider-item.active {
    opacity: 1;
    z-index: 1;
}

.slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

/* Controles de navegación */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--apple-dark);
    z-index: 3;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.slider-nav:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.slider-nav.prev {
    left: 20px;
}

.slider-nav.next {
    right: 20px;
}

.slider-nav span {
    display: block;
    line-height: 1;
    margin-top: -4px;
}

/* Indicadores (dots) */
.slider-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.dot.active {
    background: white;
    width: 32px;
    border-radius: 5px;
    border-color: rgba(255, 255, 255, 0.3);
}

/* Animación de entrada suave */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.slider-item.active {
    animation: slideIn 0.8s ease-out;
}

/* Responsive Slider */
@media (max-width: 768px) {
    .hero-image-frame {
        margin: 48px auto 0;
    }

    .slider-track {
        aspect-ratio: 4/3;
    }

    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .slider-nav.prev {
        left: 12px;
    }

    .slider-nav.next {
        right: 12px;
    }

    .slider-dots {
        bottom: 16px;
        gap: 8px;
    }

    .dot {
        width: 8px;
        height: 8px;
    }

    .dot.active {
        width: 24px;
    }
}

@media (max-width: 480px) {
    .slider-nav {
        width: 36px;
        height: 36px;
        font-size: 1.25rem;
    }

    .slider-nav.prev {
        left: 8px;
    }

    .slider-nav.next {
        right: 8px;
    }

    .slider-dots {
        bottom: 12px;
        gap: 6px;
    }

    .dot {
        width: 6px;
        height: 6px;
    }

    .dot.active {
        width: 20px;
    }
}

/* Problem Section */
.problem-section {
    background: var(--apple-light);
}

.problem-intro {
    text-align: center;
    margin-bottom: 64px;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.problem-card {
    background: white;
    padding: 32px;
    border-radius: var(--radius-large);
    box-shadow: var(--shadow);
    border: 1px solid var(--apple-border);
}

.problem-card h3 {
    color: black;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.problem-card p {
    color: var(--apple-gray);
    line-height: 1.6;
}

.problem-highlight {
    background: white;
    padding: 48px 32px;
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-large);
    text-align: center;
    margin-top: 48px;
    border: 2px solid #FF3B30;
}

.problem-highlight h3 {
    color: black;
    font-size: 1.5rem;
    font-weight: 700;
}

/* Solution Section */
.solution-header {
    text-align: center;
    margin-bottom: 80px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 48px;
    margin-bottom: 80px;
}

.process-card {
    text-align: center;
    position: relative;
}

.process-number {
    width: 56px;
    height: 56px;
    background: #128c7e;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0 auto 24px;
}

.process-time {
    background: #b1e8d040;
    color: #128c7e;
    padding: 8px 16px;
    border-radius: 16px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 16px;
}

.process-title {
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.process-description {
    color: var(--apple-gray);
    font-size: 1.0625rem;
    line-height: 1.6;
}

/* Web Preview Section */
.web-preview-section {
    background: var(--apple-dark);
    position: relative;
    overflow: hidden;
}

.web-preview-container {
    text-align: center;
    position: relative;
}

.web-preview-header {
    margin-bottom: 48px;
}

.web-preview-header h2 {
    color: white;
    margin-bottom: 16px;
}

.web-preview-header p {
    color: rgba(255, 255, 255, 0.7);
}

.web-preview-image {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-large);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--apple-light);

    /* Placeholder styling */
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--apple-gray);
    font-size: 1.125rem;
    position: relative;
}

.web-preview-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.1) 0%, rgba(88, 86, 214, 0.1) 100%);
    border-radius: var(--radius-large);
}

.web-preview-placeholder {
    z-index: 2;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.web-preview-icon {
    width: 80px;
    height: 80px;
    background: var(--apple-blue);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

/* Background pattern */
.web-preview-section::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"><defs><pattern id="grid-dark" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grid-dark)"/></svg>');
    opacity: 0.3;
}

/* ========================================
   PRICING SECTION - VERSIÓN MEJORADA
   ======================================== */

.pricing-section {
    background: linear-gradient(135deg, #000000 0%, #000000 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.pricing-section::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"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.pricing-header {
    text-align: center;
    margin-bottom: 48px;
    position: relative;
    z-index: 2;
}

.pricing-header h2 {
    font-size: 2.5rem;
    margin-bottom: 8px;
    color: white;
}

.pricing-header p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Wrapper principal */
.pricing-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Tarjeta principal de precio */
.pricing-main-card {
    background: white;
    border-radius: 24px;
    padding: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    margin-bottom: 48px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

/* Lado izquierdo - Precio y CTA */
.pricing-left {
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.pricing-badge-container {
    margin-bottom: 24px;
}

.pricing-badge {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Precio tachado y descuento */
.price-strike {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}

.old-price {
    font-size: 1.5rem;
    color: #999;
    text-decoration: line-through;
    font-weight: 600;
}

.discount-tag {
    background: #30D158;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
}

/* Precio actual */
.pricing-amount-large {
    margin-bottom: 32px;
}

.current-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 8px;
}

.current-price .currency {
    font-size: 2rem;
    font-weight: 600;
    color: #128c7e;
    margin-top: 8px;
    margin-right: 4px;
}

.current-price .amount {
    font-size: 5rem;
    font-weight: 800;
    color: #128c7e;
    line-height: 1;
    letter-spacing: -2px;
}

.current-price .period {
    font-size: 1.5rem;
    color: #666;
    margin-top: 8px;
    margin-left: 8px;
    font-weight: 600;
}

.pricing-subtitle {
    font-size: 1.125rem;
    color: #666;
    font-weight: 500;
}

/* CTA Button Grande */
.cta-primary-large {
    background: linear-gradient(135deg, #128c7e 0%, #0a6b5f 100%);
    color: white;
    padding: 20px 48px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.25rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(18, 140, 126, 0.4);
    margin-bottom: 24px;
}

.cta-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(18, 140, 126, 0.5);
}

.pricing-guarantee {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.8;
    text-align: left;
}

/* Lado derecho - Imagen */
.pricing-right {
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.seasonal-offer-image {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.seasonal-offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Placeholder para imagen */
.image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e8f5f3 0%, #d4ebe7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #128c7e;
    border-radius: 16px;
}

.placeholder-content {
    text-align: center;
    padding: 24px;
}

.placeholder-icon {
    font-size: 4rem;
    margin-bottom: 16px;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.placeholder-content p {
    font-size: 1.125rem;
    color: #128c7e;
    margin-bottom: 8px;
    font-weight: 500;
}

.placeholder-content small {
    font-size: 0.875rem;
    color: #666;
}

/* Grid de características moderno */
.features-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    background: white;
    padding: 48px;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.feature-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-column-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 8px;
    padding-bottom: 12px;
    border-bottom: 3px solid #128c7e;
}

.feature-item-modern {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.feature-item-modern .feature-check {
    width: 20px;
    height: 20px;
    background: #30D158;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-item-modern .feature-check::before {
    content: '✓';
    color: white;
    font-weight: 700;
    font-size: 0.75rem;
}

.feature-item-modern span {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #333;
}

/* ========================================
   RESPONSIVE - MOBILE
   ======================================== */

@media (max-width: 968px) {
    .pricing-main-card {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .pricing-left {
        padding: 40px 24px;
    }

    .pricing-right {
        min-height: 400px;
    }

    .current-price .amount {
        font-size: 4rem;
    }

    .features-grid-modern {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 32px 24px;
    }
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 60px 0;
    }

    .pricing-header h2 {
        font-size: 2rem;
    }

    .current-price .amount {
        font-size: 3.5rem;
    }

    .current-price .currency {
        font-size: 1.5rem;
    }

    .current-price .period {
        font-size: 1.25rem;
    }

    .cta-primary-large {
        padding: 18px 40px;
        font-size: 1.125rem;
    }

    .pricing-right {
        min-height: 350px;
    }
}

@media (max-width: 480px) {
    .pricing-left {
        padding: 32px 20px;
    }

    .old-price {
        font-size: 1.25rem;
    }

    .current-price .amount {
        font-size: 3rem;
    }

    .pricing-badge {
        font-size: 0.75rem;
        padding: 8px 18px;
    }

    .cta-primary-large {
        padding: 16px 32px;
        font-size: 1rem;
    }

    .pricing-right {
        min-height: 300px;
    }

    .features-grid-modern {
        padding: 24px 16px;
    }

    .feature-column-title {
        font-size: 1rem;
    }

    .feature-item-modern span {
        font-size: 0.875rem;
    }
}

/* Testimonials */
.testimonials-section {
    background: white;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 64px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.testimonial-card {
    background: #128c7e29;
    border-radius: var(--radius-large);
    padding: 32px;
    position: relative;
    border: 1px solid var(--apple-border);
}

.testimonial-quote {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--apple-dark);
    margin-bottom: 24px;
    position: relative;
}

.testimonial-quote::before {
    content: '"';
    font-size: 4rem;
    color: var(--apple-blue);
    position: absolute;
    top: -20px;
    left: -10px;
    opacity: 0.3;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--apple-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.125rem;
}

.author-info h4 {
    font-weight: 600;
    color: var(--apple-dark);
    margin-bottom: 4px;
}

.author-info p {
    color: var(--apple-gray);
    font-size: 0.9375rem;
}

.testimonial-result {
    background: rgba(48, 209, 88, 0.1);
    color: var(--success-green);
    padding: 8px 16px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.875rem;
    display: inline-block;
    margin-top: 16px;
}

/* Services Section - Para quién es Express */
.services-section {
    background: white;
}

.services-header {
    text-align: center;
    margin-bottom: 64px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card {
    background: #2320200a;
    padding: 40px 32px;
    border-radius: var(--radius-large);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--apple-border);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.02) 0%, rgba(88, 86, 214, 0.02) 100%);
    transition: opacity 0.3s ease;
    opacity: 0;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-large);
    background: white;
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 64px;
    height: 64px;
    background: var(--apple-blue);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin: 0 auto 24px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(0, 122, 255, 0.2);
}

.service-title {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--apple-dark);
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.service-description {
    color: var(--apple-gray);
    font-size: 1.0625rem;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Contact Form */
.contact-section {
    background: rgba(88, 86, 214, 0.02);
}

.contact-header {
    text-align: center;
    margin-bottom: 64px;
}

.contact-form {
    background: white;
    border-radius: var(--radius-large);
    padding: 48px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: var(--shadow-large);
    border: 1px solid var(--apple-border);
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-weight: 600;
    color: var(--apple-dark);
    margin-bottom: 8px;
    font-size: 1.0625rem;
}

.form-input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--apple-border);
    border-radius: var(--radius);
    font-size: 1.0625rem;
    font-family: var(--system-font);
    transition: all 0.2s ease;
    background: white;
}

.form-input:focus {
    outline: none;
    border-color: var(--apple-blue);
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.form-select {
    appearance: none;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6,9 12,15 18,9"></polyline></svg>');
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    padding-right: 48px;
}

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

.form-submit {
    width: 100%;
    background: #128c7e;
    color: white;
    padding: 18px;
    border: none;
    border-radius: var(--radius);
    font-size: 1.125rem;
    font-weight: 600;
    font-family: var(--system-font);
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 16px;
}

.form-submit:hover {
    background: #128c7e8c;
    transform: translateY(-1px);
}

.form-note {
    text-align: center;
    color: var(--apple-gray);
    font-size: 0.9375rem;
    line-height: 1.5;
}

/* WhatsApp Integration */
.whatsapp-section {
    background: white;
    border-top: 1px solid var(--apple-border);
    padding: 32px 0;
}

.whatsapp-content {
    text-align: center;
}

.whatsapp-cta {
    background: #128c7e;
    color: white;
    padding: 16px 32px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.2s ease;
    margin-top: 16px;
}

.whatsapp-cta:hover {
    background: #128C7E;
    transform: translateY(-1px);
}

/* Portfolio Section */
.portfolio-section {
    background: #131a39;
    border-top: 1px solid var(--apple-border);
    border-bottom: 1px solid var(--apple-border);
}

.portfolio-header h2 {
    margin-bottom: 32px;
    color: orange;
}

.portfolio-header {
    text-align: center;
    margin-bottom: 64px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.portfolio-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px;
    border-radius: var(--radius);
    transition: all 0.3s ease;
    cursor: pointer;
    background: var(--apple-light);
    border: 1px solid var(--apple-border);
}

.portfolio-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    background: white;
}

.portfolio-logo {
    width: 80px;
    height: 80px;
    background: var(--apple-blue);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: rgb(255, 255, 255);
    font-weight: 600;
    margin-bottom: 16px;
    text-decoration: none;
}

.portfolio-name {
    font-weight: 600;
    color: var(--apple-dark);
    margin-bottom: 8px;
    font-size: 1.0625rem;
}

.portfolio-type {
    color: var(--apple-gray);
    font-size: 0.875rem;
    margin-bottom: 12px;
}

.portfolio-url {
    color: var(--apple-blue);
    font-size: 0.8125rem;
    text-decoration: none;
    font-weight: 500;
}

.portfolio-url:hover {
    text-decoration: underline;
}

.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: var(--shadow-large);
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #128C7E;
}

/* FAQ */
.faq-section {
    background: blackwhite;
}

.faq-header {
    text-align: center;
    margin-bottom: 64px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--apple-border);
    border-radius: var(--radius);
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-question {
    background: white;
    padding: 24px 32px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.0625rem;
    transition: background-color 0.2s ease;
}

.faq-question:hover {
    background: var(--apple-light);
}

.faq-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--apple-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

.faq-answer {
    padding: 0 32px 24px;
    color: var(--apple-gray);
    line-height: 1.6;
    display: none;
}

.faq-answer.active {
    display: block;
}

.faq-item.active .faq-icon {
    background: var(--apple-blue);
    color: white;
    transform: rotate(45deg);
}

/* FAQ Mobile Toggle - Nueva funcionalidad */
.faq-mobile-toggle {
    display: none;
    background: var(--apple-blue);
    color: white;
    padding: 16px 32px;
    border-radius: var(--radius);
    border: none;
    font-weight: 600;
    font-size: 1.0625rem;
    cursor: pointer;
    margin: 0 auto 32px;
    transition: all 0.3s ease;
}

.faq-mobile-toggle:hover {
    background: #0056CC;
    transform: translateY(-2px);
}

.faq-mobile-toggle.active::after {
    content: ' ▲';
}

.faq-mobile-toggle::after {
    content: ' ▼';
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, #1d1d1f 0%, #5856D6 100%);
    color: white;
    text-align: center;
}

.final-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.final-cta h2 {
    color: white;
    margin-bottom: 24px;
}

.final-cta p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 48px;
    line-height: 1.5;
}

.final-cta .cta-primary {
    background: white;
    color: var(--apple-blue);
    font-size: 1.25rem;
    padding: 20px 40px;
}

.final-cta .cta-primary:hover {
    background: var(--apple-light);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    /* Mostrar botón hamburguesa en móvil */
    .mobile-menu-toggle {
        display: block;
        margin-left: auto;
    }

    /* Ocultar menú desktop en móvil */
    .nav-menu {
        display: none;
    }

    /* Ocultar CTA en móviles */
    .nav-cta {
        display: none;
    }

    .nav-content {
        padding: 12px 16px;
    }

    .nav-logo {
        left: 16px;
    }

    .nav-logo img {
        width: 150px;
    }

    .mobile-menu-toggle span {
        display: block;
        font-size: 1.75rem;
        line-height: 1;
    }

    .mobile-menu-toggle.bars {
        width: 32px;
        height: 24px;
        position: relative;
    }

    .mobile-menu-toggle.bars span {
        display: block;
        position: absolute;
        height: 3px;
        width: 100%;
        background: var(--apple-dark);
        border-radius: 3px;
        opacity: 1;
        left: 0;
        transition: all 0.25s ease;
    }

    .mobile-menu-toggle.bars span:nth-child(1) {
        top: 0;
    }

    .mobile-menu-toggle.bars span:nth-child(2) {
        top: 10px;
    }

    .mobile-menu-toggle.bars span:nth-child(3) {
        top: 20px;
    }

    .mobile-menu-toggle.bars.active span:nth-child(1) {
        top: 10px;
        transform: rotate(45deg);
    }

    .mobile-menu-toggle.bars.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.bars.active span:nth-child(3) {
        top: 10px;
        transform: rotate(-45deg);
    }

    /* About Section - Responsive */
    .about-content {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    .about-image {
        order: -1;
    }

    .about-image-placeholder {
        width: auto;
        max-width: 300px;
        height: auto;
        margin: 0 auto;
    }

    .about-image-placeholder img {
        width: 100%;
        object-fit: contain;
    }

    .about-stats {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }

    .stat-item {
        text-align: center;
        width: 100%;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.875rem;
    }

    .about-text {
        padding: 0 16px;
    }

    .about-text h2 {
        font-size: 2rem;
        margin-bottom: 24px;
    }

    .about-text .body-large {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .hero {
        padding-top: 100px;
    }

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

    /* Hero Features - 2 columnas en móvil */
    .hero-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    /* Problem Section - OCULTAR en móvil */
    .problem-section {
        display: none;
    }

    /* Services Section - Scroll horizontal en móvil */
    .services-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 16px;
        padding: 0 16px 16px 16px;
        margin: 0 -16px;
    }

    .service-card {
        flex: 0 0 280px;
        scroll-snap-align: center;
    }

    /* Ocultar scrollbar pero mantener funcionalidad */
    .services-grid::-webkit-scrollbar {
        display: none;
    }

    .services-grid {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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

    .pricing-section {
        padding: 40px 0;
    }

    .pricing-header h2 {
        font-size: 1.75rem;
    }

    .pricing-header p {
        font-size: 0.95rem;
    }

    .pricing-content-wrapper {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 24px 20px;
    }

    .pricing-card {
        border-right: none;
        border-bottom: 2px solid var(--apple-border);
        padding-right: 0;
        padding-bottom: 20px;
    }

    .pricing-amount .amount {
        font-size: 2.5rem;
    }

    .features-list {
        grid-template-columns: 1fr;
        padding-bottom: 20px;
        border-bottom: 2px solid var(--apple-border);
    }

    .pricing-cta-section {
        border-right: none;
        padding-right: 0;
    }

    .pricing-card .cta-primary {
        width: 100%;
        justify-content: center;
    }

    .contact-form {
        padding: 32px 24px;
    }

    .display-large {
        font-size: 1.5rem;
    }

    .display-medium {
        font-size: 2rem;
    }

    /* Portfolio Section - Scroll horizontal en móvil */
    .portfolio-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 16px;
        padding: 0 16px 16px 16px;
        margin: 0 -16px;
    }

    .portfolio-item {
        flex: 0 0 200px;
        scroll-snap-align: center;
    }

    .portfolio-grid::-webkit-scrollbar {
        display: none;
    }

    .portfolio-grid {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    /* FAQ Section - Acordeón móvil */
    .faq-mobile-toggle {
        display: block;
    }

    .faq-list {
        display: none;
    }

    .faq-list.active {
        display: block;
    }

    .faq-question {
        padding: 20px 24px;
        font-size: 1rem;
    }

    .faq-answer {
        padding: 0 24px 20px;
    }
}

/* Para pantallas muy pequeñas (menos de 480px) */
@media (max-width: 480px) {
    .about-stats {
        gap: 20px;
    }

    .about-image-placeholder {
        max-width: 280px;
        height: 280px;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .about-text {
        padding: 0 8px;
    }

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

    .nav-logo img {
        width: 150px;
    }

    .service-card {
        flex: 0 0 260px;
    }

    .portfolio-item {
        flex: 0 0 180px;
    }
}

/* Footer */
.footer {
    background: #000000;
    color: white;
    padding: 60px 0 30px;
    border-top: 1px solid #333;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid #333;
}

.footer-section h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: orange;
}

.footer-logo {
    display: flex;
    flex-direction: column;
}

.footer-logo img {
    width: 180px;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

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

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9375rem;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-link:hover {
    color: #b1e8d0;
    padding-left: 8px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
}

.footer-contact-item span:first-child {
    font-size: 1.25rem;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #128c7e;
    transform: translateY(-3px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #b1e8d0;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 32px;
        padding-bottom: 32px;
    }

    .footer-logo img {
        width: 150px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .footer-legal {
        flex-direction: column;
        gap: 12px;
    }
}

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

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

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

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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