/* Base global do site. Os componentes específicos ficam em assets/css/components/. */
:root {
  --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --color-red: #e53935;
  --color-black: #111111;
  --color-white: #ffffff;
  --color-green: #18a92c;
  --color-blue: #1768d4;
  --color-orange: #ff7a00;
  --accent: var(--color-red);
  --text-muted: #686b70;
  --content-max: 1200px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; font-family: var(--font-sans); }
body { margin: 0; width: 100%; color: var(--color-black); background: #fff; font-family: var(--font-sans); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; }
a { text-decoration: none; }
button, input, textarea, select { font: inherit; }
.container { width: min(100%, var(--content-max)); margin-inline: auto; padding-inline: 1.25rem; }
[hidden] { display: none !important; }
[id] { scroll-margin-top: calc(var(--topbar-height, 48px) + var(--header-height, 72px) + 8px); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 42px;
  padding: .62rem .9rem;
  border: 1px solid transparent;
  border-radius: 10px;
  font-weight: 750;
  line-height: 1;
  text-decoration: none;
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}
.btn-whats { background: #fff; color: var(--color-green); border-color: var(--color-green); }
.btn-whats:hover { background: var(--color-green); color: #fff; }
.btn-call { background: var(--color-red); color: #fff; border-color: var(--color-red); }
.btn-call:hover { background: #fff; color: var(--color-red); }

/* Estilos base do site. */


* { box-sizing: border-box; }

html { 
    scroll-behavior: smooth;
    font-family: "GeistSans", "GeistSans Fallback", "Inter", "Roboto", sans-serif;
    scroll-padding-top: calc(var(--topbar-height) + var(--header-height) + 8px);
}


a {
  text-decoration: none;
}

[id]{
  scroll-margin-top: calc(var(--topbar-height) + var(--header-height) + 8px);
}

/* Header */






/* Topbar fixo acima do header */





.topbar-link [data-lucide]{ width: 18px; height: 18px; }


@media (max-width: 640px){

  

  

  

  

  
  .topbar-link [data-lucide]{
    width: 16px;
    height: 16px;
  }

  

  
}



/* Mobile */


/* ===== Header base ===== */





.logo-link{ display:inline-flex; align-items:center; }

.header-left{ justify-self: start; }



/* ===== Botões Whats/Call ===== */
.btn{
  --btn-radius: 10px;
  display:inline-flex; align-items:center; gap:.5rem;
  border-radius: var(--btn-radius);
  padding:.48rem .85rem;
  font-weight:600; font-size:.95rem; line-height:1;
  text-decoration:none; border:2px solid transparent; white-space:nowrap;
  transition:.25s ease;
}

.btn-whats{
  background:#fff; color:var(--color-green); border-color: var(--color-green);
}
.btn-whats:hover{ background: var(--color-green); color:#fff; }
.btn-call{
  background: var(--color-red); color:#fff; border-color: var(--color-red);
}
.btn-call:hover{ background:#fff; color: var(--color-red); }

/* ===== Navegação (desktop) ===== */
 

.nav-list > li{ display:inline-flex; align-items:center; gap:.25rem; }

.nav-list a:hover,.nav-list a:focus{ color: var(--color-red); }


.dd-toggle:hover{ background:#f7f7f7; border-color: rgba(0,0,0,.2); }
.dd-toggle:focus-visible{ outline:0; box-shadow:0 0 0 3px rgba(191,3,2,.15); border-color: var(--color-red,#BF0302); }
 
.dd-toggle[aria-expanded="true"] .dd-icon{ transform: rotate(180deg); }

.nav-dropdown li a{
  display:block; padding:10px 12px; border-radius:8px;
  color:#222; text-decoration:none; font-size:.95rem;
  transition: background .15s, color .15s;
}
.nav-dropdown li a:hover{
  background: rgba(191,3,2,.08); color: var(--color-red,#BF0302);
}


.nav-dropdown > li.nav-has-dd{
  display: flex;
  align-items: center;
  justify-content: space-between;
  row-gap: .20rem;       
  gap: .20rem; 
  padding: .15rem 0;
}
.nav-dropdown > li.nav-has-dd > a{
  flex: 1 1 auto;
  display: inline-flex;
  align-items: center;
  min-width: 0;
  padding: .55rem .25rem;
}
.nav-dropdown > li.nav-has-dd > .dd-toggle{
  --dd-size: 26px;
  inline-size: var(--dd-size);
  block-size: var(--dd-size);
  margin-left: .1rem;
}

.nav-dropdown .nav-dropdown{
  position: static;
  border: none;
  box-shadow: none;
  padding: 6px 0 8px;
  width: 100%;
  min-inline-size: initial;
  margin-top: .25rem;
}
.nav-dropdown .nav-dropdown li a{
  padding: 10px 12px;
}

/* ===== Hambúrguer ===== */

.nav-toggle:hover{ background: rgba(0,0,0,.04); box-shadow: 0 2px 10px rgba(0,0,0,.08); }
.nav-toggle:focus-visible{ outline: 0; box-shadow: 0 0 0 3px rgba(191,3,2,.18); }


.hamburger::before,
.hamburger::after{
  content:""; position:absolute; left:0; width:18px; height:2px; background: var(--color-black);
  transition: transform .25s ease, top .25s ease, opacity .2s ease;
}
.hamburger::before{ top:-6px; }
.hamburger::after { top: 6px; }
.nav-toggle[aria-expanded="true"] .hamburger{ background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before{ top:0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger::after { top:0; transform: rotate(-45deg); }

/* ===== >900px ===== */
@media (min-width: 901px){
  
  
  .nav-list a:hover,
  .nav-list a:focus-visible{
    color: var(--color-red);
  }
  .header-nav .nav-list > li.nav-has-dd > .nav-dropdown{
    position: absolute;             
    inset-block-start: calc(100% + 14px);
    inset-inline-start: 0;
    min-inline-size: 340px;
    font-weight: 700;
    letter-spacing: .01em;
    background: #fff;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 10px;
    box-shadow: 0 12px 30px rgba(0,0,0,.10);
    padding: 8px;
  }
  .nav-dropdown > li.nav-has-dd{
    display: grid;
    grid-template-columns: 1fr auto;
    grid-auto-rows: auto;
    align-items: center;
    gap: .45rem;
    padding: .15rem 0;
    position: static; 
  }

  .nav-dropdown > li.nav-has-dd > a{
    grid-column: 1 / 2;
    padding: .55rem .25rem;
  }
  .nav-dropdown > li.nav-has-dd > .dd-toggle{
    grid-column: 2 / 3;
    margin-left: .1rem;
  }
  .nav-dropdown > li.nav-has-dd > .nav-dropdown{
    position: absolute;
    inset-block-start: 0;                               
    inset-inline-start: calc(100% + 12px);             
    min-inline-size: 320px;
    max-inline-size: clamp(300px, 32vw, 440px);
    max-block-size: min(70vh, 560px);                  
    overflow: auto;                                   
    background: #fff;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 10px;
    box-shadow: 0 12px 30px rgba(0,0,0,.10);
    padding: 8px;
    margin: 0;
    z-index: 1001;                                     
  }
  .nav-dropdown > li.nav-has-dd > .nav-dropdown li a{
    position: relative;
    font-weight: 500;
    padding-left: 28px;
    line-height: 1.25;
    white-space: normal;
    overflow-wrap: anywhere;
    border-radius: 8px;
  }
  .nav-dropdown > li.nav-has-dd > .nav-dropdown li a::before{
    content: "↳";
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    opacity: .6;
    font-size: .9em;
    pointer-events: none;
  }
  .nav-dropdown > li.nav-has-dd > .nav-dropdown li a:hover{
    background: rgba(191,3,2,.08);
    color: var(--color-red, #BF0302);
  }

  .dd-toggle.is-open + .nav-dropdown{
    animation: fadeSlideDown .16s ease-out;
    transform-origin: top left;
  }
  @keyframes fadeSlideDown {
    from { opacity: 0; transform: translateY(-4px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .nav-dropdown > li.nav-has-dd:has(.dd-toggle.is-open) > a{
    color: var(--color-red, #BF0302);
  }
  .nav-dropdown > li.nav-has-dd:has(.dd-toggle.is-open) > .dd-toggle{
    border-color: rgba(191,3,2,.35);
    background: #fff;
  }
}

/* ===== ≤900px ===== */
@media (max-width: 900px){
  

  
  .header-right .btn{
    --btn-compact-size: 40px;
    width: var(--btn-compact-size);
    height: var(--btn-compact-size);
    padding: 0;
    display: inline-grid;
    place-items: center;
    border-radius: 10px;
  }
  .header-right .btn .btn-text{ display:none; }
  .header-right .btn [data-lucide]{ width:18px; height:18px; }

  
  .nav-toggle:hover{ background: rgba(0,0,0,.04); }
  .nav-toggle:focus-visible{ outline: 0; box-shadow: 0 0 0 3px rgba(191,3,2,.18); }
  
  .hamburger::before, .hamburger::after{
    width:20px; height:2px; background: var(--color-black);
  }
  .hamburger::before{ top:-6px; }
  .hamburger::after { top: 6px; }

  .header-nav{
    position: fixed;
    top: calc(var(--topbar-height, 48px) + var(--header-height, 72px) + 12px);
    left: 50%;
    right: auto;
    bottom: auto;
    width: min(560px, calc(100% - 24px));
    transform: translateX(-50%);
    background: #fff;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 12px;
    padding: .75rem .9rem 1rem;
    display: none;
    z-index: 999;
    box-shadow: 0 14px 28px rgba(0,0,0,.08);
    height: auto;
    max-height: calc(100dvh - var(--topbar-height, 48px) - var(--header-height, 72px) - 28px);
    overflow: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }
  .header-nav.is-open{ display:block; animation: navFlyIn .18s ease-out; }

  @keyframes navFlyIn{
    from { opacity: 0; transform: translateX(-50%) translateY(-6px); }
    to   { opacity: 1; transform: translateX(-50%) translateY(0); }
  }

  .header-nav .nav-list a:focus,
  .header-nav .nav-list a:focus-visible{
    color: var(--color-black);
    outline-offset: 3px;
  }
  
  .nav-list > li{
    width: 100%;
    display:flex;
    align-items:center;
    justify-content: space-between;
    gap: .45rem;
    padding: 0;
  }
  
  
  .header-nav .nav-list > li.nav-has-dd{
    display: grid !important;
    grid-template-columns: 1fr auto;
    grid-auto-rows: auto;
    align-items: center;
    gap: .35rem .5rem;
  }
  .header-nav .nav-list > li.nav-has-dd > a{
    grid-column: 1 / 2;
    font-weight: 700;
    padding: .75rem .75rem;
    border-radius: 10px;
    justify-content: flex-start;
  }
  .header-nav .nav-list > li.nav-has-dd > .dd-toggle{
    grid-column: 2 / 3;
    --dd-size: 28px;
    inline-size: var(--dd-size);
    block-size: var(--dd-size);
    display:inline-grid;
    place-items:center;
    margin: 0 .25rem 0 0;
    border: 1px solid rgba(0,0,0,.14);
    border-radius: 9999px;
    background:#fff;
    transition: border-color .2s, background .2s;
  }
  .header-nav .nav-list > li.nav-has-dd > .dd-toggle .dd-icon{ width:16px; height:16px; }
  .header-nav .nav-list > li.nav-has-dd > .dd-toggle.is-open{
    border-color: rgba(191,3,2,.38);
    background: #fff;
  }

  .header-nav .nav-list > li.nav-has-dd > .nav-dropdown{
    grid-column: 1 / -1;
    position: static !important;
    margin-top: .18rem;
    padding: 6px 4px 8px;
    text-align: left;
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 10px;
    background:#fff;
    border-left: 3px solid var(--color-red, #BF0302);
    white-space: normal;
    overflow-wrap: anywhere;
  }
  @keyframes fadeSlideDown{
    from { opacity: 0; transform: translateY(-3px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .header-nav .nav-dropdown > li.nav-has-dd{
    margin-right: 0;
  }
  .header-nav .nav-dropdown > li.nav-has-dd{
    display: grid !important;
    grid-template-columns: 1fr auto;
    grid-auto-rows: auto;
    align-items: center;
    gap: .35rem .5rem;
    padding: .10rem 0;
  }
  .header-nav .nav-dropdown > li.nav-has-dd > a{
    grid-column: 1 / 2;
    font-weight: 700;
    padding: .75rem .75rem;
    border-radius: 10px;
    justify-content: flex-start;
  }
  .header-nav .nav-dropdown > li.nav-has-dd > .nav-dropdown{
    grid-column: 1 / -1;
    position: static !important;
    margin-top: .18rem;
    padding: 6px 4px 8px;
    text-align: left;
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 10px;
    background:#fff;
    border-left: 3px solid var(--color-red, #BF0302);
    white-space: normal;
    overflow-wrap: anywhere;
  }
  .header-nav .nav-list > li.nav-has-dd > .nav-dropdown li a{
    position: relative;
    font-weight: 500;
    padding: .62rem .75rem .62rem 2rem;
    border-radius: 8px;
  }
  .header-nav .nav-list > li.nav-has-dd > .nav-dropdown li a::before{
    content: "↳";
    position: absolute;
    left: .75rem;
    top: 50%;
    transform: translateY(-52%);
    opacity: .6;
    font-size: .95em;
    pointer-events: none;
  }
  .header-nav .nav-list > li.nav-has-dd > .nav-dropdown li a:hover{
    background: rgba(191,3,2,.07);
    color: var(--color-red);
  }

  
}

@media (min-width: 901px) and (max-width: 980px){
  .header-right .btn{
    width: 40px;
    height: 40px;
    padding: 0;
    display: inline-grid;
    place-items: center;
  }

  .header-right .btn .btn-text{ display: none; }
  .header-right .btn [data-lucide]{ width: 18px; height: 18px; }
}

@media (max-width: 640px){
  

  .site-header .logo{
    width: min(132px, 32vw);
  }

  
}

/* HERO styles */
.hero {
    padding: 3rem 1rem 4rem;
    background: radial-gradient(
        1200px 600px at 10% 10%,
        rgba(13, 37, 63, 0.35),
        transparent 8%
    ),
    linear-gradient(135deg, rgba(1,10,20,1) 0%, rgba(0,0,0,1) 60%);
    color: var(--color-white);
}

/* Container principal */
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px; /* card menor */
  gap: 3rem;
  align-items: start;
  padding: 2em 1.5em;
}

/* Left - organização / espaçamento entre blocos do lado esquerdo */
.hero-left {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;      /* aumenta o espaçamento entre badge, título, texto, botões e meta */
}

/* Badge */
.badge {
    display: inline-flex;
    gap: 0.6rem;
    align-items: center;
    background: rgba(233, 60, 60, 0.219);
    color: rgba(235, 72, 72, 0.884);
    padding: 0.35rem 0.6rem;
    border-radius: 999px;
    border: 1px solid var(--color-red);
    font-weight: 500;
    font-size: 0.9rem;    
    width: fit-content;
    margin-bottom: 8px;   
}
.badge .badge-icon {
    width: 18px;
    height: 18px;
}

/* Titulação / subtítulo / descrição */
.hero-title {
    font-size: clamp(3rem, 10vw, 5rem);
    margin: 0;          
    letter-spacing: 0.01em;
    color: var(--color-white);
    line-height: 1.02;
}



.hero-desc {
    max-width: 550px;     /* aumentamos para melhor quebra de linha */
    color: rgba(255,255,255,0.88);
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.6;     /* mais espaço entre linhas para leitura confortável */
    margin-bottom: 1rem;
}

/* Ações (botões) - mais espaçamento entre eles e margem inferior maior */
.hero-actions {
    display: flex;
    gap: 1rem;            /* mais espaço entre os botões */
    margin-bottom: 1.75rem;
}

.btn-hero-whats {
    background: var(--color-red);
    color: var(--color-white);
    border-color: transparent;
    border-radius: 10px;
    padding: 0.75rem 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.98rem;
    transition: background 0.5s ease;
}

.btn-hero-whats:hover { 
    background: rgba(0, 0, 0, 0);
    color: var(--color-red); 
}

.btn-hero-call {
    background: transparent;
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.849);
    border-radius: 10px;
    padding: 0.7rem 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.98rem;
    transition: background 0.5s ease, color 0.5s ease;
}

.btn-hero-call:hover { 
    background: var(--color-white); 
    color: var(--color-black);
}

/* Meta (localização / horário) - mais espaço, ícones maiores para legibilidade */
.hero-meta {
    display: flex;
    gap: 3rem;           /* mais espaço entre os blocos de meta (localização x horário) */
    align-items: flex-start;
    margin-top: 0.25rem;
}

.meta-item {
    display: flex;
    gap: 1rem;           /* aumenta distância ícone / textos */
    align-items: center;
}

.meta-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    color: var(--color-red);
}

.meta-title {
    font-weight: 800;
    color: var(--color-white);
    font-size: 1rem;    
    line-height: 1.15;
}

.hero-title span {
    color: var(--color-red);
}

.meta-sub {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.2;
}

/* Card da direita */




/* Lista de motivos - texto aumentado e maior espaçamento entre itens */






/* divisor e estatísticas com destaque tipográfico */










/* CSS: estilos para a seção Nossos Serviços */


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
}









/* Grid de cards */


/* Card */




/* Imagem do card - área relativa para posicionar o badge */


/* imagem responsiva */


/* badge redondo no canto superior esquerdo da foto */


.media-badge:hover {
    background: rgba(235, 72, 72, 0.85);
}

/* ícone dentro da badge (usa Lucide) */
.media-badge .badge-icon {
    width: 18px;
    height: 18px;
    stroke-width: 2;
}

/* corpo do card */






/* CTA: Precisa de um orçamento? */


.orcamento-card {
    max-width: 700px;
    margin: 0 auto;
    background: linear-gradient(180deg, #ffffff, #fbfbfb);
    border: 1px solid rgba(0,0,0,0.04);
    border-radius: 12px;
    padding: 1.5rem 1.25rem;
    box-shadow: 0 10px 24px rgba(2, 6, 23, 0.493);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

/* Títulos */
.orcamento-title {
    margin: 0;
    font-size: clamp(1.25rem, 2.6vw, 1.6rem);
    font-weight: 800;
    color: #111;
    line-height: 1.05;
}

.orcamento-sub {
    margin: 0;
    color: rgba(17,17,17,0.72);
    font-size: 1rem;
    max-width: 820px;
    line-height: 1.6;
}

.orcamento-actions {
    display: flex;
    gap: 1rem;
    margin-top: 0.25rem;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.orcamento-actions .btn [data-lucide] {
    width: 18px;
    height: 18px;
}

/* Seção Nossos Trabalhos */








/* filtros */








/* grid de trabalhos */


/* card */




/* mídia (imagem) com badge */




/* badge no canto superior esquerdo da imagem */


/* corpo do card */






/* itens (duas frases) - cor mais escura */




/* esconder cards filtrados */



/* Seção: Sobre a JMS CAR */
.sobre-section {
    background: var(--color-white);
    color: #111;
    padding: 4.25rem 1rem;
}



/* Título — JMS CAR em vermelho */




/* Layout interno: texto à esquerda, imagem à direita */


/* Texto (esquerda) */


/* Subtítulo (maior) */


/* Texto descriptivo */


/* Botão grande vermelho */


.btn-sobre:hover,
.btn-sobre:focus {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(2,6,23,0.08);
    outline: none;
    border: solid 1px var(--color-red);
    background-color: var(--color-white);
}

/* Imagem com borda branca grande */




.sobre-media :hover {
    transform: scale(1.05);
    box-shadow: 0 0px 0px rgba(2,6,23,0.09);
}

/* Bloco de métricas na seção Sobre */






/* Novo: fundo redondo e vermelho claro */








/* Seção: Antes e Depois */

/* container / background */


/* título / subtítulo */












/* imagens lado a lado (sem espaço entre elas) */


/* cada imagem ocupa metade do wrapper; altura fixa via clamp para manter mesmo tamanho */


/* imagem sempre cobre totalmente o container */


/* Badges no canto superior esquerdo de cada imagem */





/* ---- INFO ROW (abaixo das imagens): texto à esquerda, botões à direita ---- */


/* texto (esquerda) */






/* badge informativa (abaixo do texto) */


/* área de botões (direita) */




/* estilo dos botões */




/* foco acessível */


/* Stats (4 itens) — dentro da mesma seção Antes e Depois */




/* cada item */


/* número grande e vermelho */


/* legenda / frase */


/* hover leve */



/* Seção Depoimentos */
.depoimentos-section {
    background: var(--color-white);
    color: #111;
    padding: 2rem 1rem;
}





.depo-title .text-red {
    color: var(--color-red);
}

/* subtítulo */


/* grid de depoimentos */


/* card */


/* topo: quote + estrelas */


/* icone quote */


/* estrelas amarelas */




/* texto do depoimento */


/* rodapé: autor à esquerda, badge à direita */




/* autor */






/* badge da categoria */


/* hover */


/* Seção: Nossa Estrutura */










/* Grid de 4 cards */


/* Card */


/* mídia: foto no topo do card */




/* badge no canto superior esquerdo da imagem */


/* corpo do card
   -> Grid interno para alinhar títulos/descrição/lista na mesma altura entre cards */






/* lista de itens */








/* hover */



/* Cabeçalho da Equipe */






/* Grid de 3 cards */


/* Card da equipe */


/* Foto redonda */


/* Badge vermelha pequena */


/* Nome e especialidade */




/* Badges cinzas lado a lado */





























/* ========= Entre em Contato ========= */
.contato-section {
  background: rgba(2,6,23,0.02);
  padding: 0rem 1rem;
}











/* Grid principal */
















.card-info-icon [data-lucide] { width: 22px; height: 22px; }

.card-info-content h4 {
  margin: 0 0 .35rem;
  font-size: 1.12rem;
  font-weight: 600;
  color: #111;
}





/* Botões menores */
.btn-whats, .btn-ligar {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-weight: 500;
  border-radius: 8px;
  padding: .45rem .75rem;
  font-size: .88rem;
  text-decoration: none;
  line-height: 1;
  border: 2px solid transparent;
}

.btn-whats {
  background: #16a34a;
  color: #fff;
}

.btn-ligar {
  background: #fff;
  color: #2563eb;
  border-color: #2563eb;
}

.btn-ligar:hover { background: rgba(37,99,235,0.06); }

/* ====== Direita: formulário ====== */
.contato-right .form-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.13);
  box-shadow: 0 14px 40px rgba(2, 6, 23, 0.226);
  padding: 1.5rem;
  margin-top: 62px;
}

.contato-form {
  display: grid;
  row-gap: 1.25rem;
}









.form-card .form-desc {
  margin: 0 0 1.25rem;
  color: rgba(17,17,17,0.7);
}

/* inputs com mais espaçamento */
.contato-form .form-grid {
  gap: 1.25rem;
  margin-bottom: 0;
}



.contato-form input,
.contato-form select,
.contato-form textarea {
  width: 100%;
  background: #fff;
  border: 1px solid rgba(2,6,23,0.12);
  border-radius: 10px;
  padding: 1rem 1.1rem;
  font-size: .96rem;
  outline: none;
  transition: box-shadow .15s ease, border-color .15s ease;
}

.contato-form textarea { resize: vertical; min-height: 120px; }

.contato-form input:focus,
.contato-form select:focus,
.contato-form textarea:focus {
  border-color: var(--color-red);
  box-shadow: 0 0 0 4px rgba(255,0,0,0.12);
}

/* Botão centralizado */


.btn-submit:hover { filter: brightness(1.02); }

.btn-submit [data-lucide] { width: 18px; height: 18px; }

/* Atendimento rápido (banner vermelho) */










/* Rodapé */



/* ===== Topo do footer (3 colunas) ===== */
.footer-container.footer-top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 2rem;
}
.footer-container.footer-top p {
  max-width: 180px;
}




/* Títulos de bloco */


/* Links padrão */

.footer-links li { margin-bottom: 0.5rem; }



/* Contato */




/* Ícones */
.icon-red { color: #ff4c4c; }
.icon-green { color: #25d366; }
.icon-blue { color: #1e90ff; }
.icon-purple { color: #a64ca6; }

/* ===== Faixa de categorias + serviços ===== */






/* Barra de destaque abaixo do título */


/* (Opcional) leve brilho para realçar no fundo escuro */




/* Grid de categorias (cada coluna = 1 categoria) */


/* Card/coluna da categoria */









/* ===== Descrição ampla ===== */



/* ===== Rodapé inferior (esquerda + direita) ===== */


.footer-bottom__left {
  margin: 0;
  line-height: 1.35;
}

.footer-bottom__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.footer-bottom__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}



/* Pisca “chamando atenção” */
@keyframes footerBlink {
  0%, 100% { opacity: 1; filter: none; transform: scale(1); }
  50% { opacity: .25; filter: brightness(1.2); transform: scale(1.02); }
}

/* Acessibilidade: foco visível */
.footer-bottom__link:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.7);
  outline-offset: 4px;
  border-radius: 6px;
}

/* Mantém compatibilidade com outros links no rodapé (se tiver) */

.footer-bottom a:hover { color: #ff4c4c; }

/* Responsivo: empilha no mobile */
@media (max-width: 640px) {
  

  .footer-bottom__left {
    text-align: center;
  }

  
}


/* ===== Responsivo ===== */

@media (max-width: 900px){
  .footer-container.footer-top{
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    margin-bottom: 1.5rem;
  }
  .footer-container.footer-top p { max-width: 100%; }
  .footer-block { width: 100%; }
  
  

  
  .footer-links li{ display: block; }
  

  
  
  

  

  
  
}

/* Responsive */
@media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-left {
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;  
    }
    
    

    

    

    .badge-icon {
        width: 20px;
        height: 20px;
    }

    

    

    

    

    

    /* colocar a imagem abaixo do texto para leitura móvel */
    

    

    

    

    
    
    
    

    

    

    

    .container {
        padding: 0;
    }

    

    
     
    

    .depoimentos-section {
        padding: 2rem 1rem;
    }

    

  

  

  /* Cards empilhados */
  

  

  

  

  

  

  

  

  

  
    
    

    

    

    /* Qualidade Certificada */


















  
}

/* pequena melhoria visual quando o painel está em foco */



/* pequena melhoria para foco/acessebilidade em teclado */
.servico-card:focus-within,
.servico-card a:focus {
    outline: 3px solid rgba(0,0,0,0.06);
    outline-offset: 2px;
}

@media (max-width: 640px) {
    
    .hero { padding: 2.5rem 0.8rem 3.5rem; }
    .hero-title { font-size: 2.2rem; margin-bottom: 10px;}
    .hero-desc { font-size: 0.95rem; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .btn-hero-whats, .btn-hero-call { width: 100%; justify-content: center; }
    .hero-meta { flex-direction: column; gap: 0.75rem; }
    .orcamento-card {
        padding: 1rem;
    }

    .orcamento-actions {
        flex-direction: column;
        gap: 0.75rem;
    }

    .orcamento-actions .btn {
        width: 100%;
        justify-content: center;
    }
    

    

    

    

    

    

    .sobre-section {
        padding: 2.25rem 0.8rem;
    }

    

    

    
    
    

    

    
    

    

    
    
    
    

    

    .contato-form .form-grid {
    grid-template-columns: 1fr; /* empilha Nome e Telefone */
  }

  

  

}

/* ======= SOBRE (HERO) ======= */


/* reforço de cor do ícone da badge usando Lucide */
.badge .badge-icon{ color: var(--color-red); }

/* grid das estatísticas (reutiliza .stat, .stat-num, .stat-label já existentes) */








/* ======= SECTION: Nossa Jornada (fundo branco) ======= */




/* Badge própria */




/* Título e subtítulo */




/* Lista */


/* item: coluna fixa p/ círculo + coluna flexível p/ card */


/* círculo */



/* CARD claro à direita (como na imagem) */
          /* evita estourar grid */


/* Cabeçalho: ano vermelho + título preto em uma linha */





/* Descrição cinza */


/* espaçamento vertical entre itens (sem borda separadora) */



/* ======= SECTION: Nossos Valores ======= */



/* Badge */




/* Título */





/* Grid de Cards */


/* Card */



/* Ícone */



/* Tipografia */




/* ======= SECTION: Missão / Visão / Valores ======= */



/* grid responsivo */


/* card */



/* ícones com cores específicas */






/* tipografia */




/* ======= SECTION: Por que escolher ======= */



/* Título */




/* Grid */


/* Cards */


/* Ícone dentro de círculo */






/* ======= SECTION: CTA ======= */






/* Ações */


/* Botões base */



/* WhatsApp (vermelho) */



/* Ligar (transparente com borda branca) */










/* ======= HERO Tapeçaria ======= */



/* ícones dos botões em branco e tamanho consistente */
.btn-hero-whats [data-lucide],
.btn-hero-call [data-lucide]{
  width: 18px;
  height: 18px;
  stroke-width: 2.4;
}



/* Responsivo */




/* CTA do card */




/* ======= SECTION: FAQ ======= */



/* Badge */




/* Título e subtítulo */





/* Lista/itens */


/* Details base */


/* Summary como botão */



/* Ícone seta */


/* Conteúdo */


/* Estado aberto */



/* Hover/Focus */




/* Details base */


/* Summary como botão */





/* Estado aberto */



/* Hover/Focus */




/* ======= SECTION: CTA Vermelha ======= */






/* Ações */



/* Botões menores */


/* WhatsApp: fundo branco, texto vermelho */



/* Telefone: transparente, borda branca */





@media (min-width: 768px){
  
  .hero-title{ font-size: clamp(3rem, 8vw, 4.5rem); }
  

  
  
}






/* Voltar */




/* Título e subtítulo */












/* ======= SECTION: Contato Serviços ======= */






/* Grid */


/* Card */














/* ======= SECTION: Contato (fundo vermelho) ======= */





/* Esquerda */



/* Lista de infos */








/* Direita: Card de orçamento */





/* Botões */



/* WhatsApp (verde) */



/* Ligar (transparente com borda branca) */



/* Nota pequena */


/* Responsivo */



/* ======= SECTION: Auto Elétrica ======= */





















/* Card (direita) */




/* (Opcional) garantir consistência nas listas/estatísticas do card */








/* ===== Mobile ===== */



/* Section wrapper */


/* Badge no topo (centralizada) */



/* Header */





/* Grid: 3 col (desktop), 2 col (<= 960px), 1 col (<= 600px) */




/* Card */



/* Imagem + ícones/badge sobrepostos */



/* Ícone azul no canto superior esquerdo da foto */


/* Badge branca no canto inferior direito */


/* Conteúdo do card */



/* Lista de itens com ícone azul */




/* Botão "Ver Detalhes" (azul) */





/* Badge azul */


/* Palavra Frequentes azul */











/* Botão flutuante WhatsApp */
.whats-float{
  position:fixed;bottom:20px;right:20px;
  background:#25d366;color:#fff;border-radius:50%;
  width:60px;height:60px;display:flex;align-items:center;justify-content:center;
  box-shadow:0 4px 12px rgba(0,0,0,.25);
  transition:transform .25s ease,box-shadow .25s ease;
  z-index:1000;text-decoration:none
}
.whats-float:hover{transform:scale(1.08);box-shadow:0 6px 16px rgba(0,0,0,.35)}


/* ======= PAGINA BLOG ======= */
/* ======= BLOG LIST ======= */






/* Grid */




/* Card */



/* Mídia */




/* Meta (data) */



/* Conteúdo */



/* Botão Ler Mais */




/* Paginação */






/* Responsivo */


/* Container principal */


/* Voltar */




/* Badge e Data */





/* Título e subtítulo */



/* Imagem */




/* Texto inicial */


/* Conteúdo numerado */



/* Dica */




/* Conclusão */


/* ===== Section: Posts Relacionados ===== */








/* Responsividade */




/* ===== Seção Contato ===== */
.contact-section {
  padding: 4rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-header {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #222;
}

.contact-title span {
  color: #c00; /* vermelho JMS CAR */
}



/* ===== Layout ===== */


/* ===== Localização ===== */















/*************************************/
/* =======  PAGINAS INTERNAS ======= */
/*************************************/

/* ===== Cards de Serviço (pós-descrição em cidade/segmento) ===== */





/* Link ocupa todo o card */


/* Mídia: mesma proporção dos demais cards do site */






/* Corpo */


/* Título forte e compacto */








/* foco acessível */






/* Acessibilidade: foco visível no card inteiro */



/* Responsivo: grid utilitário para onde esses cards forem listados */





/* ===== LISTA DE CIDADES ===== */

/* Cabeçalho suave com breadcrumbs */




/* Breadcrumbs */





/* Seção e container de cards */



/* Card de cidade (anchor preenchendo tudo) */



/* Mídia */




/* Corpo */






/* Container slim para paginação */


/* Paginação (usa classes do seu buildPagination) */









/* Responsivo */


/* ===== LISTA DE SERVIÇOS – ajustes opcionais ===== */


/* Selo "Serviço" no canto da imagem */



/* Botão “ver mais” um pouco mais forte na lista de serviços */



/* ===== Category: Carrossel de Serviços ===== */









/* Setas do carrossel */






/* Badge com o nome da categoria no canto da foto do card */


/* ===== Categoria: Cabeçalho do Carrossel ===== */










/* Integração suave com o seu carrossel existente */











/* Responsivo: aproximar botões em telas menores */


/* Espaçamento interno da “viewport” dos cards */


/* Grid dos cards já existia; apenas garantimos gap consistente */



/* responsivo */


/* ===== Breadcrumb bar  ===== */


.crumbs-bar::before{
  content:"";
  display:block;
  height: var(--after-header-gap, 12px); 
}



.jms-breadcrumbs ol{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: .35rem;
  flex-wrap: wrap;
  align-items: center;
}
.jms-breadcrumbs li+li::before{
  content: "/";
  color: rgba(255,210,210,0.7);
  margin: 0 .25rem 0 .2rem;
}

.jms-breadcrumbs a:hover,
.jms-breadcrumbs a:focus{
  color: var(--color-red); /* seu vermelho do tema */
}
.jms-breadcrumbs li[aria-current="page"]{
  color: #fff;
  font-weight: 800;
}
.crumbs-bar::after{
  content:"";
  display:block;
  height: 2px;
  background: linear-gradient(90deg, rgba(229,57,53,0) 0%, rgba(229,57,53,0.6) 40%, rgba(229,57,53,0) 100%);
}

@media (max-width: 640px){
  
  
  
  .jms-breadcrumbs span { font-size: .85rem; }
}

/* ===========================
   GENERIC DETAIL LAYOUT
   Usar em: serviço, segmento, seo-cidades, seo-segmentos
   =========================== */

/* ---------- BREADCRUMB ---------- */
/* Wrapper e fundo (mantém o espaçamento para topbar+header fixos) */




/* A função gera <a> e <span> separados por " / " (texto).
   Estilizamos diretamente esses elementos */





/* Mobile: reduz levemente o padding e calcula o topo com topbar menor */









/* ---------- HERO (título, descrição, imagem) ---------- */





/* ============================
   BLOCO: Imagem + Descrição
   ============================ */








/* ============================
   CARDS: Sessão de relacionados
   ============================ */





/* Grid de cards (reutiliza sua .cards-grid; reforço só de gaps) */




/* ============================
   Breadcrumb (refino sutil)
   ============================ */
/* já tem .crumbs-bar, .crumbs-bar__inner e .jms-breadcrumbs definidos.
   Aqui só um pequeno ajuste para manter coerência visual com o detalhe. */



/* ============================
   Micro animações (suave)
   ============================ */



/* ---------- RESPONSIVO ---------- */



a.badge {
  display: inline-flex; /* igual à sua badge atual */
  align-items: center;
  text-decoration: none; /* evita sublinhado do link */
  color: inherit;        /* mantém a cor da badge */
}
a.badge:hover { filter: brightness(1.05); }


/* ---------- SEO THEME ---------- */


/* container neutro p/ SEO (evita conflito com .container) */


/* ---------- SEO HERO ---------- */
















/* ---------- SEO BODY (texto longo) ---------- */







/* ---------- SEO CARDS (cabeçalho) ---------- */







/* ---------- SEO CARDS (carrossel) ---------- */


/* Trilho rolável horizontal */

/* Oculta scrollbar onde possível */



/* Cartões dentro do carrossel */


/* Ajustes de imagem do card para não “vazar” no mobile */



/* Botões de navegação */









/* ---------- Responsivo ---------- */




/* ===== Serviço: Hero isolado ==== */






/* GRID 2 colunas */


/* ESQUERDA (principal) */



.srv-badge:hover{
  background: rgba(229,57,53,.12);
  border-color: rgba(229,57,53,.55);
  transform: translateY(-1px);
}
.srv-badge:focus-visible{
  outline: 2px solid rgba(229,57,53,.6);
  outline-offset: 2px;
}

















/* DIREITA (sidebar) */


/* formulário */








.btn-submit:hover{ filter: brightness(.96); }

/* ações rápidas */




/* cartões laterais */

























/* RESPONSIVO */


/* ===== Serviços da mesma categoria (título e subtítulo) ===== */
















/* ===== Carrossel base ===== */






















@media (max-width: 900px){
  html, body{
    overflow-x: hidden;
    width: 100%;
  }
}


@keyframes shimmer{
  0%{ filter: brightness(1); }
  50%{ filter: brightness(1.15); }
  100%{ filter: brightness(1); }
}

/* ===========================================
   Cookie Banner + Preferences (LGPD)
   - estilo alinhado ao teu tema (vermelho + cards + sombras suaves)
   =========================================== */



/* ===== Banner (bottom) ===== */


.cookie[aria-hidden="false"]{
  display: block;
  pointer-events: auto;
}

/* container interno */


/* anima quando abre (aria-hidden=false) */
.cookie[aria-hidden="false"] .cookie__inner{
  transform: translateY(0);
  opacity: 1;
}

.cookie__text{
  min-width: 0;
}







.cookie__link:hover{
  color: var(--cookie-accent);
  border-bottom-color: rgba(229,57,53,.55);
  opacity: 1;
}

/* ações */


/* botões (compatível com teu estilo de botões arredondados) */


.cookie__btn:active{
  transform: translateY(1px);
}

.cookie__btn:focus-visible{
  outline: none;
  box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.30);
}

/* ghost */


.cookie__btn--ghost:hover{
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.34);
  transform: translateY(-1px);
}

/* primary */


.cookie__btn--primary:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(229,57,53,0.26);
}

/* ===== Responsivo banner ===== */


/* iOS safe-area */


/* ===== Modal ===== */


.cookie-modal[aria-hidden="false"]{
  display: block;
}





.cookie-modal[aria-hidden="false"] .cookie-modal__panel{
  transform: translateY(0);
  opacity: 1;
}

/* header modal */






.cookie-modal__close:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(2,6,23,0.10);
  background: #fff;
}

.cookie-modal__close:focus-visible{
  outline: none;
  box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.25);
}



/* form */
.cookie-modal__form{
  padding: 1rem 1.1rem 1.1rem;
}

/* rows */








/* switch */
.cookie-switch{
  --sw-w: 48px;
  --sw-h: 28px;
  --sw-pad: 3px;

  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  flex: 0 0 auto;
}



.cookie-switch__ui{
  width: var(--sw-w);
  height: var(--sw-h);
  border-radius: 999px;

  background: rgba(0,0,0,.12);
  border: 1px solid rgba(0,0,0,.14);

  display: inline-block;
  position: relative;

  transition: background .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.cookie-switch__ui::after{
  content: "";
  position: absolute;
  top: var(--sw-pad);
  left: var(--sw-pad);

  width: calc(var(--sw-h) - (var(--sw-pad) * 2));
  height: calc(var(--sw-h) - (var(--sw-pad) * 2));
  border-radius: 999px;

  background: #fff;
  box-shadow: 0 10px 20px rgba(2,6,23,0.16);

  transition: transform .18s ease;
}

/* checked */
.cookie-switch input:checked + .cookie-switch__ui{
  background: rgba(229,57,53,0.95);
  border-color: rgba(229,57,53,0.55);
  box-shadow: 0 0 0 3px rgba(229,57,53,0.16);
}

.cookie-switch input:checked + .cookie-switch__ui::after{
  transform: translateX(calc(var(--sw-w) - var(--sw-h)));
}

/* disabled (essenciais) */
.cookie-switch input:disabled + .cookie-switch__ui{
  background: rgba(0,0,0,.08);
  border-color: rgba(0,0,0,.10);
  opacity: .85;
  filter: grayscale(.15);
}

.cookie-switch input:disabled + .cookie-switch__ui::after{
  box-shadow: 0 8px 16px rgba(2,6,23,0.10);
}

/* foco acessível */
.cookie-switch input:focus-visible + .cookie-switch__ui{
  box-shadow: 0 0 0 3px rgba(229,57,53,0.22);
  border-color: rgba(229,57,53,0.45);
}

/* ações modal */








/* responsivo modal */
@media (max-width: 640px){
  

  

  .cookie-modal__actions .cookie__btn{
    width: 100%;
  }
}

/* reduz motion */


/* =========================================================
   REFERÊNCIA GEOGRÁFICA — SERVIÇO + CIDADE
   ========================================================= */









/* Pequena barra vermelha abaixo do título */


/* Card do mapa */


/* Detalhe vermelho superior */




/* Hover discreto no desktop */


/* Tablet */


/* Mobile */


/* ==========================================
   LER MAIS — CONTEÚDO SEO
   ========================================== */












