/* ===== MARKETPLACE PAGE STYLES WITH PREFIX ===== */

/* Variables CSS con prefijo para Marketplace */
:root {
    --mp-primary-green: #00ff88;
    --mp-primary-green-dark: #00cc66;
    --mp-primary-green-light: #33ff99;
    --mp-primary-purple: #8b5cf6;
    --mp-primary-purple-dark: #7c3aed;
    --mp-primary-orange: #ff8c42;
    --mp-primary-orange-light: #ffa666;
    --mp-primary-blue: #4299e1;
    --mp-primary-blue-light: #68d391;
    --mp-primary-black: #000000;
    --mp-primary-gray: #1a1a1a;
    --mp-primary-gray-light: #2d2d2d;
    --mp-text-white: #ffffff;
    --mp-text-gray: #b3b3b3;
    --mp-text-gray-light: #e5e5e5;
    --mp-gradient-primary: linear-gradient(135deg, #00ff88 0%, #00cc66 100%);
    --mp-gradient-purple: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    --mp-gradient-orange: linear-gradient(135deg, #ff8c42 0%, #ffa666 100%);
    --mp-gradient-blue: linear-gradient(135deg, #4299e1 0%, #68d391 100%);
    --mp-gradient-rainbow: linear-gradient(135deg, #00ff88 0%, #4299e1 25%, #8b5cf6 50%, #ff8c42 75%, #00ff88 100%);
    --mp-gradient-dark: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #2d2d2d 100%);
    --mp-shadow-green: 0 20px 40px rgba(0, 255, 136, 0.3);
    --mp-shadow-purple: 0 20px 40px rgba(139, 92, 246, 0.3);
    --mp-shadow-orange: 0 20px 40px rgba(255, 140, 66, 0.3);
    --mp-shadow-blue: 0 20px 40px rgba(66, 153, 225, 0.3);
    --mp-shadow-dark: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Base Styles */
.mp-container {
    background-color: var(--mp-primary-black);
    color: var(--mp-text-white);
}

.mp-section {
    padding: clamp(40px, 8vw, 80px) 0;
    position: relative;
}

.mp-section--gradient {
    background: linear-gradient(135deg, var(--mp-primary-black) 0%, rgba(26, 26, 26, 1) 100%);
    position: relative;
}

.mp-section--gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(255, 140, 66, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.mp-section--light {
    background-color: var(--mp-primary-gray);
    position: relative;
}

.mp-section--light::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 200px;
    height: 200px;
    background-image: radial-gradient(rgba(0, 255, 136, 0.3) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
    z-index: 1;
}

.mp-container-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 2rem);
}

/* Hero Section */
.mp-hero {
    position: relative;
    background-color: var(--mp-primary-black);
    padding: clamp(80px, 12vw, 120px) 0 clamp(60px, 10vw, 80px);
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.mp-hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 50%;
    height: 80%;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.15), transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: mp-pulse 8s ease-in-out infinite;
}

.mp-hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 30%;
    height: 30%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1), transparent 70%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: 1;
    animation: mp-blob-float 10s ease-in-out infinite;
}

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

@keyframes mp-blob-float {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    33% {
        transform: rotate(120deg) scale(1.1);
    }
    66% {
        transform: rotate(240deg) scale(0.9);
    }
}

.mp-hero__content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: clamp(2rem, 6vw, 4rem);
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 2rem);
}

.mp-hero__left,
.mp-hero__right {
    position: relative;
}

.mp-hero__title {
    font-size: clamp(2.5rem, 8vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: var(--mp-text-white);
}

.mp-hero__highlight {
    background: var(--mp-gradient-rainbow);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    background-size: 200% 200%;
    animation: mp-rainbow-flow 3s ease-in-out infinite;
}

@keyframes mp-rainbow-flow {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.mp-hero__description {
    font-size: clamp(16px, 3vw, 18px);
    margin-bottom: 2rem;
    color: var(--mp-text-gray);
    max-width: 90%;
    line-height: 1.6;
}

.mp-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.mp-hero__stats {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(1rem, 4vw, 2rem);
    margin-top: 1.5rem;
}

.mp-stat {
    display: flex;
    flex-direction: column;
    opacity: 0;
    animation: mp-fadeIn 0.6s ease-out forwards;
    animation-delay: calc(var(--item-index, 0) * 0.2s);
}

.mp-stat__number {
    font-size: clamp(1.5rem, 4vw, 1.8rem);
    font-weight: 900;
    color: var(--mp-primary-green);
}

.mp-stat__label {
    color: var(--mp-text-gray-light);
    font-size: clamp(14px, 2.5vw, 16px);
}

.mp-hero__image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.mp-app-preview-container {
    position: relative;
    max-width: clamp(280px, 60vw, 320px);
    width: 100%;
}

.mp-app-preview {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: var(--mp-shadow-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: mp-phone-float 6s ease-in-out infinite;
}

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

.mp-floating-element {
    position: absolute;
    animation: mp-float 4s ease-in-out infinite;
}

.mp-floating-element--tag {
    top: 10%;
    right: -15%;
}

.mp-floating-element--card {
    bottom: 10%;
    left: -15%;
    animation-delay: 1s;
}

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

.mp-tag-content {
    background: var(--mp-gradient-primary);
    color: var(--mp-primary-black);
    padding: clamp(0.4rem, 2vw, 0.5rem) clamp(0.8rem, 3vw, 1rem);
    border-radius: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: var(--mp-shadow-green);
}

.mp-tag-discount {
    font-size: clamp(1rem, 3vw, 1.2rem);
    font-weight: 900;
}

.mp-tag-text {
    font-size: clamp(12px, 2vw, 14px);
}

.mp-mini-card {
    width: clamp(100px, 20vw, 120px);
    height: clamp(60px, 12vw, 70px);
    transform: rotate(-15deg);
    box-shadow: var(--mp-shadow-dark);
    border-radius: 10px;
    overflow: hidden;
}

.mp-mini-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Buttons */
.mp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: clamp(0.75rem, 2vw, 1rem) clamp(1.25rem, 3vw, 1.5rem);
    border-radius: 25px;
    font-weight: 600;
    font-size: clamp(14px, 2.5vw, 16px);
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

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

.mp-btn:hover::before {
    left: 100%;
}

.mp-btn--primary {
    background: var(--mp-gradient-primary);
    color: var(--mp-primary-black);
    box-shadow: var(--mp-shadow-green);
}

.mp-btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 255, 136, 0.4);
}

.mp-btn--outline {
    background: transparent;
    color: var(--mp-text-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.mp-btn--outline:hover {
    border-color: var(--mp-primary-green);
    color: var(--mp-primary-green);
    background: rgba(0, 255, 136, 0.1);
    transform: translateY(-3px);
}

/* Section Headers */
.mp-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto clamp(2rem, 5vw, 4rem);
    position: relative;
    z-index: 2;
}

.mp-section-header--center {
    text-align: center;
}

.mp-section-title {
    font-size: clamp(2rem, 6vw, 2.5rem);
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--mp-text-white);
}

.mp-section-title .mp-highlight {
    background: var(--mp-gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.mp-section-description {
    font-size: clamp(16px, 3vw, 18px);
    color: var(--mp-text-gray);
    line-height: 1.6;
}

/* Categories Section */
.mp-categories {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(180px, 100%), 1fr));
    gap: clamp(1rem, 3vw, 1.5rem);
    margin-bottom: 2.5rem;
}

.mp-category {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border-radius: 20px;
    padding: clamp(1.2rem, 3vw, 1.5rem);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    color: var(--mp-text-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
    animation: mp-fadeInUp 0.6s ease-out forwards;
    animation-delay: calc(var(--item-index, 0) * 0.1s);
    position: relative;
    overflow: hidden;
}

.mp-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--mp-gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mp-category:nth-child(even)::before {
    background: var(--mp-gradient-purple);
}

.mp-category:nth-child(3n)::before {
    background: var(--mp-gradient-orange);
}

.mp-category:nth-child(4n)::before {
    background: var(--mp-gradient-blue);
}

.mp-category:hover::before {
    opacity: 0.1;
}

.mp-category:hover {
    transform: translateY(-10px);
    border-color: var(--mp-primary-green);
    box-shadow: var(--mp-shadow-green);
}

.mp-category:nth-child(even):hover {
    border-color: var(--mp-primary-purple);
    box-shadow: var(--mp-shadow-purple);
}

.mp-category:nth-child(3n):hover {
    border-color: var(--mp-primary-orange);
    box-shadow: var(--mp-shadow-orange);
}

.mp-category:nth-child(4n):hover {
    border-color: var(--mp-primary-blue);
    box-shadow: var(--mp-shadow-blue);
}

.mp-category__icon {
    width: clamp(50px, 10vw, 60px);
    height: clamp(50px, 10vw, 60px);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.2) 0%, rgba(0, 255, 136, 0.05) 100%);
    border-radius: 50%;
    padding: 1rem;
    position: relative;
    z-index: 1;
}

.mp-category:nth-child(even) .mp-category__icon {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(139, 92, 246, 0.05) 100%);
}

.mp-category:nth-child(3n) .mp-category__icon {
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.2) 0%, rgba(255, 140, 66, 0.05) 100%);
}

.mp-category:nth-child(4n) .mp-category__icon {
    background: linear-gradient(135deg, rgba(66, 153, 225, 0.2) 0%, rgba(66, 153, 225, 0.05) 100%);
}

.mp-category__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.mp-category__title {
    margin-bottom: 0.5rem;
    font-size: clamp(14px, 2.5vw, 16px);
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.mp-category__count {
    color: var(--mp-text-gray-light);
    font-size: clamp(12px, 2vw, 14px);
    position: relative;
    z-index: 1;
}

/* Benefits Section */
.mp-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(250px, 100%), 1fr));
    gap: clamp(1.5rem, 3vw, 2rem);
    position: relative;
    z-index: 2;
}

.mp-benefit {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border-radius: 20px;
    padding: clamp(1.5rem, 4vw, 2rem);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(20px);
    animation: mp-fadeInUp 0.6s ease-out forwards;
    animation-delay: calc(var(--item-index, 0) * 0.1s);
    position: relative;
    overflow: hidden;
}

.mp-benefit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--mp-gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mp-benefit:nth-child(even)::before {
    background: var(--mp-gradient-purple);
}

.mp-benefit:nth-child(3n)::before {
    background: var(--mp-gradient-orange);
}

.mp-benefit:nth-child(4n)::before {
    background: var(--mp-gradient-blue);
}

.mp-benefit:hover::before {
    opacity: 0.1;
}

.mp-benefit:hover {
    transform: translateY(-10px);
    border-color: var(--mp-primary-green);
    box-shadow: var(--mp-shadow-green);
}

.mp-benefit:nth-child(even):hover {
    border-color: var(--mp-primary-purple);
    box-shadow: var(--mp-shadow-purple);
}

.mp-benefit:nth-child(3n):hover {
    border-color: var(--mp-primary-orange);
    box-shadow: var(--mp-shadow-orange);
}

.mp-benefit:nth-child(4n):hover {
    border-color: var(--mp-primary-blue);
    box-shadow: var(--mp-shadow-blue);
}

.mp-benefit__icon {
    width: clamp(50px, 10vw, 60px);
    height: clamp(50px, 10vw, 60px);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.2) 0%, rgba(0, 255, 136, 0.05) 100%);
    border-radius: 50%;
    padding: 1rem;
    position: relative;
    z-index: 1;
}

.mp-benefit:nth-child(even) .mp-benefit__icon {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(139, 92, 246, 0.05) 100%);
}

.mp-benefit:nth-child(3n) .mp-benefit__icon {
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.2) 0%, rgba(255, 140, 66, 0.05) 100%);
}

.mp-benefit:nth-child(4n) .mp-benefit__icon {
    background: linear-gradient(135deg, rgba(66, 153, 225, 0.2) 0%, rgba(66, 153, 225, 0.05) 100%);
}

.mp-benefit__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.mp-benefit__title {
    margin-bottom: 1rem;
    font-size: clamp(1.1rem, 2.5vw, 1.2rem);
    font-weight: 600;
    color: var(--mp-text-white);
    position: relative;
    z-index: 1;
}

.mp-benefit__text {
    color: var(--mp-text-gray);
    line-height: 1.6;
    font-size: clamp(14px, 2.5vw, 16px);
    position: relative;
    z-index: 1;
}

/* Stores Section */
.mp-stores-slider {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(1rem, 3vw, 2rem);
    margin-bottom: 2.5rem;
}

.mp-store-container {
    width: clamp(120px, 25vw, 150px);
    height: clamp(60px, 12vw, 80px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(20px);
    animation: mp-fadeInUp 0.6s ease-out forwards;
    animation-delay: calc(var(--item-index, 0) * 0.1s);
}

.mp-store-container:hover {
    transform: scale(1.05);
    border-color: var(--mp-primary-green);
    box-shadow: var(--mp-shadow-green);
}

.mp-store-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(0.8);
    transition: filter 0.3s ease;
}

.mp-store-container:hover .mp-store-logo {
    filter: brightness(1);
}

/* Process Steps */
.mp-process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    gap: clamp(1.5rem, 4vw, 2rem);
    position: relative;
    z-index: 2;
}

.mp-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    animation: mp-fadeInUp 0.6s ease-out forwards;
    animation-delay: calc(var(--item-index, 0) * 0.2s);
}

.mp-step__number {
    width: clamp(35px, 7vw, 40px);
    height: clamp(35px, 7vw, 40px);
    border-radius: 50%;
    background: var(--mp-gradient-primary);
    color: var(--mp-primary-black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    margin-bottom: 1.5rem;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    position: relative;
    z-index: 2;
    box-shadow: var(--mp-shadow-green);
}

.mp-step:nth-child(even) .mp-step__number {
    background: var(--mp-gradient-purple);
    box-shadow: var(--mp-shadow-purple);
}

.mp-step:nth-child(3n) .mp-step__number {
    background: var(--mp-gradient-orange);
    box-shadow: var(--mp-shadow-orange);
}

.mp-step:nth-child(4n) .mp-step__number {
    background: var(--mp-gradient-blue);
    box-shadow: var(--mp-shadow-blue);
}

.mp-step__content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border-radius: 20px;
    padding: clamp(1.2rem, 3vw, 1.5rem);
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.mp-step:hover .mp-step__content {
    border-color: var(--mp-primary-green);
    transform: translateY(-5px);
    box-shadow: var(--mp-shadow-green);
}

.mp-step:nth-child(even):hover .mp-step__content {
    border-color: var(--mp-primary-purple);
    box-shadow: var(--mp-shadow-purple);
}

.mp-step:nth-child(3n):hover .mp-step__content {
    border-color: var(--mp-primary-orange);
    box-shadow: var(--mp-shadow-orange);
}

.mp-step:nth-child(4n):hover .mp-step__content {
    border-color: var(--mp-primary-blue);
    box-shadow: var(--mp-shadow-blue);
}

.mp-step__icon {
    width: clamp(50px, 10vw, 60px);
    height: clamp(50px, 10vw, 60px);
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.mp-step__title {
    margin-bottom: 0.5rem;
    font-size: clamp(1.1rem, 2.5vw, 1.2rem);
    font-weight: 600;
    color: var(--mp-text-white);
}

.mp-step__text {
    color: var(--mp-text-gray);
    line-height: 1.6;
    font-size: clamp(14px, 2.5vw, 16px);
}

/* Products Grid */
.mp-products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(250px, 100%), 1fr));
    gap: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 2.5rem;
}

.mp-product {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    animation: mp-fadeInUp 0.6s ease-out forwards;
    animation-delay: calc(var(--item-index, 0) * 0.1s);
}

.mp-product:hover {
    transform: translateY(-10px);
    border-color: var(--mp-primary-green);
    box-shadow: var(--mp-shadow-green);
}

.mp-product__badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--mp-gradient-primary);
    color: var(--mp-primary-black);
    padding: clamp(0.25rem, 1vw, 0.3rem) clamp(0.6rem, 2vw, 0.8rem);
    border-radius: 50px;
    font-size: clamp(11px, 2vw, 12px);
    font-weight: 600;
    z-index: 2;
}

.mp-product__badge--new {
    background: var(--mp-gradient-blue);
}

.mp-product__badge--offer {
    background: var(--mp-gradient-orange);
}

.mp-product__image {
    width: 100%;
    height: clamp(150px, 30vw, 200px);
    overflow: hidden;
}

.mp-product__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.mp-product:hover .mp-product__image img {
    transform: scale(1.05);
}

.mp-product__content {
    padding: clamp(1.2rem, 3vw, 1.5rem);
}

.mp-product__category {
    color: var(--mp-primary-green);
    font-size: clamp(12px, 2vw, 14px);
    margin-bottom: 0.5rem;
}

.mp-product__title {
    margin-bottom: 0.5rem;
    font-size: clamp(14px, 2.5vw, 16px);
    font-weight: 600;
    color: var(--mp-text-white);
    line-height: 1.3;
}

.mp-product__rating {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.mp-product__stars {
    color: var(--mp-primary-green);
    margin-right: 0.5rem;
    font-size: clamp(12px, 2vw, 14px);
}

.mp-product__count {
    color: var(--mp-text-gray-light);
    font-size: clamp(11px, 2vw, 12px);
}

.mp-product__price {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.5rem;
}

.mp-product__current {
    font-size: clamp(16px, 3vw, 18px);
    font-weight: 600;
    color: var(--mp-text-white);
}

.mp-product__original {
    font-size: clamp(14px, 2.5vw, 16px);
    text-decoration: line-through;
    color: var(--mp-text-gray-light);
}

.mp-product__cashback {
    color: var(--mp-primary-green);
    font-size: clamp(12px, 2vw, 14px);
    font-weight: 600;
}

/* Testimonials */
.mp-testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
    gap: clamp(1.5rem, 3vw, 2rem);
    position: relative;
    z-index: 2;
}

.mp-testimonial {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border-radius: 20px;
    padding: clamp(1.5rem, 4vw, 2rem);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(20px);
    animation: mp-fadeInUp 0.6s ease-out forwards;
    animation-delay: calc(var(--item-index, 0) * 0.1s);
}

.mp-testimonial:hover {
    transform: translateY(-10px);
    border-color: var(--mp-primary-green);
    box-shadow: var(--mp-shadow-green);
}

.mp-testimonial__rating {
    color: var(--mp-primary-green);
    margin-bottom: 1rem;
    font-size: clamp(16px, 3vw, 18px);
}

.mp-testimonial__text {
    color: var(--mp-text-white);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: clamp(14px, 2.5vw, 16px);
}

.mp-testimonial__author {
    display: flex;
    align-items: center;
}

.mp-testimonial__avatar {
    width: clamp(40px, 8vw, 50px);
    height: clamp(40px, 8vw, 50px);
    border-radius: 50%;
    margin-right: 1rem;
    object-fit: cover;
    border: 2px solid var(--mp-primary-green);
}

.mp-testimonial__info h4 {
    margin-bottom: 0.2rem;
    font-size: clamp(14px, 2.5vw, 16px);
    font-weight: 600;
    color: var(--mp-text-white);
}

.mp-testimonial__info span {
    color: var(--mp-text-gray-light);
    font-size: clamp(12px, 2vw, 14px);
}

/* Download Section */
.mp-download {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 3fr 2fr;
    align-items: center;
    gap: clamp(2rem, 6vw, 4rem);
}

.mp-download__content {
    opacity: 0;
    transform: translateY(20px);
    animation: mp-fadeInUp 0.6s ease-out forwards;
}

.mp-download__image {
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    animation: mp-fadeInUp 0.6s ease-out forwards;
    animation-delay: 0.2s;
    justify-self: center;
}

.mp-download__title {
    font-size: clamp(2rem, 6vw, 2.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: var(--mp-text-white);
    line-height: 1.2;
}

.mp-download__description {
    font-size: clamp(16px, 3vw, 18px);
    margin-bottom: 2rem;
    color: var(--mp-text-gray);
    line-height: 1.6;
}

.mp-app-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.mp-benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--mp-text-white);
    opacity: 0;
    transform: translateX(-10px);
    animation: mp-fadeInRight 0.4s ease-out forwards;
    animation-delay: calc(var(--item-index, 0) * 0.1s + 0.4s);
    font-size: clamp(14px, 2.5vw, 16px);
}

.mp-benefit-item__icon {
    width: clamp(16px, 3vw, 20px);
    height: clamp(16px, 3vw, 20px);
    filter: invert(92%) sepia(18%) saturate(1103%) hue-rotate(98deg) brightness(97%) contrast(105%);
}

.mp-download__buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.mp-download__button {
    height: clamp(40px, 8vw, 50px);
    transition: transform 0.3s ease;
    opacity: 0;
    transform: translateY(10px);
    animation: mp-fadeInUp 0.4s ease-out forwards;
    animation-delay: calc(var(--item-index, 0) * 0.1s + 0.6s);
}

.mp-download__button:hover {
    transform: translateY(-3px);
}

.mp-download__button img {
    height: 100%;
    width: auto;
}

.mp-app-image {
    width: 100%;
    max-width: clamp(250px, 50vw, 300px);
    border-radius: 24px;
    box-shadow: var(--mp-shadow-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mp-floating-qr {
    position: absolute;
    bottom: -10%;
    right: -10%;
    padding: clamp(10px, 2vw, 15px);
    background-color: var(--mp-text-white);
    border-radius: 15px;
    box-shadow: var(--mp-shadow-dark);
    animation: mp-float 4s ease-in-out infinite;
    animation-delay: 1.5s;
}

.mp-qr-code {
    width: clamp(60px, 12vw, 80px);
    height: clamp(60px, 12vw, 80px);
}

/* FAQ Section */
.mp-faq {
    max-width: 800px;
    margin: 0 auto;
}

.mp-faq__item {
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(20px);
    animation: mp-fadeInUp 0.6s ease-out forwards;
    animation-delay: calc(var(--item-index, 0) * 0.1s);
    transition: all 0.3s ease;
}

.mp-faq__item:hover {
    border-color: var(--mp-primary-green);
    box-shadow: var(--mp-shadow-green);
}

.mp-faq__question {
    padding: clamp(1.2rem, 3vw, 1.5rem);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.mp-faq__question h3 {
    margin: 0;
    font-size: clamp(16px, 3vw, 18px);
    font-weight: 600;
    color: var(--mp-text-white);
    flex: 1;
    padding-right: 1rem;
    line-height: 1.4;
}

.mp-faq__icon {
    color: var(--mp-primary-green);
    font-size: clamp(18px, 3vw, 20px);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.mp-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.05) 0%, rgba(139, 92, 246, 0.03) 100%);
}

.mp-faq__item.active .mp-faq__question {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(139, 92, 246, 0.05) 100%);
}

.mp-faq__item.active .mp-faq__icon {
    transform: rotate(45deg);
}

.mp-faq__item.active .mp-faq__answer {
    max-height: 300px;
}

.mp-faq__answer p {
    padding: 0 clamp(1.2rem, 3vw, 1.5rem) clamp(1.2rem, 3vw, 1.5rem);
    margin: 0;
    color: var(--mp-text-gray);
    line-height: 1.6;
    font-size: clamp(14px, 2.5vw, 16px);
}

/* Utility Classes */
.mp-mt-lg {
    margin-top: clamp(2rem, 5vw, 2.5rem);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .mp-hero__content,
    .mp-download {
        gap: 3rem;
    }
    
    .mp-categories {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    }
    
    .mp-benefits {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
}

@media (max-width: 768px) {
    .mp-hero__content,
    .mp-download {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .mp-hero__right {
        order: -1;
        margin-bottom: 2rem;
    }
    
    .mp-hero__description {
        max-width: 100%;
    }
    
    .mp-hero__actions {
        justify-content: center;
    }
    
    .mp-hero__stats {
        justify-content: center;
    }
    
    .mp-download__image {
        justify-self: center;
    }
    
    .mp-download__content {
        text-align: center;
    }
    
    .mp-app-benefits {
        justify-content: center;
    }
    
    .mp-download__buttons {
        justify-content: center;
    }
    
    .mp-floating-element {
        display: none;
    }
    
    .mp-categories,
    .mp-benefits,
    .mp-process-steps,
    .mp-products,
    .mp-testimonials {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .mp-app-benefits {
        grid-template-columns: 1fr;
    }
    
    .mp-benefit-item {
        justify-content: center;
    }
    
    .mp-stores-slider {
        gap: 1rem;
    }
    
    .mp-store-container {
        width: 100px;
        height: 50px;
    }
    
    .mp-section {
        padding: clamp(30px, 6vw, 50px) 0;
    }
}

@media (max-width: 360px) {
    .mp-container-inner {
        padding: 0 0.75rem;
    }
    
    .mp-category__icon,
    .mp-benefit__icon {
        width: 40px;
        height: 40px;
    }
}

/* Mejoras para pantallas grandes */
@media (min-width: 1600px) {
    .mp-container-inner {
        max-width: 1600px;
    }
    
    .mp-categories {
        grid-template-columns: repeat(6, 1fr);
    }
    
    .mp-benefits {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .mp-products {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Animaciones */
@keyframes mp-fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes mp-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes mp-fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Animaciones condicionales */
@media (prefers-reduced-motion: no-preference) {
    .mp-category,
    .mp-benefit,
    .mp-store-container,
    .mp-step,
    .mp-product,
    .mp-testimonial,
    .mp-faq__item {
        animation: mp-fadeInUp 0.6s ease-out forwards;
        opacity: 0;
    }
}

/* Estados de focus para accesibilidad */
.mp-btn:focus,
.mp-category:focus,
.mp-faq__question:focus {
    outline: 2px solid var(--mp-primary-green);
    outline-offset: 2px;
}

/* Mejoras de contraste para accesibilidad */
@media (prefers-contrast: high) {
    .mp-text-gray {
        color: rgba(255, 255, 255, 0.9);
    }
    
    .mp-category,
    .mp-benefit,
    .mp-product,
    .mp-testimonial,
    .mp-faq__item {
        border-color: rgba(255, 255, 255, 0.3);
    }
}