/* ========================= */
/* FONTES */
/* ========================= */

@font-face {
font-family: 'Mulish';
src: url('/img/fonts/Mulish-Regular.ttf') format('truetype');
font-weight: 400;
font-style: normal;
}

/* ========================= */
/* RESET GLOBAL */
/* ========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  }

/* ========================= */
/* BASE DO SISTEMA */
/* ========================= */

body {
font-family: 'Mulish', sans-serif;
background: #f4f4f4;
color: #222;
overflow-x: hidden;
}

/* ========================= */
/* HEADER ANTIGO (SE USAR) */
/* ========================= */

header {
position: fixed;
width: 100%;
top: 0;
left: 0;
padding: 20px 40px;
display: flex;
justify-content: space-between;
align-items: center;
background: rgba(255,255,255,0.95);
backdrop-filter: blur(10px);
z-index: 1000;
}

.logo {
font-weight: 700;
font-size: 16px;
color: #1a7c45;
}

/* ========================= */
/* NAV ANTIGO */
/* ========================= */

nav {
display: flex;
align-items: center;
gap: 25px;
}

nav a {
text-decoration: none;
color: #333;
font-size: 14px;
transition: 0.3s;
}

.nav-cta {
background: #2ecc71;
padding: 8px 18px;
border-radius: 40px;
color: white !important;
font-weight: 600;
}

/* ========================= */
/* MENU MOBILE ANTIGO */
/* ========================= */

.menu-toggle {
display: none;
font-size: 26px;
cursor: pointer;
}

/* ========================= */
/* SOCIAL FIXO (SE USAR) */
/* ========================= */

.social-mini {
position: fixed;
top: 100px;
right: 0;
background: white;
padding: 12px 18px;
border-top-left-radius: 40px;
border-bottom-left-radius: 40px;
box-shadow: -5px 10px 30px rgba(0,0,0,0.08);
display: flex;
gap: 15px;
align-items: center;
z-index: 3000;
}

.social-mini a {
text-decoration: none;
font-weight: 600;
color: #1a7c45;
font-size: 13px;
}

/* ========================= */
/* HERO PADRÃO */
/* ========================= */

.hero {
margin-top: 90px;
min-height: 240px;
padding: 60px 20px;
background: url('/img/faixa.jpg') center/cover no-repeat;
display: flex;
align-items: center;
justify-content: center;
position: relative;
color: white;
text-align: center;
}

.hero::after {
content: "";
position: absolute;
inset: 0;
background: rgba(0,0,0,0.55);
}

.hero h1 {
position: relative;
z-index: 2;
font-size: 36px;
}

/* ========================= */
/* GRID PADRÃO */
/* ========================= */

.blog-container {
max-width: 1200px;
margin: 60px auto;
padding: 0 20px;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 40px;
}

/* ========================= */
/* CARD PADRÃO */
/* ========================= */

.blog-card {
background: white;
border-radius: 18px;
overflow: hidden;
transition: 0.3s;
text-decoration: none;
color: inherit;


display: flex;
flex-direction: column;
height: 100%;


}

.blog-card img {
width: 100%;
height: 200px;
object-fit: cover;
}

.blog-content {
padding: 20px;


display: flex;
flex-direction: column;
justify-content: space-between;
flex: 1;


}

.blog-title {
font-size: 17px;
font-weight: 700;
margin-bottom: 8px;
}

.blog-subtitle {
font-size: 14px;
color: #555;


display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;


}

.blog-date {
font-size: 12px;
color: #2ecc71;
margin-bottom: 10px;
text-transform: uppercase;
}

.blog-card:hover {
transform: translateY(-6px);
box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* ========================= */
/* RESPONSIVO */
/* ========================= */

@media(max-width:900px){


header {
    padding: 15px 20px;
}

nav {
    position: absolute;
    top: 70px;
    right: 0;
    background: white;
    flex-direction: column;
    width: 100%;
    display: none;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

nav.active {
    display: flex;
}

nav a {
    margin: 15px 0;
}

.menu-toggle {
    display: block;
}

.social-mini {
    display: none;
}

.hero h1 {
    font-size: 26px;
}


}
