
/* Reset de estilos */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}
nav{
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 9999;
}
/* Barra superior branca */
.top-bar {
    background: #2c3e50;
    padding: 5px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    
}

.top-menu {
    list-style: none;
    display: flex;
    margin-left: 2.7cm;
}

.top-menu li {
    margin-right: 20px;
    margin-top: 5px;
    
    
}

.top-menu li a {
    color: white;
    text-decoration: none;
}

/* Cabeçalho principal */
header {
    background: white;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: 60px;
    margin-left: 2.7cm;
}

.main-menu2 {
    list-style: none;
    display: flex;
    margin-left: 2.5cm;
    padding: 10px;
}


.main-menu2 li {
    margin-right: 30px;
    
}

.main-menu2 li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #004d99, #00aaff);
    color: white;
    padding: 100px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 4rem;
    
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    color: white;
    background: #00aaff;
    transition: background 0.3s;
    
}

.btn:hover {
    background: #0095e6;
}
.actions{
    margin-right: 2.7cm;
}

/* Breadcrumb */
.breadcrumb {
    padding: 20px;
    font-size: 0.9rem;
    margin-left: 2.5cm;
}

.breadcrumb a {
    color: #00aaff;
    text-decoration: none;
    cursor: pointer;
}

.breadcrumb span {
    margin: 0 10px;
}

/* Rodapé */
footer {
    background: #2c3e50;
    color: white;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
footer a{
    color: white;
}
.cookie-text {
    max-width: 60%;
    margin-left: 2.7cm;
}

.cookie-btn {
    padding: 10px 20px;
    background: #00aaff;
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    margin-right: 2.7cm;
}

/* Responsividade básica */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }
    .top-menu li {
        font-size: 10px;
        
        
    }
    .actions a{
        font-size: 15px;
    }
    .btn {
        padding: 12px 24px;
    }
    .cookie-btn {
    
    margin-right: 0;
    }
    .main-menu2 {
    list-style: none;
    display: flex;
    margin-left: 10px;
    padding: 5px;
    font-size: 11px;
    }
    .cookie-text {
    max-width: 70%;
    margin-left: 0;
    }
    .top-menu {
    
    margin-left: 0;
}
}
/* Adicione estas novas regras */
.sticky-nav {
    position: sticky;
    top: 40px;
    background: #007bff;
    z-index: 999;
    padding: 15px 20px;
}

.content-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.content-section h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
}

.features {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
}

.feature-item {
    text-align: center;
    width: 30%;
}

.feature-icon {
    width: 100px;
    margin: 0 auto 20px;
}

@media (max-width: 768px) {
    .features {
        flex-direction: column;
    }

    .feature-item {
        margin-bottom: 40px;
        width: 100%;
    }
    .breadcrumb {
    padding: 20px;
    font-size: 0.9rem;
    margin-left: 0;
    }
    .logo {
    width: 60px;
    margin-left: 0;
    }
    .actions{
    margin-right:0;
}
}
.reminder{
color: white;
}
.reminder h2{
color: #fff;
text-shadow: 0 0 10px rgba(0, 0, 0, 0.705);
font-size: 30px;
}

a.yellow{
color: #fff;
background-color: #ffbc03;
transition: 0.3s ease;
text-decoration: none;
padding: 10px 20px;
border-radius: 10px;
}
a.yellow:hover{
color: rgb(21,21,100);
background-color: #fff;
}
.time{
display: flex;
margin-top: 40px;
margin-left: 32%;

}
.time .circle{
text-shadow: 0 0 4px black;
text-align: center;
padding: 20px 33px;
background-color: transparent;
border-radius: 100px;
margin: 0 5px 10px 5px;
border: 1px solid rgba(255,255,255,0.25);
font-size: 1.5rem;
font-weight: 600;
border: 2px solid red;
stroke-width: 4;
background-color: rgba(255,255,255,0.25);
backdrop-filter: blur(4px);

}

/* começo da seção blogs */
.blogs{
    min-height: 90vh;
}
.blogs .todos-itens{
    display: flex;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    margin-top: 1cm;
}

.blogs .todos-itens .item{
    border: var(--border);
    box-shadow: var(--box-shadow);
    border-radius: .5rem;
    padding: 1rem;
}

.blogs .todos-itens .item .image{
    height: 20rem;
    overflow: hidden;
    border-radius: .5rem;
}

.blogs .todos-itens .item .image img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.blogs .todos-itens .item:hover .image img{
    transform: scale(1.2);
}

.blogs .todos-itens .item .conteudo{
    padding-top: 1rem;
}

.blogs .todos-itens .item .conteudo .icon{
    padding-top: 1rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blogs .todos-itens .item .conteudo .icon a{
    
    color: #004d99;
    text-decoration: navajowhite;
}

.blogs .todos-itens .item .conteudo .icon a:hover{
    color: #ff9a03;
}

.blogs .todos-itens .item .conteudo .icon a i{
    padding-right: .5rem;
    
}

.blogs .todos-itens .item .conteudo h3{
    color: var(--black);
    margin-top: 10px;
    color: #004d99;
}

.blogs .todos-itens .item .conteudo p{
    color: #333;
    
    line-height: 1.8;
    padding: 1rem 0;
}

/* final da seção blogs */

