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

:root {
    --primary-green: #00d4aa;
    --secondary-green: #00b894;
    --accent-green: #00cec9;
    --dark-green: #006c5b;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --gray: #6c757d;
    --dark-gray: #343a40;
    --black: #1a1a1a;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.15);
    --border-radius: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Banner con transiciones */
.hero-banner {
    width: 100%;
    max-width: 100%;
    margin: 2rem 0;
    position: relative;
}

.banner-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-color: var(--light-gray);
}

.banner-image.active {
    opacity: 1;
}

/* Mejorar la visualización de las imágenes del banner */
.banner-image {
    /* Sin padding para ocupar todo el ancho */
}

/* Asegurar que las imágenes mantengan su proporción */
.banner-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Indicadores del banner */
.banner-dots {
    position: absolute;
    bottom: 15px;
    right: 15px;
    display: none;
    gap: 8px;
    z-index: 2;
}

.banner-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--gray);
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.4;
}

.banner-dot:hover {
    background-color: var(--primary-green);
    opacity: 0.6;
    transform: scale(1.1);
}

.banner-dot.active {
    background-color: var(--primary-green);
    opacity: 0.8;
    transform: scale(1.1);
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-header {
    max-width: 800px;
    text-align: center;
}

.hero-text {
    max-width: 500px;
}

.hero-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    max-width: 800px;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--black);
}

.highlight {
    background: linear-gradient(135deg, var(--primary-green), #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--gray);
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    /* Forzar visibilidad permanente */
    opacity: 1 !important;
    visibility: visible !important;
    position: relative;
    z-index: 10;
}

.cta-button {
    border: none;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 180px;
    min-height: 50px;
    text-decoration: none;
    outline: none;
    /* Forzar visibilidad permanente */
    opacity: 1 !important;
    visibility: visible !important;
    position: relative;
    z-index: 11;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: var(--white);
}

.cta-button.secondary {
    background: var(--white);
    color: #f59e0b;
    border: 2px solid #f59e0b;
}

.cta-button {
    animation: float-permanent 3s ease-in-out infinite;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    animation-play-state: paused;
}

/* Animación de flotación permanente */
@keyframes float-permanent {
    0%, 100% { 
        transform: translateY(0px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    50% { 
        transform: translateY(-8px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }
}

.cta-button.primary:hover {
    background: linear-gradient(135deg, var(--secondary-green), var(--primary-green));
}

.cta-button.secondary:hover {
    background: #f59e0b;
    color: var(--white);
    border-color: #f59e0b;
}

.cta-button.primary:hover {
    background: var(--secondary-green);
}

.cta-button.secondary:hover {
    background: #f59e0b;
    color: var(--white);
}

.cta-button i {
    font-size: 1.2rem;
}

/* Beneficios del Hero */
.hero-benefits {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    padding: 1.5rem 0;
    /* Forzar visibilidad permanente */
    opacity: 1 !important;
    visibility: visible !important;
    position: relative;
    z-index: 10;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--dark-gray);
    font-size: 1.1rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    background: rgba(0, 212, 170, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.benefit-item {
    animation: float-subtle 4s ease-in-out infinite;
    animation-delay: calc(var(--i, 0) * 0.5s);
}

.benefit-item:hover {
    background: rgba(0, 212, 170, 0.1);
    transform: translateY(-2px);
    animation-play-state: paused;
}

/* Animación de flotación sutil para beneficios */
@keyframes float-subtle {
    0%, 100% { 
        transform: translateY(0px);
    }
    50% { 
        transform: translateY(-3px);
    }
}

.benefit-item i {
    color: var(--primary-green);
    font-size: 1.1rem;
}

/* Estadísticas del Hero */
.hero-stats {
    display: flex;
    gap: 4rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    padding: 2rem 0;
    /* Forzar visibilidad permanente */
    opacity: 1 !important;
    visibility: visible !important;
    position: relative;
    z-index: 10;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.stat-item {
    animation: float-stats 5s ease-in-out infinite;
    animation-delay: calc(var(--i, 0) * 0.3s);
}

.stat-item:hover .stat-number {
    transform: scale(1.1);
    animation-play-state: paused;
}

/* Animación de flotación para estadísticas */
@keyframes float-stats {
    0%, 100% { 
        transform: translateY(0px);
    }
    50% { 
        transform: translateY(-5px);
    }
}

.stat-number.green {
    color: var(--primary-green);
}

.stat-number.orange {
    color: #f59e0b;
}

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

/* Phone Container */
.phone-container {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
    margin: 2rem 0;
}

.phone-mockup {
    width: 280px;
    height: 560px;
    background: linear-gradient(145deg, var(--black), #2a2a2a);
    border-radius: 40px;
    padding: 8px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    transform-style: preserve-3d;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--white);
    border-radius: 32px;
    overflow: hidden;
    position: relative;
}

/* Contenedor de la imagen del celular */
.phone-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.phone-screenshot {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 32px;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.phone-screenshot.active {
    opacity: 1;
}

/* Indicadores del slider del celular */
.phone-slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--gray);
    cursor: pointer;
    transition: var(--transition);
    opacity: 0.5;
}

.slider-dot:hover {
    background-color: var(--primary-green);
    opacity: 0.8;
    transform: scale(1.2);
}

.slider-dot.active {
    background-color: var(--primary-green);
    opacity: 1;
    transform: scale(1.2);
}

.app-content {
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.app-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding: 10px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    border-radius: 12px;
    color: var(--white);
}

.app-icon {
    font-size: 1.5rem;
}

.app-body {
    flex: 1;
}

.match-card {
    background: var(--light-gray);
    padding: 15px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-green);
}

.match-card h4 {
    color: var(--black);
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.match-card p {
    color: var(--gray);
    font-size: 0.8rem;
    margin-bottom: 8px;
}

.players {
    background: var(--primary-green);
    color: var(--white);
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 600;
}

/* Floating Elements */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-ball {
    position: absolute;
    font-size: 2rem;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.ball-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.ball-2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.ball-3 {
    top: 70%;
    right: 15%;
    animation-delay: 2s;
}

.ball-4 {
    top: 20%;
    left: 20%;
    animation: float2 6s ease-in-out infinite;
    animation-delay: 1s;
}

.ball-5 {
    top: 80%;
    left: 25%;
    animation: float3 9s ease-in-out infinite;
    animation-delay: 3s;
}

.ball-6 {
    top: 30%;
    right: 25%;
    animation: float2 7s ease-in-out infinite;
    animation-delay: 0.5s;
}

.ball-7 {
    top: 60%;
    left: 10%;
    animation: float3 10s ease-in-out infinite;
    animation-delay: 1.5s;
}

.ball-8 {
    top: 15%;
    left: 60%;
    animation: float2 8.5s ease-in-out infinite;
    animation-delay: 2.5s;
}

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

@keyframes float2 {
    0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
    50% { transform: translateY(-15px) rotate(90deg) scale(1.1); }
}

@keyframes float3 {
    0%, 100% { transform: translateY(0px) rotate(0deg) translateX(0px); }
    50% { transform: translateY(-25px) rotate(270deg) translateX(10px); }
}



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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1rem;
}

.section-header h2 strong {
    font-weight: 800;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--gray);
}



/* Features Section */
.features {
    padding: 6rem 0;
    background: var(--light-gray);
}

.features .section-header {
    margin-bottom: 4rem;
}

/* Animación de entrada para las tarjetas */
.feature-card {
    animation: cardFloat 0.6s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }

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

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.1), rgba(0, 206, 201, 0.1));
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 8px 32px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 255, 255, 0.9);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 1.8rem;
    color: var(--white);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
}

.feature-card:hover .feature-icon {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

/* Colores alternados para los íconos */
.feature-card:nth-child(1) .feature-icon {
    background: var(--primary-green);
}

.feature-card:nth-child(2) .feature-icon {
    background: #f59e0b;
}

.feature-card:nth-child(3) .feature-icon {
    background: var(--primary-green);
}

.feature-card:nth-child(4) .feature-icon {
    background: #f59e0b;
}

.feature-card:nth-child(5) .feature-icon {
    background: var(--primary-green);
}

.feature-card:nth-child(6) .feature-icon {
    background: #f59e0b;
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--black);
}

.feature-card p {
    color: var(--gray);
    line-height: 1.6;
    font-size: 1rem;
}

/* Screenshots Section */
.screenshots {
    padding: 6rem 0;
    background: var(--white);
}

.screenshots-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 3rem;
}

.phone-mockup-screenshots {
    margin-bottom: 2rem;
}

.phone-frame {
    width: 280px;
    height: 560px;
    background: linear-gradient(145deg, var(--black), #2a2a2a);
    border-radius: 40px;
    padding: 8px;
    box-shadow: var(--shadow);
}

.phone-screen-screenshots {
    width: 100%;
    height: 100%;
    background: var(--white);
    border-radius: 32px;
    overflow: hidden;
    position: relative;
}

.screenshot {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.screenshot.active {
    opacity: 1;
}

.screenshot-content {
    padding: 20px;
    height: 100%;
}

.app-header-screenshot {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding: 10px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    border-radius: 12px;
    color: var(--white);
}

.match-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.match-item {
    background: var(--light-gray);
    padding: 15px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.match-info h4 {
    font-size: 0.9rem;
    margin-bottom: 5px;
    color: var(--black);
}

.match-info p {
    font-size: 0.8rem;
    color: var(--gray);
}

.match-status {
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 600;
}

.match-status.available {
    background: var(--primary-green);
    color: var(--white);
}

.match-status.full {
    background: var(--gray);
    color: var(--white);
}

.calendar-view, .team-view {
    padding: 20px 0;
}

.calendar-header h4 {
    text-align: center;
    margin-bottom: 20px;
    color: var(--black);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.calendar-day {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.8rem;
    background: var(--light-gray);
}

.calendar-day.has-match {
    background: var(--primary-green);
    color: var(--white);
}

.team-header {
    text-align: center;
    margin-bottom: 20px;
}

.team-header h4 {
    color: var(--black);
    margin-bottom: 5px;
}

.team-header p {
    color: var(--gray);
    font-size: 0.9rem;
}

.team-members {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.member {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: var(--light-gray);
    border-radius: 8px;
}

.member-avatar {
    width: 35px;
    height: 35px;
    background: var(--primary-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
}

.screenshots-nav {
    display: flex;
    gap: 1rem;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: var(--gray);
    cursor: pointer;
    transition: var(--transition);
}

.nav-dot.active {
    background: var(--primary-green);
    transform: scale(1.2);
}

/* CTA Final Section */
.cta-final {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    position: relative;
    overflow: hidden;
}

.cta-content {
    text-align: center;
    color: var(--white);
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.cta-button-large {
    background: var(--white);
    color: var(--primary-green);
    border: none;
    padding: 1.5rem 3rem;
    font-size: 1.3rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow);
    text-decoration: none;
    outline: none;
}

.cta-button-large:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.cta-button-large i {
    font-size: 1.4rem;
}

/* Botones de tienda */
.store-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    justify-content: center;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border: 2px solid var(--white);
    border-radius: 25px;
    background: transparent;
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.store-btn:hover {
    background: var(--white);
    color: var(--primary-green);
    transform: translateY(-2px);
}

.store-btn .store-logo {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

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

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: particle-float 8s infinite linear;
}

.particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}

.particle:nth-child(3) {
    bottom: 30%;
    left: 30%;
    animation-delay: 4s;
}

.particle:nth-child(4) {
    top: 40%;
    right: 40%;
    animation-delay: 6s;
}

.particle:nth-child(5) {
    bottom: 60%;
    left: 60%;
    animation-delay: 1s;
}

@keyframes particle-float {
    0% { transform: translateY(0px) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}

/* Footer */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-green);
}

.footer-section p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--gray);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.2rem 0;
    display: inline-block;
}

.footer-section ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: width 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-green);
    transform: translateX(5px);
}

.footer-section ul li a:hover::after {
    width: 100%;
}

.footer-section ul li a.active-link {
    color: var(--primary-green);
}

.footer-section ul li a.active-link::after {
    width: 100%;
}

.footer-section ul li i {
    margin-right: 0.5rem;
    color: var(--primary-green);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--dark-gray);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-green);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--dark-gray);
    color: var(--gray);
}

/* Discover App Section */
.discover-app {
    padding: 6rem 0;
    background: var(--white);
}

.app-mockups-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 6rem;
    margin-top: 4rem;
}

.app-mockup {
    text-align: center;
    position: relative;
}

.mockup-badge {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-green);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    z-index: 3;
    box-shadow: 0 8px 25px rgba(0, 212, 170, 0.4);
}

.app-mockup:nth-child(even) .mockup-badge {
    background: var(--accent-green);
}

.phone-frame-mockup {
    width: 220px;
    height: 420px;
    background: linear-gradient(145deg, var(--black), #2a2a2a);
    border-radius: 30px;
    padding: 6px;
    margin: 5rem auto 2rem;
    box-shadow: var(--shadow);
}

.phone-screen-mockup {
    width: 100%;
    height: 100%;
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mockup-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}

.mockup-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.mockup-logo {
    position: relative;
    color: var(--primary-green);
    font-size: 1.2rem;
}

.mockup-logo i:last-child {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.8rem;
    color: var(--white);
}

.mockup-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
}

.mockup-btn {
    padding: 8px 12px;
    border: none;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
}

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

.mockup-btn.secondary {
    background: var(--gray);
    color: var(--white);
}

.mockup-cards {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mockup-card {
    padding: 10px;
    border-radius: 8px;
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mockup-card.green {
    background: var(--primary-green);
}

.mockup-card.orange {
    background: var(--accent-green);
}

.mockup-section h4 {
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: var(--black);
}

.mockup-item {
    background: var(--light-gray);
    padding: 8px;
    border-radius: 6px;
    font-size: 0.8rem;
    color: var(--gray);
}

.mockup-profile {
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.profile-picture {
    width: 50px;
    height: 50px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    color: var(--white);
    font-weight: 700;
}

.mockup-profile h4 {
    font-size: 1rem;
    margin-bottom: 15px;
    color: var(--black);
}

.profile-stats {
    display: flex;
    justify-content: space-around;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.stat i {
    color: var(--primary-green);
    font-size: 1rem;
}

.stat span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--black);
}

.mockup-info {
    text-align: center;
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 2;
}

.mockup-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: var(--black);
    line-height: 1.2;
}

.mockup-info p {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.4;
    margin: 0;
}

/* Features Chile Section */
.features-chile {
    padding: 4rem 0;
    background: var(--white);
}

.features-chile-content {
    max-width: 800px;
    margin: 3rem auto 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: var(--border-radius);
}

.feature-check {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-check.green {
    background: var(--primary-green);
}

.feature-check.orange {
    background: var(--accent-green);
}

.feature-text h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--black);
}

.feature-text p {
    color: var(--gray);
    line-height: 1.6;
}

/* Plans Section */
.plans {
    padding: 6rem 0;
    background: var(--light-gray);
}

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

.plan-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    position: relative;
    transition: var(--transition);
}

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

.plan-card.popular {
    border: 3px solid var(--primary-green);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--accent-green);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.plan-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: var(--white);
}

.plan-icon.green {
    background: var(--primary-green);
}

.plan-icon.purple {
    background: #8b5cf6;
}

.plan-icon.yellow {
    background: #f59e0b;
}

.plan-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--black);
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--black);
}

.plan-price span {
    font-size: 1rem;
    color: var(--gray);
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
}

.plan-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--dark-gray);
}

.plan-features i {
    color: var(--primary-green);
    font-size: 0.8rem;
}

.plan-button {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    color: var(--white);
}

.plan-button.green {
    background: var(--primary-green);
}

.plan-button.purple {
    background: #8b5cf6;
}

.plan-button.yellow {
    background: #f59e0b;
}

.plan-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Download Section */
.download-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    color: var(--white);
}

.download-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.download-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.download-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
}

.download-description {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.download-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-number i {
    color: var(--accent-green);
    margin-left: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

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

.download-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    outline: none;
}

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

.download-btn.secondary {
    background: var(--white);
    color: var(--dark-gray);
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.download-btn .store-logo {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.apk-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    max-width: 500px;
    margin: 0 auto;
}

.apk-info h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.apk-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
    justify-content: center;
}

.apk-details span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.apk-note {
    font-size: 0.9rem;
    opacity: 0.8;
    text-align: center;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-benefits {
        justify-content: center;
        gap: 1.5rem;
    }

    .hero-banner {
        max-width: 100%;
        margin: 1rem auto;
    }
    
    .banner-container {
        height: 450px;
    }
    
    .banner-dots {
        margin-top: 16px;
        gap: 10px;
    }
    
    .banner-dot {
        width: 10px;
        height: 10px;
    }

    .phone-mockup {
        width: 240px;
        height: 480px;
    }



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

    .app-mockups-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .mockup-badge {
        top: -55px;
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .mockup-info {
        top: 5px;
    }
    
    .phone-frame-mockup {
        margin: 4.5rem auto 2rem;
    }
    
    .mockup-info h3 {
        font-size: 1.2rem;
        margin-bottom: 0.6rem;
    }
    
    .mockup-info p {
        font-size: 0.95rem;
    }

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

    .download-stats {
        grid-template-columns: 1fr;
    }

    .download-buttons {
        flex-direction: column;
        align-items: center;
    }

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

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-button-large {
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-content {
        gap: 0.8rem;
        padding: 0 8px;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.6rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }

    .hero-banner {
        margin: 0.6rem auto;
    }

    .banner-container {
        height: 350px;
    }

    .phone-mockup {
        width: 200px;
        height: 400px;
    }
    
    .mockup-badge {
        top: -50px;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .mockup-info {
        top: 10px;
    }
    
    .phone-frame-mockup {
        margin: 4rem auto 2rem;
    }
    
    .mockup-info h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .mockup-info p {
        font-size: 0.9rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-benefits {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .container {
        padding: 0 15px;
    }

    .cta-button-large {
        width: 100%;
        justify-content: center;
    }

    .download-content h2 {
        font-size: 2rem;
    }

    .download-subtitle {
        font-size: 1.2rem;
    }
}

/* Animaciones de entrada */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Sobrescribir cualquier opacidad para elementos del hero */
.hero-text .fade-in,
.hero-text .slide-in-left,
.hero-text .slide-in-right {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease-out;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease-out;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ===== NAVEGACIÓN STICKY ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 212, 170, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 0.8rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
}

.logo-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-green);
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--dark-gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-green);
}

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

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

.nav-cta {
    display: flex !important;
    align-items: center;
    /* Forzar visibilidad */
    visibility: visible !important;
    opacity: 1 !important;
    position: relative;
    z-index: 1001;
}

.nav-download-btn {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: var(--white);
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex !important;
    align-items: center;
    gap: 0.4rem;
    box-shadow: 0 4px 12px rgba(0, 212, 170, 0.25);
    text-transform: none;
    letter-spacing: 0.3px;
    min-width: 120px;
    justify-content: center;
    text-decoration: none;
    outline: none;
    white-space: nowrap;
    /* Forzar visibilidad */
    visibility: visible !important;
    opacity: 1 !important;
    position: relative;
    z-index: 1002;
}

.nav-download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 212, 170, 0.4);
    background: linear-gradient(135deg, #10b981, var(--primary-green));
}

.nav-download-btn:active {
    transform: translateY(0px);
    box-shadow: 0 2px 8px rgba(0, 212, 170, 0.3);
}

/* Efecto de pulso sutil */
.nav-download-btn {
    animation: navButtonPulse 4s ease-in-out infinite;
}

@keyframes navButtonPulse {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(0, 212, 170, 0.25);
    }
    50% {
        box-shadow: 0 4px 12px rgba(0, 212, 170, 0.4);
    }
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--dark-gray);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Navegación móvil */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-logo {
        gap: 0.6rem;
    }
    
    .logo-img {
        width: 55px;
        height: 55px;
    }
    
    .logo-text {
        font-size: 1.6rem;
    }
    
    .nav-download-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        min-width: 110px;
        gap: 0.3rem;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 1.5rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

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

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

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

    .nav-cta {
        display: none;
    }
    
    /* Mostrar botón en menú móvil */
    .nav-menu.active::after {
        content: '';
        display: block;
        padding: 1rem 0;
        border-top: 1px solid rgba(0, 212, 170, 0.2);
        margin-top: 1rem;
    }
}

/* Ajustar el hero para la navegación */
.hero {
    padding-top: 120px;
}

/* Estilos específicos para dispositivos Android muy pequeños */
@media (max-width: 480px) {
    .nav-container {
        padding: 0 0.8rem;
    }
    
    .logo-img {
        width: 50px;
        height: 50px;
    }
    
    .logo-text {
        font-size: 1.4rem;
    }
    
    .nav-download-btn {
        padding: 0.45rem 0.9rem;
        font-size: 0.75rem;
        min-width: 100px;
    }
    
    .navbar {
        padding: 0.8rem 0;
    }
    
    .navbar.scrolled {
        padding: 0.6rem 0;
    }
}

/* Estilos para dispositivos Android con pantalla extra pequeña */
@media (max-width: 360px) {
    .hero-content {
        gap: 0.6rem;
        padding: 0 6px;
    }

    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .hero-banner {
        margin: 0.5rem auto;
    }

    .banner-container {
        height: 300px;
    }

    .nav-container {
        padding: 0 0.6rem;
    }
    
    .logo-img {
        width: 45px;
        height: 45px;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .nav-download-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
        min-width: 90px;
    }
}