body {
    font-family: Arial, sans-serif;
    color: #000;
    background: #fff;
    line-height: 1.5;
}
a {
    text-decoration: none;
    color: inherit;
}
/* HEADER */
header{
        background-color: #03284b;
    overflow: hidden;
    white-space: nowrap;
    padding: 6px 0;
    width: 100%;
}
header p{
    display: inline-block;
    padding-left: 100%;
    animation: ticker-scroll 45s linear infinite;
    font-size: .7rem;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 0;
}
@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}
/* TITULOS */
.titulos{
    margin-top: 15px;
    margin-bottom: 15px;
}
.titulos .container{
    max-width: 900px;
}
.labels {
    margin-bottom: 10px;
}
.label.ad {
    background-color: #999;
}
.label.health {
    background-color: #c12828;
}
.label {
    display: inline-block;
    margin: 0 5px;
    padding: 6px 10px;
    font-size: .70rem;
    font-weight: bold;
    border-radius: 5px;
    color: #fff;
}
.titulos h1{
        font-size: 1.8rem;
    font-weight: bold;
    margin: 5px 0;
    line-height: 1.2;
}
.titulos p{
    font-size: 1.1rem;
    margin: 0 0;
    line-height: 1.2;
}
.social-share {
    display: flex
;
    justify-content: space-between;
    align-items: center;
    gap: 7px;
    padding: 10px 0;
}

.byline {
    font-family: Georgia, serif;
    color: #111;
    text-align: left;
}
.date {
    font-size: .9rem;
    color: #555;
}
.social-bubbles {
    display: flex
;
    gap: 7px;
}
.social-bubbles a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 21px;
    height: 21px;
    border-radius: 50%;
    background-color: #ddd;
    color: #fff;
    font-size: 12px;
    text-decoration: none;
    transition: transform .2s ease
}

.social-bubbles a:hover {
    transform: scale(1.1)
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: #fff;
    font-size: 1rem;
    text-decoration: none
}

.social-icon.facebook {
    background-color: #3b5998
}

.social-icon.twitter {
    background-color: #1da1f2
}

.social-icon.whatsapp {
    background-color: #25d366
}

.social-icon.print {
    background-color: #6c757d
}

.social-icon.email {
    background-color: #5a9bd4
}
/* CONTEÚDO */
.conteudo{
    padding-top: 20px;
    padding-bottom: 20px;
}
.conteudo .container{
    max-width: 800px;
}
.conteudo p{
        margin-bottom: 15px;
}
.video-container {
    position: relative;
    display: block;
    width: 100%;
    max-width: 600px;
    text-align: center;
    margin: 0 auto;
}
.video-container img {
    width: 100%;
    display: block;
    border-radius: 8px;
    text-align: center;
    margin: 0 auto;
}
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, .6);
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    padding: 14px 24px;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, .2);
}
.play-button:hover {
    background: rgba(0, 0, 0, .8);
    transition: background .3s ease;
    color: white;
}
.cta-button {
    display: block;
    background-color: #f60;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    padding: 15px 24px;
    border-radius: 8px;
    width: 100%;
    max-width: 400px;
    margin: 5px auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .2);
    font-family: Arial, sans-serif;
    line-height: 1.4;
    border: none;
}
.cta-button span {
    display: block;
    font-size: 16px;
    font-weight: normal;
}
.cta-button:hover {
    background-color: #e85a00;
        color: #fff;
    transition: background-color .3s ease;
}
.conteudo blockquote {
    font-style: italic;
    background: #f8f8f8;
    padding: 10px 15px;
    border-left: 4px solid #999;
    margin: 20px 0;
}
/* FOOTER */
footer {
    background-color: #03284b;
    color: #fff;
    padding-top: 30px;
    padding-bottom: 30px;
    font-size: .9rem;
    text-align: center;
    border-top: 2px solid #2c0000;
}
footer .container{
    max-width: 1000px;
}
footer .disclaimer {
    margin-bottom: 20px;
    line-height: 1.5;
    font-size: .85rem;
    color: #ddd
}


footer .footer-links a {
    color: #fff;
    text-decoration: underline;
    margin: 0 5px;
    font-size: .85rem
}

footer .footer-links a:hover {
    color: #ffcccb
}

.footer-social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px 0;
    background-color: #03284b
}

.footer-icon {
    color: #fff;
    font-size: 1.2rem;
    text-decoration: none;
    transition: opacity .2s ease
}

.footer-icon:hover {
    opacity: .7
}

@media(max-width:767px){
    .titulos h1{
                font-size: 1.5rem;
    }
    .titulos p{
                font-size: 1.0rem;
    }
}
