/* styles.css entregue conforme solicitado */
/* ==========================================================
   STYLES.CSS — VERSÃO FINAL CORRIGIDA
   ========================================================== */
:root {
  --navbar-height: 70px;
  --banner-height: 100vh;
  --color-primary: #00b4d8;
  --color-secondary: #0077b6;
  --color-bg: #fff;
  --color-text: #333;
  --color-light: #f5f5f5;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
  background-color: var(--color-bg);
  color: var(--color-text);
  overflow-x: hidden;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: var(--navbar-height);
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: space-between; /* volta ao padrão natural */
  padding: 10px 12px; /* ~1 cm de folga nas laterais */
  box-sizing: border-box;
  z-index: 1000;
  transition: background 0.3s ease; /* efeito suave caso queira mudar */
}

/* ===== AJUSTE DE TAMANHO DOS LOGOS ===== */
.navbar .logos {
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar .logo1 img {
  height: 45px;    /* altura principal */
  width: auto;     /* mantém proporção */
  max-width: 120px; /* evita “explodir” no desktop */
}

.navbar .logo2 img {
  height: 30px;
  width: auto;
  object-fit: contain;
  margin-left: -10px;
  position: relative;
  top: 6px;
}

.navbar ul.menu {
  display: flex;
  list-style: none;
  gap: 24px;
  margin: 0;
  padding: 0;
}

.navbar ul.menu li a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  transition: color 0.3s ease;
}
.navbar ul.menu li a:hover { color: var(--color-primary); }

.menu-toggle { display: none; }

/* ==========================================================
   SLIDER — VERSÃO FINAL LIMPA + CLIQUE 100% FUNCIONAL
========================================================== */

.slider {
  position: relative;
  width: 100%;
  height: var(--banner-height);
  overflow: hidden;
  margin-top: 0;
  z-index: 1;
}

/* =====================================
   SLIDES (somente o ativo recebe clique)
===================================== */
.slider .slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  pointer-events: none;      /* <<< CORREÇÃO PRINCIPAL */
  z-index: 1;
}

.slider .slide.active {
  opacity: 1;
  pointer-events: auto;     /* <<< SÓ O ATIVO É CLICÁVEL */
  z-index: 20;
}

/* =====================================
   CONTEÚDO CENTRAL
===================================== */
.slider .slide .content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.9);
  width: 90%;
  max-width: 900px;
  padding: 20px;
  box-sizing: border-box;
  z-index: 30;
}

/* Força clique em tudo dentro */
.slider .slide.active .content,
.slider .slide.active .content * {
  pointer-events: auto;
}

/* =====================================
   TEXTOS BASE
===================================== */
.slider .slide .content h2 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 15px;
}

.slider .slide .content p {
  font-size: 1.3rem;
  line-height: 1.4;
  margin-bottom: 20px;
  color: #fff;
}

/* =====================================
   POSIÇÕES INDIVIDUAIS POR BANNER
===================================== */

/* Banner 1 */
.slide:nth-child(1) .content {
  top: 50%;
  left: 50%;
}
.slide:nth-child(1) .content h2 { font-size: 3.2rem; }
.slide:nth-child(1) .content p  { font-size: 1.4rem; }

/* Banner 2 */
.slide:nth-child(2) .content {
  top: 50%;
  left: 35%;
}
.slide:nth-child(2) .content h2 { font-size: 3.2rem; }
.slide:nth-child(2) .content p  { font-size: 1.4rem; }

/* Banner 3 */
.slide:nth-child(3) .content {
  top: 65%;
  left: 51%;
}
.slide:nth-child(3) .content h2 { font-size: 3rem; }
.slide:nth-child(3) .content p  { font-size: 1.4rem; }

/* Banner 4 */
.slide:nth-child(4) .content {
  top: 40%;
  left: 51%;
}
.slide:nth-child(4) .content h2 { font-size: 2.75rem; }
.slide:nth-child(4) .content p  { font-size: 1.2rem; }

/* =====================================
   DESKTOP vs MOBILE
===================================== */
.slide .desktop { display: block; }
.slide .mobile  { display: none; }

@media (max-width: 768px) {
  .slide .desktop { display: none; }
  .slide .mobile  { display: block; }
}

/* =====================================
   QUEBRA DE LINHAS
===================================== */
.slide .content .linha {
  display: block;
  width: 100%;
  text-align: center;
  line-height: 1.2;
  margin: 2px 0;
}

.slide .content h2 .linha { font-weight: 700; }
.slide .content p  .linha { font-weight: 400; }

/* =====================================
   BOTÃO "SAIBA MAIS" — 100% CLICÁVEL
===================================== */
.slider .btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 26px;
  background: #00bcd4;
  color: #000;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
  position: relative;
  z-index: 50;        /* <<< GARANTE PRIORIDADE DE CLIQUE */
  pointer-events: auto;
}

.slider .btn:hover {
  background: #fff;
  color: #000;
}

/* =====================================
   ANIMAÇÕES DO TEXTO
===================================== */
.slide .content h2,
.slide .content p,
.slider .btn {
  opacity: 0;
  transform: translateY(40px);
}

.slide.active .content h2 {
  animation: aparecerDeBaixo 0.9s ease-out forwards;
}

.slide.active .content p {
  animation: aparecerDeBaixo 1s ease-out forwards;
  animation-delay: 0.15s;
}

.slide.active .btn {
  animation: aparecerDeBaixo 1.1s ease-out forwards;
  animation-delay: 0.3s;
}

/* ===== ANIMAÇÃO DE ENTRADA ===== */
@keyframes aparecerDeBaixo {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== AJUSTE DOS ÍCONES DO TEXTO DO BANNER ===== */
.slide p img.icon {
  width: 35px;          /* tamanho ideal */
  height: auto;
  margin-bottom: 8px;
  vertical-align: middle; /* alinha com o texto */
}

.slide .btn {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 35px;
  border-radius: 30px;
  border: 2px solid #fff;
  background: var(--color-secondary);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.slide .btn:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

/* ===== SETAS - FIXAS, NUNCA SOMEM ===== */
.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  background: rgba(0, 0, 0, 0);
  color: #fff;
  border: none;
  cursor: pointer;
  padding: 10px;
  border-radius: 50%;
  transition: background 0.3s;

  /* TRAVAS CONTRA SUMIR */
  opacity: 1 !important;
  visibility: visible !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  pointer-events: auto !important;
  z-index: 9999;
}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}

.prev:hover,
.next:hover {
  background: rgba(0, 0, 0, 0.4);
}

.dots {
  position: absolute;
  bottom: 25px;
  width: 100%;
  text-align: center;
  z-index: 5;
}
.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  cursor: pointer;
}
.dot.active { background: #fff; }

/* ===== CARDS ===== */
.section { padding: 80px 20px; text-align: center; }
.section h2 { font-size: 32px; margin-bottom: 10px; }
.section hr {
  width: 80px;
  border: 2px solid var(--color-primary);
  margin: 0 auto 40px;
}
.servicos-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  justify-items: center;
}
/* === SERVIÇOS — unificado, sem conflitos === */
.servico {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;

  box-sizing: border-box;
  min-height: 250px;

  width: 260px;
  padding: 25px;
  text-align: center;

  background: var(--color-light);
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);

  opacity: 0;
  transform: translateY(40px);
  filter: blur(6px);
  transition: opacity 1s ease-out, transform 1s ease-out, filter 1s ease-out;
}

.servico .btn {
  margin-top: auto;
}

.servico.show {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
.servico img {
  width: 100%;
  height: 200px;          /* aumenta a imagem */
  object-fit: cover;      /* cobre toda a área visível */
  border-radius: 10px;    /* mantém cantos suaves */
  margin-bottom: 12px;
}

.servico .btn {
  background: var(--color-primary);
  color: #fff;
  padding: 8px 20px;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.servico .btn:hover { background: var(--color-secondary); }
.servico.show .btn {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.25s;
}

/* ===== CORREÇÃO: botão WhatsApp acima de tudo ===== */
.whatsapp,
.whatsapp-msg {
  z-index: 5000 !important;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {

  /* ===== NAVBAR MOBILE ===== */
  .menu-toggle {
    display: block;
    font-size: 28px;
    color: white;
    cursor: pointer;
    z-index: 1100;
    position: absolute;
    right: 12px; /* garante que fique no canto direito */
    top: 50%;
    transform: translateY(-50%);
  }

  .navbar ul.menu {
    display: none;
    flex-direction: column;
    background: rgba(0,0,0,0.9);
    position: absolute;
    top: var(--navbar-height);
    right: 20px;
    width: 200px;
    border-radius: 10px;
    text-align: right;
    padding: 10px;
    z-index: 1001;
  }

  .navbar ul.menu.show { display: flex; }
  .navbar ul.menu li { margin: 10px 0; }
  .navbar ul.menu li a { font-size: 0.95rem; }
}

/* ===== AJUSTE DOS ÍCONES NAS PÁGINAS INTERNAS ===== */
.section p img.icon {
  width: 22px;      /* tamanho padrão ideal */
  height: auto;
  margin-right: 8px;
  margin-bottom: 0;
  vertical-align: middle;
}

/* ===== BOTÃO WHATSAPP FIXO ===== */
.whatsapp {
  position: fixed;
  bottom: 22px;
  right: 22px;
  background-color: #25d366;
  color: #fff;
  font-size: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 1200;
  animation: pulseWhats 2s infinite;
  transition: transform 0.3s ease, background 0.3s ease;
}

.whatsapp:hover {
  background-color: #20b358;
  transform: scale(1.1);
}

/* ===== ANIMAÇÃO PULSANTE ===== */
@keyframes pulseWhats {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ===== MENSAGEM AO LADO DO WHATSAPP ===== */
.whatsapp-msg {
  position: fixed;
  bottom: 30px;
  right: 90px; /* fica ao lado do botão */
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: 1200;
}

.whatsapp-msg.show {
  opacity: 1;
  transform: translateY(0);
}

/* ===== MOBILE: ajusta posição ===== */
@media (max-width: 768px) {
    .whatsapp-msg {
    right: 80px;
    bottom: 25px;
    font-size: 0.85rem;
  }
}

  /*Botão falar com Especialista*/
.botao-whatsapp a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 30px;
  background-color: #25d366;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: pulseWhats 2.5s infinite;
}

/* botão container (aparece com a animação da descrição) */
.botao-whatsapp {
  display: flex;
  justify-content: center;
  margin-top: 15px;
  opacity: 0;
  transform: translateY(30px);
  animation: aparecerDeBaixo 1s ease-out forwards;
  animation-delay: 1s;
}

@media (max-width: 768px) {
  /* cards mobile */
  .servicos-container {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    padding: 0 8px !important;
  }
  .servico {
    width: 100% !important;
    margin: 0 auto !important;
    padding: 20px 10px !important;
    border-radius: 12px !important;
  }
  .servico img {
    height: 230px !important;
    object-fit: cover !important;
  } 
}

/* =========================================================
   NAVBAR – CASINHA + HAMBÚRGUER (ALINHAMENTO FINAL)
   ========================================================= */

.menu-icons {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-left: auto;
  position: relative;
  z-index: 9999;
}

/* ÍCONE DA CASINHA — agora com PNG */
.home-icon img {
  width: 26px;      /* ajuste o tamanho da casinha */
  height: auto;
  display: block;   /* remove pontos, espaços ou artefatos */
}

/* esconder casinha no INDEX */
body.index .home-icon {
  display: none !important;
}

/* ícone do hambúrguer (continua igual) */
.menu-toggle {
  font-size: 26px;
  color: #fff;
  cursor: pointer;
}

/* =======================
   MOBILE (VARIÁVEIS DE ALTURA)
   ======================= */

@media (min-width: 900px) {
    .home-icon img {
        margin-right: 15px; /* aumenta o espaço no desktop */
    }
}
   
@media (max-width: 768px) {

  .menu-icons {
    --icons-top: 25px;
    --home-offset: 0px;
    --menu-offset: 0px;
  }

  .menu-icons {
    position: absolute;
    top: var(--icons-top);
    right: 5px;
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    z-index: 11000;
    pointer-events: auto;
  }

  /* Ordem no mobile: casinha → hambúrguer */
  .home-icon { order: 1; }
  .menu-toggle { order: 2; }

  /* Alinhamento fino individual */
  .home-icon,
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0;
    padding: 0;
    transition: transform 0.12s ease;
  }

  .home-icon {
    transform: translateY(var(--home-offset, 0px));
    z-index: 11002;
  }

  .menu-toggle {
    transform: translateY(var(--menu-offset, 0px));
    z-index: 11001;
  }

  /* mantém o menu mobile do jeito que já funciona */
  .navbar ul.menu {
    position: absolute;
    top: calc(var(--navbar-height, 70px));
    right: 12px;
    width: 260px;
    display: none;
    flex-direction: column;
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 14px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
    border-radius: 8px;
    z-index: 10090;
  }

  .navbar ul.menu.show { 
    display: flex; 
  }
}

.menu-toggle, .home-icon {
  position: relative;
  margin: 0;
  padding: 0;
  pointer-events: auto;
}

/* ================================================
   AJUSTE COMPLETO DO SLIDER PARA MOBILE (INDEX)
   ================================================ */
@media (max-width: 768px) {

  /* Altura automática para não cortar o conteúdo */
  .slider {
    height: auto !important;
    min-height: 100vh !important;
  }

  .slide {
    height: auto !important;
    min-height: 100vh !important;
    padding-top: 30px; /* espaço para NÃO ficar atrás da navbar */
  }

/* CENTRALIZAÇÃO REAL DO TEXTO DO BANNER — INDEX (MOBILE) */
  body.index .slide {
   display: flex !important;
   align-items: center !important;      /* centraliza vertical */
   justify-content: center !important;  /* centraliza horizontal */
   padding-top: 0 !important;
  }

  body.index .slide .content {
   position: relative !important;
   top: auto !important;
   left: auto !important;
   transform: none !important;
   width: 92% !important;
   max-width: 500px;
   text-align: center !important;
  }

  /* Título menor e mais seguro */
  .slide .content h2 {
    font-size: 1.8rem !important;
    line-height: 1.2 !important;
    margin-bottom: 10px !important;
  }

  /* Parágrafo ajustado */
  .slide .content p {
    font-size: 1rem !important;
    line-height: 1.35 !important;
    margin-bottom: 12px !important;
  }

  /* Ícones menores */
  .slide .content p img.icon {
    width: 26px !important;
    margin-bottom: 3px !important;
  }

  /* Botão visível para todos os tamanhos */
  .slide .btn {
    padding: 10px 26px !important;
    font-size: 0.9rem !important;
    margin-top: 15px !important;
    margin-bottom: 40px !important;
  }

  /* Cada banner com ajuste individual leve */
  .slide:nth-child(1) .content { margin-top: 10px !important; }
  .slide:nth-child(2) .content { margin-top: 20px !important; }
  .slide:nth-child(3) .content { margin-top: 25px !important; }
  .slide:nth-child(4) .content { margin-top: 15px !important; }

}

/* ==== REGRAS MOBILE: inverter visibilidade DO SLIDER ==== */
@media (max-width: 768px) {
  /* Slider: mobile vs desktop (aplica apenas ao slider) */
  .slider .desktop,
  .slider .slide .desktop {
    display: none !important;
  }

  .slider .mobile,
  .slider .slide .mobile {
    display: block !important;
    text-align: center;
  }
}

/* --- CORREÇÃO: no INDEX o menu deve ficar na direita novamente --- */
body.index .navbar .menu {
  margin-left: auto !important;
}

/* No INDEX não empurrar o .menu-icons, porque a casinha está oculta */
body.index .menu-icons {
  margin-left: 0 !important;
}
/* ===============================
   BANNER DAS PÁGINAS INTERNAS
   Centralizado + Navbar cobrindo 10% + Animações
   =============================== */

.banner-interno {
  position: relative;
  width: 100%;
  height: 360px;
  margin-top: -65px;      /* navbar cobre ±10% */
  overflow: hidden;
}

/* ---- CENTRALIZAÇÃO DO PNG ---- */
.banner-interno .banner-fundo {
  position: absolute;
  top: 64%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
  object-fit: cover;
  z-index: 1;
}

/* Oculta PNG mobile no desktop */
.banner-interno .mobile {
  display: none !important;
}

/* ---- TEXTO DO BANNER ---- */
.banner-interno .banner-texto {
  position: absolute;
  top: 67% !important;                 /* posição final e correta */
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 800px;
  text-align: center;
  color: #fff;
  font-weight: 700;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.9); /* contorno igual ao index */
  z-index: 2;
}

/* Ajuste do h1 */
.banner-interno .banner-texto h1 {
  margin: 0;
  line-height: 1;
}

/* ---- ANIMAÇÃO DO TEXTO DO BANNER ---- */
.banner-interno .banner-texto h1,
.banner-interno .banner-texto p {
  opacity: 0;
  transform: translateY(40px);
}

.banner-interno .banner-texto h1 {
  animation: aparecerDeBaixo 0.9s ease-out forwards;
  animation-delay: 0.2s;
}

.banner-interno .banner-texto p {
  animation: aparecerDeBaixo 0.9s ease-out forwards;
  animation-delay: 1.2s;
}

/* ---- ANIMAÇÃO DO TEXTO DE DESCRIÇÃO ABAIXO DO BANNER ---- */
.animar-wrap.animar {
  opacity: 0;
  transform: translateY(40px);
  animation: aparecerDeBaixo 0.9s ease-out forwards;
  animation-delay: 2.3s;
}

.animar-wrap {
  position: relative;
}
/* Animação sequencial somente para a página MONTAGEM */
.banner-montagem .banner-texto h1:nth-child(1) {
  opacity: 0;
  transform: translateY(40px);
  animation: aparecerDeBaixo 0.9s ease-out forwards;
  animation-delay: 1.0s; /* sobe primeiro */
}

.banner-montagem .banner-texto h1:nth-child(2) {
  opacity: 0;
  transform: translateY(40px);
  animation: aparecerDeBaixo 0.9s ease-out forwards;
  animation-delay: 2s; /* sobe depois da linha 1 */
}
/* ============================================================
   ANIMAÇÃO EXCLUSIVA — PÁGINA MONTAGEM
   ============================================================ */

/* Animação das duas linhas do banner */
.page-montagem .banner-montagem .banner-texto h1 {
  opacity: 0;
  transform: translateY(40px);
  animation: aparecerDeBaixo 0.9s ease-out forwards;
}

/* 1ª linha */
.page-montagem .banner-montagem .banner-texto h1:nth-child(1) {
  animation-delay: 1s;
}

/* 2ª linha */
.page-montagem .banner-montagem .banner-texto h1:nth-child(2) {
  animation-delay: 2s;
}

/* ------------------------------------------------------------
   Atrasar a descrição E o botão (subir juntos após 3s)
   ------------------------------------------------------------ */

/* Tudo dentro da animar-wrap */
.page-montagem .animar-wrap.animar {
  animation-delay: 3s !important;
}

/* O botão está fora da animar-wrap → precisa de delay também */
.page-montagem .botao-whatsapp {
  opacity: 0;
  transform: translateY(40px);
  animation: aparecerDeBaixo 0.9s ease-out forwards;
  animation-delay: 3s !important;
}

/* ===============================
   MOBILE
   =============================== */
@media (max-width: 768px) {

  /* ===== BANNER INTERNO — MOBILE (TEXTO PRESO AO BANNER) ===== */

  .banner-interno {
    position: relative !important;   /* garante referência correta */
    height: 300px !important;
    margin-top: -40px !important;
    overflow: hidden !important;     /* IMPEDE TEXTO DE SAIR DO BANNER */
  }

  /* apenas imagem mobile */
  .banner-interno .desktop {
    display: none !important;
  }

  .banner-interno .mobile {
    display: block !important;
  }

  /* TEXTO SOBRE O BANNER — SEM VAZAR */
  .banner-interno .banner-texto {
    position: absolute !important;
    top: 120px !important;             /* distância SEGURA da navbar */
    left: 0 !important;

    transform: none !important;       /* <<< ESSENCIAL */

    width: 100% !important;
    max-width: 100% !important;
    padding: 0 18px !important;

    text-align: center !important;
    box-sizing: border-box !important;
  }

  /* TÍTULO — PADRÃO DAS PÁGINAS INTERNAS */
  .banner-interno .banner-texto h1 {
    margin: 0 !important;
    font-size: clamp(1.2rem, 4.5vw, 1.55rem) !important;
    line-height: 1.25 !important;
    font-weight: 700 !important;
    word-break: normal;
  }

  /* SUBTÍTULO */
  .banner-interno .banner-texto p {
    margin-top: 6px !important;
    font-size: clamp(0.9rem, 3.8vw, 1.05rem) !important;
    line-height: 1.35 !important;
    word-break: normal;
  }
}

@media (max-width: 768px) {

  /* ===== AJUSTE EXCLUSIVO — BANNER MANUTENÇÃO (MOBILE) ===== */

  body.page-manutencao .banner-interno .banner-texto h1 {
    font-size: clamp(1rem, 3.8vw, 1.25rem) !important;
    line-height: 1.2 !important;
  }

  body.page-manutencao .banner-interno .banner-texto p {
    font-size: clamp(0.8rem, 3.2vw, 0.9rem) !important;
    line-height: 1.25 !important;
  }
}

  /* Ajuste padronizado abaixo do banner — MOBILE */
  #manutencao.section,
  #helpdesk.section,
  #montagem.section,
  #redes.section,
  #contato.section {
    margin-top: -100px !important; /* ajuste uniforme para TODAS */
  }
}

/* ===== AJUSTES EXCLUSIVOS PARA DESKTOP ===== */
@media (min-width: 769px) {

  /* ===== APENAS PÁGINA MANUTENÇÃO ===== */
  body.page-manutencao .banner-interno .banner-texto {
    top: 70% !important;   /* desce o texto do banner */
  }

  body.page-manutencao #manutencao.section {
    margin-top: -80px;     /* ajusta somente o conteúdo da manutenção */
  }

  /* PADRÃO — todas as páginas internas */
  .banner-interno .banner-texto {
    top: 55% !important;
  }

  #manutencao.section,
  #helpdesk.section,
  #montagem.section,
  #redes.section,
  #contato.section {
    margin-top: -100px;
  }
}


/* ===== FORÇAR 2 LINHAS APENAS NA PÁGINA REDES (MOBILE) ===== */
@media (max-width: 768px) {
  body.page-redes .titulo-redes-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 1.55rem !important;
    line-height: 1.15 !important;
    text-align: center;
  }

  body.page-redes .titulo-redes-mobile span {
    display: block;
    white-space: nowrap; /* impede virar 3 ou 4 linhas */
  }
}

.site-footer {
  background-image: url("img/footer-banner.jpg"); /* banner de fundo */
  background-size: cover;
  background-position: center;
  color: #ffffff;
  font-family: Arial, sans-serif;
}

.footer-overlay {
  background: rgba(0, 0, 0, 0.75); /* escurece o banner */
  padding: 40px 20px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 30px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1;
  min-width: 220px;
}

.footer-col h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #00c4ff;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
}

.footer-col ul li a:hover {
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 30px;
  padding-top: 15px;
  text-align: center;
  font-size: 13px;
}

.footer-bottom a {
  color: #00c4ff;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* Ajuste exclusivo do botão do rodapé */
.footer-botao a {
  font-size: 14px;
  padding: 10px 16px;
}

/* 📱 MOBILE */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-col {
    margin-bottom: 25px;
  }
}

/* ===== CORREÇÃO DEFINITIVA DO BOTÃO DO RODAPÉ ===== */
/* Remove animações de entrada e mantém apenas o pulse */

.footer-botao {
  animation: none !important;
  transform: none !important;
  opacity: 1 !important;
}

.footer-botao a {
  animation: pulseWhats 1.8s infinite;
  transform: none !important;
  opacity: 1 !important;
}
/* Alinhamento da coluna "Crie seu site profissional" */
.footer-highlight {
  text-align: left;
}

.footer-highlight .footer-botao {
  display: flex;
  justify-content: flex-start;
}

/* 📱 MOBILE: centraliza tudo */
@media (max-width: 768px) {
  .footer-highlight {
    text-align: center;
  }

  .footer-highlight .footer-botao {
    justify-content: center;
  }
}

/* fim do arquivo */