/* Pagamento - Estilos CSS puro com Tema Roxo, Branco e Cinza */
.pagamento-body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #f1f3f9 100%);
    color: #333;
    line-height: 1.6;
}

.pagamento-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
}

.pagamento-blog {
   /* margin-bottom: 40px;*/
}

.pagamento-animate-box {
    animation: pagamento-fadeInUp 0.6s ease-out;
}

@keyframes pagamento-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pagamento-blog-text {
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(108, 92, 231, 0.1);
    padding: 50px 40px;
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.pagamento-blog-text:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #6c5ce7, #a29bfe, #6c5ce7);
    background-size: 200% 100%;
    animation: gradientSlide 3s ease infinite;
}

@keyframes gradientSlide {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Layout melhorado com espaçamento consistente */
.pagamento-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* Header */
.pagamento-header {
    text-align: center;
    margin-bottom: 0;
}

.pagamento-h1 {
    color: #6c5ce7;
    margin-bottom: 15px;
    font-size: 42px;
    font-weight: 800;
    position: relative;
    display: inline-block;
}

.pagamento-h1:after {
    content: '';
    position: absolute;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #6c5ce7, #a29bfe);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.pagamento-intro-text {
    text-align: center;
    max-width: 800px;
    margin: 30px auto 0;
    color: #666;
    font-size: 18px;
    line-height: 1.8;
}

/* Price Section - SIMPLIFICADO SEM BRILHO EXAGERADO */
.pagamento-price-section {
    position: relative;
    z-index: 1;
    margin: 0;
}

.pagamento-price-card {
    background: linear-gradient(135deg, #6c5ce7 0%, #5b4bd8 100%);
    color: white;
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(108, 92, 231, 0.3);
    position: relative;
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

/* Removido o efeito de brilho branco exagerado */
.pagamento-price-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pagamento-price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(108, 92, 231, 0.4);
}

.pagamento-price-card:hover:before {
    opacity: 1;
}

.pagamento-price-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    opacity: 0.9;
    margin-bottom: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.pagamento-price-amount {
    font-size: 72px;
    font-weight: 800;
    margin: 10px 0;
    line-height: 1;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    color: white;
}

.pagamento-price-details {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.pagamento-price-detail {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 50px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.pagamento-price-detail:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.pagamento-price-detail svg {
    width: 16px;
    height: 16px;
    fill: white;
    opacity: 0.9;
}

/* Processo de Pagamento */
.pagamento-process-section {
    position: relative;
    z-index: 2;
    background: white;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin-top: -30px;
}

.pagamento-process-steps {
    display: flex;
    justify-content: space-between;
    margin: 40px 0;
    position: relative;
}

.pagamento-process-steps:before {
    content: '';
    position: absolute;
    top: 35px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, #6c5ce7 25%, #e0e0e0 25%, #e0e0e0 75%, #6c5ce7 75%);
    z-index: 1;
}

.pagamento-step {
    text-align: center;
    position: relative;
    z-index: 2;
    flex: 1;
}

.pagamento-step-number {
    width: 70px;
    height: 70px;
    background: white;
    border: 3px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: #666;
    margin: 0 auto 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.pagamento-step.active .pagamento-step-number {
    background: linear-gradient(135deg, #6c5ce7 0%, #5b4bd8 100%);
    border-color: #6c5ce7;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(108, 92, 231, 0.3);
}

.pagamento-step-text {
    font-size: 15px;
    color: #555;
    max-width: 140px;
    margin: 0 auto;
    font-weight: 500;
}

/* Métodos de Pagamento */
.pagamento-methods-section {
    background: white;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.pagamento-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -20px;
}

.pagamento-col-md-4 {
    flex: 0 0 33.333%;
    max-width: 33.333%;
    padding: 0 20px;
    box-sizing: border-box;
}

.pagamento-method-card {
    background: white;
    border-radius: 16px;
    padding: 35px 30px;
    margin-bottom: 30px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.pagamento-method-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(108, 92, 231, 0.15);
    border-color: #6c5ce7;
}

.pagamento-method-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #6c5ce7, #a29bfe);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pagamento-method-card:hover:before {
    opacity: 1;
}

.pagamento-method-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: linear-gradient(135deg, #f0f2ff 0%, #e8ebff 100%);
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.1);
}

.pagamento-method-icon svg {
    width: 40px;
    height: 40px;
}

.pagamento-method-title {
    color: #6c5ce7;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}

.pagamento-method-desc {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: center;
}

.pagamento-method-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.pagamento-method-features li {
    color: #555;
    font-size: 14px;
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
    line-height: 1.5;
}

.pagamento-method-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #6c5ce7;
    font-weight: bold;
    background: rgba(108, 92, 231, 0.1);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.pagamento-method-action {
    text-align: center;
    margin-top: 20px;
}

/* Informações Importantes */
.pagamento-info-section {
    background: white;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.pagamento-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.pagamento-info-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #f1f3f9 100%);
    border-left: 5px solid #6c5ce7;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.pagamento-warning-box {
    background: linear-gradient(135deg, #fff9e6 0%, #fff3cc 100%);
    border-left: 5px solid #ff9800;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.pagamento-success-box {
    background: linear-gradient(135deg, #e8f6ef 0%, #d4edda 100%);
    border-left: 5px solid #4caf50;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Segurança */
.pagamento-security-section {
    background: white;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.pagamento-security-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.pagamento-security-card {
    background: white;
    border-radius: 16px;
    padding: 35px 30px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid #f1f3f9;
}

.pagamento-security-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(108, 92, 231, 0.15);
    border-color: #6c5ce7;
}

/* FAQ */
.pagamento-faq-section {
    background: white;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.pagamento-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.pagamento-faq-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid #6c5ce7;
    
}

.pagamento-faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(108, 92, 231, 0.15);
    border-color: #f1f3f9;
}

/* Contato Final */
.pagamento-contact-section {
    background: white;
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
}

/* Tipografia */
.pagamento-h2 {
    color: #6c5ce7;
    margin-bottom: 30px;
    font-size: 32px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.pagamento-h2:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #6c5ce7, #a29bfe);
    bottom: -10px;
    left: 0;
    border-radius: 2px;
}

.pagamento-h3 {
    color: #333;
    margin-bottom: 20px;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
}

.pagamento-h4 {
    color: #333;
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 600;
}

.pagamento-p {
    color: #555;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.7;
}

.pagamento-ul {
    color: #555;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.7;
    padding-left: 20px;
}

.pagamento-ul li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 10px;
}

.pagamento-ul li:before {
    content: '•';
    color: #6c5ce7;
    font-weight: bold;
    position: absolute;
    left: -10px;
}

.pagamento-a {
    color: #6c5ce7;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 1px dotted transparent;
}

.pagamento-a:hover {
    color: #5b4bd8;
    border-bottom-color: #5b4bd8;
}

.pagamento-strong {
    font-weight: 700;
    color: #6c5ce7;
}

/* Botões - Efeito de brilho mais suave */
.pagamento-btn {
    display: inline-block;
    background: linear-gradient(135deg, #6c5ce7 0%, #5b4bd8 100%);
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    box-shadow: 0 5px 20px rgba(108, 92, 231, 0.3);
    position: relative;
    overflow: hidden;
}

.pagamento-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.5s ease;
}

.pagamento-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(108, 92, 231, 0.4);
    color: white;
}

.pagamento-btn:hover:before {
    left: 100%;
}

.pagamento-btn-secondary {
    background: linear-gradient(135deg, #8e44ad 0%, #9b59b6 100%);
    box-shadow: 0 5px 20px rgba(142, 68, 173, 0.3);
}

.pagamento-btn-tertiary {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    box-shadow: 0 5px 20px rgba(39, 174, 96, 0.3);
}

/* Footer */
.pagamento-footer {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #f1f3f9;
    text-align: center;
}

.pagamento-brand {
    color: #6c5ce7;
    font-weight: 800;
    font-size: 24px;
    display: block;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.pagamento-footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.pagamento-footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.pagamento-footer-links a:hover {
    color: #6c5ce7;
}

.pagamento-copyright {
    color: #888;
    font-size: 14px;
    margin-top: 20px;
}

/* Responsividade */
@media (max-width: 1200px) {
    .pagamento-col-md-4 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 992px) {
    .pagamento-blog-text {
        padding: 40px 30px;
    }
    
    .pagamento-content {
        gap: 50px;
    }
    
    .pagamento-price-card {
        padding: 40px 30px;
    }
    
    .pagamento-price-amount {
        font-size: 60px;
    }
    
    .pagamento-price-details {
        flex-direction: column;
        gap: 10px;
    }
    
    .pagamento-price-detail {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .pagamento-process-section {
        margin-top: -20px;
        padding: 40px 30px;
    }
    
    .pagamento-info-grid,
    .pagamento-faq-grid {
        grid-template-columns: 1fr;
    }
    
    .pagamento-security-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pagamento-process-steps:before {
        left: 5%;
        right: 5%;
    }
}

@media (max-width: 768px) {
    .pagamento-container {
        padding: 20px 15px;
    }
    
    .pagamento-blog-text {
        padding: 30px 20px;
        border-radius: 16px;
    }
    
    .pagamento-content {
        gap: 40px;
    }
    
    .pagamento-h1 {
        font-size: 32px;
    }
    
    .pagamento-h2 {
        font-size: 26px;
    }
    
    .pagamento-col-md-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .pagamento-price-card {
        padding: 30px 20px;
        border-radius: 16px;
    }
    
    .pagamento-price-amount {
        font-size: 48px;
    }
    
    .pagamento-process-steps {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    
    .pagamento-process-steps:before {
        display: none;
    }
    
    .pagamento-step {
        width: 100%;
        max-width: 300px;
    }
    
    .pagamento-security-grid {
        grid-template-columns: 1fr;
    }
    
    .pagamento-footer-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .pagamento-process-section {
        margin-top: 0;
        position: static;
        z-index: 1;
    }
}

@media (max-width: 480px) {
    .pagamento-h1 {
        font-size: 28px;
    }
    
    .pagamento-h2 {
        font-size: 24px;
    }
    
    .pagamento-h3 {
        font-size: 22px;
    }
    
    .pagamento-price-amount {
        font-size: 40px;
    }
    
    .pagamento-price-label {
        font-size: 12px;
        letter-spacing: 2px;
    }
    
    .pagamento-btn {
        padding: 14px 30px;
        font-size: 15px;
        width: 100%;
        text-align: center;
    }
    
    .pagamento-methods-section,
    .pagamento-info-section,
    .pagamento-security-section,
    .pagamento-faq-section,
    .pagamento-contact-section {
        padding: 40px 25px;
    }
}