/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body e estrutura geral baseada no original */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #D4B8A0;
    background-color: #D4B8A0;
}

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

/* Estilos para comentários */
.comment-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.comment-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* Responsividade */
@media (max-width: 768px) {
    body {
        font-size: 14px;
    }
    
    h1 {
        font-size: 1.8rem !important;
    }
    
    .comment-card {
        margin: 0 10px 20px 10px;
        padding: 15px;
    }
    
    .comment-card > div:first-child {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .comment-card img {
        width: 40px !important;
        height: 40px !important;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.5rem !important;
        margin: 15px 0 !important;
    }
    
    .comment-card {
        margin: 0 5px 15px 5px;
        padding: 12px;
    }
    
    .comment-card img {
        width: 35px !important;
        height: 35px !important;
    }
    
    .comment-card > div:last-child {
        margin-left: 10px !important;
        padding: 10px !important;
    }
}

/* Animações e transições */
img {
    max-width: 100%;
    height: auto;
}

/* Lazy loading */
.lazyload {
    opacity: 0;
    transition: opacity 0.3s;
}

.lazyloaded {
    opacity: 1;
}

/* Acessibilidade */
span[style*="color: #1877f2"]:focus {
    outline: 2px solid #1877f2;
    outline-offset: 2px;
}

/* Otimizações de performance */
.comment-card {
    will-change: transform;
}

/* Estilos específicos para o player de vídeo */
vturb-smartplayer {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Estilos para logos dos canais */
img[alt*="EWTN"], img[alt*="Televisión"] {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

img[alt*="EWTN"]:hover, img[alt*="Televisión"]:hover {
    opacity: 1;
    transform: scale(1.05);
}

