: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;
}

/* 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;
}

.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 {
    width: 20px;
    height: 20px;
}

.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;
    }
}