* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #fff;
    color: #000;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background-color: #fff;
    position: relative;
}

.header-logo {
    height: 30px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.menu-btn, .profile-btn {
    background: none;
    border: none;
    color: #000;
    font-size: 24px;
    z-index: 1;
}

.video-info {
    padding: 15px;
}

h1 {
    font-size: 20px;
    margin-bottom: 10px;
}

.video-meta {
    display: flex;
    gap: 10px;
}

.duration, .quality {
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 14px;
}

.duration {
    background-color: rgba(0, 0, 0, 0.1);
    color: #000;
}

.quality {
    background-color: #f00;
    color: #fff;
}

.video-player {
    position: relative;
    width: 100%;
    background: #000;
}

.seek-text {
    position: absolute;
    top: 10px;
    width: 100%;
    text-align: center;
    color: #fff;
    z-index: 1;
}

video {
    width: 100%;
    height: auto;
}

.video-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 10px;
}

.video-controls button {
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
}

.video-stats {
    display: flex;
    justify-content: space-around;
    padding: 15px;
    border-bottom: 1px solid #ddd;
    transition: opacity 0.3s;
}

.video-stats.hidden {
    display: none;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 14px;
    gap: 5px;
}

.stat i {
    font-size: 18px;
    color: #666;
}

.badge {
    background-color: #f00;
    color: #fff;
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 12px;
}

.comments-section {
    padding: 15px;
}

h2 {
    font-size: 18px;
    margin-bottom: 15px;
}

.comment {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.comment-content {
    flex: 1;
}

.comment-header {
    margin-bottom: 5px;
}

.username {
    font-weight: bold;
    margin-right: 10px;
}

.time {
    color: #666;
    font-size: 12px;
}

.comment-actions {
    margin-top: 10px;
    display: flex;
    gap: 15px;
}

.comment-actions button {
    background: none;
    border: none;
    color: #666;
    font-size: 14px;
}

.plyr {
    --plyr-color-main: #fff;
    height: auto !important;
}

/* Ajuste específico para o ícone de mais opções */
.stat:last-child i {
    font-size: 20px;
}

/* Adicionar estilos do footer */
footer {
    padding: 15px;
    border-top: 1px solid #ddd;
    margin-top: 20px;
}

.footer-info {
    display: flex;
    gap: 5px;
    justify-content: center;
    color: #666;
    font-size: 14px;
}

.footer-info span {
    color: #666;
}

.continue-button {
    display: none;
    width: 95%;
    margin: 15px auto;
    padding: 12px;
    background-color: #f00;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.continue-button:hover {
    background-color: #d00;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    width: 95%;
    max-width: 500px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.error-message {
    color: #f00;
    font-size: 14px;
    margin-top: 5px;
}

.submit-button {
    width: 100%;
    padding: 12px;
    background-color: #f00;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

.submit-button:hover {
    background-color: #d00;
}

#qrContainer {
    text-align: center;
    margin: 20px 0;
}

.timer-container {
    text-align: center;
    margin: 15px 0;
    font-size: 18px;
}

.pix-copy {
    margin-top: 20px;
}

.copy-container {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.copy-container input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.copy-button {
    padding: 10px 20px;
    background-color: #f00;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.copy-button:hover {
    background-color: #d00;
}

/* Estilos do Modal */
.modal-header {
    text-align: center;
    margin-bottom: 20px;
}

.modal-header i {
    font-size: 40px;
    color: #f00;
    margin-bottom: 10px;
}

.modal-header h2 {
    color: #333;
    font-size: 24px;
}

.promo-banner {
    background: linear-gradient(45deg, #ff0000, #ff5555);
    padding: 15px;
    border-radius: 8px;
    color: white;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-tag {
    display: flex;
    flex-direction: column;
}

.old-price {
    text-decoration: line-through;
    font-size: 16px;
    opacity: 0.8;
}

.new-price {
    font-size: 28px;
    font-weight: bold;
}

.discount-badge {
    background: #fff;
    color: #f00;
    padding: 5px 10px;
    border-radius: 20px;
    font-weight: bold;
}

.benefits {
    margin-bottom: 20px;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    gap: 10px;
}

.benefit-item i {
    color: #00c853;
}

.form-group {
    position: relative;
}

.form-group i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
}

.form-group input {
    padding-left: 40px;
}

.secure-info {
    text-align: center;
    margin-top: 15px;
    color: #666;
    font-size: 14px;
}

/* Estilos do Modal de Pagamento */
.progress-container {
    margin: 20px 0;
    position: relative;
}

.progress-bar {
    height: 4px;
    background: #ddd;
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar::after {
    content: '';
    display: block;
    height: 100%;
    width: 100%;
    background: #f00;
    animation: countdown 180s linear forwards;
}

@keyframes countdown {
    from { width: 100%; }
    to { width: 0%; }
}

.payment-steps {
    margin-top: 20px;
    border-top: 1px solid #ddd;
    padding-top: 20px;
}

.step {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.step i {
    background: #f00;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
} 