/* ================================================
   FONTES LOCAIS — Poppins (sem requisição ao Google)
   ================================================ */
@font-face { font-family:'Poppins'; font-style:normal; font-weight:400; font-display:swap; src:url('../assets/fonts/poppins-400.woff2') format('woff2'); }
@font-face { font-family:'Poppins'; font-style:normal; font-weight:500; font-display:swap; src:url('../assets/fonts/poppins-500.woff2') format('woff2'); }
@font-face { font-family:'Poppins'; font-style:normal; font-weight:600; font-display:swap; src:url('../assets/fonts/poppins-600.woff2') format('woff2'); }
@font-face { font-family:'Poppins'; font-style:normal; font-weight:700; font-display:swap; src:url('../assets/fonts/poppins-700.woff2') format('woff2'); }
@font-face { font-family:'Poppins'; font-style:normal; font-weight:800; font-display:swap; src:url('../assets/fonts/poppins-800.woff2') format('woff2'); }
@font-face { font-family:'Poppins'; font-style:normal; font-weight:900; font-display:swap; src:url('../assets/fonts/poppins-900.woff2') format('woff2'); }

/* ================================================
   RESET E CONFIGURAÇÃO GLOBAL
   ================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ================================================
   VARIÁVEIS DE COR E ESTILO
   Para alterar as cores do site, edite aqui
   ================================================ */
:root {
  --blue-dark:  #0a2342; /* Azul escuro — fundo do header e footer */
  --blue:       #1253a4; /* Azul principal — ícones e destaques */
  --blue-light: #1e72d4; /* Azul claro — hover e efeitos */
  --blue-pale:  #e8f1fb; /* Azul bem claro — fundos de badges */
  --green:      #18c25a; /* Verde — cor dos botões principais */
  --green-dark: #0fa348; /* Verde escuro — hover dos botões */
  --dark:       #0d1b2a; /* Cor escura — seção de soluções */
  --dark2:      #132338; /* Cor escura 2 — seção de diferenciais */
  --gray:       #f5f7fa; /* Cinza claro — fundo de seções alternadas */
  --text:       #1a2535; /* Cor padrão do texto */
  --text-muted: #5a6a7e; /* Cor de texto secundário/suave */
  --white:      #ffffff;
  --radius:     12px;    /* Arredondamento padrão dos cards */
  --shadow:     0 4px 24px rgba(10,35,66,.12); /* Sombra padrão dos cards */
}

/* ================================================
   BASE — COMPORTAMENTO GERAL DA PÁGINA
   ================================================ */
html { scroll-behavior: smooth; /* Rolagem suave ao clicar em âncoras */ }
body { font-family: 'Poppins', sans-serif; color: var(--text); background: #fff; overflow-x: hidden; }
/* Foco visível para navegação por teclado */
:focus-visible { outline: 3px solid var(--blue-light); outline-offset: 3px; border-radius: 4px; }

/* ================================================
   HEADER — BARRA DE NAVEGAÇÃO SUPERIOR
   Fica fixo no topo e muda de fundo ao rolar
   ================================================ */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 2.5% 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 78px;
  background: transparent; /* Começa transparente sobre o hero */
  transition: background .3s, box-shadow .3s;
}
/* Classe adicionada via JS quando o usuário rola a página */
#header.scrolled {
  background: var(--blue-dark);
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
}

/* --- Logo --- */
.logo { display: flex; align-items: center; gap: 10px; }
/* --- Botão de orçamento no header --- */
.btn-header {
  background: var(--green); color: #fff; border: none; border-radius: 8px;
  padding: 10px 22px; font-family: 'Poppins', sans-serif;
  font-size: .88rem; font-weight: 700; cursor: pointer; text-decoration: none;
  transition: background .2s, transform .15s;
  display: inline-flex; align-items: center; gap: 8px; /* alinha ícone e texto */
}
.btn-header:hover { background: var(--green-dark); transform: translateY(-1px); }


/* ================================================
   HERO — SEÇÃO PRINCIPAL (BANNER DO TOPO)
   ================================================ */
#hero {
  min-height: 100vh; /* Ocupa a tela inteira */
  position: relative;
  display: flex; align-items: center; justify-content: center; text-align: center;
  overflow: hidden;
  background: var(--blue-dark); /* Cor de fallback enquanto as fotos carregam */
}

/* --- Slideshow de fotos de fundo ---
   Adicione as fotos em assets/slide1.jpg, slide2.jpg, slide3.jpg, slide4.jpg
   Para mais slides: adicione mais .slide no HTML e ajuste o animation-delay
   ---------------------------------------- */
.hero-slideshow {
  position: absolute; inset: 0; z-index: 0;
}
.hero-slideshow .slide {
  position: absolute; inset: 0;
  opacity: 0;
  animation: heroFadeIn 1.8s ease forwards; /* Surge suavemente ao abrir o site */
}
/* Imagem cobre o slide inteiro como background-size: cover */
.hero-slideshow .slide img {
  width: 100%; height: 100%; object-fit: cover; object-position: center; display: block;
}
@keyframes heroFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* --- Para reativar o slideshow no futuro, substitua o bloco acima por:
.hero-slideshow .slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0;
  animation: heroSlide 240s infinite;
}
.hero-slideshow .slide:nth-child(1) { animation-delay: 0s; }
.hero-slideshow .slide:nth-child(2) { animation-delay: 60s; }
.hero-slideshow .slide:nth-child(3) { animation-delay: 120s; }
.hero-slideshow .slide:nth-child(4) { animation-delay: 180s; }
@keyframes heroSlide {
  0%  { opacity: 0; } 1%  { opacity: 1; }
  24% { opacity: 1; } 25% { opacity: 0; }
  100%{ opacity: 0; }
}
--- */

/* --- Overlay escuro sobre as fotos (garante legibilidade do texto) ---
   Ajuste a opacidade (ex: .82 → .60) para deixar as fotos mais visíveis
   ---------------------------------------- */
.hero-bg {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(6,21,37,.82) 0%, rgba(10,35,66,.78) 40%, rgba(13,48,96,.72) 100%);
}


/* --- Conteúdo central do hero (fica acima de tudo) --- */
.hero-content { position: relative; z-index: 2; max-width: 780px; padding: 0 20px; margin-bottom: 100px; }

/* ================================================
   ANIMAÇÕES DE ENTRADA DO HERO
   Badge desce, título sobe, botões sobem depois
   do efeito de digitação terminar (~1.8s)
   ================================================ */
.hero-tag  { animation: heroSlideDown .6s ease .1s both; }
#hero h1   { animation: heroFadeUp .7s ease .4s both; }
.hero-btns { animation: heroFadeUp .6s ease 1.8s both; }

@keyframes heroSlideDown {
  from { opacity: 0; transform: translateY(-18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Etiqueta/badge acima do título */
.hero-tag {
  display: inline-block;
  background: rgba(255,255,255,.1); color: rgba(255,255,255,.9);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50px; padding: 6px 18px; font-size: .8rem;
  font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 20px;
}
/* Título principal */
#hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem); /* Responsivo: min 2.2rem, max 3.6rem */
  font-weight: 900; color: #ffffff; line-height: 1.1;
  margin-bottom: 16px; text-wrap: balance;
}
/* Palavra em destaque dentro do título */
#hero h1 .highlight { color: #7dc4ff; }

/* Subtítulo/descrição */
#hero p {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,.75); max-width: 560px; margin: 0 auto 36px;
  line-height: 1.7;
}

/* Grupo de botões */
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Botão primário (verde, destaque) */
.btn-primary {
  background: var(--green); color: #fff; border: none; border-radius: 10px;
  padding: 16px 36px; font-family: 'Poppins', sans-serif;
  font-size: 1rem; font-weight: 700; cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; gap: 10px;
  box-shadow: 0 6px 28px rgba(24,194,90,.4);
  transition: background .2s, transform .15s, box-shadow .2s;
}
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 10px 36px rgba(24,194,90,.5); }

/* Botão secundário (transparente, contorno) */
.btn-secondary {
  background: rgba(255,255,255,.1); color: #fff;
  border: 1px solid rgba(255,255,255,.3); border-radius: 10px;
  padding: 16px 32px; font-family: 'Poppins', sans-serif;
  font-size: 1rem; font-weight: 600; cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; gap: 10px;
  transition: background .2s;
}
.btn-secondary:hover { background: rgba(255,255,255,.18); }

/* Estatísticas (clientes, satisfação, garantia) — atualmente ocultas no HTML */
.hero-stats {
  display: flex; gap: 40px; justify-content: center; margin-top: 60px;
  flex-wrap: wrap;
}
.hero-stat { color: rgba(255,255,255,.9); text-align: center; }
.hero-stat strong { display: block; font-size: 2rem; font-weight: 800; color: #7dc4ff; }
.hero-stat span { font-size: .82rem; color: rgba(255,255,255,.6); }

/* Indicador "VEJA MAIS" com seta animada no rodapé do hero */
.hero-scroll {
  position: absolute; bottom: 28px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(255,255,255,.4); font-size: .72rem; letter-spacing: .06em;
  animation: bounce 2s infinite;
}
.hero-scroll svg { width: 20px; height: 20px; }
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(6px); }
}

/* ================================================
   SEÇÕES — ESPAÇAMENTO E COMPONENTES COMUNS
   ================================================ */
section { padding: 80px 5%; }

/* Badge colorido acima dos títulos de seção */
.section-tag {
  display: inline-block; background: var(--blue-pale); color: var(--blue);
  border-radius: 50px; padding: 5px 16px; font-size: .78rem;
  font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 12px;
}
/* Título principal de cada seção */
.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.3rem);
  font-weight: 800; color: var(--text); line-height: 1.2; text-wrap: balance;
}
.section-title.white { color: #fff; } /* Variante para seções escuras */

/* Subtítulo/descrição de seção */
.section-sub {
  color: var(--text-muted); font-size: 1rem; margin-top: 10px;
  max-width: 560px; line-height: 1.6;
}
.section-sub.white { color: rgba(255,255,255,.65); } /* Variante para seções escuras */

/* ================================================
   SOLUÇÕES — CARDS DOS APARELHOS ATENDIDOS
   ================================================ */
#solutions {
  background:
    linear-gradient(rgba(6,15,26,.89), rgba(6,15,26,.89)),
    url('../assets/slide1.webp') center/cover no-repeat fixed;
}
.solutions-header { text-align: center; margin-bottom: 50px; }
.solutions-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px; max-width: 1000px; margin: 0 auto;
}
.solution-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 36px 28px; text-align: center;
  transition: background .25s, transform .25s;
}
.solution-card:hover { background: rgba(255,255,255,.08); transform: translateY(-4px); }
.solution-icon {
  width: 64px; height: 64px; background: var(--blue); border-radius: 16px;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
}
.solution-icon svg { width: 32px; height: 32px; fill: white; }
.solution-card h3 { color: #fff; font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.solution-card p { color: rgba(255,255,255,.55); font-size: .88rem; line-height: 1.6; }

/* ================================================
   SOBRE NÓS — SEÇÃO "QUEM SOMOS"
   ================================================ */
#about { background: var(--white); }
.about-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center; max-width: 1100px; margin: 0 auto;
}
.about-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue-pale); color: var(--blue);
  border-radius: 50px; padding: 6px 16px; font-size: .82rem; font-weight: 600;
  margin-bottom: 14px;
}
.about-text h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); font-weight: 800; margin-bottom: 18px; }
.about-text p { color: var(--text-muted); line-height: 1.75; font-size: .95rem; margin-bottom: 14px; }
.about-text p strong { color: var(--text); }

/* Lista de características/diferenciais dentro do "Sobre Nós" */
.about-features { display: flex; flex-direction: column; gap: 12px; margin: 24px 0; }
.about-feature { display: flex; align-items: flex-start; gap: 12px; }
.about-feature-icon {
  width: 36px; height: 36px; background: var(--blue-pale); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.about-feature-icon svg { width: 18px; height: 18px; fill: var(--blue); }
.about-feature p { font-size: .88rem; color: var(--text-muted); line-height: 1.5; }
.about-feature p strong { color: var(--text); display: block; font-size: .9rem; }

/* Imagem / placeholder do lado direito */
.about-img {
  border-radius: 20px; overflow: hidden; position: relative;
  background: var(--blue-pale);
  display: flex; align-items: center; justify-content: center;
  min-height: 420px;
}
.img-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 12px; padding: 40px;
}
.img-placeholder svg { width: 64px; height: 64px; opacity: .3; }
.img-placeholder span { font-size: .8rem; color: var(--blue); opacity: .6; font-family: monospace; text-align: center; }
.img-placeholder-stripes {
  position: absolute; inset: 0; opacity: .05;
  background: repeating-linear-gradient(45deg, var(--blue) 0, var(--blue) 1px, transparent 1px, transparent 10px);
}

/* Linha de CTA com botão e telefone */
.about-cta-row { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-top: 10px; }
.btn-cta {
  background: var(--green); color: #fff; border: none; border-radius: 10px;
  padding: 14px 30px; font-family: 'Poppins', sans-serif;
  font-size: .95rem; font-weight: 700; cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; gap: 10px;
  box-shadow: 0 4px 20px rgba(24,194,90,.3);
  transition: background .2s, transform .15s;
}
.btn-cta:hover { background: var(--green-dark); transform: translateY(-2px); }
.about-phone { font-size: .9rem; color: var(--text-muted); }
.about-phone a { color: var(--blue); font-weight: 600; text-decoration: none; }

/* ================================================
   SERVIÇOS — CARDS DE CADA TIPO DE CONSERTO
   ================================================ */
#services { background: var(--gray); }
.services-header { text-align: center; margin-bottom: 50px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px; max-width: 1200px; margin: 0 auto;
}
.service-card {
  background: #fff; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
  transition: transform .3s cubic-bezier(.22,.68,0,1.2), box-shadow .3s;
  cursor: pointer;
}
/* Hover — desktop */
.service-card:hover { transform: translateY(-7px) scale(1.02); box-shadow: 0 20px 48px rgba(10,35,66,.22); }
.service-card:hover .service-img::after {
  background: linear-gradient(160deg, rgba(10,35,66,.30) 0%, rgba(18,83,164,.18) 100%);
}
/* Active — toque no celular */
.service-card:active { transform: scale(.97); box-shadow: 0 4px 16px rgba(10,35,66,.12); transition-duration: .1s; }
.service-card:active .service-img::after {
  background: linear-gradient(160deg, rgba(10,35,66,.65) 0%, rgba(18,83,164,.50) 100%);
}

/* Área da imagem do serviço */
.service-img {
  height: 250px; position: relative; overflow: hidden;
  background: var(--blue-pale);
  display: flex; align-items: center; justify-content: center;
}
.service-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* Overlay sobre a imagem para harmonizar fotos de fontes diferentes */
.service-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(10,35,66,.55) 0%, rgba(18,83,164,.38) 100%);
  pointer-events: none;
  transition: background .35s;
}

/* Corpo do card com texto e botão */
.service-body { padding: 22px 22px 24px; }
.service-body h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.service-body p { color: var(--text-muted); font-size: .85rem; line-height: 1.6; margin-bottom: 16px; }
.btn-service {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green); color: #fff; text-decoration: none;
  border-radius: 8px; padding: 10px 20px; font-size: .84rem; font-weight: 700;
  transition: background .2s;
}
.btn-service:hover { background: var(--green-dark); }

/* ================================================
   MARCAS — FAIXA DE LOGOS DAS MARCAS ATENDIDAS
   Animação de rolagem contínua (marquee)
   ================================================ */
#brands { background: #fff; padding: 60px 0; overflow: hidden; }
.brands-header { text-align: center; margin-bottom: 36px; }
.brands-title { font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--text-muted); }

/* Efeito de desfoque nas bordas para suavizar a entrada/saída dos logos */
.brands-track-wrap { position: relative; overflow: hidden; }
.brands-track-wrap::before,
.brands-track-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2;
  pointer-events: none;
}
.brands-track-wrap::before { left: 0;  background: linear-gradient(90deg,  #fff 0%, transparent 100%); }
.brands-track-wrap::after  { right: 0; background: linear-gradient(-90deg, #fff 0%, transparent 100%); }

/* Trilha que contém os logos (duplicada no HTML para loop infinito) */
.brands-track {
  display: flex; align-items: center;
  width: max-content;
  animation: marquee 28s linear infinite; /* Altere 28s para mudar a velocidade */
}
.brands-track:hover { animation-play-state: paused; } /* Para ao passar o mouse */
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); } /* Move metade (a outra metade é a cópia) */
}
.brand-logo {
  display: flex; align-items: center; justify-content: center;
  padding: 16px 44px; opacity: .45; transition: opacity .25s, filter .25s;
  filter: grayscale(1); flex-shrink: 0;
}
.brand-logo:hover { opacity: 1; filter: grayscale(0); }
.brand-logo img {
  width: 100px;
  height: 60px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

/* Logos em texto (quando não há imagem da marca) */
.brand-logo-text {
  font-size: 1.25rem; font-weight: 900; letter-spacing: -.04em; color: #8899b0;
  white-space: nowrap; transition: color .2s;
}
.brand-logo:hover .brand-logo-text { color: var(--blue); }

/* ================================================
   DIFERENCIAIS — POR QUE ESCOLHER A FM
   ================================================ */
#differentials { background: var(--dark2); }
.differentials-header { text-align: center; margin-bottom: 50px; }
.diff-grid {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 32px; max-width: 1000px; margin: 0 auto;
}
/* Cada card ocupa 1/3 da linha; min-width garante que não fique pequeno demais */
.diff-card { flex: 0 1 calc(33.333% - 22px); min-width: 220px; text-align: center; padding: 28px 20px; }
.diff-icon {
  width: 60px; height: 60px; background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px; display: flex; align-items: center;
  justify-content: center; margin: 0 auto 18px;
}
.diff-icon svg { width: 28px; height: 28px; fill: #7dc4ff; }
.diff-card h3 { color: #fff; font-size: .95rem; font-weight: 700; margin-bottom: 8px; }
.diff-card p { color: rgba(255,255,255,.5); font-size: .83rem; line-height: 1.6; }

/* ================================================
   AVALIAÇÕES — DEPOIMENTOS DE CLIENTES
   Carrossel com rolagem automática
   ================================================ */
#testimonials { background: var(--gray); padding: 80px 0; overflow: hidden; }
.testimonials-header { text-align: center; margin-bottom: 50px; padding: 0 5%; }

/* Efeito de desfoque nas bordas (igual ao de marcas) */
.testi-track-wrap { position: relative; overflow: hidden; }
.testi-track-wrap::before,
.testi-track-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 140px; z-index: 2; pointer-events: none;
}
.testi-track-wrap::before { left: 0;  background: linear-gradient(90deg,  var(--gray) 0%, transparent 100%); }
.testi-track-wrap::after  { right: 0; background: linear-gradient(-90deg, var(--gray) 0%, transparent 100%); }

/* Trilha dos depoimentos */
.testi-track {
  display: flex; gap: 24px;
  width: max-content; padding: 8px 24px 16px;
  animation: testi-scroll 30s linear infinite; /* Altere 30s para mudar a velocidade */
}
.testi-track:hover { animation-play-state: paused; }
@keyframes testi-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Card individual de depoimento */
.testi-card {
  background: #fff; border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow);
  width: 320px; flex-shrink: 0;
}
.testi-header { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.testi-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--blue); display: flex; align-items: center;
  justify-content: center; color: #fff; font-weight: 700; font-size: 1.1rem;
  flex-shrink: 0;
}
.testi-name { font-weight: 700; font-size: .9rem; }
.testi-date { font-size: .78rem; color: var(--text-muted); }
.testi-stars { display: flex; gap: 2px; margin-bottom: 12px; }
.testi-stars svg { width: 16px; height: 16px; fill: #f5a623; } /* Cor das estrelas */
.testi-text { font-size: .88rem; color: var(--text-muted); line-height: 1.65; }
.google-badge {
  display: flex; align-items: center; gap: 6px; margin-top: 14px;
  font-size: .75rem; color: var(--text-muted);
}
.google-badge svg { width: 16px; height: 16px; }

/* ================================================
   CONTATO — INFORMAÇÕES E MAPA
   ================================================ */
#contact { background: #fff; padding: 80px 5%; }
.contact-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: start; max-width: 1100px; margin: 0 auto;
}
.contact-info h2 { font-size: 1.8rem; font-weight: 800; margin-bottom: 24px; }
.contact-items { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-item-icon {
  width: 44px; height: 44px; background: var(--blue-pale);
  border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-item-icon svg { width: 22px; height: 22px; fill: var(--blue); }
.contact-item h4 { font-size: .88rem; font-weight: 700; margin-bottom: 3px; }
.contact-item p, .contact-item a { font-size: .88rem; color: var(--text-muted); text-decoration: none; }
.contact-item a { color: var(--blue); font-weight: 600; }

/* Mapa incorporado do Google Maps */
.map-wrap { border-radius: 16px; overflow: hidden; height: 360px; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* ================================================
   FOOTER — RODAPÉ DO SITE
   ================================================ */
#footer {
  background: var(--blue-dark); color: rgba(255,255,255,.65);
  padding: 50px 5% 28px;
}
.footer-inner {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px;
  max-width: 1100px; margin: 0 auto 40px;
}
.footer-brand .logo-text { font-size: 1.1rem; }
.footer-brand p { font-size: .85rem; margin-top: 14px; line-height: 1.65; color: rgba(255,255,255,.5); }

/* Colunas de links e horários */
.footer-col h4 { color: #fff; font-size: .88rem; font-weight: 700; margin-bottom: 16px; letter-spacing: .04em; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { color: rgba(255,255,255,.5); text-decoration: none; font-size: .85rem; transition: color .2s; }
.footer-col ul li a:hover { color: #fff; }
.footer-hours p { font-size: .85rem; margin-bottom: 6px; }
.footer-hours span { color: #7dc4ff; font-weight: 600; }

/* Barra inferior do footer (copyright e links) */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px; text-align: center;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  max-width: 1100px; margin: 0 auto;
}
.footer-bottom p { font-size: .8rem; }
.footer-bottom a { color: rgba(255,255,255,.5); text-decoration: none; font-size: .8rem; }
.footer-bottom a:hover { color: #fff; }

/* ================================================
   BOTÃO FLUTUANTE DO WHATSAPP
   Fica fixo no canto inferior direito da tela
   ================================================ */
#wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 62px; height: 62px; border-radius: 50%;
  background: #25D366; box-shadow: 0 4px 24px rgba(37,211,102,.5);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  animation: wa-pulse 2.5s infinite;
  transition: transform .2s;
}
#wa-float:hover { transform: scale(1.1); }
#wa-float svg { width: 32px; height: 32px; fill: white; }

/* Animação de pulso no botão do WhatsApp */
@keyframes wa-pulse {
  0%,100% { box-shadow: 0 4px 24px rgba(37,211,102,.5); }
  50%      { box-shadow: 0 4px 40px rgba(37,211,102,.8), 0 0 0 12px rgba(37,211,102,.1); }
}

/* ================================================
   ANIMAÇÃO DE ENTRADA DOS ELEMENTOS
   Elementos com .reveal aparecem ao rolar a página
   (controlado pelo JS com IntersectionObserver)
   ================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s, transform .6s; }
.reveal.visible { opacity: 1; transform: none; }
/* Atrasos escalonados para animar elementos em sequência */
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ================================================
   RESPONSIVO — TABLETS (até 900px)
   ================================================ */
@media (max-width: 900px) {
  /* Botão visível no header do mobile, com padding reduzido para caber */
  .btn-header { padding: 9px 14px; font-size: .8rem; gap: 6px; }
  .logo-text{display: none;}
  .diff-card { flex: 0 1 calc(50% - 16px); } /* 2 colunas de diferenciais */
  .about-inner, .contact-inner { grid-template-columns: 1fr; } /* Empilha as colunas */
  .about-img { min-height: 280px; }
  .footer-inner { grid-template-columns: 1fr; } /* Footer em coluna única */
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-stats { gap: 24px;}
}

/* ================================================
   RESPONSIVO — CELULAR (até 600px)
   ================================================ */
@media (max-width: 600px) {
  section { padding: 60px 4%; }
  .services-grid { grid-template-columns: 1fr; } /* 1 coluna de serviços */
  .hero-btns { flex-direction: column; align-items: center; } /* Botões empilhados */
  .diff-card { flex: 0 1 100%; } /* 1 coluna de diferenciais */
}
