:root {
    --primary: #FFD166;
    --secondary: #FFAB91;
    --accent: #F48FB1;
    --dark: #0f172a;
    --dark-soft: #1e293b;
    --text: #334155;
    --muted: #94a3b8;
    --border: #e2e8f0;
    --success: #34a853;
    --error: #dc3545;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background: #fafafa;
    color: var(--text);
    min-height: 100vh;
}

/* Navigation */
.nav {
    background: white;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 36px;
}

.nav-user a {
    color: var(--text);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.nav-user a:hover {
    color: var(--primary);
}

/* User Dropdown */
.user-dropdown {
    position: relative;
}

.user-menu-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 999px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text);
    transition: all 0.3s ease;
}

.user-menu-trigger:hover {
    background: #f8f9fa;
    border-color: var(--primary);
}

.user-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    min-width: 200px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.user-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: var(--text);
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.95rem;
}

.dropdown-item:hover {
    background: #f8f9fa;
}

.dropdown-item.active {
    background: rgba(244, 143, 177, 0.1);
    color: var(--primary);
}

.dropdown-item.active-premium {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
    color: white;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.dropdown-item.active-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.dropdown-item.active-premium:hover::before {
    left: 100%;
}

.dropdown-item.active-premium:hover {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 50%, var(--primary) 100%);
    transform: translateX(4px);
}

.dropdown-item.active-premium svg {
    color: white;
}

.dropdown-divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    margin: 4px 0;
}

.icon-sm {
    width: 16px;
    height: 16px;
}

/* Hero */
.hero {
    padding: 80px 24px 60px;
    text-align: center;
    background: linear-gradient(180deg, white 0%, #fafafa 100%);
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(244, 143, 177, 0.3);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--dark);
    margin-bottom: 16px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--muted);
    line-height: 1.6;
}

/* Referral Note Section */
.referral-note {
    padding: 0 24px 30px;
    background: linear-gradient(180deg, #fafafa 0%, white 100%);
}

.note-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 28px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08), rgba(118, 75, 162, 0.08));
    border: 2px solid rgba(102, 126, 234, 0.2);
    border-radius: 16px;
    border-left: 4px solid #667eea;
}

.note-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.note-content h4 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.note-content p {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.6;
    margin: 0;
}

.note-content strong {
    color: #667eea;
}

@media (max-width: 600px) {
    .note-container {
        flex-direction: column;
        gap: 12px;
        padding: 20px;
    }

    .note-icon {
        font-size: 1.5rem;
    }

    .note-content h4 {
        font-size: 1rem;
    }

    .note-content p {
        font-size: 0.9rem;
    }
}

/* Pricing Section */
.pricing-section {
    padding: 80px 24px 100px;
    background: linear-gradient(180deg,
            #fafafa 0%,
            rgba(255, 209, 102, 0.05) 20%,
            rgba(255, 171, 145, 0.08) 50%,
            rgba(244, 143, 177, 0.05) 80%,
            #fafafa 100%);
    position: relative;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(255, 209, 102, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(244, 143, 177, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Payment Toggle */
.payment-toggle {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 48px;
}

.toggle-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: white;
    border: 2px solid var(--border);
    border-radius: 12px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    color: var(--text);
}

/* Info Button */
.info-btn {
    background: none;
    border: none;
    color: #6366f1;
    cursor: pointer;
    padding: 4px;
    margin-left: 8px;
    display: inline-flex;
    align-items: center;
    transition: all 0.2s;
}

.info-btn:hover {
    color: #4f46e5;
    transform: scale(1.1);
}

.info-btn i {
    width: 16px;
    height: 16px;
}

/* Info Modal */
.info-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.info-modal.active {
    display: flex;
}

.info-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
}

.info-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalScale 0.3s ease;
}

.info-modal-content img {
    max-width: 100%;
    max-height: 80vh;
    display: block;
    border-radius: 8px;
}

.info-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    z-index: 1;
}

.info-modal-close:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: scale(1.1);
}

@keyframes modalScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}


.toggle-btn:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.toggle-btn.active {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-color: var(--primary);
    color: white;
    box-shadow: 0 4px 16px rgba(244, 143, 177, 0.3);
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    perspective: 1000px;
    padding-top: 20px;
}

.pricing-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid var(--border);
    border-radius: 20px;
    padding: 48px 28px;
    /* ← CAMBIAR de 40px a 48px */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    cursor: pointer;
    overflow: visible;
    min-height: 360px;
    /* ← CAMBIAR de 320px a 360px */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 20px;
    z-index: 0;
}

.pricing-card:hover::before {
    opacity: 0.08;
}

.pricing-card:hover {
    transform: translateY(-16px) rotateX(5deg) scale(1.02);
    box-shadow:
        0 20px 60px rgba(244, 143, 177, 0.25),
        0 0 0 1px rgba(255, 209, 102, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    border-color: transparent;
    background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
}

.pricing-card.featured {
    border-color: var(--primary);
    box-shadow:
        0 12px 40px rgba(244, 143, 177, 0.2),
        0 0 0 1px var(--primary);
    transform: scale(1.05);
    background: linear-gradient(135deg, #ffffff 0%, #fffbf3 100%);
}

.pricing-card.featured::before {
    opacity: 0.1;
}

.pricing-card.featured:hover {
    transform: translateY(-16px) rotateX(5deg) scale(1.08);
    box-shadow:
        0 24px 70px rgba(244, 143, 177, 0.35),
        0 0 0 2px var(--primary),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.pricing-card * {
    position: relative;
    z-index: 1;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 20px;
    z-index: 0;
}

.pricing-card:hover::before {
    opacity: 0.08;
}

.pricing-card:hover {
    transform: translateY(-16px) rotateX(5deg) scale(1.02);
    box-shadow:
        0 20px 60px rgba(244, 143, 177, 0.25),
        0 0 0 1px rgba(255, 209, 102, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    border-color: transparent;
    background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
}

.pricing-card.featured {
    border-color: var(--primary);
    box-shadow:
        0 12px 40px rgba(244, 143, 177, 0.2),
        0 0 0 1px var(--primary);
    transform: scale(1.05);
    background: linear-gradient(135deg, #ffffff 0%, #fffbf3 100%);
}

.pricing-card.featured::before {
    opacity: 0.1;
}

.pricing-card.featured:hover {
    transform: translateY(-16px) rotateX(5deg) scale(1.08);
    box-shadow:
        0 24px 70px rgba(244, 143, 177, 0.35),
        0 0 0 2px var(--primary),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.pricing-card * {
    position: relative;
    z-index: 1;
}

.featured-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    padding: 6px 20px;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(244, 143, 177, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: translateX(-50%) scale(1);
    }

    50% {
        transform: translateX(-50%) scale(1.05);
    }
}

.plan-header {
    text-align: center;
    margin-bottom: 24px;
}

.plan-header h3 {
    font-size: 1.25rem;
    color: var(--dark);
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.plan-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
    margin-bottom: 12px;
}

.currency {
    font-size: 1.5rem;
    color: var(--muted);
    margin-top: 8px;
    font-weight: 600;
}

.amount {
    font-family: var(--font-heading);
    font-size: 3.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    /* ← CAMBIAR de 1 a 1.2 */
    transition: all 0.3s ease;
    padding: 8px 0;
    /* ← AGREGAR padding vertical */
}

.pricing-card:hover .amount {
    transform: scale(1.1);
}

.period {
    font-size: 1rem;
    color: var(--muted);
    margin-top: 20px;
    font-weight: 500;
}

.plan-save {
    font-size: 0.9rem;
    color: var(--success);
    font-weight: 700;
    padding: 4px 12px;
    background: rgba(52, 168, 83, 0.1);
    border-radius: 999px;
    display: inline-block;
}

/* Pricing Features List */
.plan-features {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
    text-align: left;
    flex-grow: 1;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 0.8rem;
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.4;
}

.plan-features li:last-child {
    margin-bottom: 0;
}

.check-icon {
    width: 16px;
    height: 16px;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
    stroke-width: 3;
}

.plan-btn {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 16px rgba(244, 143, 177, 0.3);
    position: relative;
    overflow: hidden;
}

.plan-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.plan-btn:hover::before {
    width: 300px;
    height: 300px;
}

.plan-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(244, 143, 177, 0.5);
}

.plan-btn:active {
    transform: translateY(-2px);
}

/* Form */
.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
}

.form-group input {
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: all 0.2s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 209, 102, 0.1);
}

.form-group input:read-only {
    background: #f8f9fa;
    cursor: not-allowed;
}

.required {
    color: var(--error);
}

.optional {
    color: var(--muted);
    font-weight: 400;
}

.hint {
    font-size: 0.85rem;
    color: var(--muted);
}

/* USDT Info */
.usdt-info {
    background: rgba(52, 168, 83, 0.05);
    border: 2px solid var(--success);
    border-radius: 12px;
    padding: 20px;
}

.wallet-box {
    text-align: center;
    margin-bottom: 20px;
}

.wallet-box h4 {
    font-size: 0.95rem;
    color: var(--dark);
    margin-bottom: 12px;
}

.wallet-address {
    background: white;
    padding: 12px;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    word-break: break-all;
    margin-bottom: 12px;
    border: 1px solid var(--border);
}

.copy-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--dark);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.2s;
}

.copy-btn:hover {
    background: var(--dark-soft);
}

/* Alert */
.alert {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    display: none;
}

.alert.show {
    display: block;
}

.alert.success {
    background: rgba(52, 168, 83, 0.1);
    border: 1px solid var(--success);
    color: var(--success);
}

.alert.error {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid var(--error);
    color: var(--error);
}

/* Submit Button */
.submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(244, 143, 177, 0.3);
}

.submit-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 143, 177, 0.4);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: white;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border: none;
    background: #f1f5f9;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.modal-close:hover {
    background: #e2e8f0;
}

.modal-header {
    margin-bottom: 32px;
}

.modal-header h2 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--dark);
    margin-bottom: 8px;
}

.modal-subtitle {
    color: var(--muted);
    font-size: 0.95rem;
}

/* Checkout Form */
.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
}

.form-group input {
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: all 0.2s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 209, 102, 0.1);
}

.form-group input:read-only {
    background: #f8f9fa;
    cursor: not-allowed;
}

.required {
    color: var(--error);
}

.optional {
    color: var(--muted);
    font-weight: 400;
}

.hint {
    font-size: 0.85rem;
    color: var(--muted);
}

/* USDT Info */
.usdt-info {
    background: rgba(52, 168, 83, 0.05);
    border: 2px solid var(--success);
    border-radius: 12px;
    padding: 20px;
}

.wallet-box {
    text-align: center;
    margin-bottom: 20px;
}

.wallet-box h4 {
    font-size: 0.95rem;
    color: var(--dark);
    margin-bottom: 12px;
}

.wallet-address {
    background: white;
    padding: 12px;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    word-break: break-all;
    margin-bottom: 12px;
    border: 1px solid var(--border);
}

.copy-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--dark);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.2s;
}

.copy-btn:hover {
    background: var(--dark-soft);
}

/* Submit Button */
.submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(244, 143, 177, 0.3);
}

.submit-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 143, 177, 0.4);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .modal-content {
        padding: 24px;
    }
}

/* Responsive */
@media (max-width: 1100px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        min-height: 300px;
    }

    .modal-content {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .amount {
        font-size: 3rem;
    }

    .hero-title {
        font-size: 2rem;
    }
}

/* ==================== FOOTER ==================== */
.footer {
    background: linear-gradient(180deg, #0a2420 0%, #1a3432 100%);
    color: white;
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 40px;
    margin-bottom: 1rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-logo-img {
    width: 120px;
    height: auto;
    filter: brightness(0) invert(1);
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: linear-gradient(135deg, #FFD166 0%, #F48FB1 100%);
    transform: translateY(-2px);
}

.footer-social svg,
.footer-social i {
    width: 20px;
    height: 20px;
    color: white;
    stroke: white;
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #FFD166;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-disclaimer-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive Footer */
@media (max-width: 968px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer {
        padding: 3rem 0 2rem;
    }
}

/* ============================================ */
/* CREAR LANDING - CSS ADICIONAL */
/* ============================================ */
/* Añadir al final de Web/public/css/crear-landing.css */
/* 🆕 Botón de Información */
.info-button {
    position: absolute;
    top: 1rem;
    right: 3rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.info-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.5);
}

.info-button i {
    width: 20px;
    height: 20px;
}

/* 🆕 Info Modal */
.info-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.info-modal.active {
    display: flex;
    opacity: 1;
}

.info-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(10px);
}

.info-modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.4s ease;
}

@keyframes modalSlideIn {
    from {
        transform: scale(0.9) translateY(20px);
        opacity: 0;
    }

    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.info-image {
    display: block;
    max-width: 100%;
    height: auto;
}

.info-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.info-modal-close:hover {
    background: white;
    transform: scale(1.1);
}

.info-modal-close i {
    width: 24px;
    height: 24px;
    color: #1f2937;
}

/* Responsive ajustes para info button */
@media (max-width: 768px) {
    .info-button {
        right: 1rem;
        top: 0.75rem;
    }

    .info-modal-content {
        max-width: 95vw;
        max-height: 85vh;
    }

    .info-modal-close {
        top: 0.5rem;
        right: 0.5rem;
        width: 36px;
        height: 36px;
    }
}

/* ============================================ */
/* VIDEO SECTION - BENEFITS EXPLANATION        */
/* ============================================ */

.video-section {
    padding: 60px 24px;
    background: linear-gradient(180deg, #fafafa 0%, white 50%, #fafafa 100%);
}

.video-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: center;
}

.video-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 20px 60px rgba(244, 143, 177, 0.15),
        0 0 0 1px rgba(0, 0, 0, 0.05);
    /* Aspect ratio 16:9 for YouTube */
    aspect-ratio: 16 / 9;
}

.video-wrapper video,
.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px;
}

.video-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.video-description {
    padding: 20px 0;
}

.video-description h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--dark);
    margin-bottom: 24px;
    line-height: 1.3;
}

.benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 18px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.benefits-list li:hover {
    transform: translateX(8px);
    box-shadow: 0 4px 20px rgba(244, 143, 177, 0.12);
    border-color: rgba(244, 143, 177, 0.2);
}

.benefit-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
}

.benefits-list li span:last-child {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.5;
}

/* Video Section Responsive */
@media (max-width: 900px) {
    .video-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .video-description {
        text-align: center;
    }

    .benefits-list li {
        justify-content: center;
        text-align: left;
    }
}

@media (max-width: 600px) {
    .video-section {
        padding: 40px 16px;
    }

    .video-description h3 {
        font-size: 1.4rem;
    }

    .benefits-list li {
        padding: 12px 14px;
    }

    .benefit-icon {
        font-size: 1.2rem;
    }

    .benefits-list li span:last-child {
        font-size: 0.9rem;
    }
}

/* ===================== */
/* Login Required Modal  */
/* ===================== */
.login-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.login-modal.active {
    display: flex;
}

.login-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 36, 32, 0.85);
    backdrop-filter: blur(8px);
}

.login-modal-content {
    position: relative;
    background: white;
    border-radius: 24px;
    padding: 48px 40px;
    max-width: 420px;
    width: 90%;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: modalSlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.login-modal-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: block;
}

.login-modal-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.login-modal-text {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 32px;
}

.login-modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.login-modal-btn {
    display: block;
    padding: 16px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.login-modal-btn.primary {
    background: linear-gradient(135deg, var(--pink), var(--purple));
    color: #ffffff !important;
    box-shadow: 0 8px 24px rgba(244, 143, 177, 0.4);
    text-align: center;
    -webkit-text-fill-color: #ffffff;
}

.login-modal-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(244, 143, 177, 0.5);
}

.login-modal-btn.secondary {
    background: var(--light);
    color: var(--dark);
    border: 2px solid var(--border);
}

.login-modal-btn.secondary:hover {
    border-color: var(--pink);
    color: var(--pink);
}

@media (max-width: 480px) {
    .login-modal-content {
        padding: 36px 24px;
    }

    .login-modal-icon {
        font-size: 3rem;
    }

    .login-modal-title {
        font-size: 1.5rem;
    }
}

/* ==================== LANGUAGE SWITCHER ==================== */
.lang-switcher {
    position: relative;
    margin-left: auto;
    margin-right: 1rem;
}

.lang-current {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.85rem;
    transition: all 0.2s ease;
}

.lang-current:hover {
    border-color: var(--primary);
}

.lang-code {
    font-weight: 600;
    color: var(--text);
}

.lang-caret {
    font-size: 0.65rem;
    color: var(--muted);
    transition: transform 0.2s ease;
}

.lang-list {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: white;
    border: 1px solid var(--border);
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    list-style: none;
    padding: 6px;
    min-width: 140px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 100;
}

.lang-list.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background 0.2s ease;
}

.lang-list li:hover {
    background: rgba(255, 209, 102, 0.15);
}

.flag {
    width: 20px;
    height: 14px;
    background-size: cover;
    background-position: center;
    border-radius: 2px;
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
}

.flag[data-flag="es"] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 750 500'%3E%3Crect fill='%23c60b1e' width='750' height='500'/%3E%3Crect fill='%23ffc400' width='750' height='250' y='125'/%3E%3C/svg%3E");
}

.flag[data-flag="en"] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 30'%3E%3CclipPath id='a'%3E%3Cpath d='M0 0v30h60V0z'/%3E%3C/clipPath%3E%3CclipPath id='b'%3E%3Cpath d='M30 15h30v15zv15H0zH0V0zV0h30z'/%3E%3C/clipPath%3E%3Cg clip-path='url(%23a)'%3E%3Cpath d='M0 0v30h60V0z' fill='%23012169'/%3E%3Cpath d='M0 0l60 30m0-30L0 30' stroke='%23fff' stroke-width='6'/%3E%3Cpath d='M0 0l60 30m0-30L0 30' clip-path='url(%23b)' stroke='%23C8102E' stroke-width='4'/%3E%3Cpath d='M30 0v30M0 15h60' stroke='%23fff' stroke-width='10'/%3E%3Cpath d='M30 0v30M0 15h60' stroke='%23C8102E' stroke-width='6'/%3E%3C/g%3E%3C/svg%3E");
}

@media (max-width: 768px) {
    .lang-switcher {
        margin-right: 0.5rem;
    }

    .lang-current {
        padding: 6px 10px;
    }

    .lang-code {
        font-size: 0.8rem;
    }
}