
@font-face{
    font-family:'poppins';
    src:url('../font/Poppins/Poppins-SemiBold.ttf');
}
@font-face{
    font-family:'montserrat';
    src:url('../font/Montserrat/Montserrat-.ttf');
}
@font-face{
    font-family:'lato';
    src:url('../font/Lato/Lato-Regular.ttf');
}
:root{
    --header:#fb7018;
    --fundo:hsl(42, 25%, 92%);
    --amarelo:#fdbe0f;
    --texto:#a9a4a1;
    --castanha:#2e2d2d;
}
*{padding:0;margin:0;text-decoration:none;list-style:none;box-sizing:border-box;font-family:montserrat,sans-serif;}
p{
    font-family:'lato',sans-serif;
}
h1,h2,h3,h4,h5,h6{
    font-family:'poppins',sans-serif;
}
header{
    background: white;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: space-between;
    padding: 12px 24px;
}
header nav a{
    color: #000;
    font-size: 15pt;
    font-weight: 500;
}
header nav{
    display: flex;
    justify-content: space-between;
    align-content: center;
    align-items: center;
    gap: 10px;
}
header .logo{
    width: 90px;
}
header .logo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.head{
    padding: 20px;
    margin-bottom: 10px;
    height: 100px;
}
.head h2{
    color: #fb7018;
    font-size: 40px;
    margin-bottom: 10px;
}
.head p{
    text-align: justify;
    width: 70%;
}
.conteudo{
    max-width: 1200px;
    width: 100%;
    margin: 30px auto;
    padding: 0 2px;
}
.cont-container{
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(300px,1fr));
    gap: 20px;
}
.cont-container .cont-card{
    background: white;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: 0.3s;
}
.cont-container .cont-card:hover{
    transform: translateY(-5px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.cont-container .cont-card img{
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.cont-container .cont-card .card-body{
    padding: 15px;
}
.cont-container .cont-card .card-body .categoria{
    background: #007bff;
    display: inline-block;
    color: white;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
}
.cont-container .cont-card .card-body h2{
    font-size: 20px;
    margin-bottom: 10px;
    color: #222;
}
.cont-container .cont-card .card-body p{
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.cont-container .cont-card .card-body .data{
    font-size: 12px;
    color: #999;
    margin-bottom: 15px;
}
.cont-container .cont-card .card-body .btn-ler{
    display: inline-block;
    background: var(--header);
    color: white;
    padding: 8px 15px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
}
.cont-container .cont-card .card-body .btn-ler:hover{
    background: #fdbc09;
}
@media (max-width: 900px) {
    header {
        gap: 12px;
        padding: 12px 16px;
    }
    header nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px 12px;
    }
    header nav a {
        font-size: 12pt;
    }
    .head {
        height: auto;
    }
    .head p {
        width: 100%;
    }
    .conteudo {
        padding: 0 16px;
    }
    .cont-container {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}

@media (max-width: 560px) {
    .head h2 {
        font-size: 2rem;
    }
    .head p {
        font-size: 0.95rem;
    }
    header nav a {
        font-size: 10pt;
    }
    .cont-container {
        grid-template-columns: 1fr;
    }
    .cont-container .cont-card .card-body h2 {
        font-size: 18px;
    }
}
*{font-family:'montserrat',sans-serif;}
p{font-family:'lato',sans-serif;}
h1,h2,h3,h4,h5,h6{font-family:'poppins',sans-serif;}
