/*
  =============================================================
  MOBI Comunicação | style-home.css
  Organização aplicada:
  - NÃO altera classes, seletores, estrutura nem regras
  - Apenas padroniza identação/espaçamento e adiciona comentários
  - Mantém a ordem geral dos blocos para evitar efeitos colaterais
  =============================================================
*/

.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;
    }
}
/* =========================================================
   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%;
}

h1,
h2,
h3, h4 {
  font-family: "bebas-neue", sans-serif;
}


/* =========================================================
   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;
}

/* =========================================================
   Hero (vídeo de fundo)
   ========================================================= */
.hero-section {
  position: relative;
  height: 100vh;
  /* hero ocupa a tela */
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
  /* importante */
}

/* container da mÃ­dia */

/* =========================================================
   Blob / Media (SVG animado)
   ========================================================= */
.img-section.blob-media {
  width: min(420px, 90vw);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
}

/* svg responsivo */
.img-section.blob-media .blob {
  width: 100%;
  height: 100%;
  overflow: visible;
}

/* blob atrÃ¡s */
.img-section.blob-media .back-blob {
  fill: #F37600;
  transform-origin: 300px 300px;
  animation: blobFloat 6s ease-in-out infinite;
}

/* flutuaÃ§Ã£o leve */
@keyframes blobFloat {
  0% {
    transform: translate(0px, 0px) scale(1);
  }

50% {
  transform: translate(10px, -12px) scale(1.03);
}

100% {
  transform: translate(0px, 0px) scale(1);
}
}

/* acessibilidade: reduz movimento */
@media (prefers-reduced-motion: reduce) {
  .img-section.blob-media .back-blob {
    animation: none;
  }

.img-section.blob-media .back-blob animate {
  display: none;
}
}


/* =========================================================
   Sobre
   ========================================================= */
.about {
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  padding: 4rem 6%;
}

/* lado esquerdo (imagem) */
.about .img-section {
  flex: 1;
  display: flex;
  justify-content: center;
}

/* controla o tamanho do blob */
.about .blob-media {
  width: 100%;
  max-width: 550px;
}

/* lado direito (conteÃºdo) */
.about .content {
  flex: 1;
  max-width: 700px;
  padding: 2rem;

  & h1 {
    font-family: "bebas-neue", sans-serif;
    font-weight: 400;
    font-size: 5rem;
    color: #F37600;
    margin-bottom: 10px;
  }

& p {
  text-align: justify;
  line-height: 1.5;
  font-size: 18px;
  font-weight: medium;
  margin-bottom: 20px;
  color: #111;
}

& .btn {
  position: relative;
  width: 155px;
  height: 50px;

  & a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    height: 48px;
    padding: 0 22px;

    border-radius: 999px;
    cursor: pointer;

    font-family: "Satoshi", sans-serif;
    font-size: 16px;
    font-weight: 500;

    color: #111;

    background: rgba(255, 115, 0, 0.30);
    border: 1px solid rgba(255, 115, 0, 0.88);

    box-shadow: 0 0 0 0 rgba(255, 115, 0, 0);
    transition:
    transform 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
  }

& a:hover {
  transform: translateY(-1px);
  background: rgba(255, 115, 0, 0.40);
  box-shadow: 0 0 22px rgba(255, 115, 0, 0.25);
}

}

& .btn:hover a::before {
  transform: skewX(45deg) translateX(200%);
}

& .btn::before,
.btn::after {
  background: #F37600;
  box-shadow: 0 0 5px #F37600,
  0 0 15px #F37600,
  0 0 30px #F37600;
}
}

/* =========================
SERVICES SECTION (Carrossel)
Objetivo: seção mais larga + cards maiores + CSS legível
========================= */


/* =========================================================
   Serviços (carrossel)
   ========================================================= */
.services {
  position: relative;
  overflow: hidden;
  padding: 110px 24px;
  /* mais alto que antes */
  color: #eaf7f2;

  /* Fundo cinematogrÃ¡fico em camadas */
  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%);
}

.services::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;
}

/* Container principal, agora mais largo */
.services__container {
  max-width: 1320px;
  /* antes 1200px */
  margin: 0 auto;

  display: grid;
  grid-template-columns: 460px 1fr;
  /* coluna esquerda maior */
  gap: 56px;

  align-items: center;
  position: relative;
  z-index: 1;
}

/* ===== Coluna esquerda (texto) ===== */
.services__kicker {
  font-size: 14px;
  letter-spacing: 0.22em;
  opacity: 0.85;
  margin-bottom: 10px;
}

.services__title {
  font-family: "bebas-neue", sans-serif;
  font-weight: 800;
  letter-spacing: 0.06em;

  font-size: clamp(3.6rem, 4.8vw, 5.2rem);
  line-height: 0.95;
  margin-bottom: 28px;
}

.services__details {
  max-width: 420px;
  /* mais confortÃ¡vel */
}

.services__name {
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.services__desc {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.86;
  margin-bottom: 18px;
}

/* CTA no mesmo estilo do "Quero esse serviço" */
.services__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 46px;
  padding: 0 18px;
  border-radius: 999px;

  color: #dffdf4;
  text-decoration: none;

  border: 1px solid rgba(255, 115, 0, 0.38);
  background: rgba(255, 136, 0, 0.08);

  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.services__cta:hover {
  transform: translateY(-1px);
  background: rgba(255, 115, 0, 0.12);
  box-shadow: 0 0 22px rgba(255, 102, 0, 0.18);
}

/* Controles (setas + dots) */
.services__controls {
  margin-top: 26px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.services__nav {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  cursor: pointer;

  color: #dffdf4;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);

  transition: transform 160ms ease, background 160ms ease;
}

.services__nav:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.10);
}

.services__dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Mantém compatível com seus dots atuais (tc-dot) se o JS cria eles */
.services__dots .tc-dot,
.services__dots .services__dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.25);
  border: 0;
  cursor: pointer;
}

.services__dots .tc-dot.is-active,
.services__dots .services__dot.is-active {
  width: 18px;
  background: rgba(255, 102, 0, 0.75);
}

/* ===== Coluna direita (carrossel) ===== */
.services__carousel {
  position: relative;
}

/* viewport maior para as fotos "respirarem" */
.services__viewport {
  position: relative;
  width: 100%;
  height: 460px;
  /* antes 360px */
  overflow: hidden;
}

/* trilho centralizado verticalmente */
.services__track {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate3d(0, -50%, 0);

  display: flex;
  gap: 22px;
  padding: 0 24px;

  will-change: transform;
  transition: transform 520ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

/* Card maior */
.tc-card {
  width: 320px;
  /* antes 250px */
  height: 410px;
  /* antes 320px */
  border-radius: 18px;

  overflow: hidden;
  position: relative;
  flex: 0 0 auto;
  cursor: pointer;

  transform: scale(0.88);
  opacity: 0.28;

  filter: grayscale(100%) saturate(0.4) brightness(0.8);
  transition:
  transform 520ms cubic-bezier(0.2, 0.9, 0.2, 1),
  opacity 520ms cubic-bezier(0.2, 0.9, 0.2, 1),
  filter 520ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

/* overlay escuro no fundo para texto legível */
.tc-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.68) 100%);
  pointer-events: none;
}

.tc-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tc-card .tc-card-meta {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2;
}

.tc-card .tc-card-title {
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.tc-card .tc-card-sub {
  font-size: 14px;
  opacity: 1;
}

/* estado ativo e vizinhos */
.tc-card.is-active {
  transform: scale(1);
  opacity: 1;
  filter: grayscale(0%) saturate(1) brightness(1);

  border: 1px solid rgba(255, 102, 0, 0.35);
  box-shadow: 0 0 34px rgba(255, 136, 0, 0.18);
}

.tc-card.is-near {
  transform: scale(0.95);
  opacity: 0.62;
  filter: grayscale(60%) saturate(0.6) brightness(0.9);
}

/* =========================
RESPONSIVO
========================= */

/* Tablet */
@media (max-width: 1024px) {
  .services {
    padding: 90px 20px;
  }

.services__container {
  max-width: 980px;
  grid-template-columns: 1fr;
  gap: 26px;
}

.services__details {
  max-width: 640px;
}

.services__viewport {
  height: 420px;
}

.tc-card {
  width: 300px;
  height: 390px;
}
}

/* Mobile */
@media (max-width: 600px) {
  .services {
    padding: 76px 16px;
  }

.services__title {
  font-size: clamp(3rem, 11vw, 4rem);
}

.services__viewport {
  height: 380px;
}

.tc-card {
  width: 260px;
  height: 340px;
  border-radius: 16px;
}

.services__nav {
  width: 42px;
  height: 42px;
}
}

@media (max-width: 980px) {
  .tc-wrap {
    grid-template-columns: 1fr;
  }

.tc-viewport {
  height: 320px;
}

.tc-left {
  text-align: left;
}
}

/* ====== SEÇÃO PARCEIROS / CLIENTES ====== */

/* animação base do marquee */
@keyframes marquee {
  from {
    transform: translateX(0);
  }

to {
  transform: translateX(-50%);
}
}

/* wrapper geral da seção (opcional, caso queira espaçamento) */

/* =========================================================
   Parceiros / Clientes (marquee + conteúdo central)
   ========================================================= */
.parceiros {
  background: #fdfdfd;
}

/* ====== MARQUEE LOGOS: LOOP PERFEITO (3 BLOCOS) ====== */

/* Animação para frente: move exatamente o tamanho de 1 bloco */
@keyframes marquee-infinite {
  0% {
    transform: translateX(0);
  }

100% {
  transform: translateX(-33.3333%);
}
}

/* Animação reversa: começa deslocada e volta para o zero */
@keyframes marquee-infinite-reverse {
  0% {
    transform: translateX(-33.3333%);
  }

100% {
  transform: translateX(0);
}
}

.logos {
  overflow: hidden;
  width: 100%;
  background: #fdfdfd;
  padding: 44px 0;
  position: relative;
  display: flex;
}

/* Container que segura os 3 blocos */
.logos-track {
  display: flex;
  width: max-content;
  /* Garante que os blocos fiquem em linha infinita */
  animation: marquee-infinite 25s linear infinite;
  will-change: transform;
}

/* Classe para o slider de baixo rodar ao contrário */
.logos-track.is-reverse {
  animation: marquee-infinite-reverse 25s linear infinite;
}

/* Cada um dos 3 blocos de logos */
.logos-row {
  display: flex;
  align-items: center;
  flex-shrink: 0;

  /* AJUSTE DE ESPAÇAMENTO: O gap e o padding-right devem ser IGUAIS */
  gap: 80px;
  padding-right: 80px;
}

.logos-row img {
  height: 60px;
  /* Altura controlada para evitar saltos visuais */
  width: auto;
  object-fit: contain;
  opacity: .7;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

/* Logo da Sky costuma ser mais horizontal, ajuste fino se necessÃ¡rio */
.logos-row img.logo-sky {
  height: 40px;
}

.logos-row img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* Efeito de transparência nas bordas (fades) */
.logos::before,
.logos::after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 150px;
  z-index: 2;
  pointer-events: none;
}

.logos::before {
  left: 0;
  background: linear-gradient(to right, #fdfdfd, transparent);
}

.logos::after {
  right: 0;
  background: linear-gradient(to left, #fdfdfd, transparent);
}

/* ====== RESPONSIVO MOBILE ====== */
@media (max-width: 600px) {
  .logos {
    padding: 30px 0;
  }

.logos-row {
  /* No mobile, diminuimos o gap, mas mantemos a igualdade entre gap e padding */
  gap: 40px;
  padding-right: 40px;
}

.logos-row img {
  height: 38px;
}

.logos-row img.logo-sky {
  height: 30px;
}
}

/* ====== CONTEÃšDO CENTRAL ====== */
.clients-content {
  max-width: 1100px;
  margin: 34px auto;
  padding: 3rem 2rem;

  display: grid;
  grid-template-columns: 320px 1fr;
  align-items: center;
  gap: 3rem;

  background: #fff;
  border-radius: 24px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, .06);
}

.clients-content .title {
  position: relative;
  padding-left: 1.25rem;
}

.clients-content .title::before {
  content: "";
  position: absolute;
  left: 0;
  top: .25rem;
  width: 6px;
  height: 100%;
  background: #F37600;
  border-radius: 999px;
}

.clients-content .title h2 {
  margin: 0;
  font-family: "bebas-neue", sans-serif;
  font-weight: 700;
  font-size: clamp(3.2rem, 5vw, 5.2rem);
  line-height: .9;
  letter-spacing: .5px;
  color: #F37600;
}

.clients-content .clients-text {
  max-width: 560px;
}

.clients-content .clients-text p {
  margin: 0 0 1rem;
  font-family: "Satoshi", sans-serif;
  font-size: 18px;
  line-height: 1.75;
  font-weight: 500;
  color: rgba(0, 0, 0, .78);
  text-align: left;
}

.clients-content .clients-text p:last-child {
  margin-bottom: 0;
}

/*SECTION QUOTES*/

/* Layout geral da seÃ§Ã£o */

/* =========================================================
   Depoimentos (carrossel)
   ========================================================= */
.quotes-section {
  padding: 80px 6vw;
  display: grid;
  grid-template-columns: 420px 1fr;
  align-items: center;
  gap: 56px;
}

.quotes-content h2 {
  font-family: "bebas-neue", sans-serif;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 1.05;
  margin: 0 0 18px;
  color: #ff6a00;
  /* ajuste para sua paleta */
  font-weight: 500;
}

.quotes-content p {
  margin: 0;
  font-size: 18px;
  color: #2b2b2b;
  max-width: 30ch;
}

/* Container do carrossel */
.quotes-carousel {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr 56px;
  align-items: center;
  gap: 18px;
}

.quote-viewport {
  position: relative;
  overflow: hidden;
  height: 360px;
  /* controla a â€œaltura do blocoâ€ */
  display: flex;
  align-items: center;
}

/* Track: nÃ£o precisa de translateX, o JS troca classes e a gente anima no CSS */
.quote-track {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Card base */
.quote-track .card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(560px, 78%);
  transform: translate(-50%, -50%) scale(0.92);
  opacity: 0;
  pointer-events: none;
  filter: blur(8px);
  transition: transform 420ms ease, opacity 420ms ease, filter 420ms ease;
  border-radius: 18px;
  background: #f7f7f7;
  /* placeholder igual ao cinza da ilustraÃ§Ã£o */
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
  padding: 26px 26px 22px;
}

/* Card central */
.quote-track .card.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
  filter: blur(0);
  z-index: 3;
}

/* Card anterior e prÃ³ximo (parcialmente visÃ­veis) */
.quote-track .card.is-prev,
.quote-track .card.is-next {
  opacity: 1;
  z-index: 2;
}

.quote-track .card.is-prev {
  transform: translate(calc(-50% - 360px), -50%) scale(0.86);
}

.quote-track .card.is-next {
  transform: translate(calc(-50% + 360px), -50%) scale(0.86);
}

/* Opcional: um leve fade nas bordas para reforÃ§ar o â€œcorteâ€ */
.quote-viewport::before,
.quote-viewport::after {
  content: "";
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 5;
  pointer-events: none;
}

.quote-viewport::before {
  left: 0;
  background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0));
}

.quote-viewport::after {
  right: 0;
  background: linear-gradient(to left, #fff, rgba(255, 255, 255, 0));
}

/* Setas */
.quote-nav {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 2px solid #ff6a00;
  background: transparent;
  color: #ff6a00;
  font-size: 28px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease;
}

.quote-nav:hover {
  transform: scale(1.06);
  background: rgba(255, 106, 0, 0.08);
}

.quote-nav:active {
  transform: scale(0.98);
}

/* ConteÃºdo do card (caso vocÃª vÃ¡ preencher) */
.card .quote-icon {
  width: 28px;
  height: 28px;
  opacity: 0.9;
  margin-bottom: 10px;
}

.card .nome {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 600;
  color: #111;
}

.card .quote-tag {
  margin: 0 0 12px;
  font-size: 14px;
  color: #444;
}

.card .quote-content {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: #1f1f1f;
}

@media (max-width: 560px) {

  /* seÃ§Ã£o em 1 coluna */
  .quotes-section {
    grid-template-columns: 1fr;
    padding: 56px 5vw;
    gap: 22px;
  }

/* carrossel vira 1 coluna, setas em overlay */
.quotes-carousel {
  display: block;
  position: relative;
}

.quote-viewport {
  width: 100%;
  height: 360px;
  /* ajuste se quiser mais alto */
  overflow: hidden;
}

/* remove o fade lateral (opcional, mas ajuda no mobile) */
.quote-viewport::before,
.quote-viewport::after {
  display: none;
}

/* setas por cima do viewport, centralizadas verticalmente */
.quote-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  font-size: 26px;
  background: rgba(255, 255, 255, 0.85);
  /* garante contraste */
  backdrop-filter: blur(6px);
}

.quote-nav.prev {
  left: 10px;
}

.quote-nav.next {
  right: 10px;
}

/* card central ocupa mais largura */
.quote-track .card {
  width: calc(100% - 120px);
  /* deixa espaÃ§o visual para as setas */
  padding: 22px;
}

/* no mobile fica sÃ³ 1 card mesmo */
.quote-track .card.is-prev,
.quote-track .card.is-next {
  opacity: 0;
  pointer-events: none;
}
}

/* SEÃ‡ÃƒO DE FORMULÃRIOS*/


/* =========================================================
   Contato (formulário)
   ========================================================= */
.contact-forms {
  display: flex;
  height: 620px;
  gap: 1rem;
  padding: 3rem;
  align-content: center;

  position: relative;
  overflow: hidden;
  background:
  radial-gradient(900px 600px at 20% 50%,
  rgba(255, 120, 0, 0.25),
  transparent 60%),
  radial-gradient(700px 500px at 80% 40%,
  rgba(255, 80, 0, 0.18),
  transparent 60%),
  linear-gradient(180deg,
  #140601 0%,
  #1a0702 50%,
  #0e0401 100%);

}

.contact-forms .contact-content {
  padding: 6rem 2rem 2rem 2rem;
  width: 50%;

  & h2 {
    font-size: 3rem;
    color: #FFFFFF;
    margin-bottom: 10px;
  }

& .content-tag {
  text-align: justify;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 700;
}

& p {
  text-align: justify;
  color: #FFFFFF;
}
}

.contact-forms .forms {
  border: 1px solid #F37600;
  border-radius: 30px;
  padding: 2rem;
  width: 50%;
  border: 1px solid rgba(255, 115, 0, 0.38);
  background: rgba(255, 115, 0, 0.10);
  box-shadow: 0 0 0 0 rgba(255, 115, 0, 0);
  align-items: center;
  align-content: center;
}

.contact-forms .forms form {
  display: grid;
  grid-template-columns: 1;

  & label
  input,
  textarea {
    display: block;
    width: 100%;
    font-size: 16px;
    margin-bottom: 10px;
    

  }

& input,
textarea {
  font: inherit;
  font-size: 16px;
  padding: 0.8rem;
  margin-bottom: 2rem;
  border: 1px solid transparent;
  border-radius: 20px;
  
  color: #000000 !important;
}

& textarea {
  height: 100px;
}
}

.contact-forms .forms form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20%;

  height: 48px;
  padding: 0 22px;

  border-radius: 999px;
  cursor: pointer;

  font-family: "Satoshi", sans-serif;
  font-size: 16px;
  font-weight: 500;

  color: #fff;

  background: rgba(255, 115, 0, 0.10);
  border: 1px solid rgba(255, 115, 0, 0.38);

  box-shadow: 0 0 0 0 rgba(255, 115, 0, 0);
  transition:
  transform 180ms ease,
  background 180ms ease,
  box-shadow 180ms ease;
}

.contact-forms .forms form button:hover {
  transform: translateY(-1px);
  background: rgba(255, 115, 0, 0.18);
  box-shadow: 0 0 22px rgba(255, 115, 0, 0.25);
}

.contact-forms .forms form button:active {
  transform: translateY(0);
}

/*
=========================
FOOTER: sitemap, informaÃ§Ãµes legais, serviÃ§os, contato
=========================
*/


/* =========================================================
   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: 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(980px, 220vw);
  bottom: -220px;
  opacity: 0.08;
}
}


/* =========================================================
   RESPONSIVO GLOBAL
   Regras adicionadas sem alterar classes/estrutura existentes
   Breakpoints:
   - Tablet: até 1024px
   - Mobile: até 600px
   Observação do menu:
   - O HTML já possui o botão .nav-toggle (#navToggle)
   - Para abrir/fechar o menu no mobile/tablet, o JS deve alternar
     a classe .nav-open no <header class="header"> (ou no body).
     Ex.: header.classList.toggle('nav-open')
   ========================================================= */


/* =========================
   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);
  }

  /* Ajuste do hero, evita corte por barras do navegador */
  .hero-section {
    height: 600px;
    background: #000; /* cor das bordas quando sobrar espaço */
  }

  .hero-video {
    width: 100%;
    height: 100%;
    object-fit: contain;     /* mostra o vídeo inteiro */
    object-position: center; /* centraliza */
    display: block;
  }

  /* SOBRE */
  .about {
    padding: 3.5rem 5%;
    gap: 2rem;
  }

  .about .content {
    padding: 1.25rem;
  }

  .about .content h1 {
    font-size: 4rem;
  }

  /* CLIENTES */
  .clients-content {
    margin: 26px auto;
    padding: 2.5rem 1.5rem;
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .clients-content .clients-text {
    max-width: 100%;
  }

  /* DEPOIMENTOS */
  .quotes-section {
    padding: 70px 5vw;
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .quotes-content p {
    max-width: 52ch;
  }

  /* CONTATO */
  .contact-forms {
    height: auto;
    flex-direction: column;
    padding: 2.5rem 1.5rem;
  }

  .contact-forms .forms,
  .contact-forms .contact-content {
    width: 100%;
  }

  .contact-forms .contact-content {
    padding: 2.5rem 0 0;
  }

  .contact-forms .forms form button {
    width: 160px;
  }
}


/* =========================================================
   POST PAGE (leitura)
   Mantém estética do site e melhora legibilidade
   ========================================================= */

.post-page {
  min-height: 100vh;
  background:
    radial-gradient(1200px 700px at 25% 25%, rgba(255, 115, 0, 0.10), transparent 60%),
    radial-gradient(900px 600px at 75% 30%, rgba(255, 115, 0, 0.07), transparent 60%),
    linear-gradient(180deg, #070606 0%, #0b0706 100%);
}

/* HERO */
.post-hero {
  position: relative;
  overflow: hidden;
  padding: 140px 6% 60px;
}

.post-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto;
}

/* BOTÃO VOLTAR */
.post-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 10px 14px;
  border-radius: 999px;

  border: 1px solid rgba(255, 115, 0, 0.30);
  background: rgba(255, 115, 0, 0.08);
  color: #fff;

  text-decoration: none;
  cursor: pointer;

  transition: transform 160ms ease, background 160ms ease;
  margin-bottom: 18px;
}

.post-back:hover {
  transform: translateY(-1px);
  background: rgba(255, 115, 0, 0.12);
}

.post-kicker {
  margin: 0 0 8px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.85;
}

.post-title {
  font-family: "bebas-neue", sans-serif;
  font-weight: 800;
  letter-spacing: 0.06em;
  font-size: clamp(2.8rem, 4.5vw, 4.8rem);
  line-height: 0.95;
  margin: 0 0 12px;
}

.post-subtitle {
  max-width: 70ch;
  font-size: 18px;
  line-height: 1.7;
  opacity: 0.9;
  margin: 0 0 14px;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  font-size: 13px;
  opacity: 0.78;
}

.post-meta__dot {
  opacity: 0.6;
}

/* ARTIGO */
.post-article {
  max-width: 980px;
  margin: 0 auto;
  padding: 34px 20px 80px;
}

.post-cover {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: -32px 0 22px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 115, 0, 0.18);
  background: rgba(255, 115, 0, 0.05);
  padding: 20px; /* cria respiro interno */
}

.post-cover img {
  display: block;
  width: 100%;
  max-width: 450px; /* controla o tamanho máximo */
  height: auto;
  border-radius: 12px;
}

/* CONTEÚDO OTIMIZADO PRA LEITURA */
.post-content {
  max-width: 74ch;         /* leitura confortável */
  margin: 0 auto;

  font-size: 16px;
  line-height: 1.85;
  color: rgba(255,255,255,0.92);
}

.post-content .lead {
  font-size: 18px;
  line-height: 1.85;
  opacity: 0.95;
}

.post-content h2 {
  margin: 28px 0 10px;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: 0.02em;
}

.post-content h3 {
  margin: 22px 0 8px;
  font-size: 18px;
  line-height: 1.25;
  opacity: 0.98;
}

.post-content p {
  margin: 0 0 14px;
  opacity: 0.95;
}

.post-content ul {
  margin: 0 0 16px 18px;
}

.post-content li {
  margin: 6px 0;
}

.post-content blockquote {
  margin: 18px 0;
  padding: 14px 16px;
  border-left: 3px solid rgba(255, 115, 0, 0.65);
  background: rgba(255, 115, 0, 0.08);
  border-radius: 12px;
  opacity: 0.95;
}

.post-content hr {
  border: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.10);
  margin: 26px 0;
}

/* CTA discreto */
.post-cta {
  padding: 18px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 115, 0, 0.22);
  background: rgba(255, 115, 0, 0.08);
}

.post-cta h3 {
  margin: 0 0 6px;
  font-size: 18px;
}

.post-cta p {
  margin: 0 0 12px;
  opacity: 0.9;
}

.post-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 10px 14px;
  border-radius: 12px;

  border: 1px solid rgba(255, 115, 0, 0.35);
  background: rgba(255, 115, 0, 0.14);
  color: #fff;
  text-decoration: none;

  transition: transform 160ms ease, background 160ms ease;
}

.post-cta__btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 115, 0, 0.18);
}

/* voltar no fim */
.post-footer {
  margin-top: 26px;
  display: flex;
  justify-content: center;
}

.post-back--bottom {
  text-decoration: none;
}

/* Responsivo */
@media (max-width: 1024px) {
  .post-hero { padding: 120px 5% 54px; }
}

@media (max-width: 600px) {
  .post-hero { padding: 112px 6% 50px; }
  .post-subtitle { font-size: 16px; }
  .post-content { font-size: 15.5px; line-height: 1.85; }
  .post-content .lead { font-size: 16.5px; }
}

/* =========================
   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;
  }

  .hero-section {
    background: #000;
    height: 250px;
  }

  .hero-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
  }

  /* SOBRE */
  .about {
    flex-direction: column;
    padding: 3rem 6%;
  }

  .about .img-section {
    width: 100%;
  }

  .about .blob-media {
    max-width: 420px;
  }

  .about .content {
    max-width: 100%;
    padding: 0;
  }

  .about .content h1 {
    font-size: 3.2rem;
  }

  .about .content p {
    font-size: 16px;
  }

  /* MARQUEE: suaviza no mobile */
  .logos::before,
  .logos::after {
    width: 90px;
  }

  /* CLIENTES */
  .clients-content {
    padding: 2rem 1.2rem;
    border-radius: 18px;
  }

  .clients-content .title h2 {
    font-size: clamp(2.6rem, 10vw, 3.6rem);
  }

  .clients-content .clients-text p {
    font-size: 16px;
    line-height: 1.7;
  }

  /* DEPOIMENTOS: ajuste fino */
  .quote-viewport {
    height: 540px;
  }

  .quote-track .card {
    width: calc(100% - 96px);
    border-radius: 16px;
  }

  /* CONTATO */
  .contact-forms {
    padding: 2.2rem 1.2rem;
  }

  .contact-forms .forms {
    padding: 1.4rem;
    border-radius: 22px;
  }

  .contact-forms .forms form input,
  .contact-forms .forms form textarea {
    border-radius: 16px;
    margin-bottom: 1.2rem;
  }

  .contact-forms .contact-content h2 {
    font-size: 2.4rem;
  }

  .contact-forms .forms form button {
    width: 150px;
    height: 46px;
  }

  .rodape-watermark {
    width: min(380px, 220vw);
    bottom: -10px;
    opacity: 0.08;
  }
}
