:root {
    --primary-color: #6200EE;
    --primary-dark: #3700B3;
    --secondary-color: #03DAC6;
    --background-color: #f8f9fa;
    --text-color: #333;
    --white: #ffffff;
    --font-family: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--background-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    border: 2px solid transparent;
    transition: border-color 0.2s ease, background-color 0.2s ease;
    margin-right: 0.5rem;
}

.nav-link:hover {
    border-color: var(--primary-color);
    background-color: rgba(98, 0, 238, 0.06);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
}

/* Hero Section */
.hero {
    padding: 6rem 0 4rem;
    text-align: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    overflow: hidden;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
    line-height: 1.2;
}

.hero h1 span {
    color: var(--primary-color);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #555;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

/* Promoter teaser in hero */
.promoter-teaser {
    margin-bottom: 2rem;
}

.promoter-teaser-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, rgba(98, 0, 238, 0.12) 0%, rgba(3, 218, 198, 0.12) 100%);
    border: 1.5px solid rgba(98, 0, 238, 0.3);
    color: var(--primary-dark);
    text-decoration: none;
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    animation: teaser-pulse 3s ease-in-out infinite;
}

.promoter-teaser-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(98, 0, 238, 0.2);
    border-color: var(--primary-color);
    animation: none;
}

.teaser-icon {
    font-size: 1.3rem;
}

@keyframes teaser-pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(98, 0, 238, 0.15);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(98, 0, 238, 0);
    }
}

.store-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
    height: 80px;
}

.store-badge {
    height: 80px;
    width: auto;
    transition: transform 0.2s ease;
}

.store-badge:hover {
    transform: scale(1.05);
}

.hero-image {
    margin-top: 2rem;
    position: relative;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.app-mockup {
    width: 100%;
    max-width: 300px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    transform: rotate(-5deg);
    transition: transform 0.3s ease;
}

.app-mockup:hover {
    transform: rotate(0deg) scale(1.05);
}

.btn-primary-large {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-primary-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(98, 0, 238, 0.3);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Categories Section */
.categories {
    padding: 5rem 0;
    background-color: var(--white);
    text-align: center;
}

.categories h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.categories-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    max-width: 1000px;
    margin: 0 auto;
}

.category-item {
    background-color: #f0f2f5;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    color: var(--text-color);
    font-weight: 500;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.category-item:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

/* Features Section */
.features {
    padding: 6rem 0;
    background-color: #f9f9f9;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: var(--primary-dark);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    padding: 2.5rem;
    border-radius: 15px;
    background-color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: left;
    transition: transform 0.3s ease;
    border-top: 4px solid var(--primary-color);
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-dark);
    font-size: 1.4rem;
}

.feature-card p {
    color: #666;
    font-size: 1rem;
}

/* Promoters Section — Full redesign */
.promoters {
    padding: 7rem 0;
    background: linear-gradient(135deg, #1a0050 0%, #3700B3 50%, #6200EE 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.promoters-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    background: var(--white);
}

.shape-1 {
    width: 500px;
    height: 500px;
    top: -150px;
    right: -150px;
}

.shape-2 {
    width: 350px;
    height: 350px;
    bottom: -120px;
    left: -100px;
}

.promoters .container {
    position: relative;
    z-index: 1;
}

.promoter-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.promoters h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--white);
    line-height: 1.15;
}

.promoters-subtitle {
    font-size: 1.2rem;
    opacity: 0.85;
    max-width: 650px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

/* Stats Row */
.promoter-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
}

/* Benefit Cards */
.promoter-cards {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.promoter-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem 1.75rem;
    width: 240px;
    transition: transform 0.3s ease, background 0.3s ease;
    text-align: center;
}

.promoter-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.17);
}

.promoter-card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.promoter-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #fff;
}

.promoter-card p {
    font-size: 0.95rem;
    opacity: 0.8;
    line-height: 1.5;
}

/* CTA Button */
.btn-promoter-cta {
    display: inline-block;
    background: var(--white);
    color: var(--primary-dark);
    padding: 1.1rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.15rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    margin-bottom: 1rem;
}

.btn-promoter-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.promoter-note {
    font-size: 0.9rem;
    opacity: 0.65;
    margin-top: 0.5rem;
}

/* Footer */
footer {
    background-color: #333;
    color: var(--white);
    padding: 2rem 0;
    text-align: center;
}

/* Hero Badges */
.hero-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.badge {
    background-color: rgba(98, 0, 238, 0.1);
    color: var(--primary-dark);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.95rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.badge .emoji {
    font-size: 1.1rem;
}

/* Pricing Section */
.pricing {
    padding: 6rem 0;
    background-color: var(--white);
    text-align: center;
}

.pricing h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.pricing-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    width: 300px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.popular {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
    z-index: 1;
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
}

.pricing-header {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #f0f0f0;
}

.pricing-header h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-dark);
}

.price span {
    font-size: 1rem;
    color: #888;
    font-weight: 400;
}

.services-limit {
    margin-top: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
    background-color: rgba(98, 0, 238, 0.05);
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 10px;
    font-size: 0.9rem;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.pricing-features li {
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: #555;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing .btn-outline {
    background-color: transparent;
    border: 2px solid #ddd;
    color: var(--text-color);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: block;
}

.pricing .btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.pricing .btn-primary {
    display: block;
    width: 100%;
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background-color: #f8f9fa;
}

.contact-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: var(--font-family);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.captcha-container {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}

.contact-form button {
    width: 100%;
    border: none;
    padding: 1rem;
    font-size: 1.1rem;
    cursor: pointer;
}

.contact-form button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.form-status {
    margin-top: 1.5rem;
    text-align: center;
    font-weight: 600;
}

.success-message {
    color: #28a745;
    padding: 10px;
    background-color: rgba(40, 167, 69, 0.1);
    border-radius: 5px;
}

.error-message {
    color: #dc3545;
    padding: 10px;
    background-color: rgba(220, 53, 69, 0.1);
    border-radius: 5px;
}

/* Payment Badge */
.payment-badge-container {
    text-align: center;
    margin: 4rem auto 0;
    padding: 2.5rem 4rem;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid #eaeaea;
    max-width: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.payment-badge-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: #009ee3;
    /* Azul de Mercado Pago al pasar el mouse */
}

.payment-badge-container p {
    color: #444;
    font-size: 1.15rem;
    margin-bottom: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.payment-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.mp-main-logo {
    height: 50px;
    width: auto;
}

.mp-badge-img {
    height: 100px;
    width: auto;
}

/* Responsive Layout */
@media screen and (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.2rem;
        word-wrap: break-word;
        hyphens: auto;
    }

    .hero p {
        font-size: 1.1rem;
        padding: 0 10px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn-primary-large,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }

    .promoter-teaser-link {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }

    .promoter-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .stat-divider {
        width: 50px;
        height: 1px;
    }

    .payment-badge-container {
        padding: 1.5rem;
        margin-top: 2rem;
    }

    .payment-logos {
        gap: 1rem;
    }

    .mp-main-logo {
        height: 35px;
    }

    .mp-badge-img {
        height: 60px;
    }
}