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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header de urgência */
.urgency-header {
    background: linear-gradient(135deg, #4285f4, #34a853);
    color: white;
    padding: 15px 0;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.urgency-header strong {
    font-weight: 700;
    text-decoration: underline;
}

/* Conteúdo principal */
.main-content {
    padding: 40px 0;
    background: white;
}

/* Seção do vídeo */
.video-section {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.video-player {
    position: relative;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.video-placeholder {
    position: relative;
    width: 100%;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.4);
}

.play-button {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(76, 175, 80, 0.4);
}

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

.play-button svg {
    margin-left: -4px;
}

/* Controles do player */
.player-controls {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.control-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
}

.control-item:last-child {
    border-bottom: none;
}

.control-label {
    font-weight: 500;
    color: #666;
}

.control-value {
    font-weight: 600;
    color: #333;
}

/* Aviso de conexão */
.connection-warning {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    color: #856404;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 500;
}

/* Call to action */
.cta-section {
    margin: 40px 0;
}

.cta-section h2 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

/* Seção de comentários */
.comments-section {
    background: white;
    padding: 40px 0;
    border-top: 1px solid #e9ecef;
}

.comments-section h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #333;
}

.comments-list {
    max-width: 800px;
    margin: 0 auto;
}

.comment {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #4285f4;
}

.comment.reply {
    margin-left: 40px;
    border-left-color: #34a853;
}

.comment-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    flex-shrink: 0;
}

.comment-content {
    flex: 1;
}

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

.comment-header strong {
    font-weight: 600;
    color: #333;
}

.reply-to {
    color: #4285f4;
    font-weight: 500;
    margin-left: 8px;
}

.comment p {
    color: #555;
    line-height: 1.5;
    margin-bottom: 10px;
}

.comment-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
}

.like-btn, .reply-btn {
    color: #4285f4;
    cursor: pointer;
    font-weight: 500;
}

.like-btn:hover, .reply-btn:hover {
    text-decoration: underline;
}

.like-count {
    font-weight: 600;
    color: #4285f4;
}

.comment-time {
    color: #999;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.footer-links {
    margin: 20px 0;
}

.footer-link {
    color: #4285f4;
    text-decoration: none;
    margin: 0 10px;
}

.footer-link:hover {
    text-decoration: underline;
}

.disclaimer {
    font-size: 14px;
    color: #ccc;
    max-width: 600px;
    margin: 20px auto 0;
}

/* Responsividade */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .urgency-header {
        font-size: 14px;
        padding: 12px 0;
    }
    
    .video-placeholder {
        height: 250px;
    }
    
    .play-button {
        padding: 15px 30px;
        font-size: 16px;
    }
    
    .player-controls {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .cta-section h2 {
        font-size: 20px;
    }
    
    .comment {
        padding: 15px;
    }
    
    .comment.reply {
        margin-left: 20px;
    }
    
    .comment-avatar {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .video-placeholder {
        height: 200px;
    }
    
    .play-button {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .cta-section h2 {
        font-size: 18px;
    }
    
    .comment {
        flex-direction: column;
        gap: 10px;
    }
    
    .comment.reply {
        margin-left: 10px;
    }
}

/* Animações */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.comment {
    animation: fadeIn 0.5s ease-out;
}

.video-player {
    animation: fadeIn 0.8s ease-out;
}

/* Estados de hover */
.comment:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.control-item:hover {
    background: rgba(66, 133, 244, 0.05);
    transition: background 0.2s ease;
}



.comment-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    flex-shrink: 0;
}

.comment-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


