/* Variáveis */
:root {
    --primary: #47d43a;
    --primary-dark: #47d43a;
    --primary-light: #48efa1;
    --secondary-dark: #259140;
    --secondary: #259140;
    --success: #2ecc71;
    --danger: #e74c3c;
    --warning: #f39c12;
    --info: #34dbbf;
    --dark: #2d3748;
    --light: #f8f9fa;
    --gray: #6c757d;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --gradient-secondary: linear-gradient(135deg, #a78bfa 0%, #ec4899 100%);
    --gradient-success: linear-gradient(135deg, #34d399 0%, #10b981 100%);
    --gradient-danger: linear-gradient(135deg, #f87171 0%, #ef4444 100%);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 10px;
    --border-radius-lg: 15px;
    --border-radius-sm: 5px;
}

/* Estilos gerais */
body {
    font-family: "Poppins", sans-serif;
    background-color: #f8f9fa;
    color: var(--dark);
    overflow-x: hidden;
    transition: background-color 0.5s ease;
}

.section {
    min-height: 100vh;
    display: none;
    padding: 70px 0;
    opacity: 0;
    transition: opacity 0.5s ease;
    position: relative;
    overflow: hidden;
}

.section.active {
    display: block;
    opacity: 1;
}

/* Shapes - Decoração de fundo */
.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: -1;
    opacity: 0.5;
}

.shape-1 {
    background: var(--primary-light);
    width: 300px;
    height: 300px;
    top: 10%;
    left: -150px;
}

.shape-2 {
    background: var(--secondary);
    width: 200px;
    height: 200px;
    bottom: 20%;
    right: -100px;
}

.shape-3 {
    background: var(--success);
    width: 150px;
    height: 150px;
    bottom: 10%;
    left: 30%;
}

.shape-4 {
    background: var(--primary);
    width: 250px;
    height: 250px;
    top: -50px;
    right: 10%;
}

.shape-5 {
    background: var(--info);
    width: 180px;
    height: 180px;
    bottom: 5%;
    left: 5%;
}

.shape-6 {
    background: var(--secondary);
    width: 220px;
    height: 220px;
    top: 15%;
    right: -100px;
}

.shape-7 {
    background: var(--primary-light);
    width: 180px;
    height: 180px;
    bottom: 15%;
    left: -90px;
}

.shape-8,
.shape-10,
.shape-12,
.shape-14,
.shape-16,
.shape-18,
.shape-20 {
    background: var(--primary-light);
    width: 250px;
    height: 250px;
    top: 5%;
    left: -120px;
}

.shape-9,
.shape-11,
.shape-13,
.shape-15,
.shape-17,
.shape-19,
.shape-21 {
    background: var(--secondary);
    width: 200px;
    height: 200px;
    bottom: 10%;
    right: -100px;
}

/* Loader */
#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.loader svg {
    width: 100px;
    height: 100px;
    transform: rotate(-90deg);
    margin-bottom: 20px;
}

.loader svg circle {
    fill: none;
    stroke-width: 5;
    stroke-linecap: round;
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
    animation: loader-animation 1.5s ease-in-out infinite;
    stroke: var(--primary);
}

@keyframes loader-animation {
    0% {
        stroke-dashoffset: 283;
    }

    50% {
        stroke-dashoffset: 0;
    }

    100% {
        stroke-dashoffset: -283;
    }
}

.loader-text {
    font-size: 18px;
    font-weight: 500;
    color: var(--primary);
    position: relative;
}

.dots span {
    opacity: 0;
    animation: dot-animation 1.5s infinite;
}

.dots span:nth-child(2) {
    animation-delay: 0.5s;
}

.dots span:nth-child(3) {
    animation-delay: 1s;
}

@keyframes dot-animation {

    0%,
    100% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }
}

/* Cursor personalizado */
.cursor {
    position: fixed;
    width: 10px;
    height: 10px;
    background-color: var(--primary);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    transition: width 0.3s, height 0.3s, background-color 0.3s;
}

.cursor-follower {
    position: fixed;
    width: 30px;
    height: 30px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9998;
    transition: all 0.2s ease;
}

/* Títulos */
.section-title {
    font-weight: 700;
    position: relative;
    display: inline-block;
    z-index: 1;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Botões */
.btn {
    border-radius: var(--border-radius);
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-primary);
    border-color: transparent;
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-danger {
    background: var(--gradient-danger);
    border-color: transparent;
}

.btn-danger:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-glow {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.btn-glow::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    z-index: -1;
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn-glow:hover::after {
    transform: translateX(0);
}

.btn-outline-glow:hover {
    box-shadow: 0 0 15px var(--primary-light);
}

.btn-3d {
    transform-style: preserve-3d;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-3d:active {
    transform: translateY(4px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.btn-with-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Seção de boas-vindas */
.welcome-content {
    margin-top: 50px;
}

.logo-animation {
    margin-bottom: 30px;
    position: relative;
}

.logo-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 36px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 10px 20px rgba(67, 97, 238, 0.3);
    animation: pulse 2s infinite;
}

.logo-icon::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0.7;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.2);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.particles-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.updates-container {
    overflow: hidden;
    max-width: 100%;
    margin: 0 auto;
    padding: 20px 0;
}

.updates-slider {
    display: flex;
    animation: slide 30s infinite linear;
}

.update-item {
    min-width: 300px;
    margin: 0 20px;
    padding: 20px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    transition: var(--transition);
    transform: translateZ(0);
    /* Melhora desempenho de animação */
}

.update-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.update-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.update-content h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.update-content p {
    font-size: 0.9rem;
    margin: 0;
    color: var(--gray);
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-200%);
    }
}

/* Seção de vídeos */
.video-container {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    background-color: var(--white);
    padding-bottom: 20px;
    transform: translateZ(0);
}

.video-container:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.video-placeholder {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.video-placeholder img {
    transition: transform 0.5s ease;
    width: 100%;
}

.video-container:hover .video-placeholder img {
    transform: scale(1.05);
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    color: var(--primary);
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.play-btn i {
    margin-left: 5px;
}

.play-btn:hover {
    background-color: var(--primary);
    color: white;
    width: 75px;
    height: 75px;
}

.video-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    animation: video-ripple 1.5s infinite;
}

@keyframes video-ripple {
    0% {
        width: 70px;
        height: 70px;
        opacity: 1;
    }

    100% {
        width: 120px;
        height: 120px;
        opacity: 0;
    }
}

/* Seção de seleção de cópias */
.copy-selector {
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}

.copy-selector::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, transparent, rgba(76, 201, 240, 0.1));
    border-top-left-radius: 100%;
    z-index: 1;
}

.copy-counter {
    display: flex;
    align-items: center;
    z-index: 2;
}

.counter-box {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light);
    border: 2px solid #e9ecef;
    border-radius: var(--border-radius);
    font-size: 40px;
    font-weight: bold;
    margin-right: 15px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.counter-box::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
    pointer-events: none;
}

.counter-controls {
    display: flex;
    flex-direction: column;
}

.counter-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #e9ecef;
    background-color: var(--white);
    border-radius: var(--border-radius-sm);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.counter-btn:first-child {
    margin-bottom: 5px;
}

.counter-btn:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.counter-btn:active {
    transform: translateY(1px);
}

.copy-price {
    margin-top: 20px;
    width: 100%;
    text-align: center;
    z-index: 2;
}

.price-tag {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.5rem;
    display: inline-block;
    position: relative;
}

.price-tag::before {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.price-tag:hover::before {
    transform: scaleX(1);
}

@media (min-width: 768px) {
    .copy-price {
        margin-top: 0;
        width: auto;
        text-align: right;
    }
}

/* Efeitos de animação para o contador */
.pulse-up {
    animation: pulse-up 0.3s ease-out;
}

.pulse-down {
    animation: pulse-down 0.3s ease-out;
}

@keyframes pulse-up {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes pulse-down {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.9);
    }

    100% {
        transform: scale(1);
    }
}

/* Animação de mudança de preço */
.price-change {
    animation: price-change 0.3s ease-out;
}

@keyframes price-change {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateY(-10px);
        opacity: 0;
    }

    51% {
        transform: translateY(10px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Seção de pagamento */
.payment-card,
.confirmation-card,
.refund-card,
.code-card,
.print-details-card {
    background-color: var(--white);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.payment-card::before,
.confirmation-card::before,
.refund-card::before,
.code-card::before,
.print-details-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
    z-index: -1;
}

.qr-code-container {
    display: flex;
    justify-content: center;
}

.qr-code-wrapper {
    position: relative;
    background-color: white;
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    display: inline-block;
    overflow: hidden;
}

.qr-code-scanner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    animation: scan 2s infinite linear;
    opacity: 0.7;
    border-radius: 2px;
    box-shadow: 0 0 10px var(--primary-light);
}

@keyframes scan {
    0% {
        top: 0;
    }

    50% {
        top: calc(100% - 4px);
    }

    100% {
        top: 0;
    }
}

.payment-detail-item,
.confirmation-detail-item,
.file-detail-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e9ecef;
}

.detail-label {
    font-weight: 600;
    color: var(--gray);
}

.detail-value {
    font-weight: 600;
}

.payment-info {
    background-color: rgba(52, 152, 219, 0.1);
    padding: 15px;
    border-radius: var(--border-radius-sm);
    margin-top: 20px;
    display: flex;
    align-items: center;
}

.payment-info i {
    color: var(--info);
    font-size: 1.2rem;
}

/* Spinner */
.spinner {
    width: 40px;
    height: 40px;
    position: relative;
    margin: 0 auto;
}

.double-bounce1,
.double-bounce2 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--primary);
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;
    animation: bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
    animation-delay: -1.0s;
}

@keyframes bounce {

    0%,
    100% {
        transform: scale(0.0);
    }

    50% {
        transform: scale(1.0);
    }
}

/* Seção de confirmação */
.confirmation-header {
    margin-bottom: 40px;
}

.success-checkmark {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    position: relative;
}

.check-icon {
    width: 80px;
    height: 80px;
    position: relative;
    border-radius: 50%;
    box-sizing: content-box;
    border: 4px solid var(--success);
}

.check-icon::before {
    top: 3px;
    left: -2px;
    width: 30px;
    transform-origin: 100% 50%;
    border-radius: 100px 0 0 100px;
}

.check-icon::after {
    top: 0;
    left: 30px;
    width: 60px;
    transform-origin: 0 50%;
    border-radius: 0 100px 100px 0;
    animation: rotate-circle 4.25s ease-in;
}

.check-icon::before,
.check-icon::after {
    content: "";
    height: 100px;
    position: absolute;
    background: var(--white);
    transform: rotate(-45deg);
}

.check-icon .icon-line {
    height: 5px;
    background-color: var(--success);
    display: block;
    border-radius: 2px;
    position: absolute;
    z-index: 10;
}

.check-icon .icon-line.line-tip {
    top: 46px;
    left: 14px;
    width: 25px;
    transform: rotate(45deg);
    animation: icon-line-tip 0.75s;
}

.check-icon .icon-line.line-long {
    top: 38px;
    right: 8px;
    width: 47px;
    transform: rotate(-45deg);
    animation: icon-line-long 0.75s;
}

.check-icon .icon-circle {
    top: -4px;
    left: -4px;
    z-index: 10;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    position: absolute;
    box-sizing: content-box;
    border: 4px solid var(--success);
    opacity: 0;
    animation: icon-circle 0.75s;
}

.check-icon .icon-fix {
    top: 8px;
    width: 5px;
    left: 26px;
    z-index: 1;
    height: 85px;
    position: absolute;
    transform: rotate(-45deg);
    background-color: var(--white);
}

@keyframes rotate-circle {
    0% {
        transform: rotate(-45deg);
    }

    5% {
        transform: rotate(-45deg);
    }

    12% {
        transform: rotate(-405deg);
    }

    100% {
        transform: rotate(-405deg);
    }
}

@keyframes icon-line-tip {
    0% {
        width: 0;
        left: 1px;
        top: 19px;
    }

    54% {
        width: 0;
        left: 1px;
        top: 19px;
    }

    70% {
        width: 50px;
        left: -8px;
        top: 37px;
    }

    84% {
        width: 17px;
        left: 21px;
        top: 48px;
    }

    100% {
        width: 25px;
        left: 14px;
        top: 45px;
    }
}

@keyframes icon-line-long {
    0% {
        width: 0;
        right: 46px;
        top: 54px;
    }

    65% {
        width: 0;
        right: 46px;
        top: 54px;
    }

    84% {
        width: 55px;
        right: 0px;
        top: 35px;
    }

    100% {
        width: 47px;
        right: 8px;
        top: 38px;
    }
}

@keyframes icon-circle {
    0% {
        opacity: 0;
    }

    60% {
        opacity: 1;
    }

    100% {
        opacity: 1;
    }
}

.copies-counter {
    margin-top: 30px;
}

.progress-striped {
    overflow: hidden;
    height: 10px;
    border-radius: 10px;
}

.redirect-timer {
    margin-top: 30px;
    text-align: center;
    display: none;
}

.timer-circle {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 15px;
}

.timer-circle svg {
    width: 100px;
    height: 100px;
    transform: rotate(-90deg);
}

.timer-circle svg circle {
    fill: none;
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 283;
    stroke-dashoffset: 0;
    transform-origin: center;
}

.timer-circle svg circle:first-child {
    stroke: #e9ecef;
}

.timer-circle svg circle:last-child {
    stroke: var(--primary);
    animation: countdown 5s linear forwards;
}

@keyframes countdown {
    from {
        stroke-dashoffset: 0;
    }

    to {
        stroke-dashoffset: 283;
    }
}

.timer-circle span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    font-weight: bold;
    color: var(--primary);
}

/* Seção de código de impressão */
.code-input-container {
    text-align: center;
}

.input-group-dynamic {
    position: relative;
}

.input-group-dynamic .form-label {
    position: absolute;
    pointer-events: none;
    left: 45px;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.2s ease all;
    color: var(--gray);
    font-size: 0.9rem;
    opacity: 0.8;
}

.input-group-dynamic input:focus~.form-label,
.input-group-dynamic input:not(:placeholder-shown)~.form-label {
    top: 5px;
    font-size: 0.75rem;
    opacity: 1;
    color: var(--primary);
}

.input-group-dynamic input {
    /*  padding-top: 20px;*/
    padding-bottom: 10px;
}

.alert-info {
    background-color: rgba(52, 152, 219, 0.1);
    border-color: rgba(52, 152, 219, 0.2);
    color: var(--dark);
    border-radius: var(--border-radius);
    padding: 20px;
}

.alert-icon {
    font-size: 2rem;
    color: var(--info);
    margin-right: 15px;
}

/* Seção de detalhes da impressão */
.file-preview {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.file-icon {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
    animation: float 3s infinite ease-in-out;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.file-badge {
    position: absolute;
    top: 10px;
    right: 50%;
    transform: translateX(80px);
    background-color: var(--primary);
    color: white;
    font-size: 0.8rem;
    padding: 3px 10px;
    border-radius: 20px;
}

.option-group {
    margin-bottom: 30px;
    border-radius: var(--border-radius);
    background-color: rgba(248, 249, 250, 0.5);
    padding: 15px;
}

.option-group-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary);
    position: relative;
    padding-left: 15px;
}

.option-group-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 20px;
    background: var(--gradient-primary);
    border-radius: 3px;
}

.select-wrapper {
    position: relative;
}

.select-wrapper::after {
    content: "\f078";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--gray);
    font-size: 0.8rem;
}

.form-select {
    appearance: none;
    padding-right: 40px;
    cursor: pointer;
}

.price-display {
    text-align: center;
    margin-top: 30px;
    padding: 15px;
    background-color: rgba(248, 249, 250, 0.7);
    border-radius: var(--border-radius);
    position: relative;
    overflow: hidden;
}

.price-display::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(76, 201, 240, 0.1));
    pointer-events: none;
}

/* Animações de transição */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(50px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-left"] {
    transform: translateX(50px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-right"] {
    transform: translateX(-50px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

/* Responsividade */
@media (max-width: 768px) {
    .section {
        padding: 50px 0;
    }

    .copy-selector {
        padding: 20px;
        flex-direction: column;
    }

    .copy-counter {
        margin-bottom: 20px;
    }

    .payment-card,
    .confirmation-card,
    .refund-card,
    .code-card,
    .print-details-card {
        padding: 20px;
    }

    .update-item {
        min-width: 260px;
    }
}

/* Adições de efeitos 3D */
.btn-3d {
    transform: perspective(1px) translateZ(0);
    position: relative;
    transition: transform 0.3s;
}

.btn-3d:hover {
    transform: perspective(1px) translateZ(10px);
}

.btn-3d:active {
    transform: perspective(1px) translateZ(2px);
}

/* Adicione no style.css */
.card {
    transition: transform 0.3s, box-shadow 0.3s;
    min-height: 400px;
    /* Altura mínima para uniformidade */
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-body {
    display: flex;
    flex-direction: column;
}

.flex-grow-1 {
    flex-grow: 1;
}

ol.small {
    padding-left: 1.5rem;
    font-size: 0.9rem;
}

/* Adicione ao style.css */
.print-details-card {
    max-height: 75vh;
    /* Altura máxima relativa à tela */
    overflow: hidden;
    /* Remove scroll interno */
}

.file-preview {
    background: rgba(var(--primary-rgb), 0.05);
    border-radius: var(--border-radius);
    padding: 20px;
}

.option-group {
    margin-bottom: 1.5rem;
}

.print-options {
    gap: 1.5rem;
}

.flex-grow-1 {
    flex-grow: 1;
}

.mt-auto {
    margin-top: auto;
}

.h-100 {
    height: 100%;
}

.print-payment-section {
    max-height: 85vh;
    overflow: hidden;
}

.file-summary {
    background: rgba(67, 97, 238, 0.05);
    border-radius: var(--border-radius);
    padding: 20px;
}

.payment-detail-item {
    padding: 15px;
    background: var(--light);
    border-radius: var(--border-radius-sm);
    margin-bottom: 10px;
}

.detail-value.fs-5 {
    font-size: 1.25rem !important;
}

.qr-code-wrapper.mx-auto {
    max-width: 250px;
}

.flex-grow-1 {
    flex-grow: 1;
}

.mt-auto {
    margin-top: auto;
}

/* Adicione ao style.css */
.transaction-summary {
    background: rgba(var(--primary-rgb), 0.05);
    border-radius: var(--border-radius);
    padding: 20px;
}

.payment-details {
    display: flex;
    flex-direction: column;
    height: 100%;
}

#pix-code {
    resize: none;
    min-height: 100px;
}

.input-group-text {
    transition: var(--transition);
}

.input-group:focus-within .input-group-text {
    background-color: var(--primary);
    color: white;
}

/* Estilos melhorados para a seção de confirmação */
.confirmation-header {
    position: relative;
    z-index: 2;
}

.file-summary {
    background: rgba(67, 97, 238, 0.05);
    border-radius: var(--border-radius);
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.file-summary::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    opacity: 0.1;
    border-radius: 50%;
    filter: blur(40px);
}

.file-icon.animated {
    animation: float 3s ease-in-out infinite;
}

.transaction-details {
    background: var(--light);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Estilos da Seção de Confirmação Atualizados */
.service-icon {
    width: 120px;
    height: 120px;
    background: var(--gradient-primary);
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    position: relative;
    box-shadow: 0 10px 20px rgba(67, 97, 238, 0.3);
    animation: pulseIcon 2s infinite;
}

.copies-badge {
    position: absolute;
    bottom: -10px;
    right: -10px;
    background: var(--success);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: var(--shadow);
}

.transaction-summary {
    background: rgba(67, 97, 238, 0.05);
    border-radius: var(--border-radius);
    padding: 2rem;
    position: relative;
}

.transaction-summary::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    opacity: 0.1;
    border-radius: 50%;
    filter: blur(40px);
}

@keyframes pulseIcon {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

/* Teclados Virtuais */
.virtual-keyboards {
    position: relative;
    z-index: 2;
}

.keyboard-grid {
    max-width: 400px;
    margin: 0 auto;
}

.virtual-key,
.virtual-num {
    min-width: 40px;
    text-transform: uppercase;
    transition: all 0.2s ease;
}

.virtual-key:active,
.virtual-num:active {
    transform: scale(0.95);
}

.num-keyboard .btn {
    padding: 0.5rem;
    font-size: 1.1rem;
}

/* Estilos do Logo */
.logo-text {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.copy {
    color: var(--primary);
}

.print {
    color: var(--secondary);
}

.underline-curve {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 15px;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 15 Q100 30 195 15' stroke='%234361ee' stroke-width='3' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}

/* Animação da Impressora */
.printer-animation {
    max-width: 400px;
    margin: 0 auto;
    padding: 2rem;
}

.printer {
    position: relative;
    height: 300px;
}

.printer .top {
    width: 60%;
    height: 20px;
    background: #e0e0e0;
    margin: 0 auto;
    border-radius: 5px 5px 0 0;
}

.printer .body {
    width: 70%;
    height: 180px;
    background: #f0f0f0;
    margin: 0 auto;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.printer .paper {
    position: absolute;
    bottom: -20px;
    left: 50%;
    width: 60%;
    height: 40px;
    background: white;
    transform: translateX(-50%);
    border-radius: 3px;
    animation: print 2s infinite;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

@keyframes print {

    0%,
    100% {
        bottom: -20px;
        opacity: 0;
    }

    50% {
        bottom: 20px;
        opacity: 1;
    }
}

.lights {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    gap: 8px;
}

.light {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    animation: pulse-light 1.5s infinite;
}

.light.green {
    background: #2ecc71;
}

.light.orange {
    background: #f39c12;
    animation-delay: 0.5s;
}

@keyframes pulse-light {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }
}

/* Botões Aprimorados */
.btn-glow-hover {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-glow-hover::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: 0.5s;
}

.btn-glow-hover:hover::before {
    left: 100%;
}

/* Atualizações Deslizantes Aprimoradas */
.updates-slider {
    padding: 15px 0;
}

.update-item {
    min-width: 280px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.update-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 30px rgba(67, 97, 238, 0.15);
}

.update-icon {
    background: var(--gradient-primary);
    box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3);
}