/* ======= VARIABLES Y RESET ======= */
:root {
    /* Colores principales - inspirados en Humane */
    --primary: #1C1C1E;
    --primary-dark: #000000;
    --secondary: #000000;
    --dark: #000000;
    --light: #FFFFFF;
    --gray: #8E8E93;
    --light-gray: #F2F2F7;
    --dark-gray: #3A3A3C;
    --accent: #000000;
    
    /* Gradientes */
    --gradient-primary: linear-gradient(180deg, #0B1B09 0%, rgba(11, 27, 9, 0.8) 100%);
    --gradient-secondary: linear-gradient(180deg, #1C1C1E 0%, #2C2C2E 100%);
    --gradient-subtle: linear-gradient(180deg, rgba(242, 242, 247, 0.5) 0%, rgba(242, 242, 247, 0) 100%);
    --gradient-dark: linear-gradient(180deg, #000000 0%, #1C1C1E 100%);
    
    /* Fuentes */
    --font-headings: 'SF Pro Display', 'Poppins', sans-serif;
    --font-body: 'SF Pro Text', 'Space Grotesk', sans-serif;
    
    /* Dimensiones */
    --header-height: 72px;
    --section-spacing: 120px;
    --container-padding: 24px;
    
    /* Sombras */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.1);
    
    /* Bordes */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    
    /* Transiciones */
    --transition-fast: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-normal: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset y estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
    font-size: 62.5%; /* 1rem = 10px */
}

body {
    font-family: var(--font-body);
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100%;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headings);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.03em;
}

h1 {
    font-size: 7.2rem;
    font-weight: 700;
    letter-spacing: -0.04em;
}

h2 {
    font-size: 5.6rem;
    letter-spacing: -0.03em;
}

h3 {
    font-size: 3.6rem;
}

h4 {
    font-size: 2.4rem;
}

p {
    margin-bottom: 2rem;
    font-weight: 400;
    font-size: 1.8rem;
    line-height: 1.6;
}

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

a:hover {
    color: var(--secondary);
}

ul {
    list-style: none;
}

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

button {
    font-family: var(--font-body);
    cursor: pointer;
}

input, button {
    font-family: inherit;
    font-size: inherit;
}

.section-padding {
    padding: var(--section-spacing) 0;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

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

.dark-bg {
    background-color: var(--dark);
    color: var(--light);
}

/* ======= COMPONENTES ======= */

/* Botones */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.8rem 3.2rem;
    border-radius: 10rem;
    font-weight: 500;
    font-family: var(--font-headings);
    border: none;
    transition: var(--transition-normal);
    text-align: center;
    letter-spacing: 0.02em;
    font-size: 1.6rem;
    position: relative;
    overflow: hidden;
}

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

.btn-primary:hover {
    box-shadow: 0 15px 30px rgba(255, 55, 95, 0.35);
    transform: translateY(-3px);
    color: white;
}

.btn-secondary {
    background-color: rgba(0, 0, 0, 0.05);
    color: var(--dark);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background-color: rgba(0, 0, 0, 0.1);
    color: var(--dark);
    transform: translateY(-3px);
}

.btn-dark {
    background-color: var(--dark);
    color: var(--light);
}

.btn-dark:hover {
    background-color: #1a1a1a;
    color: var(--light);
    transform: translateY(-3px);
}

/* Secciones */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 8rem;
}

.section-tag {
    display: inline-block;
    background-color: var(--light-gray);
    color: var(--dark);
    padding: 0.8rem 2rem;
    border-radius: 10rem;
    font-weight: 500;
    font-size: 1.4rem;
    margin-bottom: 2.4rem;
    letter-spacing: 0.05em;
    font-family: var(--font-headings);
    text-transform: uppercase;
}

.dark-bg .section-tag {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light);
}

.section-header h2 {
    background: var(--gradient-dark);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.dark-bg .section-header h2 {
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Tarjetas */
.feature-card, .benefit-card, .testimonial-card {
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 4rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    border: 1px solid rgba(242, 242, 247, 0.5);
}

.dark-bg .feature-card, 
.dark-bg .benefit-card, 
.dark-bg .testimonial-card {
    background-color: rgba(28, 28, 30, 0.7);
    border: 1px solid rgba(60, 60, 67, 0.3);
}

.feature-card:hover, .benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

/* Imágenes con efecto */
.enhanced-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.enhanced-image img {
    transition: transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.enhanced-image:hover img {
    transform: scale(1.08);
}

.enhanced-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.2), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.enhanced-image:hover::after {
    opacity: 1;
}

/* ======= HEADER Y NAVEGACIÓN ======= */
.header {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 4rem);
    max-width: 1200px;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 100px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
    padding: 0 3rem;
}

.logo a {
    font-family: var(--font-headings);
    font-size: 2rem;
    font-weight: 600;
    color: var(--dark);
    letter-spacing: -0.02em;
    text-transform: lowercase;
    position: relative;
    display: flex;
    align-items: center;
}

.logo a::after {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    background-color: var(--accent);
    border-radius: 50%;
    margin-left: 0.4rem;
    position: relative;
    top: -8px;
}

.nav-menu {
    display: flex;
    gap: 1.2rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--dark-gray);
    font-weight: 500;
    position: relative;
    letter-spacing: -0.01em;
    padding: 0.6rem 1rem;
    font-size: 1.3rem;
    transition: color 0.3s ease;
    border-radius: 100px;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--accent);
    background-color: rgba(0, 0, 0, 0.05);
}

.cta-button {
    margin-left: 1.5rem;
}

.header .btn-primary {
    padding: 0.6rem 1.8rem;
    font-size: 1.3rem;
    letter-spacing: 0.02em;
    border-radius: 100px;
    background: var(--dark);
    color: var(--light);
    box-shadow: none;
    white-space: nowrap;
}

.menu-toggle {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 22px;
    height: 2px;
    margin: 4px auto;
    background-color: var(--dark);
    transition: all 0.3s ease-in-out;
}

@media (max-width: 992px) {
    .header {
        top: 1rem;
        width: calc(100% - 2rem);
        border-radius: 20px;
    }

    .navbar {
        padding: 0 2rem;
    }

    .nav-menu {
        position: fixed;
        left: 1rem;
        right: 1rem;
        top: calc(var(--header-height) + 2rem);
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        width: calc(100% - 2rem);
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        padding: 2rem;
        z-index: 999;
        gap: 1rem;
        border-radius: 20px;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
    }

    .nav-menu.active {
        opacity: 1;
        pointer-events: all;
        transform: translateY(0);
    }

    .nav-link {
        font-size: 1.6rem;
        padding: 1rem 0;
    }

    .menu-toggle {
        display: block;
    }
    
    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    
    .menu-toggle.active .bar:nth-child(2) {
        transform: translateY(-6px) rotate(-45deg);
    }
    
    .cta-button {
        display: none;
    }
}

/* ======= HERO SECTION ======= */
.hero {
    position: relative;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    background-color: #000;
    color: #fff;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    opacity: 0.6;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 6rem 2rem;
}

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

.hero .headline {
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.hero .gradient-text {
    background: linear-gradient(135deg, #FF6B6B, #4ECDC4);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero .subheadline {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    line-height: 1.5;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero .cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero .btn {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.hero .btn-primary {
    background: linear-gradient(135deg, #FF6B6B, #4ECDC4);
    border: none;
    color: white;
}

.hero .btn-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.hero .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    font-size: 0.875rem;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    margin: 0 auto 0.5rem;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        transform: translate(-50%, 0);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, 15px);
        opacity: 0;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero .container {
        padding: 4rem 1rem;
    }
    
    .hero .headline {
        font-size: clamp(2.5rem, 6vw, 4rem);
    }
    
    .hero .subheadline {
        font-size: 1.125rem;
    }
    
    .hero .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}

/* ======= ABOUT SECTION (Qué es My Alley) ======= */
.about {
    position: relative;
    overflow: hidden;
    background-color: var(--bg-white);
    padding: 120px 0;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.about .section-tag {
    color: #78A5EB;
    background: linear-gradient(90deg, rgba(120, 165, 235, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.feature-card {
    position: relative;
    background-color: var(--bg-white);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 300px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background-color: rgba(120, 165, 235, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.feature-card:hover .feature-icon {
    transform: scale(1.05);
    background-color: #78A5EB;
}

.feature-icon i {
    font-size: 1.8rem;
    color: #78A5EB;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.feature-card:hover .feature-icon i {
    color: white;
}

.feature-card h3 {
    font-family: var(--primary-font);
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #121212;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.feature-card:hover h3 {
    color: #78A5EB;
}

.feature-card p {
    font-family: var(--secondary-font);
    font-size: 1rem;
    line-height: 1.6;
    color: #777;
    margin-bottom: 0;
    flex-grow: 1;
}

/* ======= OUR STORY SECTION (Nuestra Historia) ======= */
.our-story {
    position: relative;
    background-color: var(--bg-light-gray);
    overflow: hidden;
    padding: 120px 0;
}

.our-story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.our-story .section-tag {
    color: #C767F5;
    background: linear-gradient(90deg, rgba(199, 103, 245, 0.2) 0%, rgba(235, 235, 235, 0) 100%);
}

.story-container {
    display: flex;
    align-items: center;
    gap: 5rem;
    margin-top: 4rem;
}

.story-visual {
    flex: 1;
    position: relative;
}

.story-image {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.story-image:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.story-content {
    flex: 1;
}

.story-title {
    font-family: var(--primary-font);
    font-weight: 700;
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: #121212;
}

.story-paragraph {
    font-family: var(--secondary-font);
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.story-quote {
    background-color: var(--bg-white);
    border-radius: 24px;
    padding: 2rem 2.5rem;
    margin: 2.5rem 0;
    border-left: 4px solid #C767F5;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.story-quote blockquote {
    font-family: var(--secondary-font);
    font-size: 1.15rem;
    line-height: 1.7;
    color: #666;
    font-style: italic;
}

.story-values {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.value-item {
    flex: 1;
}

.value-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background-color: rgba(199, 103, 245, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.value-item:hover .value-icon {
    transform: scale(1.1);
    background-color: #C767F5;
}

.value-icon i {
    font-size: 1.6rem;
    color: #C767F5;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.value-item:hover .value-icon i {
    color: white;
}

.value-item h4 {
    font-family: var(--primary-font);
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
    color: #121212;
}

.value-item:hover h4 {
    color: #C767F5;
}

.value-item p {
    font-family: var(--secondary-font);
    font-size: 0.95rem;
    line-height: 1.5;
    color: #777;
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .story-container {
        flex-direction: column;
        gap: 4rem;
    }
    
    .story-values {
        flex-wrap: wrap;
    }
    
    .value-item {
        flex: 0 0 48%;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .value-item {
        flex: 0 0 100%;
    }
}

/* ======= HOW IT WORKS SECTION (Cómo funciona) ======= */
.how-it-works {
    position: relative;
    background-color: var(--bg-white);
    overflow: hidden;
    padding: 120px 0;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.how-it-works .section-tag {
    color: #FA781F;
    background: linear-gradient(90deg, rgba(250, 120, 31, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
}

.steps-horizontal {
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 4rem;
    z-index: 2;
}

.steps-horizontal:before {
    content: '';
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: rgba(0, 0, 0, 0.06);
    z-index: 1;
}

.step-item {
    flex: 1;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 1rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.step-item:hover {
    transform: translateY(-10px);
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #FA781F, #F0558C);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: var(--primary-font);
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 3rem;
    box-shadow: 0 10px 25px rgba(250, 120, 31, 0.2);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 3;
}

.step-item:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(250, 120, 31, 0.3);
}

.step-visual {
    margin: 2rem 0;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.step-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.step-item:hover .step-visual {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

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

.step-item h3 {
    font-family: var(--primary-font);
    font-weight: 600;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #121212;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.step-item:hover h3 {
    color: #FA781F;
}

.step-item p {
    font-family: var(--secondary-font);
    font-size: 1rem;
    line-height: 1.6;
    color: #777;
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .steps-horizontal {
        flex-direction: column;
        gap: 4rem;
    }
    
    .steps-horizontal:before {
        display: none;
    }
    
    .step-item {
        max-width: 500px;
        margin: 0 auto;
    }
}

/* ======= EXPERIENCES SECTION (Experiencias Alley) ======= */
.experiences {
    position: relative;
    overflow: hidden;
    background-color: #0B1B09;
    color: white;
    padding: 120px 0;
}

.experiences::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(100, 210, 95, 0.15) 0%, rgba(11, 27, 9, 0) 50%),
                radial-gradient(circle at 70% 30%, rgba(250, 120, 31, 0.15) 0%, rgba(11, 27, 9, 0) 50%);
    pointer-events: none;
}

.experiences .section-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.experiences .section-tag {
    color: #64D25F;
    background: linear-gradient(90deg, rgba(100, 210, 95, 0.3) 0%, rgba(11, 27, 9, 0) 100%);
}

.experiences .section-header h2 {
    color: white;
}

.experience-gallery {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(24, 12px);
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.gallery-item.item-1 {
    grid-column: 2 / 6;
    grid-row: 1 / 12;
}

.gallery-item.item-2 {
    grid-column: 8 / 12;
    grid-row: 3 / 14;
}

.gallery-item.item-3 {
    grid-column: 1 / 5;
    grid-row: 14 / 24;
}

.gallery-item.item-4 {
    grid-column: 6 / 9;
    grid-row: 16 / 23;
}

.gallery-item.item-5 {
    grid-column: 5 / 8;
    grid-row: 5 / 15;
    z-index: 3;
}

.gallery-item.item-6 {
    grid-column: 9 / 12;
    grid-row: 13 / 24;
    z-index: 2;
}

.gallery-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gallery-image img,
.gallery-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover .gallery-image img,
.gallery-item:hover .gallery-image video {
    transform: scale(1.05);
}

@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(12, 1fr);
        grid-template-rows: repeat(30, 10px);
    }
}

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(8, 1fr);
        grid-template-rows: repeat(42, 8px);
        gap: 15px;
    }
    
    .gallery-item.item-1 {
        grid-column: 1 / 5;
        grid-row: 1 / 12;
    }
    
    .gallery-item.item-2 {
        grid-column: 5 / 9;
        grid-row: 5 / 16;
    }
    
    .gallery-item.item-3 {
        grid-column: 1 / 4;
        grid-row: 14 / 24;
    }
    
    .gallery-item.item-4 {
        grid-column: 5 / 9;
        grid-row: 18 / 28;
    }
    
    .gallery-item.item-5 {
        grid-column: 3 / 7;
        grid-row: 25 / 36;
    }
    
    .gallery-item.item-6 {
        grid-column: 4 / 8;
        grid-row: 32 / 42;
        z-index: 2;
    }
}

@media (max-width: 768px) {
    .experiences {
        padding: 80px 0;
    }
    
    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(40, 10px);
        gap: 12px;
        margin: 0 auto;
        max-width: 550px;
    }
    
    .gallery-item.item-1 {
        grid-column: 1 / 3;
        grid-row: 1 / 15;
        z-index: 1;
    }
    
    .gallery-item.item-2 {
        grid-column: 3 / 5;
        grid-row: 6 / 18;
        z-index: 2;
    }
    
    .gallery-item.item-3 {
        grid-column: 1 / 3;
        grid-row: 18 / 32;
        z-index: 1;
    }
    
    .gallery-item.item-4 {
        grid-column: 2 / 5;
        grid-row: 22 / 37;
        z-index: 3;
    }
    
    .gallery-item.item-5 {
        grid-column: 1 / 3;
        grid-row: 35 / 48;
        z-index: 2;
    }
    
    .gallery-item.item-6 {
        grid-column: 3 / 5;
        grid-row: 40 / 52;
        z-index: 1;
    }
}

@media (max-width: 576px) {
    .experiences {
        padding: 60px 0;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(6, 1fr);
        grid-template-rows: repeat(60, 6px);
        gap: 10px;
        padding: 0 15px;
    }
    
    .gallery-item.item-1 {
        grid-column: 1 / 4;
        grid-row: 1 / 20;
        z-index: 2;
    }
    
    .gallery-item.item-2 {
        grid-column: 4 / 7;
        grid-row: 5 / 24;
        z-index: 1;
    }
    
    .gallery-item.item-3 {
        grid-column: 2 / 5;
        grid-row: 22 / 38;
        z-index: 3;
    }
    
    .gallery-item.item-4 {
        grid-column: 1 / 3;
        grid-row: 40 / 56;
        z-index: 1;
    }
    
    .gallery-item.item-5 {
        grid-column: 3 / 7;
        grid-row: 36 / 52;
        z-index: 2;
    }
    
    .gallery-item.item-6 {
        grid-column: 4 / 7;
        grid-row: 54 / 70;
        z-index: 1;
    }
    
    .gallery-item {
        border-radius: 16px;
    }
    
    .gallery-item:hover {
        transform: translateY(-5px) scale(1.02);
    }
}

@media (max-width: 400px) {
    .gallery-grid {
        grid-template-rows: repeat(55, 6px);
    }
    
    .gallery-item.item-1 {
        grid-column: 1 / 5;
        grid-row: 1 / 18;
    }
    
    .gallery-item.item-2 {
        grid-column: 3 / 7;
        grid-row: 6 / 22;
    }
    
    .gallery-item.item-3 {
        grid-column: 1 / 5;
        grid-row: 20 / 36;
    }
    
    .gallery-item.item-4 {
        grid-column: 2 / 7;
        grid-row: 28 / 44;
    }
    
    .gallery-item.item-5 {
        grid-column: 1 / 4;
        grid-row: 38 / 54;
    }
    
    .gallery-item.item-6 {
        grid-column: 3 / 7;
        grid-row: 46 / 62;
    }
}

/* ======= FEATURES SECTION (Modos inteligentes) ======= */
.features {
    position: relative;
    background-color: var(--light);
    overflow: hidden;
    padding: 120px 0;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.features .section-tag {
    color: #78A5EB;
    background: linear-gradient(90deg, rgba(120, 165, 235, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
}

.mode-selector {
    margin: 0 auto 3rem;
    max-width: 800px;
}

.mode-tabs {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 1rem;
    background-color: rgba(240, 240, 245, 0.6);
    border-radius: 100px;
    padding: 0.5rem;
}

.mode-tab {
    padding: 1rem 2rem;
    border-radius: 100px;
    border: none;
    background: transparent;
    font-family: var(--font-headings);
    font-weight: 500;
    font-size: 1.4rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--dark-gray);
}

.mode-tab.active {
    background-color: var(--light);
    color: var(--primary);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.mode-tab:hover:not(.active) {
    background-color: rgba(255, 255, 255, 0.3);
    color: var(--primary);
}

.mode-showcase {
    position: relative;
    margin-top: 4rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 500px;
}

.mode-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease-in-out;
}

.mode-panel.active {
    opacity: 1;
    pointer-events: all;
    z-index: 2;
}

.mode-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.mode-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mode-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(20, 20, 24, 0.9) 0%, rgba(20, 20, 24, 0.8) 30%, rgba(20, 20, 24, 0.4) 100%);
    z-index: 2;
}

.mode-content {
    position: relative;
    z-index: 3;
    color: var(--light);
    max-width: 500px;
    padding: 5rem 0;
}

.mode-content h3 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    color: var(--light);
}

.mode-content p {
    margin-bottom: 2rem;
    font-size: 1.6rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

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

.mode-features li {
    padding: 0.8rem 0;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.85);
}

.mode-features li::before {
    content: '•';
    margin-right: 1rem;
    color: #78A5EB;
    font-size: 1.8rem;
}

.mode-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 3;
}

.mode-indicator {
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.mode-indicator.active {
    background-color: rgba(255, 255, 255, 0.9);
    transform: scale(1.2);
}

@media (max-width: 992px) {
    .mode-tabs {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.8rem;
        padding: 1rem;
    }
    
    .mode-tab {
        padding: 0.8rem 1.5rem;
        font-size: 1.3rem;
        flex: 0 1 auto;
    }
    
    .mode-content {
        padding: 5rem 2rem;
    }
}

@media (max-width: 768px) {
    .mode-tabs {
        border-radius: 16px;
        padding: 1rem;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
        width: 100%;
    }
    
    .mode-tab {
        font-size: 1.2rem;
        padding: 0.7rem 1rem;
        white-space: normal;
        text-align: center;
        width: 100%;
    }
    
    .mode-content {
        max-width: 100%;
        padding: 5rem 2rem;
    }
    
    .mode-content h3 {
        font-size: 2.4rem;
    }
    
    .mode-content p {
        font-size: 1.5rem;
    }
    
    .mode-features li {
        font-size: 1.4rem;
    }
    
    .mode-gradient-overlay {
        background: linear-gradient(to bottom, rgba(20, 20, 24, 0.5) 0%, rgba(20, 20, 24, 0.8) 50%, rgba(20, 20, 24, 0.95) 100%);
    }
}

@media (max-width: 576px) {
    .mode-tabs {
        grid-template-columns: 1fr;
    }
    
    .mode-tab {
        padding: 0.7rem 0.5rem;
        font-size: 1.1rem;
    }
}

/* ======= COMMUNITY SECTION (Comunidad Alley) ======= */
.community {
    position: relative;
    background-color: var(--bg-white);
    overflow: hidden;
    padding: 120px 0;
}

.community::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.community .section-tag {
    color: #FF4BA5;
    background: linear-gradient(90deg, rgba(255, 75, 165, 0.2) 0%, rgba(242, 242, 247, 0) 100%);
}

.community-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.testimonial-card {
    position: relative;
    background-color: var(--light);
    border-radius: 24px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 2rem;
    right: 2.5rem;
    font-size: 8rem;
    font-family: var(--font-headings);
    color: rgba(255, 75, 165, 0.1);
    line-height: 1;
}

.user-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: #f0f0f0;
    margin-bottom: 2rem;
    overflow: hidden;
    border: 3px solid rgba(255, 75, 165, 0.2);
    position: relative;
    background-image: url('../images/avatar-placeholder.jpg');
    background-size: cover;
    background-position: center;
}

.testimonial-content {
    flex: 1;
}

.testimonial-content p {
    font-family: var(--font-body);
    font-size: 1.6rem;
    line-height: 1.7;
    color: var(--dark-gray);
    margin-bottom: 2rem;
    font-style: italic;
}

.user-info {
    display: flex;
    flex-direction: column;
    margin-top: auto;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 1.5rem;
}

.user-info h4 {
    font-family: var(--font-headings);
    font-weight: 600;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.user-info span {
    font-family: var(--font-body);
    font-size: 1.4rem;
    color: var(--gray);
}

.community-cta {
    margin-top: 5rem;
    text-align: center;
}

@media (max-width: 768px) {
    .community-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: 2.5rem;
    }
}

/* ======= MARKETPLACE SECTION (Marketplace Alley) ======= */
.marketplace {
    position: relative;
    background-color: var(--light);
    overflow: hidden;
    padding: 120px 0;
}

.marketplace::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.marketplace .section-tag {
    color: #FFB74D;
    background: linear-gradient(90deg, rgba(255, 183, 77, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.benefit-card {
    position: relative;
    background-color: var(--light);
    border-radius: 24px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 320px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: linear-gradient(135deg, #FFB74D, #FF7A5A);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: 0 10px 20px rgba(255, 183, 77, 0.15);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(255, 183, 77, 0.25);
}

.benefit-icon i {
    font-size: 2.4rem;
    color: white;
}

.benefit-card h3 {
    font-family: var(--font-headings);
    font-weight: 600;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.benefit-card:hover h3 {
    color: #FF7A5A;
}

.benefit-card p {
    font-family: var(--font-body);
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--dark-gray);
    margin-bottom: 2rem;
    flex-grow: 1;
}

.discount-tag {
    display: inline-block;
    background: linear-gradient(90deg, rgba(255, 183, 77, 0.15) 0%, rgba(255, 122, 90, 0.15) 100%);
    color: #FF7A5A;
    font-weight: 500;
    font-size: 1.4rem;
    padding: 0.8rem 1.5rem;
    border-radius: 100px;
    margin-top: auto;
}

.marketplace-cta {
    margin-top: 5rem;
    text-align: center;
}

@media (max-width: 992px) {
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit-card {
        padding: 2.5rem;
    }
}

/* ======= KIT SECTION (Alley Kit) ======= */
.kit {
    position: relative;
    background-color: #F4F4F4;
    overflow: hidden;
    padding: 120px 0;
}

.kit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.kit .section-tag {
    color: #3F81E2;
    background: linear-gradient(90deg, rgba(63, 129, 226, 0.2) 0%, rgba(242, 242, 247, 0) 100%);
}

.kit-showcase {
    display: flex;
    align-items: center;
    gap: 6rem;
    margin-top: 6rem;
}

.kit-visual {
    flex: 1;
    position: relative;
    height: 500px;
}

.kit-device {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.device-image {
    max-height: 90%;
    max-width: 90%;
    object-fit: contain;
    position: relative;
    z-index: 2;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.floating-device {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(2deg);
    }
    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

.kit-device::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(63, 129, 226, 0.2) 0%, rgba(242, 242, 247, 0) 70%);
    transform: translate(-50%, -50%);
    z-index: 1;
}

.kit-device::after {
    content: '';
    position: absolute;
    bottom: 50px;
    left: 50%;
    width: 140px;
    height: 30px;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.1) 0%, rgba(242, 242, 247, 0) 70%);
    transform: translateX(-50%);
    z-index: 0;
    filter: blur(8px);
}

.kit-description {
    flex: 1;
    max-width: 600px;
}

.kit-description h3 {
    font-size: 3.6rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--dark);
}

.kit-description p {
    font-size: 1.8rem;
    line-height: 1.6;
    color: var(--dark-gray);
    margin-bottom: 3rem;
}

.kit-features {
    margin: 0 0 3rem 0;
    padding: 0;
}

.kit-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1.6rem;
    font-size: 1.6rem;
    color: var(--dark-gray);
}

.kit-features li i {
    color: #3F81E2;
    font-size: 1.4rem;
    margin-right: 1.2rem;
    width: 20px;
    text-align: center;
}

.kit-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
    margin-top: 3rem;
}

.availability {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--accent);
    padding: 0.8rem 1.6rem;
    background: rgba(255, 55, 95, 0.08);
    border-radius: 100px;
}

.accent-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 55, 95, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 55, 95, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 55, 95, 0);
    }
}

@media (max-width: 992px) {
    .kit-showcase {
        flex-direction: column;
        gap: 4rem;
    }
    
    .kit-visual {
        width: 100%;
        height: 400px;
    }
    
    .kit-description {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .kit-visual {
        height: 350px;
    }
    
    .kit-description h3 {
        font-size: 3rem;
    }
    
    .kit-description p {
        font-size: 1.6rem;
    }
    
    .kit-features li {
        font-size: 1.5rem;
    }
    
    .kit-cta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .kit-cta .btn {
        width: 100%;
    }
}

/* ======= ROADMAP SECTION ======= */
.roadmap {
    position: relative;
    background-color: var(--light);
    padding: 120px 0;
    overflow: hidden;
}

.roadmap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.roadmap .section-tag {
    color: var(--primary);
    background-color: rgba(28, 28, 30, 0.08);
}

.roadmap-horizontal {
    position: relative;
    margin-top: 80px;
    padding-top: 40px;
    padding-bottom: 40px;
}

.roadmap-track {
    position: relative;
    display: flex;
    justify-content: space-between;
    padding-bottom: 40px;
}

.roadmap-progress {
    position: absolute;
    top: 45px;
    left: 0;
    height: 2px;
    background: linear-gradient(to right, var(--accent) 0%, var(--accent) 25%, rgba(150, 150, 150, 0.3) 25%, rgba(150, 150, 150, 0.3) 100%);
    width: 100%;
    z-index: 1;
}

.roadmap-item {
    position: relative;
    width: 22%;
    z-index: 2;
    transition: transform 0.3s ease;
}

.roadmap-item:hover {
    transform: translateY(-5px);
}

.roadmap-marker {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--light-gray);
    border: 2px solid rgba(150, 150, 150, 0.3);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.roadmap-item.current .roadmap-marker,
.roadmap-item:hover .roadmap-marker {
    background-color: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 0 0 6px rgba(255, 55, 95, 0.15);
}

.roadmap-date {
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 16px;
    transition: color 0.3s ease;
}

.roadmap-item.current .roadmap-date,
.roadmap-item:hover .roadmap-date {
    color: var(--accent);
}

.roadmap-content {
    background-color: var(--light);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    min-height: 200px;
}

.roadmap-item.current .roadmap-content,
.roadmap-item:hover .roadmap-content {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 55, 95, 0.2);
}

.roadmap-content h4 {
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 16px;
    transition: color 0.3s ease;
}

.roadmap-item.current .roadmap-content h4,
.roadmap-item:hover .roadmap-content h4 {
    color: var(--accent);
}

.roadmap-content ul {
    padding-left: 0;
    list-style: none;
}

.roadmap-content li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    color: var(--dark-gray);
    font-size: 16px;
    line-height: 1.6;
}

.roadmap-content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--accent);
    opacity: 0.7;
}

.roadmap-view-more {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

@media (max-width: 992px) {
    .roadmap {
        padding: 80px 0;
    }
    
    .roadmap-track {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 20px;
    }
    
    .roadmap-progress {
        position: absolute;
        top: 0;
        left: 28px;
        width: 2px;
        height: 100%;
        background: linear-gradient(to bottom, var(--accent) 0%, var(--accent) 25%, rgba(150, 150, 150, 0.3) 25%, rgba(150, 150, 150, 0.3) 100%);
    }
    
    .roadmap-item {
        width: 100%;
        margin-bottom: 40px;
        padding-left: 40px;
    }
    
    .roadmap-marker {
        position: absolute;
        left: 0;
        top: 0;
        transform: translateX(-50%);
    }
    
    .roadmap-content {
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .roadmap {
        padding: 60px 0;
    }
    
    .roadmap-horizontal {
        margin-top: 40px;
    }
    
    .roadmap-date {
        font-size: 18px;
    }
    
    .roadmap-content h4 {
        font-size: 20px;
    }
    
    .roadmap-content li {
        font-size: 15px;
    }
}

/* ======= CTA SECTION ======= */
.cta-section {
    position: relative;
    background-color: var(--dark);
    color: var(--light);
    padding: 120px 0;
    overflow: hidden;
    text-align: center;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

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

.cta-section h2 {
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 48px;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--light) 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
}

.cta-section p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.cta-section .btn {
    min-width: 220px;
    height: 60px;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 30px;
    padding: 0 36px;
    font-weight: 600;
}

.cta-section .btn-primary {
    background: var(--gradient-primary);
    color: var(--light);
    border: none;
    box-shadow: 0 8px 20px rgba(255, 55, 95, 0.3);
}

.cta-section .btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(255, 55, 95, 0.4);
}

.cta-section .btn-secondary {
    background: transparent;
    color: var(--light);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-section .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--light);
    transform: translateY(-5px);
}

.app-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.app-button {
    display: flex;
    align-items: center;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    color: var(--light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.app-button:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.app-button i {
    font-size: 28px;
    margin-right: 12px;
}

.app-button span {
    font-size: 14px;
    line-height: 1.4;
    text-align: left;
}

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

/* ======= MODAL STYLES ======= */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active {
    display: block;
    opacity: 1;
}

.modal-content {
    position: relative;
    background-color: var(--light);
    margin: 5% auto;
    width: 90%;
    max-width: 800px;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.4s ease;
}

.modal.active .modal-content {
    transform: translateY(0);
    opacity: 1;
}

.modal-header {
    padding: 40px 40px 20px;
    position: relative;
}

.modal-header h2 {
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 0;
}

.modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    background: none;
    border: none;
    color: var(--gray);
    font-size: 32px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    border-radius: 50%;
}

.modal-close:hover {
    background-color: rgba(0, 0, 0, 0.05);
    color: var(--primary);
}

.modal-body {
    padding: 20px 40px 40px;
}

.google-form-container {
    margin-top: 30px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.waitlist-form-iframe {
    display: block;
    width: 100%;
    height: 500px;
    border: none;
}

@media (max-width: 992px) {
    .cta-section {
        padding: 80px 0;
    }
    
    .cta-section h2 {
        font-size: 40px;
    }
    
    .cta-section p {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-section h2 {
        font-size: 32px;
    }
    
    .cta-section p {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-section .btn {
        width: 100%;
        height: 56px;
        font-size: 16px;
    }
    
    .app-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .modal-header {
        padding: 30px 20px 15px;
    }
    
    .modal-header h2 {
        font-size: 24px;
    }
    
    .modal-body {
        padding: 15px 20px 30px;
    }
}

/* ======= FOOTER ======= */
.footer {
    position: relative;
    background-color: var(--dark);
    color: var(--light);
    padding: 100px 0 40px;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.footer-content {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 60px;
    z-index: 2;
}

.footer-logo {
    flex: 0 0 100%;
    margin-bottom: 40px;
}

.footer-logo h3 {
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 28px;
    background: linear-gradient(120deg, var(--light) 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
    margin-bottom: 10px;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    margin-bottom: 30px;
    padding-right: 20px;
}

.footer-column h4 {
    font-family: var(--font-headings);
    font-weight: 600;
    font-size: 18px;
    color: var(--light);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.footer-column:hover h4::after {
    width: 100%;
}

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

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.footer-column a:hover {
    color: var(--light);
    transform: translateX(5px);
}

.footer-column a::before {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

.footer-column a:hover::before {
    width: 100%;
}

.footer-bottom {
    position: relative;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 55, 95, 0.3);
}

.social-links a i {
    font-size: 18px;
}

.copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

@media (max-width: 992px) {
    .footer {
        padding: 80px 0 40px;
    }
    
    .footer-content {
        margin-bottom: 40px;
    }
    
    .footer-column {
        flex: 0 0 calc(50% - 20px);
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 0 30px;
    }
    
    .footer-logo {
        margin-bottom: 30px;
    }
    
    .footer-column {
        flex: 0 0 100%;
        margin-bottom: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .social-links {
        margin-bottom: 20px;
        justify-content: center;
    }
    
    .copyright {
        margin-bottom: 10px;
    }
}

/* Estilos para el formulario de newsletter */
.newsletter-form {
    display: flex;
    margin-bottom: 15px;
}

.newsletter-input {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 30px 0 0 30px;
    color: var(--light);
    font-size: 14px;
    padding: 12px 15px;
    transition: background-color 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.15);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-button {
    background: linear-gradient(135deg, var(--accent) 0%, #FF7643 100%);
    border: none;
    border-radius: 0 30px 30px 0;
    color: white;
    cursor: pointer;
    padding: 0 18px;
    transition: all 0.3s ease;
}

.newsletter-button:hover {
    filter: brightness(1.1);
    transform: translateX(3px);
}

.newsletter-button i {
    font-size: 14px;
}

/* Estilos para la parte inferior del footer con los enlaces legales */
.legal-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 15px;
}

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

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

.divider {
    display: inline-block;
    width: 4px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    margin: 0 15px;
}

@media (max-width: 992px) {
    /* Media query styling for larger tablets */
    
    .legal-links {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    /* Media query styling for tablets and mobile */
    
    .legal-links {
        justify-content: center;
        gap: 20px;
        margin-bottom: 20px;
    }
    
    .divider {
        display: none;
    }
    
    .newsletter-form {
        max-width: 300px;
        margin: 0 auto 15px;
    }
    
    .footer-column .social-links {
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }
}
