/* =========================================================
   Base / Reset
   ========================================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  border: 0;
  color: #fff;
}

body {
  background-color: #fdfdfd;
  color: #000;
  font-size: 18px;
  font-family: "Satoshi", sans-serif;
  overflow-x: hidden;
  width: 100%;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;

    width: 60px;
    height: 60px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background-color: #25D366; /* cor padrão WhatsApp */
    
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float img {
    width: 60%;
    height: auto;
}

/* Hover (desktop) */
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

/* Mobile */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 15px;
        right: 15px;
    }
}
/* =========================================================
   Header (menu fixo + efeito vidro no scroll)
   ========================================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 30px 60px;
  /* menor altura */
  transition: all 0.3s ease;

  & .logo a img {
    width: 300px;
    height: auto;
  }

}

/* ao rolar, aplica vidro */
.header.scrolled {
  padding: 6px 60px;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.nav-bar {
  display: flex;
  align-items: center;
  gap: 48px;
  /* espaÃ§o entre links */
}

.nav-bar a {
  cursor: pointer;
  color: #fff;
  font-weight: 500;
  transition: 0.3s ease;
}

.nav-bar a:hover {
  transition: 0.2s ease-in-out;
  font-size: 20px;
}

/* Esconde o botão hambúrguer no desktop */
.nav-toggle {
  display: none;
}


/* =========================================================
   BLOG
   - Capa com imagem + título/subtítulo
   - Seção de posts com fundo laranja escuro (grid 3 colunas)
   ========================================================= */

/* ====== BLOG CAPA ====== */
.blog-hero {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  overflow: hidden;

  /* evita ficar atrás do header fixo */
  padding: 250px 6% 80px;
}

.blog-hero__bg {
  position: absolute;
  inset: 0;

  /* Troque a imagem por uma sua */
  background-color: #150A03;
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
}

.blog-hero__content {
  position: relative;
  z-index: 1;
  width: min(1100px, 100%);
}

.blog-hero__kicker {
  font-size: 14px;
  letter-spacing: 0.22em;
  opacity: 0.85;
  margin-bottom: 10px;
}

.blog-hero__title {
  font-family: "bebas-neue", sans-serif;
  font-weight: 800;
  letter-spacing: 0.06em;
  font-size: clamp(3.2rem, 5vw, 5.4rem);
  line-height: 0.95;
  margin-bottom: 14px;
}

.blog-hero__sub {
  max-width: 62ch;
  font-size: 18px;
  line-height: 1.7;
  opacity: 0.9;
}

/* ====== SEÇÃO GRID (estilo services/contact) ====== */
.blog-grid {
  position: relative;
  overflow: hidden;
  padding: 110px 24px;

  background:
    radial-gradient(1400px 800px at 18% 50%, rgba(255, 123, 0, 0.12), transparent 60%),
    radial-gradient(1100px 700px at 78% 40%, rgba(255, 136, 0, 0.08), transparent 60%),
    linear-gradient(180deg, #150a03 0%, #1b0b04 100%);
}

.blog-grid::before {
  content: "";
  position: absolute;
  inset: -220px;
  background: radial-gradient(900px 650px at 30% 55%, rgba(255, 115, 0, 0.14), transparent 60%);
  filter: blur(34px);
  pointer-events: none;
}

.blog-grid__container {
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.blog-grid__header {
  margin-bottom: 26px;
  max-width: 760px;
}

.blog-grid__header h2 {
  font-family: "bebas-neue", sans-serif;
  font-weight: 800;
  letter-spacing: 0.06em;
  font-size: clamp(2.6rem, 4vw, 3.6rem);
  line-height: 1.05;
  margin-bottom: 10px;
}

.blog-grid__header p {
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.86;
}

/* GRID 3 COLUNAS */
.blog-grid__posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* CARD */
.blog-card {
  border-radius: 18px;
  overflow: hidden;

  border: 1px solid rgba(255, 115, 0, 0.22);
  background: rgba(255, 115, 0, 0.06);
  box-shadow: 0 0 0 0 rgba(255, 115, 0, 0);

  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.blog-card:hover {
  transform: translateY(-2px);
  background: rgba(255, 115, 0, 0.10);
  box-shadow: 0 0 26px rgba(255, 115, 0, 0.16);
}

.blog-card__link {
  display: block;
  color: inherit;
}

.blog-card__thumb {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}

.blog-card__body {
  padding: 16px 16px 18px;
}

.blog-card__title {
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.blog-card__excerpt {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.86;
  margin-bottom: 14px;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  opacity: 0.78;
}

.blog-card__tag {
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 115, 0, 0.38);
  background: rgba(255, 115, 0, 0.08);
}

/* =========================================================
   Rodapé
   ========================================================= */
.rodape{
  position: relative;
  overflow: hidden;

  /* mais espaÃ§o inferior para a logo gigante ficar â€œbem abaixoâ€ */
  padding: 110px 6% 220px;
  border-top:1px solid rgba(255, 115, 0, 0.38);

  background:
  radial-gradient(900px 600px at 20% 50%, rgba(255, 120, 0, 0.18), transparent 60%),
  radial-gradient(700px 500px at 80% 40%, rgba(255, 80, 0, 0.12), transparent 60%),
  linear-gradient(180deg, #0e0401 0%, #140601 55%, #0e0401 100%);
}

.rodape-container{
  max-width: 1300px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 80px;

  position: relative;
  z-index: 2; /* conteÃºdo sempre acima da watermark */
}

/* logo pequena acima dos Ã­cones */
.rodape-logo-top{
  width: 200px;
  height: auto;
  display: block;
  margin-bottom: 24px;
}

/* redes sociais: igual referÃªncia (quadradinhos discretos) */
.rodape-social{
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
}

.rodape-social a{
  width: 38px;
  height: 38px;
  border-radius: 10px;

  display: grid;
  place-items: center;

  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);

  color: rgba(255,255,255,0.92);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.rodape-social a:hover{
  transform: translateY(-1px);
  background: rgba(255,115,0,0.14);
  border-color: rgba(255,115,0,0.34);
}

.rodape-copy{
  font-size: 14px;
  opacity: 0.65;
  line-height: 1.6;
}

/* colunas */
.rodape-col h4{
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}

.rodape-col ul{
  display: grid;
  gap: 14px;
}

.rodape-col a{
  font-size: 14px;
  opacity: 0.62;
  transition: opacity 180ms ease;
}

.rodape-col a:hover{
  opacity: 1;
}

/* ========================
WATERMARK (logo gigante)
â€œbem abaixoâ€ do conteÃºdo
======================== */

.rodape-watermark{
  position: absolute;
  left: 50%;

  /* joga a logo bem pra baixo, sem ficar colada no conteÃºdo */
  bottom: -30px;

  transform: translateX(-50%);
  width: 1000;
  height: auto;

  opacity: 0.10;
  filter: grayscale(100%) contrast(1.05);
  pointer-events: none;
  z-index: 1;
}

/* ====== RESPONSIVO ====== */
@media (max-width: 1024px) {
  .blog-hero {
    min-height: 460px;
    padding: 120px 5% 70px;
  }

  .blog-grid {
    padding: 90px 20px;
  }

  .blog-grid__posts {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .blog-hero {
    min-height: 360px;
    padding: 110px 6% 60px;
  }

  .blog-hero__sub {
    font-size: 16px;
  }

  .blog-grid {
    padding: 76px 16px;
  }

  .blog-grid__posts {
    grid-template-columns: 1fr;
  }

  .blog-card__thumb {
    height: 210px;
  }
}

@media (max-width: 900px) {
  .posts-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .posts-grid { grid-template-columns: 1fr; }
  .post-thumb { height: 200px; }
}

/* =========================
   TABLET (<= 1024px)
   ========================= */
@media (max-width: 1024px) {

  /* HEADER */
  .header {
    padding: 18px 24px;
  }

  .header.scrolled {
    padding: 10px 24px;
  }

  .header .logo a img {
    width: 220px;
  }

  /* Botão hambúrguer aparece */
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
  }

  .nav-toggle__bar {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 999px;
    position: relative;
  }

  .nav-toggle__bar + .nav-toggle__bar {
    margin-top: 6px;
  }

  /* NAV vira painel */
  .nav-bar {
    position: fixed;
    top: 0;
    right: 0;
    height: 100dvh;
    width: min(420px, 86vw);
    padding: 96px 22px 22px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;

    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    transform: translateX(110%);
    transition: transform 260ms ease;
    z-index: 60;
  }

  .nav-bar a {
    font-size: 18px;
    font-weight: 600;
  }

  .nav-bar a:hover {
    font-size: 18px;
  }

  /* Estado aberto do menu (JS aplica .nav-open) */
  .header.nav-open .nav-bar {
    transform: translateX(0);
  }
}

/* =========================
   MOBILE (<= 600px)
   ========================= */
@media (max-width: 600px) {

  /* HEADER */
  .header {
    padding: 14px 16px;
  }

  .header.scrolled {
    padding: 10px 16px;
  }

  .header .logo a img {
    width: 170px;
  }

  .nav-toggle {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 0.8px solid #F37600;

    & img {
      width: 22px;
    }
  }

  /* NAV painel mais estreito */
  .nav-bar {
    width: min(200px, 90vw);
    padding: 86px 18px 18px;
  }
}

@media (max-width: 980px){
  .rodape{
    padding: 90px 6% 200px;
  }

.rodape-container{
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}

.rodape-watermark{
  width: min(1200px, 170vw);
  bottom: -180px;
}
}

@media (max-width: 600px){
  .rodape{
    padding: 70px 6% 180px;
  }

.rodape-container{
  grid-template-columns: 1fr;
  gap: 40px;
}

.rodape-watermark {
    width: min(380px, 220vw);
    bottom: -10px;
    opacity: 0.08;
  }
}