:root {
    --primary-color: #2563eb; /* Azul universal */
    --primary-dark: #1d4ed8;
    --secondary-color: #059669;
    --dark-color: #1f2937;
    --light-color: #f9fafb;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --gray-color: #6b7280;
    --light-gray: #e5e7eb;
    --border-radius: 0.5rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #f3f4f6;
    color: var(--dark-color);
    line-height: 1.5;
}

/* Header compacto e moderno */
.checkout-header {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    padding: 0.75rem 1.5rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Primeira linha (brand + user info) */
.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
}

.brand i {
    font-size: 1.2rem;
    color: #fef08a; /* Amarelo claro para contraste */
}

/* Informações do usuário */
.checkout-user-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    font-size: 0.9rem;
}

.btn-logout {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.btn-logout:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Passos do checkout */
.progress-steps {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    padding: 0.5rem 0;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    position: relative;
    min-width: 80px;
}

.step span {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

.step p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.7rem;
    font-weight: 500;
    text-align: center;
}

.step.active span {
    background-color: white;
    color: #2563eb;
}

.step.active p {
    color: white;
    font-weight: 600;
}

/* Linha conectando os passos */
.step:not(:last-child):after {
    content: '';
    position: absolute;
    top: 12px;
    left: calc(50% + 12px);
    width: calc(100% - 24px);
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
    z-index: 1;
}

.step.active:after {
    background-color: white;
}

/* Responsividade */
@media (max-width: 768px) {
    .header-content {
        padding: 0.5rem;
    }
    
    .progress-steps {
        gap: 0.5rem;
    }
    
    .step {
        min-width: 60px;
    }
    
    .step p {
        font-size: 0.6rem;
    }
}

.progress-steps {
    grid-column: 1 / -1;
    display: flex;
    padding: 1rem;
    background-color: var(--light-color);
    border-bottom: 1px solid var(--light-gray);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding: 0.5rem 0;
    min-width: 100px;
}

.step:not(:last-child):after {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    width: 100%;
    height: 2px;
    background-color: var(--light-gray);
    z-index: 1;
}

.step span {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--light-gray);
    color: var(--gray-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
    font-size: 0.875rem;
}

.step p {
    color: var(--gray-color);
    font-size: 0.75rem;
    font-weight: 500;
    text-align: center;
}

.step.active span {
    background-color: var(--primary-color);
    color: white;
}

.step.active p {
    color: var(--dark-color);
    font-weight: 600;
}

.step.active:after {
    background-color: var(--primary-color);
}

/* Layout principal - Versão compacta para desktop */
.checkout-main {
    max-width: 800px; /* Largura máxima reduzida */
    margin: 0 auto; /* Centraliza o conteúdo */
    padding: 1.25rem; /* Padding menor que 1.5rem */
    overflow: hidden;
}

/* Ajuste para telas grandes (PC) */
@media (min-width: 992px) {
    .checkout-main {
        padding: 1.5rem 1rem; /* Reduz o padding lateral */
    }
}

/* Mantenha o mobile como está */
@media (max-width: 768px) {
    .checkout-main {
        padding: 1rem; /* Padding menor para mobile */
        max-width: 100%; /* Ocupa toda a largura */
    }
}
/* Layout principal - Versão compacta para desktop */
.checkout-summary {
    max-width: 800px; /* Largura máxima reduzida */
    margin: 0 auto; /* Centraliza o conteúdo */
    padding: 1.25rem; /* Padding menor que 1.5rem */
    overflow: hidden;
}

/* Ajuste para telas grandes (PC) */
@media (min-width: 992px) {
    .checkout-summary {
        padding: 1.5rem 1rem; /* Reduz o padding lateral */
    }
}

/* Mantenha o mobile como está */
@media (max-width: 768px) {
    .checkout-summary {
        padding: 1rem; /* Padding menor para mobile */
        max-width: 100%; /* Ocupa toda a largura */
    }
}

.checkout-section {
    display: none;
    animation: fadeIn 0.3s ease;
}

.checkout-section.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.checkout-section h2 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section-description {
    color: var(--gray-color);
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.toggle-container {
    display: flex;
    margin-bottom: 1.5rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid var(--light-gray);
    background-color: var(--light-color);
}

.toggle-btn {
    flex: 1;
    padding: 0.75rem;
    border: none;
    background-color: transparent;
    color: var(--gray-color);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.875rem;
}

.toggle-btn.active {
    background-color: var(--primary-color);
    color: white;
}

.checkout-form {
    display: none;
}

.checkout-form.active {
    display: block;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--dark-color);
    font-size: 0.875rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius);
    font-size: 0.875rem;
    transition: all 0.2s ease;
    background-color: white;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-row {
    display: flex;
    gap: 0.75rem;
}

.form-row .form-group {
    flex: 1;
}

.btn-continue {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
}

.btn-continue:hover {
    background-color: var(--primary-dark);
}

.user-info-review {
    background-color: var(--light-color);
    padding: 1.25rem;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
    border: 1px solid var(--light-gray);
}

.info-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item span:first-child {
    font-weight: 500;
    color: var(--gray-color);
}

.payment-methods h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.payment-options {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
}

.payment-option {
    flex: none;
    width: 120px;
    padding: 0.75rem;
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    background-color: white;
}

.payment-option.active {
    border-color: var(--primary-color);
    background-color: rgba(37, 99, 235, 0.05);
}

.payment-option i {
    font-size: 1.5rem;
    color: var(--gray-color);
}

.payment-option.active i {
    color: var(--primary-color);
}

.payment-option span {
    font-size: 0.75rem;
    font-weight: 500;
    text-align: center;
}

.payment-form {
    display: none;
    margin-bottom: 1.5rem;
}

.payment-form.active {
    display: block;
}

.pix-info {
    text-align: center;
    padding: 1rem;
}

.pix-qr-code {
    margin: 1rem 0;
    padding: 1rem;
    background-color: white;
    border-radius: var(--border-radius);
    border: 1px solid var(--light-gray);
    display: inline-block;
}

.pix-qr-code img {
    width: 160px;
    height: 160px;
    margin: 0 auto;
}

.pix-copy-code {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.pix-copy-code input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius);
    font-size: 0.75rem;
    text-align: center;
    background-color: white;
}

.btn-copy {
    background-color: var(--light-color);
    border: 1px solid var(--light-gray);
    padding: 0 0.75rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: all 0.2s ease;
    font-size: 0.75rem;
    white-space: nowrap;
}

.btn-copy:hover {
    background-color: var(--light-gray);
}

.boleto-info {
    text-align: center;
    padding: 1rem;
}

.btn-generate-boleto {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    width: 100%;
    justify-content: center;
}

.btn-generate-boleto:hover {
    background-color: var(--primary-dark);
}

.btn-confirm {
    width: 100%;
    background-color: var(--success-color);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: var(--border-radius);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-confirm:hover {
    background-color: #0da271;
}

.confirmation-success {
    text-align: center;
    padding: 1rem 0;
}

.success-icon {
    font-size: 3rem;
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.confirmation-success h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    justify-content: center;
}

.order-summary {
    background-color: var(--light-color);
    padding: 1.25rem;
    border-radius: var(--border-radius);
    margin: 1.5rem 0;
    text-align: left;
    border: 1px solid var(--light-gray);
}

.order-summary h3 {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
}

.summary-item:last-child {
    margin-bottom: 0;
}

.testimonial {
    background-color: rgba(5, 150, 105, 0.05);
    padding: 1.25rem;
    border-radius: var(--border-radius);
    margin-top: 1.5rem;
    border: 1px solid rgba(5, 150, 105, 0.1);
}

.stars {
    color: var(--warning-color);
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--gray-color);
    font-size: 0.875rem;
}

.btn-home {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.875rem 1.5rem;
    border-radius: var(--border-radius);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    width: 100%;
}

.btn-home:hover {
    background-color: var(--primary-dark);
}

.checkout-summary {
    background-color: var(--light-color);
    padding: 1.5rem;
    border-left: 1px solid var(--light-gray);
    overflow-y: auto;
}

.summary-container {
    position: sticky;
    top: 1rem;
}

.summary-container h3 {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    color: var(--dark-color);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
}

.summary-item span:first-child {
    color: var(--gray-color);
}

.summary-item span:last-child {
    font-weight: 500;
}

.summary-divider {
    height: 1px;
    background-color: var(--light-gray);
    margin: 1.25rem 0;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.benefits-list {
    margin-bottom: 1.5rem;
}

.benefits-list h4 {
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    color: var(--dark-color);
}

.benefits-list ul {
    list-style: none;
}

.benefits-list li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.8125rem;
}

.benefits-list i {
    color: var(--success-color);
    margin-top: 0.15rem;
    font-size: 0.75rem;
}

.security-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--gray-color);
    margin-top: 1.25rem;
    flex-wrap: wrap;
}

.security-info i:first-child {
    color: var(--success-color);
    font-size: 0.875rem;
}

.payment-icons {
    display: flex;
    gap: 0.5rem;
    margin-left: auto;
}

.payment-icons i {
    font-size: 1.25rem;
    color: var(--gray-color);
}

/* Melhorias para mobile */
@media (max-width: 768px) {
    .checkout-container {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .checkout-summary {
        border-left: none;
        border-top: 1px solid var(--light-gray);
        order: -1;
        padding: 1.25rem;
    }
    
    .checkout-main {
        padding: 1.25rem;
    }
    
    .progress-steps {
        padding: 0.75rem;
    }
    
    .step {
        min-width: 80px;
    }
    
    .step span {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }
    
    .step p {
        font-size: 0.6875rem;
    }
    
    .payment-options {
        gap: 0.5rem;
        padding-bottom: 0.25rem;
    }
    
    .payment-option {
        width: 100px;
        padding: 0.5rem;
    }
    
    .payment-option i {
        font-size: 1.25rem;
    }
    
    .payment-option span {
        font-size: 0.6875rem;
    }
    
    .pix-qr-code img {
        width: 140px;
        height: 140px;
    }
    
    .confirmation-success h2 {
        font-size: 1.25rem;
    }
    
    .order-summary,
    .user-info-review,
    .testimonial {
        padding: 1rem;
        margin: 1rem 0;
    }
}

@media (max-width: 480px) {
    .checkout-header h1 {
        font-size: 1.125rem;
    }
    
    .checkout-section h2 {
        font-size: 1.125rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .payment-option {
        width: 90px;
    }
    
    .pix-copy-code {
        flex-direction: column;
    }
    
    .btn-copy {
        padding: 0.5rem;
        justify-content: center;
    }
}

.fa-cc-elo {
    background: linear-gradient(135deg, #00A54F, #FFFFFF, #EE2944);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.payment-option .fa-credit-card {
    color: var(--gray-color);
}

.payment-option.active .fa-credit-card {
    color: var(--primary-color);
}

/* Ajuste para múltiplas opções */
.payment-options {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .payment-options {
        grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .payment-options {
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    }
}

.checkout-header.minimalist {
    background: #2563eb;
    padding: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.checkout-header.minimalist .brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
}

.checkout-header.minimalist .brand i {
    color: #fef08a;
}

.checkout-header.minimalist p {
    margin: 0.5rem 0 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}
/* Adicione ao CSS */
.toggle-btn {
    transition: all 0.3s ease;
    position: relative;
}

.toggle-btn.active {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

#register-form {
    padding-top: 5px; /* Espaço para o scroll */
    animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.card-input-wrapper {
    position: relative;
}

.cc-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--gray-color);
}

#card-number {
    padding-right: 50px !important; /* Espaço para o ícone */
}

/* Cores específicas para bandeiras sem ícone próprio */
.fa-credit-card[style*="#f7931a"] { /* Hipercard */
    color: #f7931a !important;
}

.fa-credit-card[style*="#6f2da8"] { /* Aura */
    color: #6f2da8 !important;
}
/* Estilos para o PIX */
.pix-info {
    text-align: center;
    padding: 1rem;
}

.pix-qr-code {
    margin: 1.5rem 0;
    padding: 1rem;
    background-color: white;
    border-radius: 0.5rem;
    border: 1px solid var(--light-gray);
    display: inline-block;
}

.pix-qr-code img {
    width: 200px;
    height: 200px;
    margin: 0 auto;
}

.pix-copy-code {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.pix-copy-code input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid var(--light-gray);
    border-radius: 0.5rem;
    font-size: 0.75rem;
    text-align: center;
    background-color: white;
}

.pix-timer {
    margin-top: 1rem;
    color: var(--gray-color);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.loading-pix {
    text-align: center;
    padding: 2rem;
    color: var(--gray-color);
}

.loading-pix i {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.pix-error {
    text-align: center;
    padding: 1.5rem;
    color: var(--danger-color);
    background-color: #fee2e2;
    border-radius: 0.5rem;
}

.pix-error i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.btn-retry-pix {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    margin-top: 1rem;
    cursor: pointer;
}

/* Responsividade */
@media (max-width: 768px) {
    .pix-qr-code img {
        width: 180px;
        height: 180px;
    }
    
    .pix-copy-code {
        flex-direction: column;
    }
}
/* Estilos para o usuário logado */
.checkout-user-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
    color: white;
}

.btn-logout {
    background: transparent;
    border: 1px solid white;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
    font-size: 0.8rem;
}

.btn-logout:hover {
    background: rgba(255,255,255,0.1);
}

/* Responsividade */
@media (max-width: 768px) {
    .checkout-user-info {
        margin-left: 0;
        margin-top: 0.5rem;
        width: 100%;
        justify-content: flex-end;
    }
}
.pix-instructions {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 20px;
}

.pix-instructions p {
    color: #6c757d;
    margin: 0;
}

.loading-pix {
    text-align: center;
    padding: 30px;
    color: #0d6efd;
}
.btn-cancel-pix {
    background-color: #f8f9fa;
    color: #dc3545;
    border: 1px solid #dc3545;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 15px;
    transition: all 0.3s;
}

.btn-cancel-pix:hover {
    background-color: #dc3545;
    color: white;
}

.pix-actions {
    text-align: center;
    margin-top: 20px;
}
/* Add this if you want to match SweetAlert style */
.btn-confirm, .btn-cancel-pix {
    font-weight: 500;
    border-radius: 4px;
    padding: 10px 24px;
    transition: all 0.3s;
}

.btn-cancel-pix {
    background-color: #f8f9fa;
    color: #dc3545;
    border: 1px solid #dc3545;
}

.btn-cancel-pix:hover {
    background-color: #dc3545;
    color: white;
}
.payment-option.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}
#pix-form.active {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}


.subscription-info-review {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin-top: 25px;
    border: 1px solid #e0e0e0;
}

.subscription-info-review h4 {
    color: #2c3e50;
    font-size: 18px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.subscription-info-review h4 i {
    color: #f39c12;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.info-item {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-weight: 600;
    color: #7f8c8d;
    font-size: 14px;
}

.info-value {
    color: #2c3e50;
    font-size: 15px;
}

.status-active {
    color: #27ae60 !important;
    font-weight: 600;
}

.subscription-actions {
    margin-top: 20px;
    text-align: center;
}

.btn-manage {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s;
}

.btn-manage:hover {
    background-color: #2980b9;
}

.btn-manage i {
    margin-right: 5px;
}
.pix-timer-container {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
    border-radius: 12px;
    padding: 16px;
    margin: 20px 0;
    border: 1px solid #e0e3e7;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.pix-timer-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
    color: #4a5568;
    font-size: 14px;
}

.pix-timer-header i {
    color: #f6ad55;
    font-size: 18px;
}

.pix-countdown {
    font-size: 32px;
    font-weight: 700;
    color: #2d3748;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2px;
    margin: 8px 0;
}

.time-separator {
    animation: blink 1s infinite;
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.3; }
    100% { opacity: 1; }
}

.pix-timer-footer {
    font-size: 12px;
    color: #718096;
    margin-top: 8px;
}

/* Adicione estas classes para quando o tempo estiver acabando */
.pix-countdown.warning {
    color: #dd6b20;
}

.pix-countdown.danger {
    color: #e53e3e;
    animation: pulse 0.5s infinite alternate;
}

@keyframes pulse {
    from { transform: scale(1); }
    to { transform: scale(1.05); }
}