* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Roboto', sans-serif;
}

main#container {
    width: 100%;
    height: auto;
    margin: 0 auto;
    /*max-width: 425px;*/
}

.header {
    background-color: #880b0b;
}

.menu-icon {
    font-size: 24px;
    cursor: pointer;
}

.logo img {
    border-style: none;
    max-height: 45px;
    margin-top: 3px;
    margin-left: 10px; /* Adicione margem se necessÃƒÂ¡rio */
}

.spacer {
    flex-grow: 1;
}

.search-icon {
    font-size: 24px;
    cursor: pointer;
}

.principal {
    width: 100%;
    text-align: center;
    padding: 20px 0;
}

.principal h1 {
    text-align: left;
    font-size: 24px;
    color: #262626;
    padding: 10px;
}

.principal h1 span {
    text-align: left;
    font-size: 26px;
    color: red;
}

.principal h2 {
    text-align: left;
    font-size: 16px;
    color: #262626;
    padding: 10px;
}

.principal h3 {
    text-align: left;
    font-size: 16px;
    color: #262626;
    padding: 10px;
    font-weight: 400px;
}

.area_video {
    width: 100%;
    margin: 20px 0;
}

.btn_cta {
    display: none;
    cursor: pointer;
    margin: 10px auto;
    display: inline-block;
    text-align: center;
    width: 90%;
    background: green;
    color: #fff;
    line-height: 1;
    padding: 15px;
    font-size: 1.125rem;
    animation: pulsar 1.5s infinite;
    font-weight: bold;
    border-radius: 8px;
    border: none;
}

@keyframes pulsar {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255,0,0,.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255,0,0,0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255,0,0,0);
    }
}

body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    margin: 0;
    padding: 0;
}

.cnn-letreiro {
    position: relative;
    top: 0;
    width: 100%;
    height: 30px;
    background-color: red;
    color: white;
    font-size: 16px;
    text-align: center;
    line-height: 30px;
    white-space: nowrap;
    overflow: hidden;
    border-top: 1px solid white;
}

.div_letreiro {
    background-color: black;
}

.cnn-text {
    display: inline-block;
    animation: scrollText 10s linear infinite;
}

@keyframes scrollText {
    0% {
        transform: translateX(50%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.comments {
    max-width: 600px;
    margin: 0 auto;
    background-color: white;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
    padding: 20px;
}

.comment {
    display: flex;
    margin-bottom: 20px;
}

.comment img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.comment-content {
    flex-grow: 1;
    padding: 10px;
    background-color: #f9f9f9;
    border-radius: 5px;
}

.user-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.user-info strong {
    font-weight: bold;
}

.like-icon {
    font-size: 20px;
    cursor: pointer;
}

/* RodapÃƒÂ© */
footer.footer {
    padding: 30px 0;
    background: #000000;
    margin: 20px 0 0 0;
}
.footer p {
    font-size: 12px;
    color: #ffffff;
    text-align: center;
    width: 50%;
    margin: 0 auto 15px auto;
}
.footer a {
    clear: both;
    display: block;
    text-align: center;
    margin: 0;
  color: gray;
  font-size: 12px;

}

.text_vsl {
    padding-bottom: 10px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    color: #4f4f4f;
}

li, .has-text-centered {
    font-family: 'Roboto Condensed', sans-serif;
}

.a-btn {
display: inline-block!important;
width: 100%; padding-left: 0!important; 
padding-right: 0!important; 
margin-bottom: 10px; 
padding: 22px 44px;
border-radius: 30px; 
background: linear-gradient(to bottom, #00ff0c 0%, #006311 100%);
box-shadow: 0px 1px 1px 0px rgba(0,0,0,0.5); 
cursor: pointer;
animation: pulse 1.5s infinite alternate;
}

@keyframes pulse{
0%,100%{transform:scale(.9);opacity:.9;}
50%{transform:scale(1);opacity:1;}
}
@-webkit-keyframes pulse{
0%,100%{-webkit-transform:scale(.95);opacity:.7}
50%{-webkit-transform:scale(1);opacity:1}
}

.a-btn:hover {
  background: #00ff0c;
}

.span-btn {
    text-align: center;
    display: block; 
    font-size: 20px;
    color: #ffffff; 
    font-family: Oswald; 
    font-weight: bold; 
    text-shadow: #3b3b3b 1px 1px 3px;
    text-decoration: none;
}

.icons_div {
    width: 100%;
    text-align: center;
    margin: 0;
    padding: 0;
}

.estudos {
    padding: 2em 1em;
    color: #7a7a7a;
}

.estudos .title {
    font-size: 1.75em;
    margin-bottom: 1em;
    color: #4d4d4d;
    font-weight: 600;
}

.images-grid {
    display: grid;
    gap: 1em;
    grid-template-columns: repeat(4, 1fr); /* Desktop: 4 imagens lado a lado */
}

.grid-image {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Responsivo para mobile */
@media (max-width: 768px) {
    .images-grid {
        grid-template-columns: repeat(2, 1fr); /* Mobile: 2 imagens por linha */
    }
}
