/* =====================================================
RESET BÁSICO
Remove margens padrão do navegador e define base visual
===================================================== */

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

/* =====================================================
VARIÁVEIS GLOBAIS
Cores e medidas principais do site
===================================================== */

:root {
  --cor-primaria: #0a1f44;
  --cor-primaria-secundaria: #103163;
  --cor-destaque: #25d366;
  --cor-destaque-hover: #1ebe57;
  --cor-acento: #ffc107;
  --cor-acento-hover: #e0a800;
  --cor-texto: #243041;
  --cor-texto-suave: #5f6b7a;
  --cor-fundo: #f4f7fb;
  --cor-branca: #ffffff;
  --cor-borda: rgba(10, 31, 68, 0.08);
  --sombra-leve: 0 10px 30px rgba(15, 23, 42, 0.06);
  --sombra-media: 0 16px 40px rgba(15, 23, 42, 0.10);
  --sombra-forte: 0 24px 60px rgba(15, 23, 42, 0.15);
  --raio-grande: 28px;
  --raio-medio: 18px;
  --largura-maxima: 1180px;
}

/* =====================================================
CONFIGURAÇÕES GERAIS DO DOCUMENTO
===================================================== */

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(37, 211, 102, 0.06), transparent 28%),
    linear-gradient(180deg, #f8fbff 0%, #f4f7fb 45%, #eef3f9 100%);
  color: var(--cor-texto);
  line-height: 1.6;
  padding-bottom: 95px;
}

/* =====================================================
IMAGENS
===================================================== */

img {
  max-width: 100%;
  display: block;
}

/* =====================================================
LINKS GERAIS
===================================================== */



a {
  text-decoration: none;
}

/* =====================================================
CONTAINER PADRÃO
Centraliza melhor o conteúdo interno
===================================================== */

.header-container,
.hero-container,
section,
footer {
  width: min(100%, var(--largura-maxima));
  margin: 0 auto;
}

/* =====================================================
HEADER (TOPO DO SITE)
Visual mais refinado e profissional
===================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(10, 31, 68, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(10, 31, 68, 0.10);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 18px 24px;
}

/* =====================================================
LOGO
===================================================== */

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.logo-texto {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-texto span {
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: #ffffff;
}

.logo-legenda {
  font-size: 0.72rem;
  color: #cfd9ee;
  margin-top: 4px;
  letter-spacing: 0.4px;
}

/* =====================================================
MENU DE NAVEGAÇÃO
===================================================== */

nav ul.menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

nav ul.menu li a {
  color: #ffffff;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 999px;
  transition: 0.3s ease;
}

nav ul.menu li a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

/* =====================================================
BOTÃO MENU MOBILE
===================================================== */

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 30px;
  color: #ffffff;
  cursor: pointer;
}

/* =====================================================
HERO (PRIMEIRA SEÇÃO)
Agora com visual premium de landing page profissional
===================================================== */

.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 24px 84px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255, 193, 7, 0.15), transparent 25%),
    radial-gradient(circle at bottom left, rgba(37, 211, 102, 0.14), transparent 25%);
  pointer-events: none;
}

.hero-container {
  position: relative;
  text-align: center;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(10, 31, 68, 0.08);
  border-radius: 34px;
  padding: 58px 28px;
  box-shadow: var(--sombra-forte);
}

.hero-badge {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(10, 31, 68, 0.07);
  color: var(--cor-primaria);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 18px;
  color: var(--cor-primaria);
}

.hero p {
  max-width: 760px;
  margin: 0 auto 30px;
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--cor-texto-suave);
}

/* =====================================================
BOTÃO PRINCIPAL WHATSAPP
===================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 16px 34px;
  background: linear-gradient(135deg, var(--cor-destaque), #2ae06d);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 999px;
  box-shadow: 0 16px 32px rgba(37, 211, 102, 0.24);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 36px rgba(37, 211, 102, 0.30);
  background: linear-gradient(135deg, var(--cor-destaque-hover), #1fc85c);
}

/* =====================================================
SEÇÕES PADRÃO
===================================================== */

section {
  max-width: 1100px;
  padding: 34px 24px 0;
}

section h2 {
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  margin-bottom: 18px;
  color: var(--cor-primaria);
}

section p {
  font-size: 1rem;
  color: var(--cor-texto-suave);
}

/* =====================================================
CAIXA PADRÃO DE CONTEÚDO
Deixa sobre/contato com cara mais premium
===================================================== */

.section-box {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--cor-borda);
  border-radius: var(--raio-grande);
  padding: 34px 28px;
  box-shadow: var(--sombra-media);
}

/* =====================================================
SERVIÇOS
===================================================== */

#servicos {
  padding-top: 64px;
}

#servicos h2 {
  text-align: center;
  margin-bottom: 30px;
}

/* grid dos serviços */

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

/* card individual */

.servico-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(246,248,252,0.96) 100%);
  border: 1px solid rgba(10, 31, 68, 0.08);
  border-radius: 30px;
  padding: 34px 28px;
  box-shadow: var(--sombra-leve);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.servico-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sombra-forte);
  border-color: rgba(10, 31, 68, 0.14);
}

.servico-icone {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  font-size: 2rem;
  margin-bottom: 22px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(10, 31, 68, 0.08), rgba(37, 211, 102, 0.10));
}

.servico-card h3 {
  font-size: 1.45rem;
  color: var(--cor-primaria);
  margin-bottom: 14px;
  line-height: 1.2;
}

.servico-card p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--cor-texto-suave);
  margin-bottom: 22px;
}

.servico-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #e6007e;
  font-weight: 700;
  transition: 0.25s ease;
}

.servico-card a:hover {
  opacity: 0.8;
}

/* =====================================================
CONTATO
===================================================== */

#contato {
  padding-top: 64px;
}

#contato p {
  font-size: 1rem;
  margin-bottom: 14px;
}

#contato a {
  color: var(--cor-primaria-secundaria);
  font-weight: 700;
  transition: 0.25s ease;
  word-break: break-word;
}

#contato a:hover {
  color: #27ae60;
}

#contato strong {
  color: var(--cor-primaria);
}

/* =====================================================
BANCOS PARCEIROS
===================================================== */

.bancos {
  text-align: center;
  margin-top: 64px;
  margin-bottom: 20px;
  padding: 38px 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--cor-borda);
  border-radius: 30px;
  box-shadow: var(--sombra-media);
}

.bancos h2 {
  margin-bottom: 22px;
}

.bancos img {
  margin: 0 auto;
  height: auto;
  border-radius: 16px;
}

/* =====================================================
FAIXA FIXA DE CTA (CHAMADA PARA AÇÃO)
===================================================== */

.faixa-cta {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background: linear-gradient(90deg, #071733 0%, #0a1f44 60%, #103163 100%);
  color: #ffffff;
  padding: 14px 16px;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  z-index: 9999;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.18);

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;

  animation: subir 0.45s ease;
}

.faixa-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  background: var(--cor-acento);
  color: #000000;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 800;
  transition: 0.25s ease;
}

.faixa-cta a:hover {
  background: var(--cor-acento-hover);
  transform: translateY(-2px);
}

/* animação de subida */

@keyframes subir {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

/* =====================================================
BOTÃO WHATSAPP FLUTUANTE
===================================================== */

.whatsapp-fixo {
  position: fixed;
  right: 20px;
  bottom: 108px;
  width: 62px;
  height: 62px;
  background: linear-gradient(135deg, #25d366, #18b454);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 30px rgba(37, 211, 102, 0.30);
  z-index: 9999;
  animation: pulse 2s infinite;
}

.whatsapp-fixo img {
  width: 32px;
  height: 32px;
}

/* animação pulsando */

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55);
  }

  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

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

footer {
  margin-top: 42px;
  padding: 34px 24px 36px;
  text-align: center;
  color: #ffffff;
  background: linear-gradient(135deg, #081a39 0%, #0a2a57 100%);
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
  box-shadow: 0 -10px 30px rgba(10, 31, 68, 0.10);
}

footer p {
  margin-bottom: 5px;
  font-size: 0.95rem;
  opacity: 0.95;
}

/* =====================================================
ANIMAÇÃO DE APARECER AO ROLAR
===================================================== */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.ativo {
  opacity: 1;
  transform: translateY(0);
}

/* =====================================================
RESPONSIVIDADE
Tablet
===================================================== */

@media (max-width: 992px) {
  .servicos-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-container {
    padding: 50px 24px;
  }
}

/* =====================================================
RESPONSIVIDADE
Celular
===================================================== */

@media (max-width: 768px) {
  .header-container {
    flex-wrap: wrap;
    padding: 15px 18px;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  nav {
    width: 100%;
  }

  nav ul.menu {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 14px;
    padding: 14px 0 6px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 18px;
  }

  nav ul.menu.ativo {
    display: flex;
  }

  nav ul.menu li {
    text-align: center;
  }

  nav ul.menu li a {
    display: block;
    width: 100%;
    padding: 14px 12px;
    border-radius: 12px;
  }

  .hero {
    padding: 50px 16px 56px;
  }

  .hero-container {
    padding: 40px 20px;
    border-radius: 26px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  section {
    padding: 26px 16px 0;
  }

  .section-box {
    padding: 26px 20px;
    border-radius: 22px;
  }

  .servicos-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .servico-card {
    padding: 28px 22px;
    border-radius: 24px;
  }

  .bancos {
    margin-top: 44px;
    border-radius: 24px;
    padding: 30px 16px;
  }

  .faixa-cta {
    font-size: 0.95rem;
    padding: 12px 14px;
  }

  .whatsapp-fixo {
    width: 60px;
    height: 60px;
    right: 16px;
    bottom: 102px;
  }
}

/* =====================================================
RESPONSIVIDADE
Celulares pequenos
===================================================== */

@media (max-width: 480px) {
  .logo img {
    width: 42px;
    height: 42px;
  }

  .logo-texto span {
    font-size: 1.2rem;
  }

  .logo-legenda {
    font-size: 0.66rem;
  }

  .hero h1 {
    font-size: 1.7rem;
  }

  .hero-badge {
    font-size: 0.8rem;
    padding: 7px 12px;
  }

  .btn {
    width: 100%;
    padding: 15px 18px;
  }

  .servico-card h3 {
    font-size: 1.25rem;
  }

  .faixa-cta a {
    width: 100%;
    max-width: 280px;
  }
}
