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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0f1419 0%, #1a2332 25%, #2a3f5c 50%, #3d5a7a 75%, #4a6b8a 100%);
    color: #f8fafc;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Telas */
.screen {
    display: none;
    min-height: 100vh;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

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

/* Header */
.header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    background: rgba(248, 250, 252, 0.08);
    padding: 15px 20px;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(248, 250, 252, 0.12);
    box-shadow: 0 8px 32px rgba(15, 20, 25, 0.3);
}

.logo {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-radius: 16px;
    box-shadow: 
        0 6px 20px rgba(15, 20, 25, 0.4),
        0 2px 8px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(248, 250, 252, 0.1);
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(248, 250, 252, 0.1);
}

.logo:hover {
    transform: translateY(-1px);
    box-shadow: 
        0 6px 20px rgba(26, 35, 126, 0.4),
        0 2px 8px rgba(0, 0, 0, 0.15);
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
    border-radius: 10px;
    position: relative;
    box-shadow: 
        0 4px 12px rgba(251, 191, 36, 0.4),
        0 2px 4px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.logo-icon::before {
    content: '€';
    font-size: 24px;
    font-weight: 900;
    color: #1a237e;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.logo-icon::after {
    content: '';
    position: absolute;
    top: -2px;
    right: -2px;
    width: 12px;
    height: 12px;
    background: #4CAF50;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text .brand-name {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 1px;
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.logo-text .brand-tagline {
    font-size: 10px;
    color: #FFD700;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-top: 2px;
    opacity: 0.9;
}

/* Animação sutil para o ícone */
@keyframes subtleGlow {
    0%, 100% { 
        box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
    }
    50% { 
        box-shadow: 0 2px 12px rgba(255, 215, 0, 0.5);
    }
}

.logo-icon {
    animation: subtleGlow 3s ease-in-out infinite;
}

/* Versão alternativa com ícone SVG personalizado */
.logo-custom-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA000 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.logo-custom-icon svg {
    width: 24px;
    height: 24px;
    fill: #1a237e;
}

/* Design alternativo mais tecnológico */
.logo-tech {
    background: linear-gradient(135deg, #0d47a1 0%, #1565c0 100%);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.logo-tech .logo-icon {
    background: linear-gradient(135deg, #FFD700 0%, #FFEB3B 100%);
    border-radius: 50%;
}

.logo-tech .logo-icon::before {
    content: '₿';
    font-size: 20px;
}

.balance-display {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    background: rgba(255, 215, 0, 0.1);
    padding: 10px 15px;
    border-radius: 15px;
    border: 2px solid #FFD700;
    min-width: 120px;
}

.balance-label {
    font-size: 12px;
    opacity: 0.9;
    color: #FFD700;
    font-weight: 600;
}

.balance-amount {
    font-size: 22px;
    font-weight: bold;
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    animation: balanceGlow 2s ease-in-out infinite alternate;
}

@keyframes balanceGlow {
    from { 
        text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    }
    to { 
        text-shadow: 0 0 20px rgba(255, 215, 0, 0.8), 0 0 30px rgba(255, 215, 0, 0.4);
    }
}

/* Hero Section */
.hero-section {
    text-align: center;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-section h1 {
    font-size: 28px;
    margin-bottom: 30px;
    line-height: 1.3;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlights {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: rgba(248, 250, 252, 0.08);
    padding: 20px;
    border-radius: 18px;
    backdrop-filter: blur(15px);
    min-width: 150px;
    border: 1px solid rgba(248, 250, 252, 0.12);
    box-shadow: 0 4px 16px rgba(15, 20, 25, 0.2);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(248, 250, 252, 0.12);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(15, 20, 25, 0.3);
}

.highlight-item i {
    font-size: 30px;
    color: #FFD700;
}

.highlight-item span {
    font-size: 14px;
    text-align: center;
}

/* Dica de Ouro */
.golden-tip {
    background: linear-gradient(45deg, #fbbf24, #f59e0b, #d97706);
    color: #0f172a;
    padding: 16px 24px;
    border-radius: 28px;
    margin: 30px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    animation: pulse 2s infinite;
    box-shadow: 
        0 6px 20px rgba(251, 191, 36, 0.3),
        0 2px 8px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

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

/* Botão CTA melhorado */
.cta-button {
    background: linear-gradient(135deg, #059669 0%, #10b981 50%, #34d399 100%);
    color: #f8fafc;
    border: none;
    padding: 20px 40px;
    font-size: 20px;
    font-weight: 700;
    border-radius: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 30px auto;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 12px 32px rgba(5, 150, 105, 0.4),
        0 4px 12px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    min-height: 60px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before,
.cta-button:active::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(40, 167, 69, 0.4);
}

.cta-button:active {
    transform: translateY(0);
    transition: all 0.1s;
}

/* Contador ao vivo */
.live-counter {
    margin: 30px 0;
}

.counter-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.counter-number {
    font-size: 32px;
    font-weight: bold;
    color: #FFD700;
    animation: countUp 1s ease-out;
}

.counter-label {
    font-size: 14px;
    opacity: 0.8;
}

/* Seção Principal com CTA */
.main-cta-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    margin: 30px 0;
    padding: 30px 20px;
    background: rgba(248, 250, 252, 0.06);
    border-radius: 25px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 215, 0, 0.15);
    box-shadow: 
        0 8px 32px rgba(15, 20, 25, 0.2),
        inset 0 1px 0 rgba(248, 250, 252, 0.08);
}

/* Seção de Vídeo */
.video-section {
    margin: 30px 0;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(248, 250, 252, 0.1);
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 215, 0, 0.3);
    box-shadow: 
        0 15px 50px rgba(15, 20, 25, 0.4),
        0 5px 15px rgba(255, 215, 0, 0.2),
        inset 0 1px 0 rgba(248, 250, 252, 0.1);
    position: relative;
}

.video-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #FFD700, #FFA500, #FFD700);
    border-radius: 22px;
    z-index: -1;
    opacity: 0.3;
    animation: videoBorder 3s ease-in-out infinite;
}

@keyframes videoBorder {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.video-container iframe {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    background: #000;
    display: block;
    width: 100% !important;
    height: 100% !important;
}

/* Melhor visibilidade */
.video-container h3 {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    animation: titleGlow 2s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    from { text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5); }
    to { text-shadow: 0 0 20px rgba(255, 215, 0, 0.6), 0 2px 4px rgba(0, 0, 0, 0.5); }
}

/* Responsividade para mobile */
@media (max-width: 768px) {
    .video-section {
        margin: 25px 0;
        padding: 0 15px;
    }

    .video-container {
        padding: 20px;
    }

    .video-container h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .video-container {
        padding: 15px;
    }

    .video-container h3 {
        font-size: 16px;
    }
}

/* Estatísticas de Confiança */
.trust-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin: 40px 0;
    padding: 32px;
    background: rgba(248, 250, 252, 0.06);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(251, 191, 36, 0.15);
    box-shadow: 
        0 8px 32px rgba(15, 20, 25, 0.2),
        inset 0 1px 0 rgba(248, 250, 252, 0.08);
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.stat-number {
    font-size: 32px;
    font-weight: 900;
    color: #FFD700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    margin-bottom: 8px;
    font-family: 'Segoe UI', sans-serif;
}

.stat-label {
    font-size: 14px;
    color: #ffffff;
    font-weight: 600;
    opacity: 0.9;
}

/* Certificações */
.certifications {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    margin: 30px 0;
    padding: 25px;
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.1), rgba(32, 201, 151, 0.1));
    border-radius: 15px;
    border: 1px solid rgba(40, 167, 69, 0.3);
}

.cert-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.cert-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.15);
}

.cert-item i {
    font-size: 24px;
    color: #28a745;
    margin-bottom: 5px;
}

.cert-item span {
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    color: #ffffff;
}

/* Depoimentos Melhorados */
.testimonials {
    margin: 50px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
}

.testimonial {
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    padding: 25px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.testimonial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FFD700, #28a745);
}

.testimonial.verified {
    border-left: 4px solid #28a745;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4169E1, #1E90FF);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 18px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.user-info {
    flex: 1;
}

.user-name {
    font-size: 16px;
    font-weight: bold;
    color: #2a5298;
    margin-bottom: 2px;
}

.user-location {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.verification-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #28a745;
    font-weight: 600;
}

.verification-badge i {
    font-size: 14px;
}

.rating {
    display: flex;
    gap: 2px;
}

.rating i {
    color: #FFD700;
    font-size: 16px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.testimonial-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 15px;
    font-style: normal;
}

.payment-proof {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background: rgba(40, 167, 69, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(40, 167, 69, 0.2);
    font-size: 14px;
    color: #28a745;
    font-weight: 600;
}

.payment-proof i {
    font-size: 16px;
}

/* Pagamentos em Tempo Real */
.live-payments {
    margin: 40px 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.live-payments-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: bold;
    color: #FFD700;
}

.live-indicator {
    color: #28a745;
    animation: pulse 2s infinite;
}

.payments-stream {
    max-height: 200px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.payment-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    font-size: 14px;
    animation: slideInRight 0.5s ease-out;
    border-left: 3px solid #28a745;
}

.payment-user {
    font-weight: 600;
    color: #FFD700;
}

.payment-amount {
    font-weight: bold;
    color: #28a745;
}

.payment-time {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Rodapé */
.footer {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    flex-wrap: wrap;
}

.footer-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-link:hover {
    opacity: 1;
}

/* Otimizações de animação para melhor performance */
@keyframes fastFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes buttonPress {
    0% { transform: scale(1); }
    50% { transform: scale(0.95); }
    100% { transform: scale(1); }
}

/* Feedback visual melhorado */
.button-feedback {
    animation: buttonPress 0.2s ease-in-out;
}

/* Tela de Avaliação otimizada */
.evaluation-container {
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
    animation: fastFadeIn 0.3s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.evaluation-balance {
    text-align: center;
    margin-bottom: 20px;
    background: rgba(255, 215, 0, 0.1);
    padding: 15px 20px;
    border-radius: 15px;
    border: 2px solid #FFD700;
}

.evaluation-balance-label {
    font-size: 14px;
    color: #FFD700;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.evaluation-balance-amount {
    font-size: 28px;
    font-weight: bold;
    color: #FFD700;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
    animation: balanceGlow 2s ease-in-out infinite alternate;
}

/* Contador de pessoas avaliando na tela de avaliação */
.evaluation-live-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 15px 0 20px 0;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.live-indicator-dot {
    width: 10px;
    height: 10px;
    background: #28a745;
    border-radius: 50%;
    animation: livePulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(40, 167, 69, 0.6);
}

@keyframes livePulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 10px rgba(40, 167, 69, 0.6);
    }
    50% { 
        transform: scale(1.2);
        box-shadow: 0 0 15px rgba(40, 167, 69, 0.8);
    }
}

.live-counter-text {
    font-size: 14px;
    color: #ffffff;
    font-weight: 600;
}

.live-counter-text #evaluation-people-count {
    color: #FFD700;
    font-weight: bold;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

.progress-bar {
    width: 100%;
    height: 10px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    margin-bottom: 20px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    border-radius: 5px;
    transition: width 0.5s ease;
    width: 0%;
}

.evaluation-counter {
    text-align: center;
    font-size: 18px;
    margin-bottom: 30px;
    color: #FFD700;
}

.card-container {
    perspective: 1000px;
    margin-bottom: 30px;
}

.product-card {
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    cursor: grab;
}

.product-card:active {
    cursor: grabbing;
}

.card-image {
    height: 200px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-content {
    padding: 20px;
}

.card-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2a5298;
}

.card-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.product-price {
    font-size: 24px;
    font-weight: bold;
    color: #28a745;
    text-align: center;
}

.swipe-instructions {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    gap: 20px;
}

.instruction {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.instruction i {
    font-size: 30px;
}

.dislike-icon {
    color: #dc3545;
}

.like-icon {
    color: #28a745;
}

.instruction span {
    font-size: 12px;
    text-align: center;
}

.action-buttons {
    display: flex;
    gap: 20px;
}

.dislike-btn, .like-btn {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-height: 50px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    will-change: transform;
}

.dislike-btn {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 50%, #f87171 100%);
    color: #f8fafc;
    box-shadow: 
        0 6px 18px rgba(220, 38, 38, 0.4),
        0 2px 8px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.like-btn {
    background: linear-gradient(135deg, #059669 0%, #10b981 50%, #34d399 100%);
    color: #f8fafc;
    box-shadow: 
        0 6px 18px rgba(5, 150, 105, 0.4),
        0 2px 8px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.dislike-btn::before, .like-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.dislike-btn:hover, .like-btn:hover {
    transform: translateY(-2px) scale(1.02);
}

.dislike-btn:hover {
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.4);
}

.like-btn:hover {
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
}

.dislike-btn:active, .like-btn:active {
    transform: translateY(0) scale(0.98);
    transition: all 0.1s;
}

.dislike-btn:hover::before, .like-btn:hover::before {
    left: 100%;
}

/* Informações da Avaliação */
.evaluation-info {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.earning-per-evaluation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000;
    padding: 15px 20px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 16px;
    animation: subtleGlow 3s ease-in-out infinite;
}

.earning-per-evaluation i {
    font-size: 20px;
}

@keyframes subtleGlow {
    0%, 100% { 
        box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    }
    50% { 
        box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
    }
}

.evaluation-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 10px 0;
}

.stat {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 10px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.stat-value {
    font-size: 24px;
    font-weight: bold;
    color: #FFD700;
    margin-bottom: 5px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.stat-label {
    font-size: 12px;
    color: #ffffff;
    opacity: 0.9;
    font-weight: 600;
}

.quick-tips {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(40, 167, 69, 0.3);
}

.tip-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    color: #ffffff;
}

.tip-item:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tip-item i {
    color: #28a745;
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.motivation-message {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
    padding: 15px 20px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 15px;
    text-align: center;
    animation: motivationPulse 4s ease-in-out infinite;
}

.motivation-message i {
    font-size: 18px;
    animation: fireFlicker 2s ease-in-out infinite alternate;
}

@keyframes motivationPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
    }
    50% { 
        transform: scale(1.02);
        box-shadow: 0 6px 20px rgba(40, 167, 69, 0.5);
    }
}

@keyframes fireFlicker {
    0%, 100% { 
        transform: scale(1) rotate(-2deg);
    }
    50% { 
        transform: scale(1.1) rotate(2deg);
    }
}

/* Tela de Parabéns */
.congratulations-content {
    text-align: center;
    max-width: 400px;
    margin: 50px auto;
}

.congrats-icon {
    font-size: 80px;
    color: #FFD700;
    margin-bottom: 30px;
    animation: bounce 1s ease-in-out;
}

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

.congratulations-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #FFD700;
}

.earned-amount {
    font-size: 28px;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #28a745, #20c997);
    padding: 20px;
    border-radius: 15px;
    font-weight: bold;
}

.earned-amount span {
    color: #FFD700;
    font-size: 32px;
}

.success-message {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.convert-button {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000;
    border: none;
    padding: 20px 40px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 auto;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.convert-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}

/* Tela de Conversão */
.conversion-content {
    text-align: center;
    max-width: 400px;
    margin: 100px auto;
}

.converting-animation {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 40px 20px;
}

.spinner {
    position: relative;
    width: 80px;
    height: 80px;
}

.spinner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 4px solid rgba(255, 215, 0, 0.2);
    border-radius: 50%;
    border-top: 4px solid #FFD700;
    animation: spin 1s linear infinite;
}

.spinner::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    border: 3px solid rgba(40, 167, 69, 0.2);
    border-radius: 50%;
    border-bottom: 3px solid #28a745;
    animation: spin 1.5s linear infinite reverse;
}

.converting-animation p {
    font-size: 18px;
    font-weight: 600;
    color: #FFD700;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
    animation: pulse 1.5s ease-in-out infinite;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.converting-animation p::after {
    content: '';
    width: 8px;
    height: 8px;
    background: #FFD700;
    border-radius: 50%;
    animation: dot1 1.4s ease-in-out infinite;
    box-shadow: 
        16px 0 0 #FFD700,
        32px 0 0 #FFD700;
}

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

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

@keyframes dot1 {
    0%, 80%, 100% {
        transform: scale(0);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Efeito de fundo animado */
.converting-animation::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.3;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

.conversion-result {
    animation: fadeIn 0.5s ease-in;
}

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

.converted-amount {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    font-size: 24px;
    font-weight: bold;
}

.euro-amount {
    color: #FFD700;
}

.real-amount {
    color: #28a745;
}

.converted-amount i {
    font-size: 20px;
    color: #ffffff;
}

.register-pix-button {
    background: linear-gradient(45deg, #007bff, #0056b3);
    color: white;
    border: none;
    padding: 20px 40px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 auto;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.3);
}

.register-pix-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 123, 255, 0.4);
}

/* Formulário PIX */
.pix-form-content {
    max-width: 400px;
    margin: 50px auto;
}

.pix-form-content h3 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 30px;
    color: #FFD700;
}

.pix-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #FFD700;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    margin-bottom: 10px;
}

.confirm-pix-button {
    width: 100%;
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
    border: none;
    padding: 15px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.confirm-pix-button:hover {
    transform: translateY(-2px);
}

/* Confirmação PIX */
.pix-confirmation-content {
    text-align: center;
    max-width: 400px;
    margin: 100px auto;
}

.success-icon {
    font-size: 80px;
    color: #28a745;
    margin-bottom: 30px;
    animation: bounce 1s ease-in-out;
}

.pix-confirmation-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #FFD700;
}

.pix-confirmation-content p {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.withdraw-button {
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
    border: none;
    padding: 20px 40px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 auto;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.3);
}

.withdraw-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(40, 167, 69, 0.4);
}

/* Tela de Taxa */
.tax-content {
    max-width: 400px;
    margin: 50px auto;
}

.tax-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    text-align: center;
}

.tax-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #FFD700;
}

.tax-info p {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.5;
}

.tax-amount {
    background: linear-gradient(45deg, #dc3545, #c82333);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.tax-price {
    font-size: 32px;
    font-weight: bold;
    color: white;
}

.tax-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
}

.benefit i {
    font-size: 20px;
    color: #28a745;
}

.pay-tax-button {
    width: 100%;
    background: linear-gradient(45deg, #dc3545, #c82333);
    color: white;
    border: none;
    padding: 20px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(220, 53, 69, 0.3);
}

.pay-tax-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(220, 53, 69, 0.4);
}

/* Notificações */
.notifications {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.notification {
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.5s ease-out;
    max-width: 300px;
}

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* Otimizações de performance global */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.screen {
    will-change: transform;
}

/* Responsividade melhorada para mobile */
@media (max-width: 768px) {
    body {
        align-items: flex-start;
    }

    .screen {
        padding: 15px;
        min-height: 100vh;
        justify-content: flex-start;
        padding-top: 20px;
    }

    .screen.active {
        display: flex;
    }

    .hero-section h1 {
        font-size: 24px;
        line-height: 1.2;
    }

    .highlights {
        display: grid;
        grid-template-columns: 1fr;
        gap: 15px;
        justify-items: center;
    }

    .highlight-item {
        width: 100%;
        max-width: 280px;
        padding: 15px;
    }

    .trust-stats {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 20px;
        margin: 25px 0;
    }

    .stat-number {
        font-size: 28px;
    }

    .certifications {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 20px;
    }

    .cert-item {
        padding: 12px 8px;
    }

    .cert-item span {
        font-size: 11px;
    }

    .testimonials {
        margin: 25px 0;
        gap: 15px;
        grid-template-columns: 1fr;
    }

    .testimonial {
        padding: 20px;
    }

    .testimonial-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .user-avatar {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .rating {
        align-self: flex-end;
    }

    .live-payments {
        margin: 25px 0;
        padding: 20px;
    }

    .payment-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .footer {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        text-align: center;
    }

    .swipe-instructions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .action-buttons {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .evaluation-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .stat {
        padding: 12px 8px;
    }

    .stat-value {
        font-size: 20px;
    }

    .stat-label {
        font-size: 11px;
    }

    .earning-per-evaluation {
        font-size: 14px;
        padding: 12px 16px;
    }

    .motivation-message {
        font-size: 14px;
        padding: 12px 16px;
    }

    .quick-tips {
        padding: 15px;
    }

    .tip-item {
        font-size: 13px;
        padding: 8px 0;
    }

    .converted-amount {
        flex-direction: column;
        gap: 15px;
    }

    /* Otimizações para toque */
    .cta-button {
        min-height: 56px;
        font-size: 18px;
        padding: 16px 32px;
    }

    .dislike-btn, .like-btn {
        min-height: 48px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 10px 15px;
        margin-bottom: 20px;
    }

    .logo {
        gap: 12px;
        padding: 10px 20px;
    }

    .logo-icon {
        width: 36px;
        height: 36px;
    }

    .logo-icon::before {
        font-size: 20px;
    }

    .logo-text .brand-name {
        font-size: 20px;
    }

    .logo-text .brand-tagline {
        font-size: 9px;
    }

    .hero-section h1 {
        font-size: 22px;        margin-bottom: 20px;
    }

    .highlights {
        gap: 12px;
    }

    .highlight-item {
        padding: 12px;
        min-width: auto;
    }

    .golden-tip {
        padding: 12px 16px;
        font-size: 14px;
        margin: 20px 0;
    }

    .cta-button {
        padding: 16px 24px;
        font-size: 17px;
        min-height: 52px;
        margin: 20px auto;
    }

    .action-buttons {
        gap: 10px;
    }

    .dislike-btn, .like-btn {
        padding: 12px 16px;
        font-size: 14px;
        min-height: 44px;
    }

    .swipe-instructions {
        gap: 8px;
        margin-bottom: 20px;
    }

    .instruction span {
        font-size: 11px;
    }

    .congratulations-content h2 {
        font-size: 26px;
    }

    .earned-amount {
        font-size: 20px;
        padding: 15px;
    }

    .earned-amount span {
        font-size: 24px;
    }

    /* Otimizações para área de toque */
    .footer {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .footer-link {
        padding: 8px 12px;
        display: inline-block;
    }
}

/* Tela de Taxa de Validação */
.tax-screen {
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
}

.tax-content {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 30px;
}

.tax-info {
    background: rgba(248, 250, 252, 0.1);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 600px;
    width: 100%;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px rgba(15, 20, 25, 0.4);
}

/* Saldo para Saque */
.withdrawal-amount {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    padding: 25px;
    border-radius: 20px;
    margin: 25px 0;
    box-shadow: 
        0 10px 30px rgba(40, 167, 69, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.withdrawal-label {
    font-size: 16px;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 10px;
    opacity: 0.9;
}

.withdrawal-value {
    font-size: 36px;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 8px;
    animation: withdrawalGlow 2s ease-in-out infinite alternate;
}

@keyframes withdrawalGlow {
    0% {
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }
    100% {
        text-shadow: 
            0 0 20px rgba(255, 255, 255, 0.6),
            0 2px 4px rgba(0, 0, 0, 0.3);
    }
}

.withdrawal-note {
    font-size: 14px;
    color: #ffffff;
    opacity: 0.8;
    font-weight: 500;
}

.tax-video-section {
    margin: 25px 0;
}

.tax-video-container {
    background: rgba(248, 250, 252, 0.05);
    padding: 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 
        0 10px 30px rgba(15, 20, 25, 0.3),
        0 3px 10px rgba(255, 215, 0, 0.1);
}

.tax-video-container h4 {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 15px;
}

.tax-video-container iframe {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    background: #000;
}

/* Notificações */
.notifications {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.notification {
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.5s ease-out;
    max-width: 300px;
}

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* Otimizações de performance global */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.screen {
    will-change: transform;
}

/* Responsividade melhorada para mobile */
@media (max-width: 768px) {
    body {
        align-items: flex-start;
    }

    .screen {
        padding: 15px;
        min-height: 100vh;
        justify-content: flex-start;
        padding-top: 20px;
    }

    .screen.active {
        display: flex;
    }

    .hero-section h1 {
        font-size: 24px;
        line-height: 1.2;
    }

    .highlights {
        display: grid;
        grid-template-columns: 1fr;
        gap: 15px;
        justify-items: center;
    }

    .highlight-item {
        width: 100%;
        max-width: 280px;
        padding: 15px;
    }

    .trust-stats {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 20px;
        margin: 25px 0;
    }

    .stat-number {
        font-size: 28px;
    }

    .certifications {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 20px;
    }

    .cert-item {
        padding: 12px 8px;
    }

    .cert-item span {
        font-size: 11px;
    }

    .testimonials {
        margin: 25px 0;
        gap: 15px;
        grid-template-columns: 1fr;
    }

    .testimonial {
        padding: 20px;
    }

    .testimonial-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .user-avatar {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .rating {
        align-self: flex-end;
    }

    .live-payments {
        margin: 25px 0;
        padding: 20px;
    }

    .payment-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .footer {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        text-align: center;
    }

    .swipe-instructions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .action-buttons {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .evaluation-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .stat {
        padding: 12px 8px;
    }

    .stat-value {
        font-size: 20px;
    }

    .stat-label {
        font-size: 11px;
    }

    .earning-per-evaluation {
        font-size: 14px;
        padding: 12px 16px;
    }

    .motivation-message {
        font-size: 14px;
        padding: 12px 16px;
    }

    .quick-tips {
        padding: 15px;
    }

    .tip-item {
        font-size: 13px;
        padding: 8px 0;
    }

    .converted-amount {
        flex-direction: column;
        gap: 15px;
    }

    /* Otimizações para toque */
    .cta-button {
        min-height: 56px;
        font-size: 18px;
        padding: 16px 32px;
    }

    .dislike-btn, .like-btn {
        min-height: 48px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 10px 15px;
        margin-bottom: 20px;
    }

    .logo {
        gap: 12px;
        padding: 10px 20px;
    }

    .logo-icon {
        width: 36px;
        height: 36px;
    }

    .logo-icon::before {
        font-size: 20px;
    }

    .logo-text .brand-name {
        font-size: 20px;
    }

    .logo-text .brand-tagline {
        font-size: 9px;
    }

    .hero-section h1 {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .highlights {
        gap: 12px;
    }

    .highlight-item {
        padding: 12px;
        min-width: auto;
    }

    .golden-tip {
        padding: 12px 16px;
        font-size: 14px;
        margin: 20px 0;
    }

    .cta-button {
        padding: 16px 24px;
        font-size: 17px;
        min-height: 52px;
        margin: 20px auto;
    }

    .action-buttons {
        gap: 10px;
    }

    .dislike-btn, .like-btn {
        padding: 12px 16px;
        font-size: 14px;
        min-height: 44px;
    }

    .swipe-instructions {
        gap: 8px;
        margin-bottom: 20px;
    }

    .instruction span {
        font-size: 11px;
    }

    .congratulations-content h2 {
        font-size: 26px;
    }

    .earned-amount {
        font-size: 20px;
        padding: 15px;
    }

    .earned-amount span {
        font-size: 24px;
    }

    /* Otimizações para área de toque */
    .footer {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .footer-link {
        padding: 8px 12px;
        display: inline-block;
    }
}