/* Reset e configurações gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    min-height: 100vh;
}

/* Tela de Loading */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.logo-container {
    text-align: center;
}

.logo {
    font-size: 3.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 2rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.logo-pix {
    color: #66BB6A;
}

.loading-spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-text {
    color: white;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Sistema de Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    backdrop-filter: blur(5px);
}

.modal-overlay.active {
    display: flex;
}

.modal-container {
    background: white;
    border-radius: 20px;
    text-align: center;
    padding: 2rem;
    max-width: 90%;
    width: 400px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: scale(0.8);
    opacity: 0;
    transition: all 0.3s ease;
}

.modal-overlay.active .modal-container {
    transform: scale(1);
    opacity: 1;
}

/* Conteúdo do Modal de Parabéns */
.modal-template {
    text-align: center;
}

.gift-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.modal-title {
    font-size: 2rem;
    color: #2E2E2E;
    margin-bottom: 1rem;
    font-weight: bold;
}

.modal-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.prize-amount {
    font-size: 2.5rem;
    font-weight: bold;
    color: #4CAF50;
    margin: 1rem 0;
    text-shadow: 0 2px 4px rgba(76, 175, 80, 0.3);
}

.modal-instruction {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

/* Botões do Modal */
.modal-btn {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
}

.modal-btn:hover {
    background: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.5);
}

.modal-btn:active {
    transform: translateY(0);
}

.modal-btn.secondary {
    background: #f5f5f5;
    color: #666;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.modal-btn.secondary:hover {
    background: #e0e0e0;
}

/* Animações de transição */
.fade-out {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.fade-in {
    opacity: 1;
    transition: opacity 0.5s ease;
}

/* Estilos para páginas internas */
.page-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.page-header {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 2rem;
    backdrop-filter: blur(10px);
}

.page-header .logo {
    font-size: 2rem;
    margin-bottom: 0;
}

.page-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.content-placeholder {
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    max-width: 500px;
    width: 100%;
}

.content-placeholder h2 {
    color: #2E2E2E;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.content-placeholder p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Estilos para página de avaliação */
.page-loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.page-loading-content {
    text-align: center;
}

.search-spinner {
    margin-bottom: 2rem;
}

.search-circle {
    width: 80px;
    height: 80px;
    border: 4px solid #e0e0e0;
    border-top: 4px solid #4CAF50;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

.search-text {
    color: #666;
    font-size: 1.2rem;
    font-weight: 500;
}

/* Página de avaliação */
.evaluation-page {
    min-height: 100vh;
    background: #f5f5f5;
}

.evaluation-header {
    background: white;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2E2E2E;
    margin: 0;
}

.balance-badge {
    background: #4CAF50;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 1rem;
}

/* Barra de progresso */
.progress-container {
    background: white;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #4CAF50, #66BB6A);
    width: 0%;
    transition: width 0.5s ease;
}

.progress-text {
    color: #666;
    font-size: 0.9rem;
    text-align: center;
    margin: 0;
}

/* Conteúdo da avaliação */
.evaluation-content {
    padding: 2rem 1.5rem;
    max-width: 500px;
    margin: 0 auto;
}

/* Seção de instrução */
.instruction-section {
    text-align: center;
    margin-bottom: 2rem;
}

.check-icon {
    display: inline-block;
    width: 30px;
    height: 30px;
    background: #4CAF50;
    color: white;
    border-radius: 50%;
    line-height: 30px;
    font-weight: bold;
    margin-right: 0.5rem;
    vertical-align: middle;
}

.instruction-text {
    display: inline-block;
    color: #4CAF50;
    font-weight: bold;
    font-size: 0.9rem;
    vertical-align: middle;
    margin: 0;
}

/* Card do código */
.code-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.value-section {
    margin-bottom: 2rem;
}

.value-label {
    color: #666;
    font-size: 1rem;
    margin-right: 0.5rem;
}

.value-amount {
    background: #4CAF50;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 1.1rem;
}

.code-section {
    margin-top: 1.5rem;
}

.code-label {
    color: #2E2E2E;
    font-weight: bold;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.code-display {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.code-letter {
    display: inline-block;
    width: 50px;
    height: 60px;
    background: #f5f5f5;
    border-radius: 8px;
    line-height: 60px;
    font-size: 2rem;
    font-weight: bold;
    color: #2E2E2E;
}

/* Seção de input */
.input-section {
    text-align: center;
}

.input-instruction {
    color: #666;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.code-input-container {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.code-input:first-child {
    border-radius: 8px 0 0 8px;
}
.code-input:last-child {
    border-radius: 0 8px 8px 0;
}
.code-input {
    width: 70px;
    height: 90px;
    border-left: 1px solid #e0e0e0;
    border-right: 1px solid #e0e0e0;
    border-top: 2px solid #e0e0e0;
    border-bottom: 2px solid #e0e0e0;
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #2E2E2E;
    background: white;
    transition: all 0.3s ease;
}



.code-input:focus {
    outline: none;
    border-color: #4CAF50;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.2);
}

.code-input.correct {
    border-color: #4CAF50;
    background: #f1f8e9;
    color: #4CAF50;
}

.code-input.incorrect {
    border-color: #f44336;
    background: #ffebee;
    color: #f44336;
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Mensagem de feedback */
.feedback-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    font-weight: bold;
    display: none;
}

.feedback-message.success {
    background: #f1f8e9;
    color: #4CAF50;
    border: 1px solid #4CAF50;
}

.feedback-message.error {
    background: #ffebee;
    color: #f44336;
    border: 1px solid #f44336;
}

/* Seção de avaliação de produto na page-1 */
.product-evaluation-section {
    animation: fadeInUp 0.5s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsividade */
@media (max-width: 480px) {
    .logo {
        font-size: 2.5rem;
    }
    
    .modal-container {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .prize-amount {
        font-size: 2rem;
    }
    
    .modal-title {
        font-size: 1.5rem;
    }
    
    .page-header {
        padding: 1rem;
    }
    
    .page-header .logo {
        font-size: 1.5rem;
    }
    
    .content-placeholder {
        padding: 2rem;
        margin: 1rem;
    }
    
    /* Responsividade para página de avaliação */
    .evaluation-header {
        padding: 1rem;
    }
    
    .header-logo {
        font-size: 1.2rem;
    }
    
    .balance-badge {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }
    
    .evaluation-content {
        padding: 1.5rem 1rem;
    }
    
    .code-card {
        padding: 1.5rem;
    }
    
    .code-display {
        gap: 0.5rem;
    }
    
    .code-letter {
        width: 40px;
        height: 50px;
        line-height: 50px;
        font-size: 1.5rem;
    }
    
    .code-input {
        width: 55px;
        height: 70px;
        font-size: 1.2rem;
        text-transform: uppercase;
    }
    
    .instruction-text {
        font-size: 0.8rem;
    }
    
    .search-circle {
        width: 60px;
        height: 60px;
    }
    
    .search-text {
        font-size: 1rem;
    }
}

/* Estilos para página de avaliação de produto */
.product-evaluation-content {
    padding: 2rem 1.5rem;
    max-width: 500px;
    margin: 0 auto;
}

.evaluation-title {
    text-align: center;
    margin-bottom: 2rem;
}

.evaluation-title h2 {
    color: #2E2E2E;
    font-size: 1.3rem;
    font-weight: bold;
    line-height: 1.4;
    margin: 0;
}

/* Card do produto */
.product-card {
    background: #4a5568;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.product-image-container {
    margin-bottom: 1.5rem;
}

.product-image {
    width: 100%;
    max-width: 280px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.product-info {
    color: white;
}

.product-question {
    color: #e2e8f0;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.product-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-name {
    font-size: 1.2rem;
    font-weight: bold;
    color: white;
}

.product-store {
    background: #4CAF50;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: bold;
}

/* Botões de avaliação */
.evaluation-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.eval-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.eval-btn.positive {
    background: #4CAF50;
    color: white;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
}

.eval-btn.positive:hover {
    background: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.5);
}

.eval-btn.neutral {
    background: #c8c8c8;
    color: #666;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.eval-btn.neutral:hover {
    background: #d0d0d0;
    transform: translateY(-2px);
}

.eval-btn.negative {
    background: #f44336;
    color: white;
    box-shadow: 0 4px 15px rgba(244, 67, 54, 0.4);
}

.eval-btn.negative:hover {
    background: #da190b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 67, 54, 0.5);
}

.eval-btn:active {
    transform: translateY(0);
}

/* Modal de saldo atualizado */
.balance-update-content {
    text-align: center;
    padding: 1rem;
}

.success-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.balance-title {
    font-size: 1.8rem;
    color: #2E2E2E;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.balance-subtitle {
    color: #666;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.balance-amount {
    font-size: 2.5rem;
    font-weight: bold;
    color: #4CAF50;
    margin-top: 1rem;
    transition: all 0.1s ease-out;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.5px;
}

.balance-amount.animating {
    animation: valueGlow 0.3s ease-in-out infinite alternate;
}

@keyframes valueGlow {
    from {
        text-shadow: 0 0 5px rgba(76, 175, 80, 0.3);
        transform: scale(1);
    }
    to {
        text-shadow: 0 0 15px rgba(76, 175, 80, 0.6);
        transform: scale(1.02);
    }
}

/* Responsividade para avaliação de produto */
@media (max-width: 480px) {
    .product-evaluation-content {
        padding: 1.5rem 1rem;
    }
    
    .evaluation-title h2 {
        font-size: 1.1rem;
    }
    
    .product-card {
        padding: 1rem;
    }
    
    .product-image {
        max-width: 240px;
    }
    
    .product-details {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }
    
    .eval-btn {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }
    
    .balance-amount {
        font-size: 2rem;
    }
    
    .balance-title {
        font-size: 1.5rem;
    }
}

.d-none {
    display: none;
}
    
.d-block {
    display: block;
}

/* Estilos para modal unificado da page-3 */
.congratulations-pix-content {
    text-align: center;
    padding: 1rem;
}

.congratulations-title {
    font-size: 2rem;
    color: #2E2E2E;
    margin-bottom: 1rem;
    font-weight: bold;
}

.congratulations-subtitle {
    color: #666;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.total-amount {
    color: #4CAF50;
    font-weight: bold;
    font-size: 1.2rem;
}

.pix-instruction {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.pix-section-title {
    font-size: 1.3rem;
    color: #2E2E2E;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

/* Modal de cadastro PIX */
.pix-registration-content {
    text-align: center;
    padding: 1rem;
}

.pix-title {
    font-size: 1.5rem;
    color: #2E2E2E;
    margin-bottom: 2rem;
    font-weight: bold;
}

.pix-type-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.pix-type-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
}

.pix-type-btn:hover {
    border-color: #4CAF50;
    background: #f1f8e9;
}

.pix-type-btn.active {
    border-color: #4CAF50;
    background: #4CAF50;
    color: white;
}

.pix-icon {
    font-size: 1.5rem;
}

.pix-input-container {
    margin-bottom: 2rem;
}

.pix-input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    text-align: center;
    transition: border-color 0.3s ease;
}

.pix-input:focus {
    outline: none;
    border-color: #4CAF50;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.2);
}

/* Modal de PIX validado */
.pix-validated-content {
    text-align: center;
    padding: 1rem;
}

.pix-validated-title {
    font-size: 1.8rem;
    color: #2E2E2E;
    margin-bottom: 1rem;
    font-weight: bold;
}

.pix-validated-subtitle {
    color: #666;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.validation-amount {
    color: #4CAF50;
    font-weight: bold;
}

.next-steps {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.redirect-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.loading-spinner-small {
    display: flex;
    justify-content: center;
}

.spinner-small {
    width: 30px;
    height: 30px;
    border: 3px solid #e0e0e0;
    border-top: 3px solid #4CAF50;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.redirect-text {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Responsividade para modais da page-3 */
@media (max-width: 480px) {
    .pix-type-buttons {
        align-items: center;
    }
    
    .pix-type-btn {
        width: 100%;
        max-width: 200px;
    }
    
    .congratulations-title {
        font-size: 1.5rem;
    }
    
    .pix-title {
        font-size: 1.2rem;
    }
    
    .pix-validated-title {
        font-size: 1.5rem;
    }
}

/* Estilos para modal de processamento (page-6) */
.processing-content {
    text-align: center;
    padding: 2rem 1rem;
}

.processing-title {
    font-size: 1.6rem;
    color: #2E2E2E;
    margin-bottom: 1rem;
    font-weight: bold;
}

.processing-subtitle {
    color: #666;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.progress-circle-container {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}

.progress-circle {
    position: relative;
    width: 120px;
    height: 120px;
}

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

.progress-circle-fill {
    fill: none;
    stroke: #4CAF50;
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 283; /* 2 * π * 45 */
    stroke-dashoffset: 283;
    transition: stroke-dashoffset 0.3s ease;
}

.progress-percentage {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    font-weight: bold;
    color: #4CAF50;
}

/* Estilos para VSL */
.vsl-page {
    margin: 0;
    padding: 0;
    background: #f5f5f5;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.vsl-header {
    background: #dc3545;
    color: white;
    padding: 1rem 0;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.countdown-container {
    font-size: 1.1rem;
    font-weight: bold;
}

.countdown-timer {
    font-size: 1.3rem;
    background: rgba(255,255,255,0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 5px;
    margin-left: 0.5rem;
}

.countdown-timer.urgent {
    animation: pulse 1s infinite;
    background: rgba(255,255,255,0.3);
}

.countdown-timer.critical {
    animation: flash 0.5s infinite;
    background: #ff4757;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes flash {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.vsl-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Seção do Vídeo */
.video-section {
    margin: 2rem 0;
}

.video-container {
    position: relative;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    position: relative;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    z-index: 2;
}

.play-button-container {
    background: rgba(218, 165, 32, 0.9);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 1rem;
}

.muted-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.video-message {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.play-button {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.play-button:hover {
    background: #45a049;
    transform: translateY(-2px);
}

.play-icon {
    font-size: 1.2rem;
}

.video-subtitle {
    font-size: 1rem;
    margin-top: 1rem;
}

.video-embed {
    width: 100%;
    height: 100%;
}

/* Seção de Validação */
.validation-section {
    margin: 3rem 0;
}

.validation-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.validation-title {
    font-size: 1.8rem;
    color: #2E2E2E;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.validation-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.validation-guarantee {
    color: #4CAF50;
    font-weight: bold;
    font-size: 1rem;
}

/* Seção de Informações */
.info-section {
    margin: 3rem 0;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.info-icon {
    font-size: 1.5rem;
    min-width: 40px;
}

.info-title {
    font-size: 1.1rem;
    font-weight: bold;
    color: #2E2E2E;
    margin-bottom: 0.3rem;
}

.info-text {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

/* Call to Action */
.cta-section {
    margin: 3rem 0;
    text-align: center;
}

.cta-button {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    max-width: 400px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(76, 175, 80, 0.4);
}

.cta-button:hover {
    background: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(76, 175, 80, 0.5);
}

.cta-button:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.security-badge {
    color: #666;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* Seção de Comentários */
.comments-section {
    margin: 3rem 0;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.comments-title {
    font-size: 1.3rem;
    color: #2E2E2E;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.comments-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.comment {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.comment-avatar {
    position: relative;
    min-width: 40px;
}

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

.verified-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    background: #4CAF50;
    color: white;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
}

.comment-content {
    flex: 1;
}

.comment-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.comment-author {
    font-weight: bold;
    color: #4285f4;
}

.comment-status {
    color: #666;
    font-size: 0.9rem;
}

.comment-text {
    color: #2E2E2E;
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.comment-actions {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
}

.comment-action {
    color: #666;
    cursor: pointer;
}

.comment-action:hover {
    color: #4285f4;
}

.comment-time {
    color: #999;
}

/* Responsividade para VSL */
@media (max-width: 768px) {
    .vsl-content {
        padding: 0 0.5rem;
    }
    
    .countdown-container {
        font-size: 1rem;
    }
    
    .countdown-timer {
        font-size: 1.1rem;
    }
    
    .validation-card,
    .comments-section {
        padding: 1.5rem;
    }
    
    .info-items {
        gap: 0.8rem;
    }
    
    .info-item {
        padding: 1rem;
    }
    
    .cta-button {
        font-size: 1.1rem;
        padding: 1rem 1.5rem;
    }
    
    .security-badges {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .comment {
        padding: 0.8rem;
    }
    
    .play-button-container {
        padding: 1.5rem;
    }
}
