/* styles.css */
:root {
    --font-sans: ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
    --color-red: oklch(57.7% 0.245 27.325);
    --color-black: #000;
    --color-white: #fff;
    --color-green: #00af0f;
    --color-orange: #ff7a00;
    --color-blue: oklch(62.3% 0.214 259.815);
    --color-blue-light: #e6f0ff;
    --color-blue-dark: #0056b3;
    --header-height: 72px;
    --bs-link-color-rgb: 229,57,53;        
    --bs-link-hover-color-rgb: 200,40,36;  
    --bs-link-opacity: 1;
    --detail-max: 1200px;
    --detail-gap: 2rem;
    --detail-radius: 16px;
    --detail-shadow: 0 10px 30px rgba(0,0,0,.06);
    --accent: var(--color-red, #e53935);
    --text-muted: rgba(0,0,0,.65);
}

* { 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);
}
body {
    font-family: "GeistSans", "GeistSans Fallback", "Inter", "Roboto", sans-serif;
    line-height: 1.6;
    width: 100%;
    margin: 0;
    color: var(--color-black);
    padding-top: calc(var(--topbar-height) + var(--header-height));
}

a {
  text-decoration: none;
}

[id]{
  scroll-margin-top: calc(var(--topbar-height) + var(--header-height) + 8px);
}

/* Header */

:root{
  --topbar-height: 48px;           /* já usa na header */
  --header-height: 72px;           /* já usa no body */
  --after-header-gap: 12px;        /* respiro acima do breadcrumb (desktop) */
}


@media (max-width: 640px){
  :root{ --after-header-gap: 0px; }
}

/* Topbar fixo acima do header */
.topbar{
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--topbar-height);
  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: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  z-index: 1000; /* acima do header (999) */
}
.topbar-inner{
  max-width: 1200px; margin: 0 auto;
  height: 100%;
  display: grid; grid-template-columns: 1fr auto;
  align-items: center; gap: .75rem;
  padding: 0 .9rem;
}
.topbar-text{
  font-weight: 700; font-size: .92rem; letter-spacing: .2px;
  color: rgba(255,255,255,.92);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.topbar-right{ display: flex; gap: .5rem; }
.topbar-link{
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 999px;
  color: #fff; text-decoration: none;
  border: 1px solid rgba(255,255,255,.24);
  transition: transform .12s ease, background .2s ease, border-color .2s ease;
}
.topbar-link i[data-lucide]{ width: 18px; height: 18px; }
.topbar-link:hover{
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.4);
  transform: translateY(-1px);
}

@media (max-width: 640px){

  :root{
    --topbar-height: 64px; 
  }

  .topbar{
    height: auto;                 
    padding: .35rem 0;           
  }

  .topbar-inner{
    grid-template-columns: 1fr auto;
    align-items: start;       
    gap: .5rem;
  }

  .topbar-text{
    font-size: .82rem;            
    line-height: 1.25;
    white-space: normal;         
    overflow: hidden;
    display: -webkit-box;     
    -webkit-box-orient: vertical;
  }

  .topbar-link{
    width: 30px;
    height: 30px;
  }
  .topbar-link i[data-lucide]{
    width: 16px;
    height: 16px;
  }

  .site-header{
    top: var(--topbar-height);
  }

  body{
    padding-top: calc(var(--topbar-height) + var(--header-height));
  }
}

@media (max-width: 380px){
  :root{ --topbar-height: 72px; }
  .topbar-text{ font-size: .78rem; }
}

/* Mobile */
@media (max-width: 640px){
  :root { --topbar-height: 42px; }
}

/* ===== Header base ===== */
.site-header{
  background: var(--color-white);
  border-bottom: 1px solid rgba(0,0,0,.06);
  position: fixed;
  inset-block-start: var(--topbar-height, 48px);
  inset-inline: 0;
  z-index: 999;
}

.header-inner{
  max-width: 1200px;
  margin-inline: auto;
  padding: .75rem 1rem;
  display: grid;
  grid-template-columns: auto 1fr auto; /* logo | espaço | cluster (botões + hamburger) */
  align-items: center;
  column-gap: 1.25rem;
}

.logo{ height: 48px; width: auto; display:block; }
.logo-link{ display:inline-flex; align-items:center; }

.header-left{ justify-self: start; }
.header-center{ justify-self: center; min-width: 0; }
.header-right{ justify-self: end; display:flex; align-items:center; gap:.6rem; }

/* ===== 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) ===== */
/* ===== Navegação (desktop) ===== */
.header-nav[hidden]{ display:none; } 
.nav-list{
  display:flex; align-items:center; gap:1.0rem; 
  list-style:none; margin:0; padding:0; white-space:nowrap;
}
.nav-list > li{ display:inline-flex; align-items:center; gap:.25rem; }
.nav-list a{
  text-decoration:none; color: var(--color-black);
  font-weight:600; padding:.45rem 0; transition: color .15s ease;
  font-size: 1rem; line-height: 1; /* consistente com a seta */
}
.nav-list a:hover,.nav-list a:focus{ color: var(--color-red); }
.nav-has-dd{
  position:relative; display:inline-flex; align-items:center; gap:.2rem; margin-right: 10px;
}
.dd-toggle{
  --dd-size: 26px;                              
  inline-size: var(--dd-size); block-size: var(--dd-size);
  display:inline-flex; align-items:center; justify-content:center;
  border:1px solid rgba(0,0,0,.12);
  border-radius:9999px; background:#fff; color:var(--color-black);
  cursor:pointer; padding:0; line-height:1;
  vertical-align: middle;                        
  transform: translateY(-0.5px);                 
  margin-inline-start: .05rem;                  
  transition: background .2s, border-color .2s, transform .2s, box-shadow .2s;
}
.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 .dd-icon{ width:14px; height:14px; transition: transform .2s; pointer-events:none; } 
.dd-toggle[aria-expanded="true"] .dd-icon{ transform: rotate(180deg); }
.nav-dropdown{
  position: static;              
  inset: auto;                  
  min-inline-size: initial;
  background:#fff;
  border: none;
  border-radius: 10px;
  box-shadow: none;
  list-style: none;
  padding: 8px 0 10px;         
  z-index: 1000;
}
.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 .nav-dd-title{
  padding: 8px 10px 6px;
  font-size: .82rem;
  font-weight: 800;
  color: rgba(17,17,17,.6);
  text-transform: uppercase;
  letter-spacing: .02em;
  border-top: 1px solid rgba(0,0,0,.06);
  margin-top: 6px;
}
.nav-dropdown .nav-dd-title:first-child{ border-top: none; margin-top: 0; }
.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{
  --btn-compact-size: 40px;
  background:#fff;
  border:2px solid rgba(0,0,0,.14);
  width: var(--btn-compact-size);
  height: var(--btn-compact-size);
  border-radius: var(--btn-radius, 10px);
  padding:0;
  cursor:pointer; display:none;
  transition: background .2s, box-shadow .2s, border-color .2s, transform .2s;
}
.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{
  position:relative; display:block; width:18px; height:2px; background: var(--color-black);
  margin-inline:auto;
  transition: background .2s ease;
}
.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){
  .header-nav[hidden]{ display:block !important; }
  .nav-toggle{ display:none; }
  .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-inner{
    grid-template-columns: auto 1fr auto;
    column-gap: 1.1rem;
  }

  .header-right{ justify-self:end; gap:.5rem; }
  .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 i[data-lucide]{ width:18px; height:18px; }

  .nav-toggle{
    display:inline-grid;
    place-items:center;
    width: 40px;
    height: 40px;
    margin-inline-start: .15rem;
    border: 1.5px solid rgba(0,0,0,.12);
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 1px 0 rgba(0,0,0,.02);
    transition: background .2s, box-shadow .2s, border-color .2s;
  }
  .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{ width:20px; height:2px; background: var(--color-black); }
  .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) + 85px);
    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) + 60px) - 16px);
    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{
    display:flex;
    flex-direction: column;
    align-items: stretch;
    gap: .25rem;
    white-space: normal;
  }
  .nav-list > li{
    width: 100%;
    display:flex;
    align-items:center;
    justify-content: space-between;
    gap: .45rem;
    padding: 0;
  }
  .nav-list a{
    width: 100%;
    font-size: 1.02rem;
    padding: .80rem .75rem;
    display:inline-flex;
    align-items:center;
    justify-content:flex-start;
    line-height: 1.15;
    border-radius: 10px;
    transition: background .15s, color .15s, box-shadow .15s;
  }
  .nav-list a:hover{
    background: rgba(191,3,2,.06);
    color: var(--color-red);
  }
  .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);
  }

  .nav-dropdown{
    position: static;
    box-shadow:none; border:none;
    padding:0;
    min-inline-size: initial; width:100%;
    margin-top: 0;
  }
}

/* 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-sub {
    font-size: 1.2rem;   /* aumento da tipografia para melhor leitura */ 
    margin: 3rem 0;
    color: rgba(204, 204, 204, 0.95);
    font-weight: 500;
    line-height: 1.15;
}

.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 */
.hero-card {
  background: linear-gradient(
      180deg,
      rgb(17, 17, 17),
      rgba(255, 255, 255, 0.01)
  );
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 1.5rem;
  border-radius: 12px;
  color: var(--color-white);
  min-height: auto;         
  max-width: 340px;       
  margin-left: auto;      
  margin-right: auto;       
}

.hero-card h3 {
    margin: 0 0 0.9rem;
    font-size: 1.25rem;  
    font-weight: 800;
    line-height: 1.15;
    padding: 20px 0 10px;
}

/* Lista de motivos - texto aumentado e maior espaçamento entre itens */
.reasons {
    list-style: none;
    padding: 10px 0 0;
    margin: 0 0 1.9rem;
    display: grid;
    gap: 0.9rem;        
}

.reasons li {
    display: flex;
    gap: 0.8rem;
    align-items: center;
    color: rgba(255,255,255,0.95);
    font-weight: 700;
    font-size: 1rem;     
    line-height: 1.25;
}

.reason-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--color-red);
}

/* divisor e estatísticas com destaque tipográfico */
.card-divider {
    height: 1px;
    background: rgba(255,255,255,0.06);
    margin: 0.9rem 0;
}

.card-stats {
    display: flex;
    gap: 1.25rem;
    justify-content: space-between;
    align-items: center;
}

.stat {
    text-align: center;
    flex: 1;
}

.stat-num {
    font-weight: 900;
    font-size: 1.6rem;  /* números maiores para impacto */
    line-height: 1;
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.85);
    margin-top: 0.25rem;
}

/* CSS: estilos para a seção Nossos Serviços */
.servicos-section {
    background: var(--color-white);
    color: #111; /* texto escuro para boa leitura no fundo branco */
    padding: 3.5rem 1rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.servicos-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 2.25rem; /* mantém o espaçamento inferior */
}

.titulo-servicos {
    font-size: clamp(2.5rem, 3.8vw, 3.5rem);
    margin-top: 2rem;
    font-weight: 800;
    color: #111;
    line-height: 1.05;
    text-align: center; /* reforça centralização */
}

.titulo-servicos span {
    color: var(--color-red);
}

.subtitulo-servicos {
    margin: 0 auto;
    color: rgba(17,17,17,0.72);
    font-size: 1.3rem;
    max-width: 780px;
    line-height: 1.6;
    text-align: center; /* centraliza subtítulo */
}

/* Grid de cards */
.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

/* Card */
.servico-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(2, 6, 23, 0.493); /* sombra suave e difusa */
    border: 1px solid rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    transition: transform .18s ease, box-shadow .18s ease; /* transição suave ao pairar */
}

.servico-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 40px rgba(8, 15, 20, 0.09);
}

/* Imagem do card - área relativa para posicionar o badge */
.card-media {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10; /* mantém proporção agradável */
    overflow: hidden;
    background: #f2f2f2;
}

/* imagem responsiva */
.card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    -o-object-fit: cover;
}

/* badge redondo no canto superior esquerdo da foto */
.media-badge {
    position: absolute;
    left: 12px;
    top: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 999px;
    background: var(--color-red);
    color: var(--color-white);
    box-shadow: 0 10px 14px rgba(5, 10, 14, 0.493);
}

.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 */
.card-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    flex: 1 1 auto;
}

.card-title {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 800;
    color: #111;
}

.card-desc {
    margin: 0;
    color: rgba(17,17,17,0.72);
    font-size: 0.96rem;
    line-height: 1.55;
}

/* CTA: Precisa de um orçamento? */
.orcamento-cta {
    background: transparent; /* fica dentro da seção branca - card destaca por si só */
    padding: 2.25rem 1rem;
    color: #111;
}

.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 i[data-lucide] {
    width: 18px;
    height: 18px;
}

/* Seção Nossos Trabalhos */
.trabalhos-section {
    background: var(--color-white);
    color: #111;
    padding: 4rem 1rem;
}

.titulo-trabalhos {
    font-size: clamp(2.5rem, 3.8vw, 3.5rem);
    margin: 0 0 0.5rem;
    font-weight: 800;
    color: #111;
    line-height: 1.05;
    text-align: center;
}

.titulo-trabalhos span {
    color: var(--color-red);
}

.subtitulo-trabalhos {
    margin: 0 auto 1.75rem;
    color: rgba(17,17,17,0.72);
    font-size: 1.3rem;
    max-width: 820px;
    line-height: 1.6;
    text-align: center;
}

/* filtros */
.trabalhos-filters {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    user-select: none;
}

.filter-btn {
    background: transparent;
    border: 1px solid rgba(0,0,0,0.08);
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    font-weight: 700;
    cursor: pointer;
    color: #111;
    transition: background .15s ease, color .15s ease, transform .12s ease;
}

.filter-btn:hover {
    transform: translateY(-3px);
}

.filter-btn.active,
.filter-btn[aria-pressed="true"] {
    background: var(--color-red);
    color: #fff;
    border-color: var(--color-red);
}

/* grid de trabalhos */
.trabalhos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* sempre 3 colunas em telas maiores */
    gap: 1.5rem;
    margin-top: 1rem;
    grid-auto-rows: 1fr; /* garante que todas as linhas tenham altura igual */
}

/* card */
.work-card {
    display: flex;
    flex-direction: column;
    height: 100%; /* importa para preencher a linha com a mesma altura */
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: 0 20px 48px rgba(2, 6, 23, 0.493);
    transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}

.work-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(2,6,23,0.09);
}

/* mídia (imagem) com badge */
.work-media {
    position: relative;
    width: 100%;
    height: 220px;          /* altura fixa para desktop */
    background: #f2f2f2;
    flex: 0 0 auto;         /* não cresce - mantém altura definida */
}

.work-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* badge no canto superior esquerdo da imagem */
.work-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--color-red);
    color: #fff;
    padding: 6px 10px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 0.78rem;
    box-shadow: 0 8px 20px rgba(2,6,23,0.08);
    text-transform: capitalize;
}

/* corpo do card */
.work-body {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    flex: 1 1 auto; /* permite que o body cresça para igualar alturas dos cards */
    justify-content: space-between;
}

.work-title {
    margin: 0;
    font-size: 1.05rem;
    color: #111;
    font-weight: 800;
}

.work-sub {
    margin: 0;
    color: rgba(17,17,17,0.7);
    font-size: 0.95rem;
}

/* itens (duas frases) - cor mais escura */
.work-items {
    margin-top: 0.5rem;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.work-items li {
    color: rgba(17,17,17,0.85);
    font-weight: 700;
    font-size: 0.9rem;
}

/* esconder cards filtrados */
.work-card.hidden {
    display: none; /* simples e performático */
}


/* Seção: Sobre a JMS CAR */
.sobre-section {
    background: var(--color-white);
    color: #111;
    padding: 4.25rem 1rem;
}

.sobre-header {
    text-align: center;
    margin-bottom: 2rem;
}

/* Título — JMS CAR em vermelho */
.sobre-title {
    font-size: clamp(2.5rem, 3.8vw, 3.5rem); /* solicitado */
    margin: 0;
    font-weight: 900;
    line-height: 1.02;
    color: #111;
}

.sobre-title span {
    color: var(--color-red); /* JMS CAR em vermelho */
}

/* Layout interno: texto à esquerda, imagem à direita */
.sobre-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 520px; /* coluna da imagem à direita */
    gap: 2.5rem;
    align-items: center;
    padding: 0 1.25rem;
}

/* Texto (esquerda) */
.sobre-text {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* Subtítulo (maior) */
.sobre-sub {
    margin: 0;
    font-size: 1.3rem; /* solicitado */
    color: rgba(17,17,17,0.95);
    line-height: 1.25;
}

/* Texto descriptivo */
.sobre-desc {
    margin: 0;
    color: rgba(17,17,17,0.78);
    font-size: 1rem;
    line-height: 1.6;
}

/* Botão grande vermelho */
.btn-sobre {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    background: var(--color-red);
    color: var(--color-white);
    padding: 0.9rem 1.4rem;
    border-radius: 10px;
    font-weight: 800;
    text-decoration: none;
    border: 2px solid transparent;
    font-size: 1rem;
    width: fit-content;
    margin-top: 0.25rem;
    transition: transform .12s ease, box-shadow .12s ease, opacity .12s ease;
}

.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 {
    display: block;
    margin: 0;
    align-self: center;
    box-shadow: 0 20px 48px rgba(2, 6, 23, 0.493);
}

.sobre-media img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 10px;
    border: 8px solid #fff; 
    transition: transform .18s ease, box-shadow .18s ease;
}

.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 */
.sobre-metricas {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.metric-card {
    background: var(--color-white);
    border-radius: 10px;
    padding: 1.5rem 1rem;
    text-align: center;
    box-shadow: 0 20px 48px rgba(2, 6, 23, 0.493);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform .18s ease, box-shadow .18s ease;
}

.metric-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0px 0px rgba(2,6,23,0.09);
}

/* Novo: fundo redondo e vermelho claro */
.metric-icon-wrapper {
    background: rgba(255, 0, 0, 0.15); /* vermelho claro */
    border-radius: 50%;
    padding: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.metric-icon {
    width: 28px;
    height: 28px;
    color: var(--color-red);
}

.metric-num {
    font-size: 2rem;
    font-weight: 900;
    color: #111;
    margin-bottom: 0.25rem;
}

.metric-label {
    font-size: 0.95rem;
    color: rgba(17,17,17,0.75);
    font-weight: 600;
}

/* Seção: Antes e Depois */

/* container / background */
.antes-depois {
    background: #0e1a2b; /* fundo azulado */
    padding: 4rem 1rem;
    color: var(--color-white);
}

/* título / subtítulo */
.antes-depois .section-title {
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 0.5rem;
}

.antes-depois .text-red { color: var(--color-red); }
.antes-depois .text-green { color: #34d399; }

.antes-depois .section-subtitle {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 2.5rem;
    color: rgba(255,255,255,0.85);
    font-size: 1.05rem;
}
.carousel-panel {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    background: #182c499d;
    border-radius: 12px;
    border: 1px solid rgba(2,6,23,0.06);
    box-shadow: 0 30px 80px rgba(2,6,23,0.18);
}
.slider-wrapper { position: relative; overflow: hidden; }
.slider-track { display: flex; transition: transform 0.45s cubic-bezier(.22,.9,.35,1); }
.slide { min-width: 100%; display: flex; flex-direction: column; gap: 1rem; box-sizing: border-box; padding: 8px 0; }
.slide-inner {
    display: flex;
    flex-direction: column; /* imagens acima, info abaixo */
    gap: 1rem;
    align-items: stretch;
}

/* imagens lado a lado (sem espaço entre elas) */
.images-wrapper {
    display: flex;
    gap: 0;               
    border-radius: 10px;
    overflow: hidden;      
    background: #000;     
    width: 100%;
}

/* cada imagem ocupa metade do wrapper; altura fixa via clamp para manter mesmo tamanho */
.image-box,
.image-container {
    position: relative;
    width: 50%;
    height: clamp(260px, 33vw, 420px); /* ajustável conforme viewport, mas igual entre as duas */
    overflow: hidden;
    flex-shrink: 0;
    display: block;
}

/* imagem sempre cobre totalmente o container */
.image-box img,
.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Badges no canto superior esquerdo de cada imagem */
.badge-image {
    position: absolute;
    top: 12px;    /* canto superior esquerdo */
    left: 12px;
    padding: 0.35rem 0.75rem;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 6px;
    z-index: 6;
    box-shadow: 0 6px 18px rgba(2,6,23,0.12);
}

.badge-red { background: var(--color-red); color: var(--color-white); }
.badge-green { background: #34d399; color: var(--color-white); }

/* ---- INFO ROW (abaixo das imagens): texto à esquerda, botões à direita ---- */
.slide-info {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    box-sizing: border-box;
    padding: 0.5rem 0.25rem;
}

/* texto (esquerda) */
.slide-text {
    flex: 1 1 60%;
    min-width: 0;
}

.slide-text h3 {
    margin: 0 0 0.4rem 0;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-white);
    line-height: 1.15;
}

.slide-text p {
    font-size: 1.2rem;
    margin: 0 0 0.6rem 0;
    color: var(--color-white);
    line-height: 1.5;
}

/* badge informativa (abaixo do texto) */
.badge-info {
    display: inline-block;
    background: rgba(224, 167, 167, 0.897);
    color: var(--color-red);
    border: 1px solid rgba(255,0,0,0.18);
    padding: 0.25rem 0.75rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 8px;
}

/* área de botões (direita) */
.slide-arrows {
    display: flex;
    flex-direction: row;      /* <-- agora em linha */
    gap: 0.5rem;
    align-items: center;
    justify-content: flex-end; /* ou center, se preferir centralizar */
    flex: 0 0 auto;
    min-width: 140px;
    pointer-events: none;
}

.slide-arrows .arrow { 
  pointer-events: auto; /* os botões continuam clicáveis */
}

/* estilo dos botões */
.arrow {
    background: rgba(2,6,23,0.06);
    color: var(--color-white);
    border: 1px solid var(--color-white);
    padding: 0.6rem 0.9rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.15rem;
    transition: transform .12s ease, background .12s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.arrow:hover,
.arrow:focus {
    transform: translateY(-2px);
    background: rgba(2,6,23,0.10);
    outline: none;
}

/* foco acessível */
.arrow:focus { box-shadow: 0 0 0 4px rgba(52,211,153,0.12); }

/* Stats (4 itens) — dentro da mesma seção Antes e Depois */
.antes-stats {
    max-width: 1200px;
    margin: 2.25rem auto 0; /* separação do carousel */
    padding: 0 1rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 por linha em desktop */
    gap: 1rem;
    align-items: stretch;
}

/* cada item */
.stat-item {
    padding: 1.25rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
}

/* número grande e vermelho */
.stat-number {
    color: var(--color-red);
    font-weight: 900;
    font-size: clamp(1.6rem, 3.6vw, 2.4rem);
    line-height: 1;
}

/* legenda / frase */
.stat-label {
    color: var(--color-white);
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1.25;
}

/* hover leve */
.stat-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(2,6,23,0.09);
    transition: transform .18s ease, box-shadow .18s ease;
}


/* Seção Depoimentos */
.depoimentos-section {
    background: var(--color-white);
    color: #111;
    padding: 2rem 1rem;
}

.depoimentos-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 2rem;
}

.depo-title {
    font-size: clamp(1.8rem, 3.6vw, 2.6rem);
    margin: 0 0 2rem;
    font-weight: 800;
    color: #111;
}

.depo-title .text-red {
    color: var(--color-red);
}

/* subtítulo */
.depo-sub {
    margin: 0 0 2rem;
    color: rgba(17,17,17,0.72);
    font-size: 1.02rem;
    line-height: 1.6;
}

/* grid de depoimentos */
.depo-grid {
    max-width: 1200px;
    margin: 2rem auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 por linha */
    gap: 1.25rem;
}

/* card */
.depo-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: 0 12px 36px rgba(2,6,23,0.08);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    min-height: 250px;
}

/* topo: quote + estrelas */
.depo-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

/* icone quote */
.icon-quote {
    width: 30px;
    height: 30px;
    color: var(--color-red);
}

/* estrelas amarelas */
.stars {
    display: flex;
    gap: 0.25rem;
}

.star {
    width: 16px;
    height: 16px;
    color: #f6b93b; /* amarelo */
}

/* texto do depoimento */
.depo-text {
    margin: 0;
    color: rgba(2,6,23,0.8);
    font-size: 0.98rem;
    line-height: 1.6;
    flex: 1 1 auto; /* faz o texto ocupar espaço e empurra o footer para baixo */
}

/* rodapé: autor à esquerda, badge à direita */
.depo-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 0.5rem;
    position: relative;
    padding-top: 1rem; 
}

.depo-footer::before {
    content: "";
    position: absolute;
    top: 0; 
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(207, 207, 207, 0.671); 
    border-radius: 1px;
    display: block;
}

/* autor */
.depo-author {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.depo-name {
    font-weight: 800;
    color: rgba(2,6,23,0.95);
    font-size: 0.98rem;
}

.depo-car {
    font-size: 0.9rem;
    color: rgba(2,6,23,0.6);
}

/* badge da categoria */
.depo-badge {
    background: rgba(255,0,0,0.06); /* fundo suave */
    color: var(--color-red);
    border: 1px solid rgba(255,0,0,0.12);
    padding: 0.20rem 0.50rem;
    font-weight: 700;
    font-size: 0.82rem;
    border-radius: 999px;
    white-space: nowrap;
}

/* hover */
.depo-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 68px rgba(2,6,23,0.10);
    transition: transform .18s ease, box-shadow .18s ease;
}

/* Seção: Nossa Estrutura */
.estrutura-section {
    background: var(--color-white);
    color: #111;
    padding: 2rem 1rem;
}

.estrutura-header {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 2rem;
}

.estrutura-title {
    font-size: clamp(1.8rem, 3.6vw, 2.6rem);
    margin: 0 0 2rem;
    font-weight: 800;
    color: #111;
}

.estrutura-title .text-red {
    color: var(--color-red);
}

.estrutura-sub {
    margin: 0;
    color: rgba(17,17,17,0.72);
    font-size: 1.02rem;
    line-height: 1.6;
}

/* Grid de 4 cards */
.estrutura-grid {
    max-width: 1200px;
    margin: 2rem auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    align-items: stretch; /* força as colunas a igualarem a altura dos cards */
}

/* Card */
.estrutura-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 14px 40px rgba(2,6,23,0.06);
    border: 1px solid rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform .18s ease, box-shadow .18s ease;
}

/* mídia: foto no topo do card */
.estrutura-media {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10; /* mantém proporção consistente */
    overflow: hidden;
    background: #f2f2f2;
}

.estrutura-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* badge no canto superior esquerdo da imagem */
.estrutura-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 6px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--color-white);
    background: rgba(255, 0, 0, 0.95); /* vermelho padrão */
    border-radius: 999px;
    box-shadow: 0 10px 30px rgba(2,6,23,0.08);
    z-index: 4;
}

/* corpo do card
   -> Grid interno para alinhar títulos/descrição/lista na mesma altura entre cards */
.estrutura-body {
    padding: 1rem 1.25rem 1.5rem;
    display: grid;
    grid-template-rows: auto minmax(3.6em, auto) 1fr; /* fixa altura mínima da descrição */
    gap: 0.75rem;
    flex: 1 1 auto;
}

.estrutura-card-title {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 800;
    color: #111;
}

.estrutura-card-sub {
    margin: 0;
    color: rgba(17,17,17,0.72);
    font-size: 0.95rem;
    line-height: 1.45;
    /* garante pelo menos ~2 linhas de altura (com line-height 1.45) para alinhar os itens */
    min-height: 2.9em;
}

/* lista de itens */
.estrutura-list {
    list-style: none; /* remove marcadores padrão */
    padding: 0;
    margin: 0.25rem 0 0; /* pequena separação do texto acima */
    align-self: start;   /* começa sempre no mesmo nível dentro do grid */
}

.estrutura-list li {
    position: relative;
    padding-left: 1.5rem; /* espaço para o ponto */
    margin-bottom: 0.5rem;
    font-size: 0.94rem;
    color: rgba(17,17,17,0.78);
    font-weight: 600;
}

.estrutura-list li:last-child {
    margin-bottom: 0; /* remove espaço extra no fim */
}

.estrutura-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 8px;
    height: 8px;
    background-color: var(--color-red);
    border-radius: 50%;
}

/* hover */
.estrutura-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 68px rgba(2,6,23,0.10);
}


/* Cabeçalho da Equipe */
.equipe-header {
    text-align: center;
    margin: 3rem 0 2rem;
}

.equipe-title {
    font-size: clamp(1.8rem, 3.6vw, 2.6rem);
    font-weight: 800;
    color: #111;
}

.equipe-title .text-red {
    color: var(--color-red);
}

/* Grid de 3 cards */
.equipe-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

/* Card da equipe */
.equipe-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem 1rem 1.5rem;
    text-align: center;
    box-shadow: 0 14px 40px rgba(2,6,23,0.06);
    border: 1px solid rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Foto redonda */
.equipe-foto {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 0.5rem;
}

/* Badge vermelha pequena */
.equipe-badge-vermelha {
    background: var(--color-red);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 999px;
    margin-bottom: 0.8rem;
    display: inline-block;
}

/* Nome e especialidade */
.equipe-nome {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
}

.equipe-especialidade {
    font-size: 0.95rem;
    color: rgba(17,17,17,0.72);
    margin: 0.3rem 0 1rem;
}

/* Badges cinzas lado a lado */
.equipe-badges-cinza {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.badge-cinza {
    background: rgba(0,0,0,0.08);
    color: #333;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 8px;
}
.qualidade-section {
    background: rgba(0,0,0,0.02);
    padding: 3rem 1rem;
    text-align: center;
    border-radius: 15px;
}
.qualidade-title {
    font-size: clamp(1.6rem, 3.2vw, 2.4rem);
    font-weight: 800;
    margin-bottom: 2rem;
    color: #111;
}
.qualidade-title .text-red {
    color: var(--color-red);
}

.qualidade-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.qualidade-item {
    background: transparent;
    padding: 1rem;
}

.qualidade-icon {
    background: rgba(255, 0, 0, 0.08);
    color: var(--color-red);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    font-size: 1.6rem;
}

.qualidade-item h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.qualidade-item p {
    font-size: 0.9rem;
    color: rgba(17, 17, 17, 0.72);
    margin: 0;
}

.bloco-visita {
  background-color: var(--color-red);
  color: var(--color-white);
  text-align: center;
  padding: 30px 20px;
  border-radius: 8px;
  margin: 40px auto;
  max-width: 600px;
  box-shadow: 0 14px 40px rgba(2, 6, 23, 0.815);

}

.bloco-visita-titulo {
  font-size: 2rem;
  margin-bottom: 10px;
}

.bloco-visita-subtitulo {
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto 25px;
}

.bloco-visita-botao {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #fff;
  color: var(--color-red);
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s;
}

.bloco-visita-botao:hover {
  background-color: #f5f5f5;
}

.bloco-visita-botao i {
  width: 18px;
  height: 18px;
}

/* ========= Entre em Contato ========= */
.contato-section {
  background: rgba(2,6,23,0.02);
  padding: 0rem 1rem;
}

.contato-container {
  max-width: 1400px;
  margin: 0 auto;
}

.contato-header {
  text-align: center;
  margin-bottom: 2rem;
}

.contato-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: #111;
  margin: 1rem 1rem .5rem;
  padding-top: 2rem;
}

.contato-title .text-red { color: var(--color-red); }

.contato-sub {
  color: rgba(17,17,17,0.7);
  font-size: 1.2rem;
  margin: 0;
}

/* Grid principal */
.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2.5rem;
  align-items: start;
  padding-top: 20px
}

/* ====== Esquerda: cards ====== */

.contato-left-title {
    margin-bottom: 1.8rem; /* Ajuste o valor conforme necessário */
}

.card-info {
  display: flex;
  align-items: center;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.185);
  box-shadow: 0 14px 40px rgba(2, 6, 23, 0.226);
  position: relative;
  height: 200px;
}

.card-info::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  border-radius: 14px 0 0 14px;
}

.card-vermelho::before { background: var(--color-red); }
.card-verde::before   { background: #16a34a; }
.card-azul::before    { background: #2563eb; }
.card-roxo::before    { background: #7c3aed; }

.icon-pill {
  display: inline-flex;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-pill-red   { background: rgba(255,0,0,0.12);   color: var(--color-red); }
.icon-pill-green { background: rgba(22,163,74,0.12); color: #16a34a; }
.icon-pill-blue  { background: rgba(37,99,235,0.12); color: #2563eb; }
.icon-pill-purple{ background: rgba(124,58,237,0.12);color: #7c3aed; }

.card-info-icon i { width: 22px; height: 22px; }

.card-info-content h4 {
  margin: 0 0 .35rem;
  font-size: 1.12rem;
  font-weight: 600;
  color: #111;
}

.card-info-content p {
  margin: 0;
  font-size: 1rem;
  color: rgba(17,17,17,0.75);
  margin-top: 1rem;
  margin-bottom: 1.2rem;
}

.card-info .muted { color: rgba(17,17,17,0.6); }

/* 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-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.form-field {
  display: flex;
  flex-direction: column;
}

.form-field label {
  margin-bottom: 0.4rem;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--color-dark);
}

.form-card h3 {
  margin: 0 0 .35rem;
  font-size: 1.25rem;
  font-weight: 900;
  color: #111;
}

.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 .form-field-full {
  grid-column: 1 / -1;
}

.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 {
  display: flex;
  align-items: center;
  gap: .55rem;
  background: var(--color-red);
  color: #fff;
  border: 2px solid var(--color-red);
  border-radius: 10px;
  padding: .75rem 1.25rem;
  font-weight: 800;
  cursor: pointer;
  margin: 1.25rem auto 0;
}

.btn-submit:hover { filter: brightness(1.02); }

.btn-submit i { width: 18px; height: 18px; }

/* Atendimento rápido (banner vermelho) */
.rapido-banner {
    display: flex;
    flex-direction: column; /* empilha texto e botão */
    align-items: center; /* centraliza horizontalmente */
    gap: 1rem; /* espaçamento entre texto e botão */
    background: var(--color-red);
    color: #fff;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 15px;
    box-shadow: 0 14px 40px rgba(2, 6, 23, 0.226);
}

.rapido-banner h4 {
  margin: 0 0 .2rem;
  font-size: 1.05rem;
  font-weight: 900;
}

.rapido-banner p {
  margin: 0;
  opacity: 0.95;
}

.btn-whats-strong {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #16a34a;
    color: #fff;
    padding: 0.8rem 1.2rem;
    border-radius: 4px;
    font-weight: 500;
    text-decoration: none;
}

.btn-whats-strong:hover { 
  background-color: var(--color-green);
}

/* Rodapé */

.site-footer {
  background-color: #0e1a2b;
  color: #bdbdbd;
  padding: 3rem 1rem 1rem;
  font-family: Arial, sans-serif;
}

/* ===== 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;
}

.footer-logo { max-width: 180px; margin-bottom: 1rem; }
.footer-brand p { margin: 0; }

/* Títulos de bloco */
.footer-title {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: bold;
  color: #fff;
}

/* Links padrão */
.footer-links, .footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a {
  color: #bdbdbd;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-links a:hover { color: #ff4c4c; }

/* Contato */
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.footer-contact strong { display: block; }
.footer-contact span { font-size: 0.9rem; color: #ccc; }

/* Ícones */
.icon-red { color: #ff4c4c; }
.icon-green { color: #25d366; }
.icon-blue { color: #1e90ff; }
.icon-purple { color: #a64ca6; }

/* ===== Faixa de categorias + serviços ===== */
.footer-cats-wrap{
  max-width: 1200px;
  margin: 0 auto 2rem;
  padding: 0 1rem;
}

.footer-cats-head{
  display: flex;
  align-items: center;
  justify-content: center; /* centraliza horizontalmente */
  margin-bottom: 1rem;
}

.footer-cats-head .footer-title{
  text-align: center;
  color: #fff;
  font-weight: 900;
  /* tamanho fluido com limite */
  font-size: clamp(1.25rem, 1.2vw + 1rem, 1.6rem);
  letter-spacing: .3px;
  margin: 0;                 /* remove margem padrão */
  position: relative;
}

/* Barra de destaque abaixo do título */
.footer-cats-head .footer-title::after{
  content: "";
  display: block;
  width: 220px;              /* ajuste fino do comprimento */
  max-width: 60vw;
  height: 3px;
  margin: .55rem auto 0;
  background: linear-gradient(90deg, #ff4c4c, rgba(255,255,255,.25));
  border-radius: 999px;
  opacity: .95;
}

/* (Opcional) leve brilho para realçar no fundo escuro */
.footer-cats-head .footer-title{
  text-shadow: 0 1px 0 rgba(0,0,0,.25);
}

.footer-cats__loading{ opacity: .65; }

/* Grid de categorias (cada coluna = 1 categoria) */
.footer-cats__grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem 1.5rem;
}

/* Card/coluna da categoria */
.footer-cat__title{
  font-size: 1rem;
  font-weight: 800;
  margin: 0 0 .5rem;
}
.footer-cat__title a{
  color: #ffffff;
  text-decoration: none;
}
.footer-cat__title a:hover{
  color: #ff4c4c;
}
.footer-cat__list{
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-cat__list li{ margin: .25rem 0; }
.footer-cat__list a{
  color: #bdbdbd;
  text-decoration: none;
  transition: color .2s ease, text-decoration-color .2s ease;
}
.footer-cat__list a:hover{
  color: #ffffff;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, .5);
}
.footer-cat__empty span{ opacity: .7; }

/* ===== Descrição ampla ===== */
.footer-desc{
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 1rem 0;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.footer-desc p{
  margin: 0;
  color: #d9d9d9;
  line-height: 1.65;
  font-size: 0.98rem;
}

/* ===== Rodapé inferior (centralizado) ===== */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 2rem;
  padding: 20px 16px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;

  /* Centralização robusta */
  display: grid;
  place-items: center;
  text-align: center;

  /* Se no futuro houver múltiplos elementos, eles ficarão centralizados */
  gap: .5rem;
  font-size: 0.9rem;
}
.footer-bottom p { margin: 0; }
.footer-bottom a {
  color: #fff;
  text-decoration: underline;
}
.footer-bottom a:hover { color: #ff4c4c; }

/* ===== Responsivo ===== */
@media (max-width: 1100px){
  .footer-cats__grid{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@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-logo{ margin: 0 auto 1rem; display: block; }
  .footer-title{ text-align: center; margin-bottom: .75rem; }

  .footer-links{ align-items: center; }
  .footer-links li{ display: block; }
  .footer-links a{ display: inline-block; }

  .footer-contact{ align-items: center; }
  .footer-contact li{
    justify-content: center;
    align-items: center;
  }
  .footer-contact div{ text-align: center; }

  .footer-desc p{ text-align: center; }

  .footer-cats-head{ justify-content: center; }
  .footer-cats__grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 540px){
  .footer-cats__grid{
    grid-template-columns: 1fr;
  }
}
/* Responsive */
@media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-left {
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;  
    }
    .hero-card { order: 2; }
    .servicos-grid {
        gap: 1.75rem;
    }

    .card-body {
        padding: 1.5rem;
    }

    .media-badge {
        width: 44px;
        height: 44px;
        left: 14px;
        top: 14px;
    }

    .badge-icon {
        width: 20px;
        height: 20px;
    }

    .trabalhos-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 1fr;
    }

    .work-media {
        height: 200px;
    }

    .work-body {
        padding: 1.25rem;
    }

    .work-badge {
        top: 14px;
        left: 14px;
        padding: 7px 12px;
        font-size: 0.85rem;
    }

    .sobre-inner {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    /* colocar a imagem abaixo do texto para leitura móvel */
    .sobre-media {
        order: 2;
        width: 100%;
    }

    .sobre-text {
        order: 1;
    }

    .sobre-media img {
        border-width: 6px;
    }

    .sobre-metricas {
        grid-template-columns: repeat(2, 1fr);
    }

    .btn-sobre {
        display: block;       
        margin: 0 auto;       
        text-align: center;  
    }
    
    .slide-inner { 
        align-items: stretch; 
    }
    .images-wrapper {
        display: grid;
        grid-template-columns: 1fr; 
        border-radius: 10px;
        overflow: hidden;
        background: #000;
        width: 100%;
    }

    .image-box,
    .image-container {
        width: 100%;
        height: auto;          
        aspect-ratio: 16/10;  
        position: relative;
        overflow: hidden;
        display: block;
    }

    .image-box img,
    .image-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;     /* cobre sem distorcer */
        display: block;
    }

    .badge-image {
        top: 10px;
        left: 10px;
        bottom: auto; /* garante que não vá pro rodapé por herança */
    }

    .container {
        padding: 0;
    }

    .slide-info {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
        padding: 0;
    }

    .slide-text { order: 1; }
     .slide-arrows {
        order: 2;
        flex-direction: row;
        justify-content: center;
        min-width: 0;
        gap: 0.75rem;
        padding-top: 20px;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .depoimentos-section {
        padding: 2rem 1rem;
    }

    .depoimentos-header {
    text-align: center;
    margin-bottom: 1.5rem;
  }

  .depo-title {
    font-size: 1.6rem;
    line-height: 1.3;
  }

  .depo-sub {
    font-size: 0.95rem;
    line-height: 1.4;
    max-width: 100%;
  }

  /* Cards empilhados */
  .depo-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .depo-card {
    padding: 1rem;
    border-radius: 10px;
  }

  .depo-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .icon-quote {
    width: 20px;
    height: 20px;
  }

  .stars {
    font-size: 0.9rem;
  }

  .depo-text {
    font-size: 0.95rem;
    line-height: 1.4;
    margin: 0.5rem 0 1rem;
  }

  .depo-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .depo-name {
    font-size: 1rem;
  }

  .depo-car {
    font-size: 0.85rem;
  }

  .depo-badge {
    font-size: 0.8rem;
    padding: 0.25rem 0.5rem;
  }
    .estrutura-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .equipe-grid {
        grid-template-columns: 1fr; /* um card por linha */
        gap: 1rem;
    }

    .equipe-card {
        max-width: 350px;
        margin: 0 auto; /* centraliza no mobile */
    }

    .bloco-visita {
      margin: 0 auto;
      margin-bottom: 30px;
    }

    /* Qualidade Certificada */
.qualidade-section {
    background: rgba(0,0,0,0.02);
    padding: 3rem 1rem;
    text-align: center;
}

.qualidade-title {
    font-size: clamp(1.6rem, 3.2vw, 2.4rem);
    font-weight: 800;
    margin-bottom: 2rem;
    color: #111;
}

.qualidade-title .text-red {
    color: var(--color-red);
}

.qualidade-grid {
        grid-template-columns: 1fr; /* 1 coluna */
    }

.qualidade-item {
    background: transparent;
    padding: 1rem;
}

.qualidade-icon {
    background: rgba(255, 0, 0, 0.08);
    color: var(--color-red);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    font-size: 1.6rem;
}

.qualidade-item h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.qualidade-item p {
    font-size: 0.9rem;
    color: rgba(17, 17, 17, 0.72);
    margin: 0;
}

.contato-grid {
    grid-template-columns: 1fr;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

/* pequena melhoria visual quando o painel está em foco */
.carousel-panel:focus-within {
    box-shadow: 0 36px 100px rgba(2,6,23,0.22);
    height: auto;
}


/* 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) {
    .mobile-actions {
        grid-template-columns: 1fr; /* um botão por linha */
    }
    .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;
    }
    .trabalhos-section {
        padding: 2.5rem 0.8rem;
    }

    .filter-btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.95rem;
    }

    .work-items {
        gap: 1.5rem;
    }

    .trabalhos-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    .work-media {
        height: 180px;
    }

    .work-card {
        height: auto; /* em telas muito pequenas deixamos altura automática */
    }

    .sobre-section {
        padding: 2.25rem 0.8rem;
    }

    .sobre-title {
        font-size: clamp(1.9rem, 6.2vw, 2.6rem);
    }

    .sobre-sub {
        font-size: 1.15rem;
    }

    .btn-sobre {
        padding: 0.82rem 1.1rem;
        font-size: 0.98rem;
    }
    .sobre-metricas {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-item {
        padding: 1rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }
    .depo-grid {
        grid-template-columns: 1fr;
    }

    .depo-card {
        min-height: auto;
    }

    .icon-quote { width: 20px; height: 20px; }
    .star { width: 14px; height: 14px; }
    .depo-title { font-size: 1.6rem; }
    .estrutura-grid {
        grid-template-columns: 1fr;
    }

    .estrutura-body {
        padding: 0.9rem 1rem;
    }

    .contato-form .form-grid {
    grid-template-columns: 1fr; /* empilha Nome e Telefone */
  }

  .rapido-banner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-container {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
  }
}

/* ======= SOBRE (HERO) ======= */
.hero-inner-sobre{
  max-width: 900px;
  margin: 0 auto;
  padding: 2.25rem 1rem 2.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem; /* espaçamento entre badge, título, subtítulo e stats */
}

/* 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) */
.sobre-stats{
  margin: 1.25rem auto 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 1.25rem;
  max-width: 920px;
}

.sobre-stats .stat{
  border-radius: 12px;
  padding: 2rem 1.5rem;
  color: var(--color-white);
}

.sobre-stats .stat-num{
  color: var(--color-red);           /* destaque numérico no vermelho do tema */
  font-weight: 900;
  font-size: clamp(1.75rem, 4.5vw, 2.25rem);
  line-height: 1;
}

.sobre-stats .stat-label{
  margin-top: 0.25rem;
  color: rgba(255,255,255,0.85);
  font-size: clamp(0.9rem, 2.2vw, 1rem);
}

/* ======= SECTION: Nossa Jornada (fundo branco) ======= */
.section-journey{
  background: var(--color-white);
  color: var(--color-black);
  padding: 3.25rem 1rem;
}

.journey-container{
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 0.5rem;
  text-align: center;
}

/* Badge própria */
.journey-badge{
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(233, 60, 60, 0.10);
  border: 1px solid var(--color-red);
  margin-bottom: 1.2rem;
}

.journey-badge__text{
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-red);
  letter-spacing: 0.01em;
}

/* Título e subtítulo */
.journey-title{
  margin: 0.25rem auto 2rem;
  font-size: clamp(2rem, 4.8vw, 3rem);
  font-weight: 800;
  line-height: 1.05;
}
.journey-title span{
  color: var(--color-red);
}
.journey-subtitle{
  margin: 0 auto 1.75rem;
  max-width: 820px;
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  color: rgba(17,17,17,0.72);
  line-height: 1.6;
}

/* Lista */
.journey-list{
  list-style: none;
  margin: 1.25rem auto 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
  max-width: 980px;             /* largura total como no mock */
}

/* item: coluna fixa p/ círculo + coluna flexível p/ card */
.journey-item{
  display: grid;
  grid-template-columns: 72px 1fr;  /* círculo = 72px, card ocupa o restante */
  align-items: center;
  gap: 1.25rem;
}

/* círculo */
.journey-item__left{ display: flex; justify-content: center; }
.journey-circle{
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--color-red);
  color: var(--color-white);
  font-weight: 800;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
}

/* CARD claro à direita (como na imagem) */
.journey-item__right{ min-width: 0; }          /* evita estourar grid */
.journey-card{
  width: 100%;
  background: #f6f8fb;                         /* tom claro do card */
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);     /* leve sombra */
}

/* Cabeçalho: ano vermelho + título preto em uma linha */
.journey-head{
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;                              /* quebra bonito no mobile */
  margin-bottom: 8px;
}
.journey-year{
  color: var(--color-red);
  font-weight: 900;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.journey-heading{
  margin: 0;
  color: var(--color-black);
  font-weight: 800;
  font-size: 1.15rem;
  line-height: 1.2;
}

/* Descrição cinza */
.journey-desc{
  margin: 0;
  color: rgba(17,17,17,0.72);
  font-size: 0.98rem;
  line-height: 1.55;
  text-align: left;
}

/* espaçamento vertical entre itens (sem borda separadora) */
.journey-item + .journey-item{ margin-top: 10px; }


/* ======= SECTION: Nossos Valores ======= */
.section-values{
  background: var(--color-white);
  color: var(--color-black);
  padding: 3.5rem 1rem;
}
.values-container{
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* Badge */
.values-badge{
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(233, 60, 60, 0.10);
  border: 1px solid var(--color-red);
  margin-bottom: 1.2rem;
}

.values-badge__text{
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-red);
}

/* Título */
.values-title{
  margin: 0.25rem 0 0.75rem;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 2rem;
}
.values-title span{ color: var(--color-red); }

.values-subtitle{
  margin: 0 auto 2rem;
  max-width: 780px;
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  color: rgba(17,17,17,0.72);
  line-height: 1.6;
}

/* Grid de Cards */
.values-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

/* Card */
.value-card{
  background: #fff;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  transition: transform .18s ease, box-shadow .18s ease;
}
.value-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.08);
}

/* Ícone */
.value-icon{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(233, 60, 60, 0.12);
  color: var(--color-red);
  margin-bottom: 0.5rem;
}
.value-icon i[data-lucide]{
  width: 26px;
  height: 26px;
  stroke-width: 2.2;
}

/* Tipografia */
.value-title{
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0;
  color: var(--color-black);
}
.value-desc{
  font-size: 0.98rem;
  color: rgba(17,17,17,0.72);
  margin: 0;
  line-height: 1.55;
}


/* ======= SECTION: Missão / Visão / Valores ======= */
.section-mvv{
  background: var(--color-white);
  color: var(--color-black);
  padding: 4rem 1rem;
}
.mvv-container{
  max-width: 1200px;
  margin: 0 auto;
}

/* grid responsivo */
.mvv-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
  gap: 2rem;
}

/* card */
.mvv-card{
  background: #fff;
  border-radius: 14px;
  padding: 2rem;
  box-shadow: 0 8px 28px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  transition: transform .18s ease, box-shadow .18s ease;
}
.mvv-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.08);
}

/* ícones com cores específicas */
.mvv-icon{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin-bottom: 0.5rem;
}
.mvv-icon i[data-lucide]{
  width: 28px;
  height: 28px;
  stroke-width: 2.2;
}
.mvv-icon.red{ background: rgba(229,57,53,0.12); color: var(--color-red); }
.mvv-icon.blue{ background: rgba(33,150,243,0.12); color: #2196f3; }
.mvv-icon.green{ background: rgba(0,175,15,0.12); color: var(--color-green); }

/* tipografia */
.mvv-title{
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0;
  color: var(--color-black);
}
.mvv-desc{
  font-size: 1rem;
  color: rgba(17,17,17,0.72);
  margin: 0;
  line-height: 1.6;
  max-width: 90%;
}


/* ======= SECTION: Por que escolher ======= */
.section-why{
  background: var(--color-red);
  color: #fff;
  padding: 5rem 1rem;
  text-align: center;
}
.why-container{
  max-width: 1200px;
  margin: 0 auto;
}

/* Título */
.why-title{
  font-size: 2.8rem; /* maior */
  font-weight: 800;
  margin-bottom: 2rem;
}

.why-subtitle{
  font-size: 1.2rem;
  font-weight: 400;
  max-width: 720px;
  margin: 0 auto 3rem auto;
  line-height: 1.5;
  opacity: 0.9;
}

/* Grid */
.why-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* sempre 3 por linha */
  gap: 2rem;
  justify-items: center;
}

/* Cards */
.why-card{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

/* Ícone dentro de círculo */
.why-icon{
  background: rgba(255, 255, 255, 0.15); /* vermelho claro sobre o fundo */
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-icon i[data-lucide]{
  width: 45px;
  height: 45px;
  stroke-width: 2.5;
}

.why-card h3{
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0;
}
.why-card p{
  font-size: 1rem;
  line-height: 1.5;
  opacity: 0.85;
  margin: 0;
}

/* ======= SECTION: CTA ======= */
.section-cta{
  background: #0e1a2b;
  color: #fff;
  padding: 4rem 1rem;
  text-align: center;
}
.cta-container{
  max-width: 1100px;
  margin: 0 auto;
}

.cta-title{
  margin: 0 0 0.75rem 0;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.05;
}
.cta-subtitle{
  margin: 0 auto 2rem;
  max-width: 820px;
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
}

/* Ações */
.cta-actions{
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
}

/* Botões base */
.btn-cta{
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.25rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 800;
  font-size: 1rem;
  line-height: 1;
  border: 2px solid transparent;
  transition: transform .16s ease, box-shadow .16s ease, background .25s ease, color .25s ease, border-color .25s ease;
  will-change: transform;
}
.btn-cta i[data-lucide]{
  width: 22px; height: 22px; stroke-width: 2.4;
}

/* WhatsApp (vermelho) */
.btn-cta-whats{
  background: var(--color-red);
  color: #fff;
  border-color: var(--color-red);
  box-shadow: 0 10px 24px rgba(229,57,53,0.25);
}
.btn-cta-whats:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(229,57,53,0.35);
}

/* Ligar (transparente com borda branca) */
.btn-cta-call{
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.9);
}
.btn-cta-call:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,0.08);
}

@media (max-width: 768px){
  .section-why .why-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
    justify-items: stretch; /* colunas ocupam a largura toda */
  }
  .section-why .why-card{
    width: 100%; /* o card preenche a coluna */
  }
}

@media (min-width: 768px){
  .sobre-stats{ grid-template-columns: repeat(4, minmax(0,1fr)); }
  .journey-item{ grid-template-columns: 56px 1fr; gap: 0.9rem; }
  .journey-circle{ width: 48px; height: 48px; font-size: 0.95rem; }
  .journey-card{ padding: 14px 16px; border-radius: 12px; }
  .journey-heading{ font-size: 1.05rem; }
}

@media (hover:hover){
  .sobre-stats .stat{ transition: transform .18s ease, box-shadow .18s ease; }
  .sobre-stats .stat:hover{
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.25);
  }
}


/* ======= HERO Tapeçaria ======= */

.hero-inner-tape{
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem 1rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  height: auto;
  margin-bottom: 10px;
}

/* ícones dos botões em branco e tamanho consistente */
.btn-hero-whats i[data-lucide],
.btn-hero-call i[data-lucide]{
  width: 18px;
  height: 18px;
  stroke-width: 2.4;
}

.servicos-section--tape .servicos-grid.servicos-grid--3{
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 por linha */
  gap: 1.5rem;
}

/* Responsivo */
@media (max-width: 900px){
  .servicos-section--tape .servicos-grid.servicos-grid--3{
    grid-template-columns: repeat(2, 1fr); /* 2 por linha */
  }
}
@media (max-width: 600px){
  .servicos-section--tape .servicos-grid.servicos-grid--3{
    grid-template-columns: 1fr; /* 1 por linha */
  }
  .bloco-visita {
    border-radius: 0px;
    margin-bottom: 0px;
  }
}


/* CTA do card */
.card-cta{
  margin-top: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-red);
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
  text-decoration: none;
  padding: 0.65rem 0.9rem;
  border-radius: 10px;
  transition: transform .16s ease, box-shadow .16s ease, background .25s ease;
}
.card-cta i[data-lucide]{
  width: 18px; height: 18px; stroke-width: 2.4;
}
.card-cta:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.10);
}

/* ======= SECTION: FAQ ======= */
.faq-section{
  background: var(--color-white);
  color: var(--color-black);
  padding: 3.5rem 1rem;
}
.faq-container{
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

/* Badge */
.faq-badge{
  display: flex;
  justify-content: center; /* centraliza horizontalmente */
  margin: 0 auto 1rem auto;
  max-width: 200px; /* largura máxima para badge */
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(233, 60, 60, 0.10);
  border: 1px solid var(--color-red);
  margin-bottom: 2rem;
}

.faq-badge__text{
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-red);
}

/* Título e subtítulo */
.faq-title{
  margin: 0.25rem 0 0.75rem;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.05;
}
.faq-title span{ color: var(--color-red); }

.faq-subtitle{
  margin: 0 auto 2rem;
  max-width: 820px;
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  color: rgba(17,17,17,0.72);
  line-height: 1.6;
}

/* Lista/itens */
.faq-list{
  text-align: left;
  margin: 0 auto;
  max-width: 900px;
  display: grid;
  gap: 0.75rem;
}

/* Details base */
.faq-item{
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 12px;
  overflow: clip;
  box-shadow: 0 6px 18px rgba(0,0,0,0.04);
}

/* Summary como botão */
.faq-summary{
  list-style: none;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1rem 1rem 1.1rem;
  cursor: pointer;
  font-weight: 800;
}
.faq-summary::-webkit-details-marker{ display: none; }

/* Ícone seta */
.faq-icon{
  width: 20px; height: 20px; stroke-width: 2.4;
  transition: transform .2s ease;
  color: var(--color-red);
}

/* Conteúdo */
.faq-content{
  padding: 0 1.1rem 1rem 1.1rem;
  color: rgba(17,17,17,0.78);
  font-size: 1rem;
  line-height: 1.6;
  margin-top: 15px;
}

/* Estado aberto */
.faq-item[open] .faq-summary{
  background: rgba(165, 165, 165, 0.06);
}
.faq-item[open] .faq-icon{
  transform: rotate(180deg);
}

/* Hover/Focus */
.faq-summary:hover{ background: rgba(0,0,0,0.03); }
.faq-summary:focus{ outline: 2px solid rgba(0,0,0,0.1); outline-offset: 2px; }


/* Details base */
.faq-item-blue {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 12px;
  overflow: clip;
  box-shadow: 0 6px 18px rgba(0,0,0,0.04);
}

/* Summary como botão */
.faq-summary-blue {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1rem 1rem 1.1rem;
  cursor: pointer;
  font-weight: 800;
}
.faq-summary-blue::-webkit-details-marker{ display: none; }

.faq-icon-blue{
  width: 20px; height: 20px; stroke-width: 2.4;
  transition: transform .2s ease;
  color: var(--color-blue);
}

/* Estado aberto */
.faq-item-blue[open] .faq-summary-blue{
  background: rgba(165, 165, 165, 0.06);
}
.faq-item-blue[open] .faq-icon-blue{
  transform: rotate(180deg);
}

/* Hover/Focus */
.faq-summary-blue:hover{ background: rgba(0,0,0,0.03); }
.faq-summary-blue:focus{ outline: 2px solid rgba(0,0,0,0.1); outline-offset: 2px; }


/* ======= SECTION: CTA Vermelha ======= */
.section-cta-red{
  background: var(--color-red);
  color: #fff;
  padding: 3rem 1rem;
  text-align: center;
}
.cta-red-container{
  max-width: 900px;
  margin: 0 auto;
}

.cta-red-title{
  margin: 0 0 0.75rem 0;
  font-size: clamp(1.8rem, 4.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.05;
}
.cta-red-desc{
  margin: 0 auto 1.75rem;
  max-width: 700px;
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  color: rgba(255,255,255,0.95);
  line-height: 1.6;
}

/* Ações */
.cta-red-actions{
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;   /* impede de quebrar a linha no desktop */
}


/* Botões menores */
.btn-cta-white-red,
.btn-cta-outline-white{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.2rem;
  min-width: 200px;       
  max-width: 300px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1;
  text-decoration: none;
  transition: transform .16s ease, box-shadow .16s ease, background .25s ease, color .25s ease;
  white-space: nowrap;
}

/* WhatsApp: fundo branco, texto vermelho */
.btn-cta-white-red{
  background: #fff;
  color: var(--color-red);
  border: 2px solid #fff;
}
.btn-cta-white-red:hover{
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

/* Telefone: transparente, borda branca */
.btn-cta-outline-white{
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.95);
}
.btn-cta-outline-white:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,0.12);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
  .cta-red-actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-red-actions a {
    width: 100%; /* ocupa toda a largura */
    max-width: 300px; /* limite para não ficar exagerado */
  }
}

@media (min-width: 768px){
  .hero-inner-tape{ padding: 3rem 1rem 3.5rem; }
  .hero-title{ font-size: clamp(3rem, 8vw, 4.5rem); }
  .hero-sub{ max-width: 820px; }

  .faq-summary{ padding: 0.9rem 0.9rem 0.9rem 1rem; }
  .faq-content{ padding: 0 1rem 1rem 1rem; }
}

.service-top{
  background: var(--color-white);
  color: var(--color-black);
  padding: 2.25rem 1rem 2rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.service-top__container{
  max-width: 1100px;
  margin: 0 auto;
}

.service-title,
.service-subtitle{
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* Voltar */
.service-back{
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  color: rgba(17,17,17,0.8);
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.service-back:hover{ color: var(--color-red); }
.service-back i[data-lucide]{ width: 18px; height: 18px; stroke-width: 2.4; }

/* Título e subtítulo */
.service-title{
  margin: 0.25rem 0 0.5rem;
  font-size: clamp(1.8rem, 2.6vw + 1rem, 2.8rem);
  font-weight: 800;
  line-height: 1.05;
  color: #111;
  margin-top: 5rem;
  margin-bottom: 2rem;
}
.service-title span{ color: var(--color-red); }
.service-subtitle{
  max-width: 820px;
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  color: rgba(17,17,17,0.72);
  line-height: 1.6;
  margin-bottom: 2rem;
}
.service-cover {
  margin: 0 auto;              
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(2, 6, 23, 0.363);
  border: 1px solid rgba(0,0,0,0.04);
  max-width: 500px;            
  max-height: 350px;         
}
.service-cover img {
  display: block;
  width: 100%;
  height: auto;
}
.service-body{
  background: var(--color-white);
  color: var(--color-black);
  padding: 2.25rem 1rem 3rem;
}
.service-body__container{
  max-width: 900px;
  margin: 0 auto;
}
.service-section-title{
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 800;
  line-height: 1.1;
  color: #111;
}

.service-text{
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(17,17,17,0.86);
}
.service-text p{ margin: 0.75rem 0; }

/* ======= SECTION: Contato Serviços ======= */
.contato-servicos {
  background: #fff;
  padding: 4rem 1rem;
  text-align: center;
}
.section-badge {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}
.section-badge__text {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  background: #f5f5f5;
  font-size: 0.85rem;
  font-weight: 600;
  color: #444;
  letter-spacing: 0.3px;
}
.contato-title {
  font-size: clamp(1.8rem, 4.5vw, 2.3rem);
  font-weight: 800;
  margin: 0 0 0.5rem;
}
.contato-sub {
  max-width: 650px;
  margin: 0 auto 2rem;
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

/* Grid */
.contato-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

/* Card */
.contato-card {
  background: #fafafa;
  border-radius: 12px;
  padding: 2rem;
  text-align: left;
  transition: box-shadow .25s ease;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.493);
}

.contato-card:hover {
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}
.card-top {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  gap: 0.75rem;
}
.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffe5e5; /* vermelho claro */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--color-red);
  transition: all 0.25s ease;
}
.card-icon:hover {
  background: #cc0000; /* vermelho escuro */
  color: #fff;
}
.card-title {
  font-size: 1.25rem;
  font-weight: 700;
}
.card-desc {
  margin-bottom: 1rem;
  color: #555;
  line-height: 1.55;
}
.card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}
.card-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.4rem 0;
  font-size: 0.95rem;
  color: #444;
  padding: 10x;
}
.card-list i {
  color: #2ecc71; /* verde para check */
}
.btn-card {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  background: var(--color-red);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: background .25s ease;
}
.btn-card:hover {
  background: #cc0000;
}

/* ======= SECTION: Contato (fundo vermelho) ======= */
.contact-cta-red{
  background: var(--color-red);
  color: #fff;
  padding: 4rem 1rem;
}
.contact-cta-container{
  max-width: 1200px;
  margin: 0 auto;
}

.contact-cta-grid{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr; /* esquerda > direita */
  gap: 2rem;
  align-items: center;   /* <<< de start para center */
}

/* Esquerda */
.contact-info__title{
  margin: 0 0 0.5rem;
  font-size: clamp(1.8rem, 4.2vw, 2.4rem);
  font-weight: 800;
  line-height: 1.1;
}
.contact-info__subtitle{
  margin: 0 0 1.25rem;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.95);
  max-width: 720px;
}

/* Lista de infos */
.info-list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}
.info-item{
  display: grid;
  grid-template-columns: 56px 1fr; /* ícone fixo + textos */
  gap: 0.9rem;
  align-items: center;
}
.info-icon{
  width: 56px; height: 56px;
  border-radius: 999px;
  background: rgba(255,255,255,0.16); /* vermelho claro sobre fundo vermelho */
  display: grid; place-items: center;
  color: #fff;
}
.info-icon i[data-lucide]{ width: 26px; height: 26px; stroke-width: 2.2; }

.info-title{
  display: block;
  font-weight: 800;
  font-size: 1.05rem;
  line-height: 1.1;
  color: #fff;
}
.info-desc{
  display: block;
  font-size: 0.98rem;
  color: rgba(255,255,255,0.92);
}

/* Direita: Card de orçamento */
.budget-card{
  background: rgba(255,255,255,0.08);           /* vermelho mais claro/translúcido */
  border: 1px solid rgba(255,255,255,0.45);     /* borda branca fina */
  border-radius: 14px;
  padding: 1.75rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.budget-card__title{
  margin: 0 0 1rem;
  font-size: clamp(1.35rem, 3.2vw, 1.75rem);
  font-weight: 800;
}

.budget-actions{
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  margin-bottom: 0.6rem;
}

/* Botões */
.btn-budget{
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 12px;
  padding: 0.7rem 1rem;
  font-weight: 800;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform .16s ease, box-shadow .16s ease, background .25s ease, color .25s ease, border-color .25s ease;
  white-space: nowrap;
}
.btn-budget i[data-lucide]{ width: 18px; height: 18px; stroke-width: 2.4; }

/* WhatsApp (verde) */
.btn-budget--whats{
  background: var(--color-green);
  color: #fff;
  border-color: var(--color-green);
  box-shadow: 0 8px 22px rgba(0,175,15,0.25);
}
.btn-budget--whats:hover{
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,175,15,0.35);
}

/* Ligar (transparente com borda branca) */
.btn-budget--call{
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.95);
}
.btn-budget--call:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,0.12);
}

/* Nota pequena */
.budget-note{
  margin: 0.2rem 0 0;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.9);
}

/* Responsivo */
@media (max-width: 920px){
  .contact-cta-grid{
    grid-template-columns: 1fr; /* empilha */
  }
  .budget-card{
    max-width: 640px;
    margin: 0 auto;
  }
}


/* ======= SECTION: Auto Elétrica ======= */

.hero-eletrica {
  background: 
    radial-gradient(
      circle at center,
      rgba(30, 70, 120, 0.6) 0%,
      rgba(15, 35, 70, 0.4) 40%,
      rgba(5, 15, 40, 0.2) 70%,
      rgba(0, 10, 30, 0) 100%
    ),
    linear-gradient(
      135deg,
      rgb(0, 20, 50) 0%,
      rgb(0, 15, 40) 40%,
      rgb(0, 10, 30) 100%
    );
  color: #fff;
  padding: 4rem 2rem;
}

.hero-eletrica-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 450px;
}

.hero-eletrica-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin: 1rem 0;
}
.hero-eletrica-title span,
.hero-eletrica .span-auto-eletrica {
  color: var(--color-blue);
}

.hero-eletrica-desc {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.badge-eletrica {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(30, 70, 120, 0.15); /* azul bem claro/transparente */
  color: #2b4f7c; /* azul mais forte para contraste */
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid #2b4f7c; /* borda azul clara */
}
.badge-eletrica .badge-icon {
  color: #1e4678; /* mesmo azul do texto */
  width: 18px;
  height: 18px;
}

.hero-eletrica-actions {
  display: flex;
  gap: 1rem;
  margin: 1.5rem 0;
}

.btn-eletrica-whats,
.btn-eletrica-call {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.2rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
}
.btn-eletrica-whats {
  background: var(--color-blue);
  color: #fff;
}
.btn-eletrica-call {
  border: 2px solid #fff;
  background: transparent;
  color: #fff;
}

.hero-eletrica-meta {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Card (direita) */
.hero-eletrica-card {
  background:
    radial-gradient(
      1200px 600px at 10% 10%,
      rgba(32, 110, 194, 0.45),
      transparent 10%
    ),
    linear-gradient(135deg, rgb(4, 54, 110) 0%, rgb(1, 52, 82) 60%);
  color: #ffffff;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.39);
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  max-width: 400px;
  margin: 0 auto;
}

.reason-icon-auto-eletrica {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--color-blue);
}

/* (Opcional) garantir consistência nas listas/estatísticas do card */
.hero-eletrica-card .reasons {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}
.hero-eletrica-card .reasons li {
  display: flex;
  align-items: center;
  gap: .5rem;
}
.hero-eletrica-card .card-divider {
  height: 1px;
  background: rgba(255,255,255,0.25);
  margin: 1.25rem 0;
}
.hero-eletrica-card .card-stats {
  display: flex;
  gap: 1.25rem;
  justify-content: space-between;
  align-items: stretch;
}
.hero-eletrica-card .stat {
  text-align: center;
  flex: 1;
}
.hero-eletrica-card .stat-num {
  font-weight: 900;
  font-size: 1.6rem;
  line-height: 1;
}
.hero-eletrica-card .stat-label {
  font-size: .95rem;
  opacity: .9;
}

/* ===== Mobile ===== */
@media (max-width: 768px) {
  .hero-eletrica {
    padding: 3rem 1rem;
  }

  .hero-eletrica-inner {
    grid-template-columns: 1fr;         /* card vai para baixo */
    justify-items: center;              /* centraliza colunas */
    text-align: center;                 /* centraliza textos */
    gap: 1.5rem;
  }

  .hero-eletrica-left {
    width: 100%;
  }

  .hero-eletrica-actions {
    flex-direction: column;             /* botões um abaixo do outro */
    align-items: center;
    gap: 0.8rem;
  }

  .btn-eletrica-whats,
  .btn-eletrica-call {
    width: 100%;
    max-width: 320px;                   /* largura agradável no mobile */
    justify-content: center;
  }

  .hero-eletrica-card {
    width: 100%;
    max-width: 560px;                   /* card centralizado e contido */
    text-align: center;
    margin-top: .5rem;
  }

  .hero-eletrica-card .reasons li {
    justify-content: center;            /* itens da lista centralizados */
  }

  .hero-eletrica-card .card-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-eletrica-title {
    font-size: clamp(2rem, 7vw, 2.5rem);
    margin: .75rem 0;
  }

  .hero-eletrica-desc {
    font-size: 1rem;
  }
}


/* Section wrapper */
.servicos-eletrica{
  background: #fff;
  padding: 4rem 2rem;
  text-align: center;
}

/* Badge no topo (centralizada) */
.servicos-eletrica .badge-eletrica{
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .4rem .9rem;
  border-radius: 999px;
  background: rgba(11,107,255,0.12); /* azul claro translúcido */
  color: var(--color-blue);
  font-weight: 700;
  font-size: .9rem;
  margin: 0 auto 1rem;
}
.servicos-eletrica .badge-eletrica .badge-eletrica-icon[data-lucide]{
  width: 18px; height: 18px;
}

/* Header */
.servicos-eletrica-header{
  max-width: 900px;
  margin: 0 auto 2rem;
}
.servicos-eletrica-title{
  margin: .25rem 0 .5rem;
  font-size: clamp(1.9rem, 4.2vw, 2.4rem);
  font-weight: 800;
  line-height: 1.06;
  color: #111;
}
.servicos-eletrica-title .text-blue{ color: var(--color-blue); }
.servicos-eletrica-sub{
  margin: 0 auto;
  max-width: 760px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #555;
}

/* Grid: 3 col (desktop), 2 col (<= 960px), 1 col (<= 600px) */
.servicos-eletrica-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
@media (max-width: 960px){
  .servicos-eletrica-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 600px){
  .servicos-eletrica-grid{ grid-template-columns: 1fr; }
}

/* Card */
.servico-eletrica-card{
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  overflow: hidden;
  text-align: left;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.servico-eletrica-card:hover{
  transform: translateY(-5px);
  box-shadow: 0 12px 26px rgba(0,0,0,0.10);
}

/* Imagem + ícones/badge sobrepostos */
.servico-eletrica-img{
  position: relative;
}
.servico-eletrica-img img{
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px 12px 0 0;
}

/* Ícone azul no canto superior esquerdo da foto */
.foto-icon-eletrica[data-lucide]{
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-blue);
  color: var(--color-white);
  stroke-width: 2.2;
  padding: 10px;
}

/* Badge branca no canto inferior direito */
.servico-eletrica-badge{
  position: absolute;
  right: 12px;
  bottom: 12px;
  background: #fff;
  color: #111;
  font-size: .82rem;
  font-weight: 800;
  padding: .35rem .6rem;
  border-radius: 8px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

/* Conteúdo do card */
.servico-eletrica-title{
  font-size: 1.2rem;
  font-weight: 800;
  color: #111;
  margin: 1rem 1rem .4rem;
  line-height: 1.2;
  text-transform: capitalize; /* opcional p/ títulos como "instalação..." */
}
.servico-eletrica-desc{
  margin: 0 1rem 1rem;
  font-size: .98rem;
  color: #555;
  line-height: 1.55;
}

/* Lista de itens com ícone azul */
.servico-eletrica-list{
  list-style: none;
  margin: 0 1rem 1rem;
  padding: 0;
  display: grid;
  gap: .4rem;
}
.servico-eletrica-list li{
  display: flex;
  align-items: center;
  gap: .5rem;
  color: #333;
  font-size: .96rem;
  line-height: 1.45;
}
.item-icon-eletrica[data-lucide]{
  width: 18px;
  height: 18px;
  color: var(--color-blue);
  stroke-width: 2.4;
  flex-shrink: 0;
}

/* Botão "Ver Detalhes" (azul) */
.btn-eletrica {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-blue, #0056b3);
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  margin: 0 auto 1rem;   /* <-- centraliza horizontalmente */
  width: 80%;    /* largura ajustada ao conteúdo */
  transition: background 0.3s;
}

.btn-eletrica i[data-lucide]{ width: 18px; height: 18px; stroke-width: 2.2; }
.btn-eletrica:hover{
  background: var(--color-blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(11,107,255,0.20);
}

/* Badge azul */
.faq-badge__text-blue {
  background: var(--color-blue-light, #e6f0ff);
  color: var(--color-blue, #0056b3);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.4rem 2rem;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 30px;
}

/* Palavra Frequentes azul */
.faq-highlight-blue {
  color: var(--color-blue, #0056b3);
}

.section-cta-blue {
  background: var(--color-blue);
  color: #fff;
  padding: 3rem 1rem;
  text-align: center;
}

.btn-cta-white-blue {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.2rem;
  min-width: 300px;       
  max-width: 400px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1;
  text-decoration: none;
  transition: transform .16s ease, box-shadow .16s ease, background .25s ease, color .25s ease;
  white-space: nowrap;
}

.btn-cta-white-blue{
  background: var(--color-white);
  color: var(--color-blue);
  border: 2px solid #fff;
}

.btn-cta-white-blue:hover{
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}


/* 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)}
.whats-float__img{width:36px;height:36px;display:block}

/* ======= PAGINA BLOG ======= */
/* ======= BLOG LIST ======= */
.blog-section{
  background: #fff;
  color: var(--color-black);
  padding: 1rem 1rem;
}
.blog-header{
  text-align: center;
  max-width: 900px;
  margin: 15px auto 2rem;
}
.blog-title{
  margin: 0 0 .5rem;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 900;
  line-height: 1.05;
}
.blog-title span{ color: var(--color-red); }
.blog-subtitle{
  margin: 0 auto;
  max-width: 820px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(17,17,17,0.72);
  padding-bottom: 3rem;
}

/* Grid */
.blog-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1.5rem;
}
@media (max-width: 960px){
  .blog-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 600px){
  .blog-grid{ grid-template-columns: 1fr; }
}

/* Card */
.blog-card{
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 14px 40px rgba(2, 6, 23, 0.37);
  border: 1px solid rgba(0,0,0,0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease;
  max-width: 360px; 
}
.blog-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 18px 48px rgba(2,6,23,0.12);
}

/* Mídia */
.blog-media{
  position: relative;
  aspect-ratio: 16/10;
  background: #f3f3f3;
}
.blog-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.blog-badge{
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  padding: .28rem .6rem;
  border-radius: 999px;
  background: var(--color-red);
  color: #fff;
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .2px;
  box-shadow: 0 10px 20px rgba(233,60,60,0.3);
}

/* Meta (data) */
.blog-meta{
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: rgba(17,17,17,0.6);
  font-size: .92rem;
  padding: .9rem 1rem 0;
}
.blog-meta i[data-lucide]{
  width: 18px; height: 18px; stroke-width: 2.2;
}

/* Conteúdo */
.blog-card-title{
  margin: .35rem 1rem .4rem;
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.25;
  color: #111;
}
.blog-card-desc{
  margin: 0 1rem 1rem;
  color: rgba(17,17,17,0.72);
  line-height: 1.55;
  font-size: .98rem;
}

/* Botão Ler Mais */
.blog-btn{
  margin: auto 1rem 1rem;      /* “auto” empurra para base e alinha à esquerda, ajusta no mobile via media */
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--color-red);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  border-radius: 10px;
  padding: .7rem 1.05rem;
  transition: transform .16s ease, box-shadow .16s ease, background .25s ease;
}
.blog-btn i[data-lucide]{ width: 18px; height: 18px; stroke-width: 2.4; }
.blog-btn:hover{
  transform: translateY(-2px);
  background: oklch(54% 0.22 27); /* tom de vermelho levemente mais escuro */
  box-shadow: 0 10px 24px rgba(233,60,60,0.22);
}

/* Paginação */
.blog-pagination{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.page-link{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 .75rem;
  border-radius: 8px;
  text-decoration: none;
  color: #111;
  font-weight: 700;
  border: 1px solid rgba(0,0,0,0.08);
  background: #fff;
  transition: background .2s ease, color .2s ease, transform .12s ease, box-shadow .12s ease;
}
.page-link:hover{
  background: rgba(0,0,0,0.035);
  transform: translateY(-1px);
}
.page-link.is-active{
  background: var(--color-red);
  border-color: var(--color-red);
  color: #fff;
  box-shadow: 0 10px 20px rgba(233,60,60,0.22);
}
.page-ellipsis{
  padding: 0 .25rem;
  color: rgba(17,17,17,0.5);
}

/* Responsivo */
@media (max-width: 640px){
  .blog-btn{
    align-self: center;
    margin: auto auto 1rem; /* centraliza o botão no mobile */
  }
}

/* Container principal */
.post-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1rem 4rem;
  font-family: "GeistSans", "GeistSans Fallback", sans-serif;
  color: #111;
}

/* Voltar */
.post-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.95rem;
  color: #c00;
  text-decoration: none;
  margin-bottom: 2rem;
  transition: color 0.3s;
}
.post-back:hover { color: #900; }
.post-back i { width: 18px; height: 18px; }

/* Badge e Data */
.post-meta {
  margin-bottom: 1rem;
}
.post-badge {
  background: #c00;
  color: #fff;
  font-size: 0.8rem;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  font-weight: 600;
}
.post-date {
  font-size: 0.9rem;
  color: #555;
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.post-date i {
  width: 16px;
  height: 16px;
  color: #333;
}

/* Título e subtítulo */
.post-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  margin: 1rem 0;
  line-height: 1.2;
}
.post-subtitle {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* Imagem */
.post-cover {
  text-align: center;
  margin: 2rem 0;
}
.post-cover img {
  border-radius: 12px;
  max-width: 100%;
  height: auto;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.486);
  transition: transform 0.3s, box-shadow 0.3s;
}
.post-cover img:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 35px rgba(0,0,0,0.25);
}

/* Texto inicial */
.post-intro {
  font-size: 1.05rem;
  color: #333;
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Conteúdo numerado */
.post-content h2 {
  font-size: 1.4rem;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  color: rgb(0, 0, 0);
  font-weight: 700;
}
.post-content p {
  color: #444;
  line-height: 1.6;
}

/* Dica */
.post-tip {
  border-left: 5px solid #900;
  background: #ffe5e5;
  padding: 1rem 1.5rem;
  margin: 3rem 0;
  border-radius: 6px;
}
.post-tip h3 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: #900;
}
.post-tip p {
  margin: 0;
  color: #333;
  line-height: 1.6;
}

/* Conclusão */
.post-conclusion {
  margin-top: 2rem;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #222;
}

/* ===== Section: Posts Relacionados ===== */
.related-posts-section {
  padding: 3rem 1rem;
  background: #fafafa;
}

.related-posts-header {
  text-align: center;
  margin-bottom: 2rem;
}

.related-posts-title {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  position: relative;
}

.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* Responsividade */
@media (max-width: 992px) {
  .related-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .related-posts-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== 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 */
}

.contact-subtitle {
  margin-top: 0.5rem;
  color: #555;
  font-size: 1.1rem;
}

/* ===== Layout ===== */
.contact-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}

/* ===== Localização ===== */
.location-section {
  padding: 4rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.location-badge {
  display: inline-block;
  background: #c00;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.location-title {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 0.75rem;
}

.location-title span {
  color: #c00;
}

.location-subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

.location-map iframe {
  width: 100%;
  height: 450px;
  border: 0;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.location-map iframe:hover {
  transform: scale(1.01);
}


/*************************************/
/* =======  PAGINAS INTERNAS ======= */
/*************************************/

/* ===== Cards de Serviço (pós-descrição em cidade/segmento) ===== */

.service-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 14px 40px rgba(2, 6, 23, 0.06);
  transition: transform .18s ease, box-shadow .18s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 48px rgba(2,6,23,0.12);
}

/* Link ocupa todo o card */
.service-card__link {
  display: grid;
  grid-template-rows: auto 1fr;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

/* Mídia: mesma proporção dos demais cards do site */
.service-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  background: #f2f2f2;
  overflow: hidden;
}

.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}

.service-card:hover .service-card__media img {
  transform: scale(1.04);
}

/* Corpo */
.service-card__body {
  padding: 1rem 1rem 1.1rem;
  display: grid;
  grid-template-rows: auto auto; /* título + CTA (e chip se habilitar) */
  gap: 0.45rem;
}

/* Título forte e compacto */
.service-card__title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  color: #111;
  line-height: 1.25;
}

.service-card__cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--color-red);
  color: #fff;
  font-weight: 800;
  font-size: .92rem;
  padding: .55rem .85rem;
  border-radius: 10px;
  width: fit-content;
  transition: transform .16s ease, box-shadow .16s ease, background .25s ease;
}

.service-card__cta-icon {
  width: 18px;
  height: 18px;
  display: inline-block;
  line-height: 0;
  /* melhora alinhamento visual */
  transform: translateY(1px);
}

.service-card__link:hover .service-card__cta {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0,0,0,.18);
}

/* foco acessível */
.service-card__link:focus-visible .service-card__cta {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.service-card:hover .service-card__cta {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(233,60,60,0.18);
}

.service-card__chip {
  display: inline-block;
  background: rgba(255,0,0,0.06);
  color: var(--color-red);
  border: 1px solid rgba(255,0,0,0.12);
  font-weight: 700;
  font-size: .8rem;
  padding: .25rem .5rem;
  border-radius: 999px;
  margin-right: .5rem;
}

/* Acessibilidade: foco visível no card inteiro */
.service-card__link:focus {
  outline: none;
}
.service-card__link:focus-visible {
  box-shadow: 0 0 0 4px rgba(255,0,0,0.14) inset, 0 0 0 2px rgba(255,0,0,0.25);
}

/* Responsivo: grid utilitário para onde esses cards forem listados */
.services-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

@media (max-width: 640px) {
  .service-card__body { padding: .9rem; }
  .service-card__title { font-size: 1rem; }
  .service-card__cta { width: 100%; justify-content: center; }
}


/* ===== LISTA DE CIDADES ===== */

/* Cabeçalho suave com breadcrumbs */
.section-header--soft{
  background: var(--color-white);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 1rem 1rem 1rem;
}
.section-header__inner{
  max-width: 1100px;
  margin: 0 auto;
}
.section-header__title{
  margin: .35rem 0 0;
  font-size: clamp(1.8rem, 4.2vw, 2.6rem);
  font-weight: 900;
  line-height: 1.06;
  color: #111;
}

/* Breadcrumbs */
.breadcrumbs ol{
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex; gap: .5rem; flex-wrap: wrap;
  color: rgba(17,17,17,0.6);
  font-size: .95rem;
}
.breadcrumbs a{
  color: rgba(17,17,17,0.75);
  text-decoration: none;
  font-weight: 700;
}
.breadcrumbs a:hover{ color: var(--color-red); }
.breadcrumbs li+li::before{
  content: '›';
  margin: 0 .4rem;
  color: rgba(17,17,17,0.35);
}

/* Seção e container de cards */
.list-section{
  background: var(--color-white);
  padding: 2rem 1rem 3rem;
}
.cards-grid{
  max-width: 1100px;
  margin: 0 auto 1.25rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.25rem;
}

/* Card de cidade (anchor preenchendo tudo) */
.list-card{
  display: grid;
  grid-template-rows: auto 1fr;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 14px 40px rgba(2,6,23,0.06);
  text-decoration: none;
  color: inherit;
  transition: transform .18s ease, box-shadow .18s ease;
}
.list-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 18px 48px rgba(2,6,23,0.12);
}

/* Mídia */
.list-card__media{
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  background: #f2f2f2;
  overflow: hidden;
}
.list-card__media img{
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .35s ease;
}
.list-card:hover .list-card__media img{ transform: scale(1.04); }

/* Corpo */
.list-card__body{
  padding: 0.9rem 1rem 1.1rem;
  display: grid;
  gap: .45rem;
}
.list-card__title{
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  color: #111;
  line-height: 1.25;
}
.list-card__cta{
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: var(--color-red);
  color: #fff;
  font-weight: 800;
  font-size: .9rem;
  padding: .5rem .8rem;
  border-radius: 10px;
  width: fit-content;
  transition: transform .16s ease, box-shadow .16s ease, background .25s ease;
}
.list-card__cta::after{
  font-weight: 900; line-height: 1;
}
.list-card:hover .list-card__cta{
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(233,60,60,0.18);
}

/* Container slim para paginação */
.container-slim{
  max-width: 900px;
  margin: 1.25rem auto 0;
  padding: 0 1rem;
}

/* Paginação (usa classes do seu buildPagination) */
.pager{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.pager__nums{ display: flex; gap: .5rem; align-items: center; }

.pager__link,
.pager__num{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px; height: 38px;
  padding: 0 .75rem;
  border-radius: 8px;
  text-decoration: none;
  color: #111;
  font-weight: 700;
  border: 1px solid rgba(0,0,0,0.08);
  background: #fff;
  transition: background .2s ease, color .2s ease, transform .12s ease, box-shadow .12s ease;
}
.pager__link:hover,
.pager__num:hover{
  background: rgba(0,0,0,0.035);
  transform: translateY(-1px);
}
.pager__num.is-active{
  background: var(--color-red);
  border-color: var(--color-red);
  color: #fff;
  box-shadow: 0 10px 20px rgba(233,60,60,0.22);
}
.pager__link.is-disabled{
  opacity: .45; cursor: not-allowed; pointer-events: none;
}
.pager__dots{
  padding: 0 .25rem;
  color: rgba(17,17,17,0.5);
}

/* Responsivo */
@media (max-width: 640px){
  .cards-grid{ gap: 1rem; }
  .list-card__body{ padding: .85rem .9rem 1rem; }
  .list-card__title{ font-size: 1rem; }
  .list-card__cta{ width: 100%; justify-content: center; }
}

/* ===== LISTA DE SERVIÇOS – ajustes opcionais ===== */
.list-section--servicos{
  padding-top: 2.25rem; /* leve ajuste */
}

/* Selo "Serviço" no canto da imagem */
.list-section--servicos .list-card__media{
  position: relative;
}
.list-section--servicos .list-card__media::after{
  content: 'Serviço';
  position: absolute;
  top: 12px; left: 12px;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .28rem .6rem;
  border-radius: 999px;
  background: var(--color-red);
  color: #fff;
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .2px;
  box-shadow: 0 10px 20px rgba(233,60,60,0.28);
  pointer-events: none;
}

/* Botão “ver mais” um pouco mais forte na lista de serviços */
.list-section--servicos .list-card__cta{
  padding: .55rem .9rem;
  box-shadow: 0 10px 18px rgba(233,60,60,0.16);
}
.list-section--servicos .list-card:hover .list-card__cta{
  box-shadow: 0 12px 26px rgba(233,60,60,0.22);
}

/* ===== Category: Carrossel de Serviços ===== */
.services-carousel {
  position: relative;
}

.services-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 1fr);
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding: 0.25rem 2.5rem; /* espaço para setas */
}

.services-track .service-card {
  scroll-snap-align: start;
  min-width: 260px; /* garante largura mínima no carrossel */
}

.services-track::-webkit-scrollbar {
  height: 8px;
}
.services-track::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.08);
  border-radius: 6px;
}

/* Setas do carrossel */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid rgba(0,0,0,0.08);
  background: #fff;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  box-shadow: 0 8px 18px rgba(2,6,23,0.06);
  cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease;
  z-index: 5;
}
.carousel-arrow:hover { transform: translateY(-50%) scale(1.04); }
.carousel-arrow--prev { left: 0.5rem; }
.carousel-arrow--next { right: 0.5rem; }
.carousel-arrow i[data-lucide] { width: 20px; height: 20px; }

/* Badge com o nome da categoria no canto da foto do card */
.service-card__media {
  position: relative; /* para posicionar a badge dentro */
}
.service-cat-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--color-red);
  color: #fff;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.78rem;
  box-shadow: 0 8px 20px rgba(2,6,23,0.08);
  text-transform: capitalize;
}
/* ===== Categoria: Cabeçalho do Carrossel ===== */
.cat-cards {
  padding: 2.5rem 0;
}

.cat-cards__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1rem;
}

.cat-cards__head {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 1.25rem;
}

.cat-cards__title {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  line-height: 1.25;
  font-weight: 700;
  margin: 0 0 .5rem 0;
  color: #111827; /* cinza-900 */
}

.cat-cards__subtitle {
  font-size: clamp(0.95rem, 1.6vw, 1rem);
  line-height: 1.6;
  color: #4b5563; /* cinza-600 */
  margin: 0;
}

/* Integração suave com o seu carrossel existente */
.carousel {
  position: relative;
}

.carousel__btn {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: #111827; /* cinza-900 */
  color: #fff;
  cursor: pointer;
  transition: transform 120ms ease, opacity 120ms ease, background 120ms ease;
}

.carousel__btn:hover {
  transform: translateY(-1px);
  background: #0f172a; /* cinza-950 */
}

.carousel__btn.is-prev,
.carousel__btn.is-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.carousel__btn.is-prev { left: -4px; }
.carousel__btn.is-next { right: -4px; }

/* Responsivo: aproximar botões em telas menores */
@media (max-width: 640px) {
  .carousel__btn.is-prev { left: 6px; }
  .carousel__btn.is-next { right: 6px; }
}

/* Espaçamento interno da “viewport” dos cards */
.carousel__viewport {
  scroll-behavior: smooth;
  padding: 0.25rem 0; /* sutil para separar do header */
}

/* Grid dos cards já existia; apenas garantimos gap consistente */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}


/* responsivo */
@media (max-width: 640px){
  .services-track { padding: 0.25rem 2.75rem; }
  .carousel-arrow--prev { left: 0.25rem; }
  .carousel-arrow--next { right: 0.25rem; }
}

/* ===== Breadcrumb bar  ===== */
.crumbs-bar{
  background:
    radial-gradient(1200px 600px at 10% 10%, rgba(13,37,63,.35), transparent 8%),
    linear-gradient(135deg, rgba(1,10,20,1) 0%, rgba(0,0,0,1) 60%);
  color:#fff;
  border-bottom:1px solid rgba(255,255,255,.08);
  position: relative;
}

.crumbs-bar::before{
  content:"";
  display:block;
  height: var(--after-header-gap, 12px); 
}

.crumbs-bar__inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.9rem 1rem; 
}

.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{
  text-decoration: none ; 
  color: rgba(255,240,240,0.9);
  font-weight: 700;
  transition: color .15s ease;
}
.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){
  :root{ --after-header-gap: 0px; }
  .crumbs-bar__inner{ padding:0.8rem 0.8rem; }
  .jms-breadcrumbs a { font-size: .85rem; }
  .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) */
.detail-crumbs{
  padding: 1.25rem 1rem;
  color: #fff;
}
.detail-crumbs--red{
  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%);
}
.detail-crumbs__inner{ max-width: 1200px; margin: 0 auto; }

/* A função gera <a> e <span> separados por " / " (texto).
   Estilizamos diretamente esses elementos */
.detail-crumbs__trail{
  font-weight: 700;
  font-size: .95rem;
  color: #fff;
  line-height: 1.3;
  margin-top: 0.4rem;
  word-break: break-word;
}
.detail-crumbs__trail a{
  color: #fff;
  text-decoration: none;
  opacity: .9;
}
.detail-crumbs__trail a:hover{
  opacity: 1;
  text-decoration: underline;
}
.detail-crumbs__trail span{
  opacity: .98;
}

/* Mobile: reduz levemente o padding e calcula o topo com topbar menor */
@media (max-width: 640px){
  .detail-crumbs{
    padding: 1rem .8rem;
  }
}
.detail-crumbs__inner{ max-width: 1200px; margin: 0 auto; }

.detail-crumbs__list{
  display: flex; flex-wrap: wrap;
  gap: .5rem; list-style: none; padding: 0; margin: 0;
  font-weight: 700; font-size: .95rem;
}
.detail-crumbs__item{ display: inline-flex; align-items: center; gap: .5rem; }
.detail-crumbs__link{ color: #fff; text-decoration: none; opacity: .9; }
.detail-crumbs__link:hover{ opacity: 1; text-decoration: underline; }
.detail-crumbs__sep{ opacity: .7; }

/* ---------- HERO (título, descrição, imagem) ---------- */
.detail-hero{
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,.06);
  padding: 1.5rem 0 1rem;
  margin: 0 auto;
}
.detail-hero__inner{
  display: grid;
  grid-template-columns: 1.1fr .9fr;  
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.detail-title{
  margin: 0;
  font-size: clamp(1.6rem, 2vw + 1rem, 2.4rem);
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: .2px;
  text-align: center;
  position: relative;
  color: var(--color-black, #111);
}
.detail-title::after{
  content:"";
  display:block;
  width: 120px;
  height: 3px;
  margin: .75rem auto 0;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  border-radius: 999px;
}

/* ============================
   BLOCO: Imagem + Descrição
   ============================ */
.detail-hero__media{
  width: 100%;
  max-width: 600px;      
  margin: 0;
  justify-self: end;
  overflow: hidden;       
  border-radius: 12px;
}

.detail-hero__img{
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;          
}

.detail-hero img,
.detail-hero__media img{
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
}

@media (max-width: 768px){
  .detail-hero__inner{
    grid-template-columns: 1fr; /* 1 coluna */
    justify-items: center;
  }
  .detail-hero__media{
    justify-self: center;
    max-width: 100%;
  }
}

/* ============================
   CARDS: Sessão de relacionados
   ============================ */
.cards-section{
  background: #fff;
  border-top: 1px solid rgba(0,0,0,.06);
  padding: 2rem 0 2.5rem;
}
.cards-section__head{
  text-align: center;
  margin-bottom: 1.25rem;
}
.cards-section__title{
  margin: 0;
  font-size: clamp(1.25rem, .8vw + 1rem, 1.6rem);
  font-weight: 900;
  color: var(--color-black, #111);
}
.cards-section__subtitle{
  margin: .35rem auto 0;
  max-width: 60ch;
  color: var(--text-muted);
  font-size: .98rem;
}

/* Grid de cards (reutiliza sua .cards-grid; reforço só de gaps) */
.cards-grid{
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}
@media (min-width: 640px){
  .cards-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px){
  .cards-grid{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* ============================
   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. */
.crumbs-bar{
  box-shadow: inset 0 -1px 0 rgba(255,255,255,.06);
}
.jms-breadcrumbs a{
  text-underline-offset: 2px;
}

/* ============================
   Micro animações (suave)
   ============================ */
.detail-media__img{
  transform: translateZ(0);
  transition: transform .4s ease, box-shadow .4s ease;
}
.detail-media__img:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(0,0,0,.10);
}

/* ---------- RESPONSIVO ---------- */
@media (max-width: 900px){
  .detail-hero__inner{
    grid-template-columns: 1fr;
    text-align: center; gap: 1.25rem;
  }
  .detail-hero__media{ max-width: 720px; margin: 0 auto; }
}
@media (max-width: 640px){
  .detail-crumbs{
    padding: 1rem .8rem;
  }
  .detail-hero{ padding: 2rem .8rem 2.5rem; }
}

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 ---------- */
:root{
  --seo-accent: var(--color-red, #E53935);
  --seo-bg-dark: #07090c;
  --seo-fg: #ffffff;
}

/* container neutro p/ SEO (evita conflito com .container) */
.seo-wrap{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ---------- SEO HERO ---------- */
.seo-hero{
  position: relative;
  color: var(--seo-fg);
  background:
    radial-gradient(1200px 600px at 10% 10%, rgba(229,57,53,.20), transparent 14%),
    linear-gradient(135deg, #0c0f14 0%, #060708 60%);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: clamp(1.25rem, 2vw + 1rem, 2rem) 0 clamp(1.25rem, 1.8vw + 1rem, 1.75rem);
}

.seo-hero__inner{
  display: block; 
}

.seo-hero__grid{
  display: grid;
  grid-template-columns: 1fr 360px;    
  align-items: start;
  gap: clamp(1rem, 3vw, 2rem);
}

.seo-hero__badge{
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 800;
  letter-spacing: .3px;
  font-size: .9rem;
  color: rgba(255,255,255,.9);
  background: rgba(229,57,53,.1);
  border: 1px solid rgba(229,57,53,.35);
  padding: .35rem .6rem;
  border-radius: 999px;
  margin-bottom: .6rem;
}

.seo-hero__title{
  margin: 0 0 .4rem 0;
  font-weight: 900;
  line-height: 1.12;
  font-size: clamp(1.8rem, 2.6vw + 1rem, 2.8rem);
  letter-spacing: .2px;
}
.seo-hero__title::after{
  content: "";
  display: block;
  width: 140px;
  height: 3px;
  margin-top: .7rem;
  background: linear-gradient(90deg, transparent, var(--seo-accent), transparent);
  border-radius: 999px;
}

.seo-hero__desc{
  margin-top: .6rem;
  font-size: clamp(1rem, .35vw + 1rem, 1.1rem);
  line-height: 1.6;
  color: rgba(255,255,255,.9);
  max-width: 60ch;
}
.seo-hero__media{
  margin:0;
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.08);
  background:linear-gradient(180deg,rgba(255,255,255,.06),rgba(255,255,255,0));
  box-shadow:0 10px 24px rgba(0,0,0,.35),0 1px 0 rgba(255,255,255,.06) inset;
  width:100%;           
}
.seo-hero__img{
  display:block;
  width:100%;            
  height:auto;           
  object-fit:unset;      
  aspect-ratio:auto;     
}
@media (max-width: 768px){
  .seo-hero__grid{
    grid-template-columns: 1fr;  
    align-items: start;
    gap: 1rem;
  }
  .seo-hero__text{ order: 1; text-align: center; }
  .seo-hero__media{
    order: 2;
    max-width: 720px;
    margin: .9rem auto 0;       
  }
  .seo-hero__title::after{ margin-left: auto; margin-right: auto; }
  .seo-hero__desc{
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .seo-hero__media{
    max-width:720px;
    margin:.9rem auto 0;
  }
  .seo-hero__img{
    max-width:100%;
    max-height:100%;
  }
}

/* ---------- SEO BODY (texto longo) ---------- */
.seo-body{
  background: #fff;
  color: var(--color-black, #111);
  border-bottom: 1px solid rgba(0,0,0,.06);
  padding: 1.25rem 0 1.5rem;
}

.seo-richtext{
  font-size: 1.05rem;
  line-height: 1.75;
}
.seo-richtext p{ margin: 0 0 1rem; }
.seo-richtext h2,
.seo-richtext h3{ margin: 1.25rem 0 .5rem; }


/* ---------- SEO CARDS (cabeçalho) ---------- */
.seo-cards{
  background: #fff;
  padding: 1.25rem 0 2rem;
}
.seo-cards__inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.seo-cards__head{
  margin-bottom: .75rem;
  text-align: center;
}
.seo-cards__title{
  margin: 0 0 .25rem 0;
  font-weight: 900;
  font-size: clamp(1.25rem, 1.2vw + 1rem, 1.6rem);
  letter-spacing: .2px;
  color: var(--color-black, #111);
  position: relative;
}
.seo-cards__title::after{
  content:"";
  display:block;
  width: 100px;
  height: 2px;
  margin-top: .5rem;
  background: linear-gradient(90deg, transparent, var(--seo-accent, #e53935), transparent);
  border-radius: 999px;
  margin-left: auto;
  margin-right: auto;
}
.seo-cards__subtitle{
  margin: .25rem 0 0 0;
  color: rgba(0,0,0,.7);
}

/* ---------- SEO CARDS (carrossel) ---------- */
.seo-cards .services-carousel{
  --track-gap: clamp(.75rem, 1.8vw, 1rem);
  position: relative;
}

/* Trilho rolável horizontal */
.seo-cards .services-track{
  display: flex;
  gap: var(--track-gap);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: .25rem calc(2.75rem + 0.75rem);
  margin: 0;
  scroll-behavior: smooth;
}
/* Oculta scrollbar onde possível */
.seo-cards .services-track{
  scrollbar-width: none; /* Firefox */
}
.seo-cards .services-track::-webkit-scrollbar{ display: none; }

/* Cartões dentro do carrossel */
.seo-cards .service-card{
  scroll-snap-align: start;
  flex: 0 0 clamp(240px, 28vw, 320px); /* largura responsiva */
  min-width: 0;                        /* evita overflow do conteúdo interno */
}

/* Ajustes de imagem do card para não “vazar” no mobile */
.seo-cards .service-card__media{
  aspect-ratio: 4 / 3;                /* mantém proporção elegante */
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}
.seo-cards .service-card__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Botões de navegação */
.seo-cards .carousel-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.12);
  background: #fff;
  display: inline-flex;
  align-items: center; justify-content: center;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .15s ease, background .2s ease;
  z-index: 2;
}
.seo-cards .carousel-arrow--prev{ left: .5rem; }
.seo-cards .carousel-arrow--next{ right: .5rem; }
.seo-cards .carousel-arrow:hover{
  transform: translateY(-50%) scale(1.04);
  box-shadow: 0 6px 16px rgba(0,0,0,.08);
}
.seo-cards .carousel-arrow[disabled]{
  opacity: .45;
  cursor: not-allowed;
  transform: translateY(-50%); /* sem scale no disabled */
}
.seo-cards .carousel-arrow i[data-lucide]{
  width: 20px; height: 20px;
}

.seo-cards .services-track::before,
.seo-cards .services-track::after{
  content: "";
  flex: 0 0 .25rem;
}

/* ---------- Responsivo ---------- */
@media (max-width: 640px){
  /* Mostra card quase “cheio” no mobile */
  .seo-cards .service-card{
    flex-basis: 82%;
  }
  .seo-cards .services-track{
    padding: .25rem calc(2.25rem + 0.5rem);
  }
}

@media (min-width: 1024px){
  .seo-cards .service-card{
    flex-basis: clamp(260px, 22.5%, 340px);
  }
}

/* ===== Serviço: Hero isolado ==== */
:root{
  --srv-accent: var(--color-red, #E53935);
  --srv-ink: var(--color-black, #111);
  --srv-ink-muted: rgba(0,0,0,.72);
  --srv-surface: #fff;
}

.srv-hero{
  --srv-surface: #fff;
  --srv-ink: #1d1d1f;
  --srv-ink-muted: #4b4b52;
  --srv-accent: #e53935;

  background: var(--srv-surface);
  border-bottom: 1px solid rgba(0,0,0,.06);
  padding: clamp(1.25rem, 1.8vw + 1rem, 2rem) 0 clamp(1rem, 1.2vw + .75rem, 1.6rem);
}

.srv-hero__inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* GRID 2 colunas */
.srv-hero__grid{
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr); /* esquerda > direita */
  gap: clamp(1rem, 3vw, 2rem);
  align-items: start;
}

/* ESQUERDA (principal) */
.srv-main{ 
  display:grid;
  gap:.85rem;
  align-content:
  start;
  justify-items:stretch;
}

.srv-badge{
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-weight: 800;
  letter-spacing: .25px;
  font-size: .9rem;
  text-decoration: none;
  color: var(--srv-accent);
  background: rgba(229,57,53,.08);
  border: 1px solid rgba(229,57,53,.35);
  padding: .35rem .6rem;
  border-radius: 999px;
  width: max-content;
  transition: transform .12s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.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;
}
.srv-badge__icon{ width: 16px; height: 16px; }

.srv-title{
  margin: .25rem 0 0 0;
  font-size: clamp(1.8rem, 2.4vw + 1rem, 2.6rem);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: .2px;
  color: var(--srv-ink);
  position: relative;
}
.srv-title::after{
  content:"";
  display:block;
  width: 140px;
  height: 3px;
  margin: .6rem 0 0;            
  background: linear-gradient(90deg, var(--srv-accent), transparent);
  border-radius: 999px;
}

.srv-hero__media{
  width:100%;           
  margin:0;            
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(0,0,0,.06);
  background:linear-gradient(180deg,rgba(0,0,0,.02),rgba(0,0,0,0));
  box-shadow:0 10px 24px rgba(0,0,0,.14),0 1px 0 rgba(255,255,255,.6) inset
}
.srv-hero__img{
  display:block;
  width:100%;
  height:auto;
  aspect-ratio:auto;
  object-fit:unset
}
@media (max-width:640px){
  .srv-hero__media{ max-width:100%; }
}

.srv-desc{
  margin-top: .35rem;
  color: rgb(30, 42, 58);
  line-height: 1.7;
  font-weight: 400;
}
.srv-desc strong { 

  font-weight: 700; 
}
.srv-desc h1{
  font-size: clamp(1.4rem, 1.6vw + 1rem, 2rem);
  font-weight: 800;
  margin: 1rem 0 .5rem;
}
.srv-desc h2{
  font-size: clamp(1.2rem, 1vw + 1rem, 1.6rem);
  font-weight: 800;
  margin: 1rem 0 .4rem;
}
.srv-desc p{ margin: 0 0 .9rem; }
.srv-desc ul, .srv-desc ol{ margin: .5rem 0 .9rem; padding-left: 1rem; }
.srv-desc li + li{ margin-top: .25rem; }

/* DIREITA (sidebar) */
.srv-aside{
  display: grid;
  gap: 1rem;
  align-content: start;
}

/* formulário */
.form-card{
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  padding: 1rem;
  box-shadow: 0 6px 18px rgba(0,0,0,.06);
}
.form-card h3{
  margin: 0 0 .4rem;
  font-size: 1.1rem;
}
.form-desc{
  margin: 0 0 .8rem;
  color: #61616a;
  font-size: .95rem;
}
.form-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem;
}
.form-field{ display: grid; gap: .3rem; }
.form-field label{ font-size: .9rem; color: #333; }
.form-field input, .form-field textarea{
  width: 100%;
  padding: .6rem .7rem;
  border: 1px solid rgba(0,0,0,.15);
  border-radius: 10px;
  font: inherit;
}
.btn-submit{
  margin-top: .5rem;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  border: none;
  background: var(--srv-accent);
  color: #fff;
  padding: .65rem .9rem;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 700;
}
.btn-submit:hover{ filter: brightness(.96); }

/* ações rápidas */
.contact-actions{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
}
.contact-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: .55rem .7rem;
  border: 1px solid rgba(0,0,0,.1);
  border-radius: 10px;
  text-decoration: none;
  color: #222;
  background: #fafafa;
}
.contact-btn:hover{ background: #f0f0f0; }

/* cartões laterais */
.side-card{
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  overflow: hidden;
}
.side-card__header{
  padding: .75rem .9rem;
  border-bottom: 1px solid rgba(0,0,0,.06);
  background: #fcfcfc;
}
.side-card__title{
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: 1.02rem;
  margin: 0;
  color: black;
}
.side-card__body{
  padding: .75rem .9rem;
  color: black;
}
.svc-list{
  --svc-collapsed-max: 320px;
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: var(--svc-collapsed-max);
  overflow: hidden;
  transition: max-height .25s ease;
  position: relative;
}
.svc-list.is-expanded{
  max-height: 9999px;           
}
.svc-list li + li{ margin-top: .35rem; }
.svc-list a{
  text-decoration: none;
  color: #1e2a3a;
}
.svc-list a:hover,
.svc-list a:focus{ text-decoration: underline; }
.svc-list::after{
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), #fff);
  pointer-events: none;
  opacity: 1;
  transition: opacity .2s ease;
}
.svc-list.is-expanded::after{ opacity: 0; }

.svc-list__toggle{
  margin-top: .6rem;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: .55rem .7rem;
  border: 1px solid rgba(0,0,0,.1);
  border-radius: 10px;
  background: #fafafa;
  cursor: pointer;
  font-weight: 600;
}
.svc-list__toggle [data-lucide]{
  transition: transform .2s ease;
  transform-origin: 50% 50%;
}
.svc-list__toggle[aria-expanded="true"] [data-lucide]{
  transform: rotate(180deg);
}
.svc-list__toggle i{
  transition: transform .2s ease;
}
.svc-list__toggle[aria-expanded="true"] i{ transform: rotate(180deg); }
.svc-list__toggle:focus{ outline: 2px solid #c7d7ff; outline-offset: 2px; }
.svc-list__toggle.is-hidden{ display: none; }
.sidebar-blog{
  display: grid;
  gap: .65rem;
}
.sidebar-blog__item{
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: .6rem;
  align-items: center;
  text-decoration: none;
  color: inherit;
}
.sidebar-blog__thumb{
  width: 64px;
  height: 64px;
  border-radius: 10px;
  overflow: hidden;
  object-fit: cover;
  border: 1px solid rgba(0,0,0,.06);
}
.sidebar-blog__title{
  font-size: .95rem;
  line-height: 1.3;
  margin: 0 0 .15rem;
}
.sidebar-blog__date{
  font-size: .82rem;
  color: #6b6b74;
}

/* RESPONSIVO */
@media (max-width: 980px){
  .srv-hero__grid{
    grid-template-columns: 1fr;
  }
  .form-grid{
    grid-template-columns: 1fr; 
  }
  .contact-actions{
    grid-template-columns: 1fr 1fr;
  }
}

/* ===== Serviços da mesma categoria (título e subtítulo) ===== */
.srv-related{
  background: var(--srv-related-bg, #fff);
  border-top: 1px solid rgba(0,0,0,.06);
  padding: clamp(1.25rem, 2.5vw, 2rem) 0 clamp(2rem, 4vw, 3rem);
}

.srv-related__inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.srv-related__head{
  text-align: center;
  margin-bottom: clamp(1rem, 2.2vw, 1.75rem);
}

.srv-related__title{
  margin: 0;
  font-size: clamp(1.4rem, 1.8vw + 1rem, 2rem);
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: .2px;
  color: var(--color-black, #111);
  position: relative;
  display: inline-block;
}

.srv-related__title::after{
  content: "";
  display: block;
  width: 140px;
  height: 3px;
  margin: .6rem auto 0;
  background: linear-gradient(
    90deg,
    transparent,
    var(--color-red, #e53935),
    transparent
  );
  border-radius: 999px;
}

.srv-related__subtitle{
  margin: .6rem auto 0;
  max-width: 58ch;
  color: rgba(0,0,0,.68);
  font-size: clamp(.95rem, .5vw + .8rem, 1.05rem);
}

.srv-cards-grid{
  margin-top: clamp(1rem, 3vw, 2rem);
}

@media (min-width: 1024px){
  .srv-related__subtitle{
    max-width: 64ch;
  }
}

/* ===== Carrossel base ===== */
.detail-cards { padding: 1.25rem 0 2rem; }
.detail-cards__inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.carousel{ position: relative; }

.carousel__viewport{
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scroll-padding: 1rem;
  padding: .25rem 0;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
}
.carousel__viewport::-webkit-scrollbar{ display: none; }
.carousel__viewport{ scrollbar-width: none; }
.carousel__track{
  display: grid;
  grid-auto-flow: column;
  gap: 1rem;
  grid-auto-columns: minmax(260px, 80%);
  justify-items: stretch;
  align-items: stretch;
}
@media (min-width: 640px){
  .carousel__track{ grid-auto-columns: minmax(260px, 60%); }
}
@media (min-width: 900px){
  .carousel__track{ grid-auto-columns: minmax(280px, 40%); }
}
@media (min-width: 1200px){
  .carousel__track{ grid-auto-columns: minmax(300px, 30%); }
}
.carousel .cards-grid{
  display: grid !important;
  grid-template-columns: none !important;
}
.carousel__track > *{
  min-width: 0 !important;
  max-width: none !important;
  width: auto !important;
}
.carousel .service-card{
  scroll-snap-align: start;
  height: 100%;
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
}
.carousel__btn{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px; height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.12);
  background: #fff;
  color: #111;
  display: grid; place-items: center;
  box-shadow: 0 6px 16px rgba(0,0,0,.12);
  cursor: pointer;
  transition: transform .12s ease, opacity .2s ease, box-shadow .2s ease;
  z-index: 2;
}
.carousel__btn:hover{ transform: translateY(-50%) scale(1.04); box-shadow: 0 8px 22px rgba(0,0,0,.16); }
.carousel__btn[disabled]{ opacity: .4; cursor: not-allowed; }
.carousel__btn.is-prev{ left: 4px; }
.carousel__btn.is-next{ right: 4px; }
.carousel__btn i[data-lucide]{ width: 20px; height: 20px; }
@media (max-width: 380px){
  .carousel__btn{ width: 36px; height: 36px; }
}
@media (max-width: 900px){
  html, body{
    overflow-x: hidden;
    width: 100%;
  }
}

#depoimentos-placeholder{
  height: 360px;                 
  background: linear-gradient(90deg,#0f172a 0%,#111b2f 50%,#0f172a 100%);
  border-radius: 12px;
  opacity: .6;
  animation: shimmer 1.6s infinite linear;
  margin-top: .75rem;
}
@keyframes shimmer{
  0%{ filter: brightness(1); }
  50%{ filter: brightness(1.15); }
  100%{ filter: brightness(1); }
}