/* --- RESET GERAL --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', Times, serif;
    background-color: #fff;
    color: #000;
    line-height: 1.5;
}

/* Container Centralizado */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 15px;
    text-align: center;
}

/* --- CABEÇALHO --- */
.main-header {
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
    margin-bottom: 30px;
}

.logo {
    color: #0e5b98;
    font-family: 'Arial Narrow', 'Impact', sans-serif;
    font-size: 48px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

/* --- HEADLINE (TÍTULO) --- */
.main-headline {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 25px;
    line-height: 1.3;
}

.highlight-green {
    background-color: #00b050;
    color: #000;
    padding: 0 5px;
}

.highlight-red {
    color: #cc0000;
    font-weight: bold;
}

/* ================================================== */
/* CORREÇÃO DO VÍDEO (VERTICAL 9:16 PARA PC E MOBILE) */
/* ================================================== */
.video-wrapper {
    position: relative;
    width: 100%;
    
    /* No PC, limita a largura a 400px (tamanho de um celular grande) */
    max-width: 400px; 
    
    /* Centraliza a caixa na tela */
    margin: 0 auto 30px auto; 
    
    /* Força proporção Vertical (9 largura / 16 altura) */
    aspect-ratio: 9 / 16;
    
    background: #000;
    border-radius: 12px;
   
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Fallback para navegadores muito antigos que não aceitam aspect-ratio */
@supports not (aspect-ratio: 9 / 16) {
    .video-wrapper {
        padding-bottom: 177.77%; /* 16/9 = 1.77 */
        height: 0;
    }
}

/* Garante que o player do VTurb preencha a caixa exata */
.video-wrapper iframe, 
.video-wrapper .smartplayer-embed,
.video-wrapper vturb-smartplayer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    border: 0;
}
/* ================================================== */

/* --- AVISO DE SOM --- */
.sound-warning {
    background-color: #f4f4f4;
    padding: 15px;
    font-size: 14px;
    color: #333;
    border-radius: 5px;
    margin-bottom: 30px;
    font-family: Arial, sans-serif;
}

.sound-warning strong {
    color: #0e5b98;
}

/* Linha divisória */
.divider {
    border: 0;
    border-top: 1px solid #eee;
    margin: 30px 0;
}

/* --- SEÇÃO DO MÉDICO --- */
.doctor-section {
    margin-bottom: 40px;
    text-align: left;
}

.doctor-grid {
    display: flex;
    align-items: center;
    gap: 25px;
}

.doctor-img img {
    width: 250px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.doctor-info {
    flex: 1;
    font-family: Arial, sans-serif;
}

.badge-blue {
    background-color: #0e5b98;
    color: white;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 10px;
}

.doctor-info h3 {
    font-size: 28px;
    color: #222;
    margin-bottom: 5px;
}

.doctor-desc {
    color: #555;
    font-size: 16px;
}

/* --- SEÇÃO TUTORIAL --- */
.tutorial-section {
    margin-bottom: 50px;
    text-align: center;
}

.section-title {
    font-size: 24px;
    font-weight: bold;
    color: #222;
    margin-bottom: 20px;
    font-family: Arial, sans-serif;
}

.tutorial-box {
    background-color: #f9f9f9;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 30px;
}

.benefit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    text-align: left;
    font-family: Arial, sans-serif;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.check-icon {
    background-color: #0e5b98;
    color: white;
    min-width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    margin-top: 2px;
}

.benefit-item p {
    font-size: 15px;
    color: #444;
    line-height: 1.4;
}

/* --- RESPONSIVIDADE (CELULAR) --- */
@media (max-width: 768px) {
    .main-header {
        padding: 15px 0;
    }

    .logo {
        font-size: 36px;
    }

    .main-headline {
        font-size: 20px;
    }

    .doctor-grid {
        flex-direction: column;
        text-align: center;
    }

    .doctor-img img {
        width: 100%;
        max-width: 320px;
    }

    .doctor-info {
        text-align: center;
    }

    .benefit-grid {
        grid-template-columns: 1fr;
    }
}

/* --- SEÇÃO DE COMENTÁRIOS (FB Style) --- */
.comments-section {
    margin-top: 40px;
    background-color: #fff;
    padding: 20px 0;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.comments-container {
    max-width: 100%;
    margin: 0 auto;
    text-align: left;
}

.comments-title {
    font-size: 20px;
    font-weight: bold;
    color: #1c1e21;
    margin-bottom: 5px;
    font-family: sans-serif;
}

.comments-count {
    font-size: 13px;
    color: #65676b;
    margin-bottom: 20px;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 10px;
}

.fb-comment {
    display: flex;
    margin-bottom: 15px;
    animation: fadeIn 0.5s ease;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    object-fit: cover;
}

.fb-content {
    flex: 1;
}

.fb-bubble {
    background-color: #f0f2f5;
    border-radius: 18px;
    padding: 10px 15px;
    display: inline-block;
}

.fb-name {
    display: block;
    font-weight: bold;
    font-size: 13px;
    color: #050505;
    margin-bottom: 3px;
    cursor: pointer;
}

.fb-name:hover {
    text-decoration: underline;
}

.fb-bubble p {
    font-size: 14px;
    color: #050505;
    line-height: 1.3;
    margin: 0;
}

.fb-meta {
    margin-top: 3px;
    margin-left: 10px;
    font-size: 12px;
    color: #65676b;
}

.fb-meta a {
    color: #65676b;
    text-decoration: none;
    font-weight: bold;
    margin-right: 5px;
}

.fb-meta a:hover {
    text-decoration: underline;
}

.fb-likes {
    color: #65676b;
    margin-right: 5px;
}

/* --- RODAPÉ LEGAL --- */
.legal-footer {
    background-color: #e9e9e9;
    padding: 40px 20px;
    text-align: center;
    border-top: 1px solid #ccc;
    font-family: Arial, sans-serif;
}

.disclaimer {
    font-size: 11px;
    color: #777;
    line-height: 1.5;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.copyright {
    font-size: 12px;
    color: #555;
    margin-bottom: 10px;
}

.footer-links a {
    color: #555;
    font-size: 12px;
    text-decoration: none;
    margin: 0 5px;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* Ajustes finais mobile */
@media (max-width: 600px) {
    .fb-bubble {
        width: 100%;
    }
}