/* ===================================
   PAYMENTS PAGE - ESTILO STRIPE
   =================================== */

.payments-body {
    background: #f6f9fc;
    min-height: 100vh;
}

/* HERO SECTION */
.payments-hero {
    padding: 4rem 0 6rem;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
    font-size: 0.875rem;
}

.breadcrumb-item {
    color: #0a2540;
    font-weight: 600;
}

.breadcrumb-separator {
    color: #6b7280;
}

.breadcrumb-link {
    color: #635bff;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.2s;
}

.breadcrumb-link:hover {
    opacity: 0.8;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* HERO CONTENT */
.hero-content {
    max-width: 540px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #0a2540;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: 1.125rem;
    color: #425466;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-hero-primary,
.btn-hero-secondary {
    padding: 0.875rem 1.5rem;
    border-radius: 6px;
    font-size: 0.9375rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-hero-primary {
    background: #635bff;
    color: white;
}

.btn-hero-primary:hover {
    background: #5348e0;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(99, 91, 255, 0.3);
}

.btn-hero-secondary {
    background: transparent;
    color: #635bff;
    border: 1px solid #e3e8ee;
}

.btn-hero-secondary:hover {
    border-color: #635bff;
    background: #fafaff;
}

/* PAYMENT MOCKUP */
.hero-mockup {
    position: relative;
}

.payment-card {
    background: white;
    border-radius: 16px;
    box-shadow:
        0 0 0 1px rgba(0, 0, 0, 0.05),
        0 10px 40px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    max-width: 480px;
    margin: 0 auto;
}

/* PAYMENT HEADER */
.payment-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.back-btn {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid #e3e8ee;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #6b7280;
    transition: all 0.2s;
}

.back-btn:hover {
    border-color: #d1d5db;
    background: #f9fafb;
}

.payment-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1a1a1a;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.125rem;
}

.payment-brand span {
    font-size: 1rem;
    font-weight: 600;
    color: #0a2540;
}

/* PAYMENT AMOUNT */
.payment-amount {
    margin-bottom: 1.5rem;
}

.amount-label {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.25rem;
}

.amount-value {
    font-size: 2rem;
    font-weight: 700;
    color: #0a2540;
}

/* PRODUCT IMAGE */
.product-image {
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #c7d2fe 0%, #fecaca 50%, #fde68a 100%);
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.product-img-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
}

.product-mockup {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.product-mockup::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: white;
    border-radius: 50%;
    opacity: 0.1;
}

/* PAYMENT FORM */
.payment-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.section-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #0a2540;
    margin: 0;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.8125rem;
    color: #6b7280;
    font-weight: 500;
}

.field-hint {
    font-size: 0.75rem;
    color: #9ca3af;
    line-height: 1.4;
    margin: 0;
}

.form-input,
.form-select {
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 0.9375rem;
    font-family: inherit;
    transition: all 0.2s;
    background: white;
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: #635bff;
    box-shadow: 0 0 0 3px rgba(99, 91, 255, 0.1);
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    padding-right: 2.5rem;
}

.link-small {
    font-size: 0.8125rem;
    color: #635bff;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.2s;
}

.link-small:hover {
    opacity: 0.8;
}

/* PAYMENT METHODS */
.payment-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.payment-method {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    border: 2px solid #e3e8ee;
    border-radius: 8px;
    background: white;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.875rem;
    font-weight: 500;
    color: #425466;
}

.payment-method:hover {
    border-color: #d1d5db;
    background: #f9fafb;
}

.payment-method.active {
    border-color: #635bff;
    background: #fafaff;
    color: #635bff;
}

.payment-method svg {
    color: currentColor;
}

/* PAYMENT FOOTER */
.payment-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #e3e8ee;
    font-size: 0.75rem;
    color: #6b7280;
}

.powered-by {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.powered-by strong {
    color: #635bff;
    font-weight: 600;
}

.payment-links {
    display: flex;
    gap: 1rem;
}

.payment-links a {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.2s;
}

.payment-links a:hover {
    color: #0a2540;
}

/* PAYMENT BADGES */
.payment-badges {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid #e3e8ee;
}

.badge-text {
    font-size: 0.75rem;
    color: #6b7280;
}

.badges {
    display: flex;
    gap: 0.5rem;
}

.badge {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9fafb;
    border: 1px solid #e3e8ee;
    border-radius: 6px;
    font-size: 1rem;
}

/* FEATURES SECTION */
.features-section {
    padding: 6rem 0;
    background: white;
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0a2540;
    text-align: center;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.feature-item {
    text-align: center;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0a2540;
    margin-bottom: 0.75rem;
}

.feature-item p {
    font-size: 0.9375rem;
    color: #6b7280;
    line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 968px) {
    .payments-nav {
        flex-direction: column;
        align-items: flex-start;
    }

    .top-nav {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }

    .hero-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .payment-card {
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .payment-card {
        padding: 1.5rem;
    }

    .payment-methods {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}