*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --azul:        #0D1F3C;
    --azul-medio:  #162848;
    --azul-claro:  #1E3560;
    --laranja:     #F07A1A;
    --laranja-dk:  #C85F00;
    --branco:      #FFFFFF;
    --cinza:       #F4F2EE;
    --muted:       rgba(255,255,255,0.50);
    --borda:       rgba(255,255,255,0.07);
  }

  html { scroll-behavior: smooth; }

  /* Reserva espaço antes das imagens carregarem — elimina CLS */
  img { display: block; max-width: 100%; height: auto; }

  .nav-logo img { height: 46px; width: auto; max-width: 150px; object-fit: contain; }

  /* .hero-logo-col img — removido (regra substituída por .hero-logo-img) */

  .sobre-foto {
    width: 100%; aspect-ratio: 3/4;
    object-fit: cover; object-position: top center;
    border-radius: 10px; border: 1px solid var(--borda);
    background: var(--azul-claro);
  }

  /* Evita recálculo de layout em fontes — reduz CLS */
  body { font-display: swap; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--azul);
    color: var(--branco);
    line-height: 1.6;
    overflow-x: hidden;
  }


/* ── TICKER ─────────────────────────────────────────────────────────────── */
.ticker-wrap {
  width: 100%;
  overflow: hidden;
  background: var(--laranja);
  padding: 1rem 0;
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  align-items: center;
  animation: ticker-scroll 30s linear infinite;
}

.ticker-track span {
  display: inline-flex;
  align-items: center;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--branco);
  padding: 0 1.5rem;
}

.ticker-sep {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
  line-height: 1;
  font-size: 1.2rem;
  opacity: 0.6;
}

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Pausa ao passar o mouse */
.ticker-wrap:hover .ticker-track {
  animation-play-state: paused;
}

/* ── FIM TICKER ──────────────────────────────────────────────────────────── */


/* ── ÍCONES SVG DOS SERVIÇOS ─────────────────────────────────────────────── */
.servico-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 1rem;
  display: block;
  flex-shrink: 0;
}
/* ── FIM ÍCONES ──────────────────────────────────────────────────────────── */

  /* NAVBAR */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(13,31,60,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--borda);
    padding: 0 2.5rem;
    display: flex; align-items: center; justify-content: space-between;
    height: 70px;
  }

  .nav-logo { display: block; }

  .nav-links {
    display: flex; gap: 2rem; list-style: none; align-items: center;
  }

  .nav-links a {
    color: var(--muted); text-decoration: none;
    font-size: 0.83rem; font-weight: 500;
    letter-spacing: 0.5px; text-transform: uppercase;
    transition: color 0.2s, transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-block;
  }

  .nav-links a:hover { color: var(--laranja); transform: translateY(-3px); }

  .nav-cta {
    background: var(--laranja) !important; color: var(--branco) !important;
    padding: 0.5rem 1.25rem; border-radius: 4px;
    font-weight: 700 !important;
    transition: background 0.25s !important, transform 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important, box-shadow 0.25s !important;
  }

  .nav-cta:hover {
    background: var(--laranja-dk) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 18px rgba(240,122,26,0.35);
  }

  .nav-toggle {
    display: none; background: none; border: none; cursor: pointer;
    flex-direction: column; gap: 5px; padding: 4px; z-index: 99999; position: relative;
  }

  .nav-toggle span {
    display: block; width: 24px; height: 2px; background: var(--branco);
    border-radius: 2px; transition: all 0.3s;
  }

  .nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* HERO */
  #hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 4rem 4rem;
    position: relative;
    overflow: hidden;
  }

  .hero-inner {
    display: flex;
    align-items: center;
    gap: 3rem;
    width: 100%;
    position: relative;
    z-index: 1;
  }

  .hero-content {
    flex: 1;
    min-width: 0;
  }

  .hero-logo-col {
    flex: 0 0 420px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-logo-img {
    width: 100%;
    max-width: 420px;
    height: auto;
    object-fit: contain;
    border-radius: 16px;
    background: var(--azul-medio);
  }



  /* #hero > div substituído por .hero-inner + .hero-content */

  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(240,122,26,0.10); border: 1px solid rgba(240,122,26,0.28);
    color: #FF9A3C; padding: 5px 14px; border-radius: 100px;
    font-size: 0.73rem; font-weight: 700; letter-spacing: 1px;
    text-transform: uppercase; margin-bottom: 1.5rem;
  }

  .hero-badge-dot {
    width: 6px; height: 6px; background: var(--laranja);
    border-radius: 50%; animation: pulse 2s infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.5); }
  }

  .hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(5rem, 11vw, 9.5rem);
    line-height: 0.88; letter-spacing: 2px; margin-bottom: 1rem;
  }

  .hero-slogan {
    display: block; font-size: 1.05rem; font-weight: 700;
    color: var(--laranja); letter-spacing: 4px; text-transform: uppercase;
    border-left: 4px solid var(--laranja); padding-left: 14px; margin-bottom: 1.8rem;
  }

  .hero-sub {
    font-size: 1.1rem; color: var(--muted); max-width: 500px;
    margin-bottom: 2.5rem; line-height: 1.75; font-weight: 300;
  }

  .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

  .btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--laranja); color: var(--branco); text-decoration: none;
    font-weight: 700; font-size: 0.88rem; padding: 0.85rem 1.8rem;
    border-radius: 4px; transition: background 0.25s, transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s;
  }

  .btn-primary:hover {
    background: var(--laranja-dk);
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 10px 24px rgba(240,122,26,0.35);
  }

  .btn-secondary {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; color: var(--branco); text-decoration: none;
    font-weight: 500; font-size: 0.88rem; padding: 0.85rem 1.8rem;
    border-radius: 4px; border: 1px solid rgba(255,255,255,0.18);
    transition: border-color 0.25s, background 0.25s, transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .btn-secondary:hover {
    border-color: var(--laranja); background: rgba(240,122,26,0.07);
    transform: translateY(-4px);
  }

  .hero-stats {
    margin-top: 3rem; display: flex; gap: 1.5rem; flex-wrap: nowrap;
    padding-top: 2rem; border-top: 1px solid var(--borda);
  }

  .stat { flex: 1; min-width: 0; }

  .stat-num {
    font-family: 'Bebas Neue', sans-serif; font-size: 4.5rem;
    color: var(--laranja); letter-spacing: 1px; line-height: 1;
  }

  .stat-label {
    font-size: 0.68rem; color: var(--muted);
    text-transform: uppercase; letter-spacing: 0.6px; margin-top: 4px;
    line-height: 1.4;
  }

  .hero-logo-col { display: flex; align-items: center; justify-content: center; }

  /* COMMONS */
  section { padding: 6rem 2rem; }
  .section-header { text-align: left; margin-bottom: 3.5rem; }

  .section-tag {
    display: inline-block; background: rgba(240,122,26,0.09);
    color: var(--laranja); font-size: 0.68rem; font-weight: 700;
    letter-spacing: 2.5px; text-transform: uppercase;
    padding: 5px 16px; border-radius: 100px; margin-bottom: 1rem;
    border: 1px solid rgba(240,122,26,0.20);
  }

  .section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    letter-spacing: 1px; line-height: 1; color: var(--branco);
  }

  .section-title { display: block; width: fit-content; position: relative; }

  .section-title::after {
    content: '';
    position: absolute;
    left: 0; bottom: -6px;
    width: 0; height: 3px;
    background: var(--laranja);
    transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .section-title:hover::after { width: 100%; }

  .section-title span { color: var(--laranja); }

  .section-desc {
    font-size: 0.92rem; color: var(--muted);
    max-width: 500px; margin: 0.8rem 0 0; line-height: 1.75;
  }

  .container { max-width: 1100px; margin: 0 auto; }

  /* SERVICOS */
  #servicos { background: var(--azul-medio); }

  .servicos-grid {
    display: grid; grid-template-columns: repeat(5, 1fr);
    gap: 1px; background: var(--borda);
    border: 1px solid var(--borda); border-radius: 10px;
  }

  .servico-card {
    background: var(--azul-medio); padding: 2.5rem 2rem;
    transition: background 0.3s, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s;
    position: relative; overflow: hidden;
  }

  .servico-card::after {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 3px; background: var(--laranja);
    transform: scaleX(0); transform-origin: left; transition: transform 0.35s;
  }

  .servico-card:hover {
    background: var(--azul-claro);
    transform: scale(1.04);
    box-shadow: 0 14px 32px rgba(0,0,0,0.35);
    z-index: 2;
    border-radius: 8px;
  }
  .servico-card:hover::after { transform: scaleX(1); }

  /* Cantos arredondados do grid (desktop: 5 colunas, 1 linha) */
  .servicos-grid > .servico-card:nth-child(1) { border-radius: 10px 0 0 10px; }
  .servicos-grid > .servico-card:nth-child(5) { border-radius: 0 10px 10px 0; }

  .servico-num {
    font-family: 'Bebas Neue', sans-serif; font-size: 2.8rem;
    color: var(--laranja); letter-spacing: 2px;
    line-height: 1; margin-bottom: 0.4rem;
  }

  .servico-nome {
    font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem;
    letter-spacing: 1px; color: var(--branco); margin-bottom: 0.7rem;
  }

  .servico-desc { font-size: 0.84rem; color: var(--muted); line-height: 1.65; margin-bottom: 1.5rem; }

  .servico-preco {
    font-size: 0.74rem; color: var(--laranja); font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.5px;
    border-top: 1px solid var(--borda); padding-top: 1rem; display: block;
  }

  /* DIFERENCIAIS */
  #por-que-nos { background: var(--azul); }

  /* Grid 2 linhas × 5 colunas — todos os cards mesma altura */
  .diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-auto-rows: 1fr;
    gap: 1.5rem;
  }

  /* Cada card ocupa 1 célula; height:100% garante equalização por row */
  .diferencial {
    padding: 2rem 1.5rem;
    border: 1px solid var(--borda);
    border-radius: 8px;
    background: rgba(255,255,255,0.02);
    transition: border-color 0.3s, background 0.3s;
    display: flex; flex-direction: column;
  }

  .diferencial:hover { border-color: rgba(240,122,26,0.35); background: rgba(240,122,26,0.04); }

  .dif-num {
    font-family: 'Bebas Neue', sans-serif; font-size: 3rem;
    color: var(--laranja); letter-spacing: 1px;
    line-height: 1; margin-bottom: 0.4rem;
  }

  .diferencial-titulo { font-weight: 700; font-size: 0.91rem; margin-bottom: 0.4rem; color: var(--branco); }
  .diferencial-texto { font-size: 0.81rem; color: var(--muted); line-height: 1.65; flex: 1; }

  /* CARROSSEL SERVIÇOS EXTRAS */
  .carousel-wrap { position: relative; margin-top: 3rem; }

  .carousel-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 1.5rem;
  }

  .carousel-label {
    font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem;
    letter-spacing: 1px; color: var(--branco);
  }

  .carousel-label span { color: var(--laranja); }

  .carousel-controls { display: flex; gap: 0.6rem; }

  .car-btn {
    width: 40px; height: 40px; border-radius: 6px;
    border: 1px solid var(--borda); background: rgba(255,255,255,0.04);
    color: var(--branco); cursor: pointer; font-size: 1rem;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
  }

  .car-btn:hover { background: var(--laranja); border-color: var(--laranja); transform: translateY(-2px); }

  .carousel-track-outer {
    overflow: hidden; border-radius: 8px;
  }

  .carousel-track {
    display: flex; gap: 1.5rem;
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
    will-change: transform;
  }

  .carousel-card {
    flex: 0 0 calc(25% - 1.125rem); /* 4 visíveis */
    background: var(--azul-medio);
    border: 1px solid var(--borda);
    border-radius: 8px;
    padding: 2rem 1.75rem;
    position: relative; overflow: hidden;
    transition: border-color 0.3s, background 0.3s;
    display: flex; flex-direction: column;
  }

  .carousel-card::after {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 3px; background: var(--laranja);
    transform: scaleX(0); transform-origin: left; transition: transform 0.35s;
  }

  .carousel-card:hover { background: var(--azul-claro); border-color: rgba(240,122,26,0.3); }
  .carousel-card:hover::after { transform: scaleX(1); }

  .carousel-dots {
    display: flex; gap: 6px; justify-content: center; margin-top: 1.5rem;
  }

  .car-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: rgba(255,255,255,0.15); cursor: pointer;
    transition: background 0.2s, width 0.2s; border: none;
  }

  .car-dot.active { background: var(--laranja); width: 20px; border-radius: 3px; }

  /* SOBRE */
  #sobre { background: var(--azul-medio); }

  .sobre-inner {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 5rem; align-items: center;
  }

  .sobre-visual { position: relative; }

  .sobre-badge-float {
    position: absolute; bottom: -1.2rem; right: -1.2rem;
    background: var(--laranja); color: var(--branco);
    padding: 1rem 1.3rem; border-radius: 8px; text-align: center;
  }

  .sobre-badge-float .num {
    font-family: 'Bebas Neue', sans-serif; font-size: 2rem;
    letter-spacing: 1px; display: block; line-height: 1;
  }

  .sobre-badge-float .lbl {
    font-size: 0.60rem; text-transform: uppercase;
    letter-spacing: 0.5px; opacity: 0.9; white-space: nowrap;
  }

  .sobre-logo { height: 50px; width: auto; margin-bottom: 1.2rem; display: block; }

  .sobre-texto .section-header { text-align: left; }
  .sobre-texto .section-desc { margin: 0.8rem 0 0; text-align: left; }

  .sobre-lista { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.7rem; }

  .sobre-item {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 0.86rem; color: rgba(255,255,255,0.67);
  }

  .sobre-check { color: var(--laranja); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

  /* CTA */
  #agendar { background: var(--laranja); text-align: center; padding: 5rem 2rem; }

  #agendar .section-tag {
    background: rgba(0,0,0,0.10); color: rgba(13,31,60,0.75);
    border-color: rgba(0,0,0,0.12);
  }

  #agendar .section-title { color: var(--azul); margin: 0 auto; }
  #agendar p { color: rgba(13,31,60,0.65); font-size: 0.98rem; max-width: 440px; margin: 0.8rem auto 2rem; }

  .btn-dark {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--azul); color: var(--branco); text-decoration: none;
    font-weight: 700; font-size: 0.92rem; padding: 1rem 2.5rem;
    border-radius: 4px; transition: background 0.25s, transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .btn-dark:hover { background: var(--azul-claro); transform: translateY(-4px); }

  /* CONTATO */
  #contato { background: var(--azul); }

  .contato-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }

  .contato-info h3 {
    font-family: 'Bebas Neue', sans-serif; font-size: 1.9rem;
    letter-spacing: 1px; margin-bottom: 0.4rem;
  }

  .contato-info > p { font-size: 0.86rem; color: var(--muted); margin-bottom: 2rem; }

  .contato-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 1.4rem; }

  .ci-icon {
    width: 38px; height: 38px; border-radius: 8px;
    background: rgba(240,122,26,0.09); border: 1px solid rgba(240,122,26,0.17);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.68rem; font-weight: 700; color: var(--laranja);
    flex-shrink: 0; letter-spacing: 0; font-family: 'DM Sans', sans-serif;
    text-align: center;
  }

  .ci-label { font-size: 0.68rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 2px; }
  .ci-value { font-size: 0.90rem; color: var(--branco); font-weight: 500; }

  .contato-form {
    background: var(--azul-medio); border: 1px solid var(--borda);
    border-radius: 10px; padding: 2rem;
    display: flex; flex-direction: column; gap: 1rem;
  }

  .contato-form h4 {
    font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem;
    letter-spacing: 1px; color: var(--branco);
  }

  .contato-form > p { font-size: 0.79rem; color: var(--muted); margin-top: -0.5rem; }

  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .form-group { display: flex; flex-direction: column; gap: 5px; }

  .form-group label {
    font-size: 0.69rem; color: var(--muted);
    text-transform: uppercase; letter-spacing: 0.5px; font-weight: 600;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    background: var(--azul); border: 1px solid rgba(255,255,255,0.09);
    border-radius: 4px; color: var(--branco);
    padding: 0.7rem 1rem; font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem; transition: border-color 0.2s; outline: none;
  }

  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus { border-color: var(--laranja); }

  .form-group select option { background: var(--azul); }
  .form-group textarea { resize: vertical; min-height: 90px; }

  .form-submit {
    background: var(--laranja); color: var(--branco); border: none;
    padding: 0.9rem 2rem; border-radius: 4px;
    font-family: 'DM Sans', sans-serif; font-size: 0.91rem;
    font-weight: 700; cursor: pointer; transition: background 0.25s, transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    letter-spacing: 0.3px;
  }

  .form-submit:hover { background: var(--laranja-dk); transform: translateY(-3px); }

  /* Botão especial de orçamento */
  .btn-orcamento {
    display: flex; align-items: center; justify-content: center;
    gap: 10px;
    background: #25D366;
    color: var(--branco);
    border: none;
    text-decoration: none;
    padding: 1rem 1.5rem; border-radius: 6px;
    font-family: 'DM Sans', sans-serif; font-size: 1rem;
    font-weight: 700; cursor: pointer;
    transition: background 0.25s, transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    letter-spacing: 0.2px;
    box-shadow: 0 4px 16px rgba(37,211,102,0.30);
    width: 100%;
  }

  .btn-orcamento:hover { background: #1da851; transform: translateY(-3px); }

  .form-aviso {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.30);
    text-align: center;
    line-height: 1.5;
    margin-top: -0.25rem;
  }

  /* MAPA IFRAME */
  .mapa-iframe {
    margin-top: 2rem;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--borda);
  }

  .mapa-iframe iframe {
    width: 100%;
    height: 260px;
    display: block;
    border: none;
    filter: grayscale(30%) invert(5%);
  }

  /* AVALIAÇÕES */
  #avaliacoes { background: #162848; }

  .avaliacoes-carousel-outer { overflow: hidden; }

  .avaliacoes-carousel-track {
    display: flex; gap: 1.5rem;
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  }

  .avaliacao-card {
    flex: 0 0 calc(33.333% - 1rem);
    background: var(--azul);
    border: 1px solid var(--borda);
    border-radius: 8px;
    padding: 1.75rem;
    transition: border-color 0.3s;
    display: flex; flex-direction: column;
  }

  .avaliacao-card:hover { border-color: rgba(240,122,26,0.35); }

  .avaliacao-estrelas {
    color: #F5C518; font-size: 0.95rem;
    letter-spacing: 2px; margin-bottom: 0.75rem;
  }

  .avaliacao-texto {
    font-size: 0.88rem; color: rgba(255,255,255,0.70);
    line-height: 1.65; margin-bottom: 1.2rem;
    font-style: italic; flex: 1;
  }

  .avaliacao-autor { display: flex; align-items: center; gap: 10px; }

  .avaliacao-avatar {
    width: 38px; height: 38px; border-radius: 50%;
    background: rgba(240,122,26,0.15); border: 1px solid rgba(240,122,26,0.25);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Bebas Neue', sans-serif; font-size: 1rem;
    color: var(--laranja); flex-shrink: 0;
  }

  .avaliacao-nome { font-size: 0.85rem; font-weight: 700; color: var(--branco); }
  .avaliacao-fonte { font-size: 0.72rem; color: var(--muted); margin-top: 2px; }
  .avaliacao-fonte a { color: var(--muted); text-decoration: none; border-bottom: 1px dotted var(--muted); transition: color 0.2s, border-color 0.2s; }
  .avaliacao-fonte a:hover { color: var(--laranja); border-color: var(--laranja); }

  /* FAQ */
  .faq-lista {
    max-width: 780px; margin: 0 auto;
    display: flex; flex-direction: column; gap: 1rem;
  }

  .faq-item {
    border: 1px solid var(--borda);
    border-radius: 8px;
    background: rgba(255,255,255,0.02);
    overflow: hidden;
    transition: border-color 0.3s;
  }

  .faq-item:has(.faq-pergunta[aria-expanded="true"]) {
    border-color: rgba(240,122,26,0.35);
  }

  .faq-pergunta {
    width: 100%; display: flex; align-items: center; justify-content: space-between;
    gap: 1rem; padding: 1.25rem 1.5rem;
    background: none; border: none; cursor: pointer;
    font-family: inherit; font-size: 1rem; font-weight: 600;
    color: var(--branco); text-align: left;
  }

  .faq-icone {
    flex-shrink: 0; width: 28px; height: 28px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%; background: rgba(240,122,26,0.12);
    color: var(--laranja); font-size: 1.2rem; line-height: 1;
    transition: transform 0.3s;
  }

  .faq-pergunta[aria-expanded="true"] .faq-icone { transform: rotate(45deg); }

  .faq-resposta {
    max-height: 0; overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 1.5rem;
  }

  .faq-resposta p {
    color: var(--muted); font-size: 0.92rem; line-height: 1.65;
    padding-bottom: 1.25rem;
  }

  .faq-pergunta[aria-expanded="true"] + .faq-resposta {
    max-height: 400px;
  }

  /* TABELA COMPARATIVA: REVISÃO BÁSICA VS COMPLETA */
  .comparativo-wrap { margin-top: 3rem; }

  .comparativo-titulo {
    font-size: 1.3rem; font-weight: 700; color: var(--branco);
    margin-bottom: 1.25rem; text-align: center;
  }

  .comparativo-table-outer {
    overflow-x: auto; border: 1px solid var(--borda); border-radius: 8px;
    -webkit-overflow-scrolling: touch;
  }

  .comparativo-scroll-hint {
    display: none; text-align: center; font-size: 0.78rem; color: var(--muted);
    margin-top: 0.6rem; gap: 0.4rem; align-items: center; justify-content: center;
  }

  .comparativo-table {
    width: 100%; border-collapse: collapse; min-width: 560px;
  }

  .comparativo-table th, .comparativo-table td {
    padding: 0.9rem 1.25rem; text-align: left; font-size: 0.88rem;
    border-bottom: 1px solid var(--borda);
  }

  .comparativo-table th {
    background: var(--azul-medio); color: var(--branco);
    font-weight: 700; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.5px;
  }

  .comparativo-table th:not(:first-child), .comparativo-table td:not(:first-child) {
    text-align: center;
  }

  .comparativo-table tbody tr:last-child td { border-bottom: none; }

  .comparativo-table tbody tr:nth-child(even) { background: rgba(255,255,255,0.02); }

  .comparativo-check { color: var(--laranja); font-weight: 700; font-size: 1.1rem; }
  .comparativo-x { color: var(--muted); }

  .comparativo-nota {
    margin-top: 1.25rem; text-align: center; font-size: 0.88rem; color: var(--muted);
  }

  .comparativo-nota a { color: var(--laranja); text-decoration: none; border-bottom: 1px dotted var(--laranja); }
  .comparativo-nota a:hover { color: var(--branco); }

  .avaliacoes-nav {
    display: flex; justify-content: center; align-items: center;
    gap: 1rem; margin-top: 2rem;
  }

  .avaliacoes-dots { display: flex; gap: 6px; }

  .av-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: rgba(255,255,255,0.15); cursor: pointer;
    transition: background 0.2s, width 0.2s; border: none;
  }

  .av-dot.active { background: var(--laranja); width: 20px; border-radius: 3px; }

  .avaliacoes-cta {
    text-align: center; margin-top: 2.5rem;
  }

  .avaliacoes-cta p { font-size: 0.88rem; color: var(--muted); margin-bottom: 1rem; }

  .btn-google {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--branco); color: #333; text-decoration: none;
    font-weight: 700; font-size: 0.88rem; padding: 0.75rem 1.5rem;
    border-radius: 4px; transition: opacity 0.25s, transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .btn-google:hover { opacity: 0.9; transform: translateY(-3px); }

  /* BOTÕES DE NAVEGAÇÃO */
  .nav-apps {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--borda);
    border-radius: 8px;
  }

  .nav-apps-label {
    font-size: 0.70rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 0.4rem;
  }

  .nav-apps-end {
    font-size: 0.88rem;
    color: var(--branco);
    margin-bottom: 1.2rem;
    font-weight: 500;
  }

  .nav-apps-btns {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
  }

  .nav-app-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 0.6rem 1.1rem;
    border-radius: 6px;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.15s;
    flex: 1;
    justify-content: center;
    min-width: 110px;
  }

  .nav-app-btn:hover { opacity: 0.85; transform: translateY(-2px); }

  .nav-app-google { background: #4285F4; color: #fff; }
  .nav-app-waze   { background: #33CCFF; color: #1a1a1a; }
  .nav-app-apple  { background: #f5f5f7; color: #1a1a1a; }

  /* WHATSAPP */
  .whatsapp-float {
    position: fixed; bottom: 2rem; right: 2rem; z-index: 99;
    background: #25D366; width: 56px; height: 56px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.32); text-decoration: none;
    animation: wafloat 3s ease-in-out infinite;
  }

  .instagram-float {
    position: fixed; bottom: 2rem; right: 5rem; z-index: 99;
    width: 56px; height: 56px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    text-decoration: none;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    box-shadow: 0 4px 20px rgba(214,36,159,0.35);
    animation: wafloat 3s ease-in-out infinite;
    animation-delay: 0.3s;
  }

  @keyframes wafloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
  }

  .whatsapp-float svg { width: 28px; height: 28px; fill: white; }

  /* FOOTER */
  footer {
    background: var(--azul-medio);
    border-top: 1px solid var(--borda);
    padding: 3rem 2rem 2rem;
  }

  .footer-inner {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem;
  }

  .footer-logo { height: 42px; width: auto; display: block; margin-bottom: 1rem; }

  .footer-brand p { font-size: 0.81rem; color: var(--muted); line-height: 1.7; max-width: 280px; }

  .footer-col h4 {
    font-size: 0.69rem; text-transform: uppercase; letter-spacing: 1.5px;
    color: rgba(255,255,255,0.28); margin-bottom: 1rem; font-weight: 600;
  }

  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 0.6rem; }
  .footer-col ul a { color: rgba(255,255,255,0.38); text-decoration: none; font-size: 0.83rem; transition: color 0.2s; }
  .footer-col ul a:hover { color: var(--laranja); }

  .footer-bottom {
    max-width: 1100px; margin: 2rem auto 0;
    padding-top: 1.5rem; border-top: 1px solid var(--borda);
    display: flex; justify-content: center; align-items: center;
    font-size: 0.74rem; color: rgba(255,255,255,0.17);
    flex-wrap: wrap; gap: 0.5rem;
  }

  /* MOBILE */

  @media (max-width: 900px) {
    .hero-inner {
      flex-direction: column-reverse;
      gap: 2rem;
    }
    .hero-logo-col {
      flex: 0 0 auto;
      width: 100%;
      max-width: 280px;
      margin: 0 auto;
    }
  }
  @media (max-width: 900px) {
    #hero { padding: 8rem 2rem 4rem; }
    /* #hero::before removido no responsivo também */
    .sobre-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .sobre-badge-float { right: 0; }
    .contato-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
    section { padding: 4rem 1.5rem; }
    .diferenciais-grid { grid-template-columns: repeat(2, 1fr); }
    .servicos-grid { grid-template-columns: repeat(2, 1fr); }
    .servicos-grid > .servico-card:nth-child(1) { border-radius: 10px 0 0 0; }
    .servicos-grid > .servico-card:nth-child(2) { border-radius: 0 10px 0 0; }
    .servicos-grid > .servico-card:nth-child(5) { grid-column: 1 / -1; border-radius: 0 0 10px 10px; }
    .carousel-card { flex: 0 0 calc(50% - 0.75rem); }
  }

  @media (max-width: 1100px) and (min-width: 901px) {
    .diferenciais-grid { grid-template-columns: repeat(3, 1fr); }
    .servicos-grid { grid-template-columns: repeat(3, 1fr); }
    .servicos-grid > .servico-card:nth-child(1) { border-radius: 10px 0 0 0; }
    .servicos-grid > .servico-card:nth-child(3) { border-radius: 0 10px 0 0; }
    .servicos-grid > .servico-card:nth-child(4) { border-radius: 0 0 0 10px; }
    .servicos-grid > .servico-card:nth-child(5) { grid-column: 2 / -1; border-radius: 0 0 10px 0; }
    .carousel-card { flex: 0 0 calc(33.333% - 1rem); }
  }

  @media (max-width: 600px) {
    .comparativo-scroll-hint { display: flex; }
    .nav-links {
      display: none; flex-direction: column;
      position: fixed; inset: 0;
      background: #0D1F3C;
      padding: 6rem 2.5rem 2.5rem;
      gap: 0; z-index: 9998;
      justify-content: center; align-items: center; text-align: center;
    }
    .nav-links.open { display: flex; }
    .nav-links li { width: 100%; }
    .nav-links a {
      display: block; font-size: 1.8rem !important;
      font-family: 'Bebas Neue', sans-serif; letter-spacing: 3px;
      padding: 1rem 0; color: rgba(255,255,255,0.75) !important;
      border-bottom: 1px solid rgba(255,255,255,0.07); width: 100%;
    }
    .nav-links a:hover { color: var(--laranja) !important; }
    .nav-links .nav-cta {
      background: var(--laranja) !important; color: var(--branco) !important;
      border-radius: 6px !important; margin-top: 1.5rem;
      padding: 1rem 2rem !important; border-bottom: none !important;
    }
    .nav-toggle { display: flex; }
    .diferenciais-grid { grid-template-columns: 1fr; }
    .servicos-grid { grid-template-columns: 1fr; }
    .servicos-grid > .servico-card:nth-child(1) { border-radius: 10px 10px 0 0; }
    .servicos-grid > .servico-card:nth-child(5) { grid-column: auto; border-radius: 0 0 10px 10px; }
    .carousel-card { flex: 0 0 100%; }
  }

  /* SCROLL REVEAL — seções aparecem ao rolar a página */
  /* Elementos visíveis por padrão — JS adiciona animação como enhancement */
  .animate-on-scroll {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  }

  /* Quando JS está ativo, prepara para animação */
  .js-ready .animate-on-scroll {
    opacity: 0;
    transform: translateY(32px);
  }

  .js-ready .animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* Respeita usuários que pedem menos movimento */
  @media (prefers-reduced-motion: reduce) {
    .animate-on-scroll {
      opacity: 1;
      transform: none;
      transition: none;
    }
  }
/* ── CARD CLICÁVEL ───────────────────────────────────────────────────────── */
.servico-card--clicavel {
  cursor: pointer;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  position: relative;
}
.servico-card--clicavel:hover {
  transform: translateY(-4px);
  border-color: rgba(240,122,26,0.5);
  box-shadow: 0 8px 32px rgba(240,122,26,0.12);
}
.servico-card-hint {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--laranja);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ── POPUP OVERLAY ───────────────────────────────────────────────────────── */
.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(5, 12, 28, 0.85);
  backdrop-filter: blur(6px);
  padding: 1.5rem;
  overflow-y: auto;
  align-items: flex-start;
  justify-content: center;
}
.popup-overlay.aberto {
  display: flex;
}

.popup-box {
  background: #0F2540;
  border: 1px solid rgba(240,122,26,0.2);
  border-radius: 16px;
  padding: 2.5rem;
  max-width: 760px;
  width: 100%;
  margin: auto;
  position: relative;
  animation: popup-in 0.25s cubic-bezier(0.16,1,0.3,1);
}
@keyframes popup-in {
  from { opacity: 0; transform: translateY(24px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.popup-fechar {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(255,255,255,0.07);
  border: none;
  color: var(--branco);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.popup-fechar:hover { background: rgba(240,122,26,0.3); }

.popup-header {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.popup-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}
.popup-tag {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--laranja);
  margin-bottom: 0.3rem;
}
.popup-titulo {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.4rem;
}
.popup-subtitulo {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

.popup-alerta {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  background: rgba(240,122,26,0.1);
  border: 1px solid rgba(240,122,26,0.3);
  border-radius: 8px;
  padding: 1rem 1.15rem;
  margin-bottom: 1.5rem;
}
.popup-alerta svg { flex-shrink: 0; margin-top: 2px; }
.popup-alerta p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
}

.popup-bloco {
  margin-bottom: 1.25rem;
}
.popup-bloco h3 {
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--laranja);
  margin-bottom: 0.5rem;
}
.popup-bloco p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
}

.popup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
}
.popup-col h3 {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--laranja);
  margin-bottom: 0.6rem;
}
.popup-col ul {
  list-style: none;
  display: grid;
  gap: 0.45rem;
}
.popup-col ul li {
  font-size: 0.87rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.75);
  padding-left: 1rem;
  position: relative;
}
.popup-col ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--laranja);
  font-size: 0.75rem;
}

.popup-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: var(--laranja);
  color: var(--branco);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.9rem 2rem;
  border-radius: 6px;
  transition: background 0.2s, transform 0.2s;
  width: 100%;
}
.popup-cta:hover {
  background: var(--laranja-dk);
  transform: translateY(-2px);
}

@media (max-width: 600px) {
  .popup-box { padding: 1.5rem 1.25rem; }
  .popup-grid { grid-template-columns: 1fr; gap: 1rem; }
  .popup-header { flex-direction: column; gap: 0.75rem; }
  .popup-titulo { font-size: 1.2rem; }
}
/* ── FIM POPUP ───────────────────────────────────────────────────────────── */

/* ── COMPARATIVO ALTUS ───────────────────────────────────────────────────── */
.comparativo-altus {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--borda);
}

.comparativo-altus-header {
  text-align: center;
  margin-bottom: 2rem;
}

.comparativo-altus-titulo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: 1px;
  margin-top: 0.5rem;
}

.comparativo-altus-titulo span {
  color: var(--laranja);
}

.comparativo-altus-outer {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 12px;
  border: 1px solid var(--borda);
}

.comparativo-altus-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.comparativo-altus-table thead tr {
  background: var(--azul-medio);
}

.comparativo-altus-table thead th {
  padding: 1rem 1.25rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.5);
  text-align: center;
  border-bottom: 1px solid var(--borda);
}

.comparativo-altus-table thead th.col-item {
  text-align: left;
  width: 38%;
}

.comparativo-altus-table thead th.col-altus {
  color: var(--laranja);
  background: rgba(240,122,26,0.07);
  border-left: 1px solid rgba(240,122,26,0.2);
  border-right: 1px solid rgba(240,122,26,0.2);
}

.comparativo-altus-table tbody tr {
  border-bottom: 1px solid var(--borda);
  transition: background 0.15s;
}

.comparativo-altus-table tbody tr:last-child {
  border-bottom: none;
}

.comparativo-altus-table tbody tr:hover {
  background: rgba(255,255,255,0.02);
}

.comparativo-altus-table td {
  padding: 0.9rem 1.25rem;
  text-align: center;
  color: rgba(255,255,255,0.65);
  vertical-align: middle;
}

.comparativo-altus-table td.col-item {
  text-align: left;
  color: var(--branco);
  font-weight: 500;
}

/* Coluna Altus — destaque */
.comparativo-altus-table td.col-altus,
.comparativo-altus-table th.col-altus {
  background: rgba(240,122,26,0.06);
  border-left: 1px solid rgba(240,122,26,0.15);
  border-right: 1px solid rgba(240,122,26,0.15);
}

/* Estados das células */
.comp-sim {
  color: #4ADE80 !important;
  font-weight: 700;
  font-size: 0.85rem;
}

.comp-nao {
  color: rgba(255,255,255,0.25) !important;
  font-size: 1.1rem;
}

.comp-talvez {
  color: rgba(255,255,255,0.35) !important;
  font-size: 0.8rem;
  font-style: italic;
}

.comparativo-altus-scroll-hint {
  text-align: center;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.25);
  margin-top: 0.75rem;
  display: none;
}

@media (max-width: 700px) {
  .comparativo-altus-scroll-hint { display: block; }
}

.comparativo-altus-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 2rem;
  padding: 1.5rem 2rem;
  background: rgba(240,122,26,0.07);
  border: 1px solid rgba(240,122,26,0.2);
  border-radius: 10px;
  flex-wrap: wrap;
}

.comparativo-altus-cta p {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--branco);
  margin: 0;
}

@media (max-width: 600px) {
  .comparativo-altus-cta {
    flex-direction: column;
    text-align: center;
  }
  .comparativo-altus-cta .btn-primary {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}
/* ── FIM COMPARATIVO ALTUS ───────────────────────────────────────────────── */
