/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BODY */
body {
    font-family: 'Montserrat', sans-serif;
    background-color: #ececec;
    color: #222;
    line-height: 1.6;
}

/* HEADER */
header {
    background: #000;
    color: #fff;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
}

header span {
    margin-left: 10px;
}

/* NEWS BAR */
.news-bar {
    background: red;
    color: white;
    padding: 6px 15px;
    font-weight: 600;
    font-size: 14px;
    overflow: hidden;
    white-space: nowrap;
}

.ticker {
    display: inline-block;
    animation: slide 18s linear infinite;
}

@keyframes slide {
    from { transform: translateX(100%); }
    to   { transform: translateX(-100%); }
}

/* CONTENT WRAPPER */
.content {
    max-width: 800px;
    margin: 20px auto;
    background: white;
    padding: 25px;
    border-radius: 6px;
}

/* HEADINGS */
h1 {
    font-size: 28px;
    font-weight: 800;
    color: #111;
    margin-bottom: 16px;
}

h2 {
    margin: 24px 0 12px;
    font-weight: 800;
}

.red { color: #d60000; font-weight: 800; }
.yellow { color: #f2c200; font-weight: 800; }
.green { color: #008f39; font-weight: 800; }

/* IMAGENS */
.image {
    width: 100%;
    margin: 20px 0;
    border-radius: 6px;
}

/* CTA BUTTON */
.cta-btn {
    display: block;
    width: 100%;
    padding: 18px;
    background: #28a745;
    color: white;
    border-radius: 8px;
    font-size: 20px;
    margin: 25px 0;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
}

.cta-btn:hover {
    background: #1e7c34;
}

/* VIDEO PLAYER — AQUI ESTÁ A LIMITAÇÃO DE 250PX */
.content video {
    width: 250px !important;
    max-width: 250px !important;
    height: auto !important;

    display: block;
    margin: 16px auto;
    border-radius: 10px;
    background: #000;
}

/* FACEBOOK COMMENTS */
.fb-comments {
    background: #ffffff;
    border-radius: 8px;
    padding: 16px;
    margin-top: 20px;
    font-size: 13px;
}

.fb-comments-header {
    font-size: 12px;
    font-weight: 600;
    color: #555;
    margin-bottom: 10px;
}

.fb-comment {
    display: flex;
    align-items: flex-start;
    margin-bottom: 8px;
}

.fb-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    margin-right: 8px;
}

.fb-bubble {
    background: #f0f2f5;
    border-radius: 18px;
    padding: 8px 12px;
    max-width: 100%;
}

.fb-name {
    font-weight: 600;
    color: #365899;
    font-size: 13px;
    margin-bottom: 2px;
}

.fb-text {
    color: #1c1e21;
    font-size: 13px;
}

.fb-footer-row {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: #90949c;
    margin-left: 50px;
    margin-top: 3px;
    margin-bottom: 10px;
}

.fb-actions span {
    cursor: pointer;
}

.fb-reactions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f8f9fa;
    border-radius: 999px;
    padding: 10px 30px;
}

.fb-reactions img {
    width: 14px;
    height: 14px;
}

.fb-login-warning {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: #555;
    margin-top: 14px;
}

.fb-reactions {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #f8f9fa;
    border-radius: 999px;
    padding: 2px 8px;
    font-size: 13px;
}

.fb-reactions .emoji {
    display: inline-block;
    font-size: 15px;
    line-height: 1;
}