/* ============================================================
   AR DE LIMPEZA - STYLE FINAL 2025
   Menu branco elegante, fundo azul escuro e estrutura refinada
   ============================================================ */

:root {
  --azul-escuro: #0A1A2A;
  --azul-meio: #0F2E45;
  --azul-claro: #0095D9;
  --azul-hover: #00C0FF;
  --branco: #FFFFFF;
  --cinza: #B5C0CA;
  --cinza-claro: #E9EEF3;
  --preto: #000000;
}

/* RESET E BASE */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Open Sans', Arial, sans-serif;
  background-color: var(--azul-escuro);
  color: var(--branco);
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ============================================================
   CABEÇALHO / MENU (FUNDO AZUL-CLARO ELEGANTE)
   ============================================================ */

.topo {
  background-color: #00AEEF !important; /* azul-claro sofisticado */
  padding: 0.5rem 0;
  position: sticky;
  top: 0;
  z-index: 9999;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.topo-conteudo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 1rem;
}

/* ===== LOGO ===== */
.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 70px;
  width: auto;
  display: block;
  margin-left: 10px;
}

@media (max-width: 768px) {
  .logo-img {
    height: 55px;
  }
}

/* ===== MENU ===== */
.menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.menu a {
  text-decoration: none;
  color: #FFFFFF; /* texto branco para contraste */
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  letter-spacing: 0.4px;
}

.menu a:hover,
.menu a.ativo {
  color: #002B4D; /* azul escuro elegante no hover */
  transform: translateY(-1px);
}

.menu a.ativo {
  color: #FFFFFF !important; /* mantém igual aos outros */
}



/* ===== BOTÕES DO MENU (REFINADOS PARA FUNDO AZUL-CLARO) ===== */
.btn-cta,
.btn-franquia {
  background-color: #002B4D; /* azul escuro elegante */
  color: #FFFFFF;
  padding: 0.55rem 1.4rem;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.btn-cta:hover,
.btn-franquia:hover {
  background-color: #004F7A; /* azul médio no hover */
  color: #E8F7FF;
  transform: translateY(-2px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}



/* ============================================================
   BANNER / HERO
   ============================================================ */

.banner {
  position: relative;
  text-align: center;
  background-color: #0A1A2A;
  overflow: hidden;
}

.banner img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.banner-texto {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #ffffff;
  z-index: 2;
  width: 90%;
  max-width: 900px;
}

.banner-texto h1 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.25;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.6);
  letter-spacing: 0.5px;
}

.banner-texto p {
  font-size: 1.3rem;
  font-weight: 400;
  color: #f2f2f2;
  line-height: 1.6;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
  .banner-texto h1 {
    font-size: 2rem;
  }
  .banner-texto p {
    font-size: 1.1rem;
  }
}

/* ============================================================
   SEÇÕES GERAIS
   ============================================================ */

section {
  padding: 3rem 0;
}

/* ===== SERVIÇOS ===== */
.servicos {
  background-color: #0b1f33;
  text-align: center;
}

.servicos h2 {
  color: var(--azul-hover);
  font-size: 1.8rem;
  margin-bottom: 2rem;
}



.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.card {
  background-color: var(--azul-meio);
  border-radius: 12px;
  width: 300px;
  padding: 2.2rem 1.5rem 2.5rem;
  text-align: center;
  transition: 0.3s;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.card:hover {
  background-color: var(--azul-claro);
  color: var(--preto);
}

.card img {
  width: 80px;
  height: auto;
  margin-bottom: 1.5rem;
  margin-top: 1.2rem;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}


.card h3 {
  margin: 0.5rem 0;
}

.card p {
  color: var(--cinza);
}

/* ===== BOTÃO SECUNDÁRIO (VER TODOS OS SERVIÇOS) ===== */
.btn-secundario {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  background-color: #ffffff;
  color: #0A1A2A;
  border: 2px solid #ffffff;
  transition: 0.3s;
}

.btn-secundario:hover {
  background-color: #00C0FF;
  color: #000000;
  border-color: #00C0FF;
}

/* ===== SOBRE / QUEM SOMOS ===== */
.sobre-faixa {
  background-color: var(--cinza-claro);
  color: #1c2d42;
  text-align: center;
}

.sobre-faixa h2 {
  color: var(--azul-claro);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.sobre-faixa p {
  max-width: 800px;
  margin: auto;
  line-height: 1.7;
  color: #333;
}

/* ===== DIFERENCIAIS ===== */
.diferenciais {
  background-color: #12324e;
  text-align: center;
}

.diferenciais h2 {
  color: var(--azul-hover);
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

.diferenciais .blocos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.diferenciais .bloco {
  background-color: var(--azul-meio);
  border-radius: 12px;
  padding: 2rem 1rem;
  transition: 0.3s;
}

.diferenciais .bloco:hover {
  background-color: var(--azul-claro);
  color: var(--preto);
}

.diferenciais h3 {
  color: var(--azul-hover);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.diferenciais p {
  color: #d6e2ef;
}
/* ===== CTA FRANQUIA (FUNDO BRANCO ELEGANTE) ===== */
.cta-franquia {
  background-color: #FFFFFF;
  color: #1C2D42;
  text-align: center;
  padding: 5rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.cta-franquia h2 {
  font-size: 2rem;
  color: #0A1A2A;
  font-weight: 800;
  margin-bottom: 1rem;
}

.cta-franquia p {
  color: #555555;
  max-width: 750px;
  margin: 0 auto 2rem;
  line-height: 1.7;
  font-size: 1.1rem;
}

/* Botão refinado */
.cta-franquia .btn-primario {
  background: linear-gradient(180deg, #00AEEF 0%, #0078C4 100%);
  color: #FFFFFF;
  padding: 0.9rem 2rem;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 174, 239, 0.3);
}

.cta-franquia .btn-primario:hover {
  background: linear-gradient(180deg, #00CFFF 0%, #0095D9 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 174, 239, 0.5);
}


/* ============================================================
   RODAPÉ
   ============================================================ */

footer {
  background-color: var(--azul-escuro);
  color: var(--branco);
  text-align: center;
}

footer .container.rodape {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: left;
  padding: 3rem 0;
}

footer .rodape .coluna {
  flex: 1 1 280px;
  margin: 1rem;
}

footer .rodape h3 {
  color: var(--azul-hover);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

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

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

footer .rodape a {
  color: var(--branco);
  text-decoration: none;
}

footer .rodape a:hover {
  color: var(--azul-hover);
}

footer .copy {
  background-color: var(--azul-meio);
  text-align: center;
  padding: 1rem 0;
  font-size: 0.85rem;
  color: var(--cinza);
  border-top: 1px solid rgba(255,255,255,0.1);
}


/* ===== WHATSAPP FLUTUANTE (APENAS ÍCONE) ===== */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: auto;
  height: auto;
  background: none; /* remove a bolinha */
  border: none;
  box-shadow: none;
  border-radius: 0;
  z-index: 1000;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1); /* leve efeito de zoom */
}

/* ÍCONE AJUSTADO */
.whatsapp-float img {
  width: 60px; /* tamanho do ícone */
  height: auto;
  display: block;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.4)); /* mantém leve destaque */
}




/* ===== BLOCO DE CEP NO BANNER (APERFEIÇOADO) ===== */
.banner-cep {
  background: rgba(20, 45, 70, 0.75); /* azul mais claro e elegante */
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  margin-top: 2.5rem;
  display: inline-block;
  backdrop-filter: blur(6px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.banner-cep h3 {
  color: #FFFFFF; /* agora branco puro */
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
  letter-spacing: 0.4px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.form-cep {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.form-cep input {
  padding: 0.9rem 1rem;
  border-radius: 8px;
  border: none;
  outline: none;
  width: 260px;
  font-size: 1rem;
  color: #1C2D42;
  background-color: #FFFFFF;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.15);
  transition: 0.3s;
}

.form-cep input:focus {
  box-shadow: 0 0 0 2px #00C0FF inset;
}

.form-cep button {
  background: linear-gradient(180deg, #00AEEF 0%, #008CCC 100%);
  color: #FFFFFF;
  font-weight: 700;
  padding: 0.9rem 1.6rem;
  border-radius: 8px;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.4);
}

.form-cep button:hover {
  background: linear-gradient(180deg, #00CFFF 0%, #0095D9 100%);
  transform: translateY(-2px);
}

/* ===== SEÇÃO: CONHEÇA NOSSOS SERVIÇOS (SEM IMAGENS, VISUAL PREMIUM) ===== */
.servicos {
  background-color: #0E1F33; /* levemente mais claro que o fundo superior */
  text-align: center;
  padding: 4rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* TÍTULO EM BRANCO PURO */
.servicos h2 {
  color: #FFFFFF; /* branco puro */
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 2.5rem;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* CONTAINER DE CARDS */
.servicos .cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

/* CARD SIMPLES, SEM IMAGEM */
.servicos .card {
  background-color: #0B2540;
  border-radius: 14px;
  width: 300px;
  padding: 2.5rem 1.8rem;
  text-align: center;
  transition: 0.3s ease;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.servicos .card h3 {
  color: #FFFFFF;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.servicos .card p {
  color: #C7D2E0;
  font-size: 1rem;
  line-height: 1.6;
  max-width: 90%;
}

/* EFEITO HOVER MODERNO */
.servicos .card:hover {
  transform: translateY(-4px);
  background-color: #10365A;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
}

/* REMOVE QUALQUER IMAGEM QUE AINDA POSSA EXISTIR */
.servicos .card img {
  display: none !important;
}

/* ===== RESPONSIVIDADE GERAL ===== */
@media (max-width: 1024px) {
  .container {
    width: 95%;
  }

  .banner-texto h1 {
    font-size: 2.2rem;
  }

  .banner-texto p {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  /* ===== Ajusta o topo/menu ===== */
  .topo-conteudo {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .menu {
    flex-direction: column;
    gap: 0.8rem;
  }

  .btn-cta,
  .btn-franquia {
    padding: 0.8rem 1.2rem;
  }

  /* ===== Banner ===== */
  .banner-texto h1 {
    font-size: 1.8rem;
  }

  .banner-texto p {
    font-size: 1rem;
  }

  .banner-cep {
    width: 90%;
    padding: 1.2rem;
  }

  /* ===== Cards de serviços ===== */
  .servicos .cards {
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
  }

  .servicos .card {
    width: 90%;
    min-height: auto;
    padding: 2rem 1rem;
  }

  /* ===== CTA (seção branca) ===== */
  .cta-franquia h2 {
    font-size: 1.6rem;
  }

  .cta-franquia p {
    font-size: 1rem;
  }

  /* ===== Botão flutuante ===== */
  .whatsapp-float {
    right: 15px;
    bottom: 15px;
  }

  .whatsapp-float img {
    width: 55px;
  }
}

@media (max-width: 480px) {
  .banner-texto h1 {
    font-size: 1.5rem;
  }

  .banner-texto p {
    font-size: 0.95rem;
  }

  .form-cep {
    flex-direction: column;
    gap: 0.6rem;
  }

  .form-cep input,
  .form-cep button {
    width: 100%;
  }

  footer .container.rodape {
    flex-direction: column;
    text-align: center;
  }

  footer .rodape .coluna {
    margin: 0.8rem 0;
  }
}
