@charset "utf-8";

/* ===========================
   BASE
=========================== */

* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Ruda', sans-serif;
  background: #f1f4f8;
  color: #1f2933;
  margin: 0;
}

/* ===========================
   MENU
=========================== */

.navbar-hl {
  background: #FAFAFA;
  padding: 16px 0;
  transition: all 0.10s ease;
}

.navbar-hl.scrolled {
  background: #CCC;
  padding: 10px 0;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
  border-bottom: 2px solid #c00000;
}

.navbar-hl .nav-link {
  color: #000;
  font-weight: 600;
  margin-left: 15px;
}

.navbar-hl .nav-link:hover {
  color: #ff4d4d;
}

.navbar-hl .btn-contato {
  background: #c00000;
  border-radius: 30px;
  padding: 6px 16px;
  color: #fff !important;
}

/* ===========================
   HERO AZUL â€” NOVO MODELO
=========================== */

.hero-blue {
  background: linear-gradient(135deg, #036, #039);
  padding: 160px 0 120px;
  color: #fff;
}



/* TEXTO */
.hero-content h1 {
  font-size: 3.2rem;
  font-weight: 800;
}

.hero-content h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 20px 0;
}

.hero-content p {
  font-size: 1.1rem;
  max-width: 520px;
}

/* IMAGEM */
/* HERO IMAGE */
.hero-media {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 18px;
}

.hero-img {
  max-width: 85%;     /* ðŸ”¥ diminui no desktop */
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
   border-radius: 18px;
}



/* SHAPE DIAGONAL */
/*.hero-shape {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 120px;
  background: #f1f4f8;
  clip-path: polygon(0 40%, 100% 0, 100% 100%, 0 100%);
}*/

/* ===========================
   HERO â€” MOBILE
=========================== */

@media (max-width: 768px) {
  .hero-blue {
    padding: 130px 0 90px;
    text-align: center;
  }

  .hero-media {
    text-align: center;
    margin-bottom: 30px;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content h2 {
    font-size: 1.2rem;
  }

  .hero-content p {
    margin: 0 auto;
  }
}

/* ===========================
   SEÃ‡Ã•ES PADRÃƒO
=========================== */

#sobre,
#servicos,
#porque,
#parceiros,
#contato {
  padding: 80px 0;
}

/* ===========================
   SOBRE
=========================== */

.box-highlight {
  background: linear-gradient(135deg, #0d6efd, #c00000);
  color: #fff;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
}

.box-highlight i {
  font-size: 48px;
}

/* ===========================
   SERVIÃ‡OS
=========================== */

.card-servico {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.card-servico i {
  font-size: 40px;
  color: #c00000;
}

/* ===========================
   IMAGEM FULL
=========================== */

.imagem-full {
  position: relative;
  min-height: 60vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  color: #fff;
}

.imagem-full .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.imagem-full .container {
  position: relative;
  z-index: 2;
}

/* ===========================
   POR QUE CONTRATAR
=========================== */

.porque-section {
  background: #eef2f7;
}

.porque-card {
  background: #fff;
  padding: 35px;
  border-radius: 18px;
  text-align: center;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.porque-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.porque-card i {
  font-size: 42px;
  color: #c00000;
  margin-bottom: 20px;
}

.porque-card.destaque {
  background: linear-gradient(135deg, #0b2c5d, #071d3a);
  color: #fff;
}

.porque-card.destaque i {
  color: #ff4d4d;
}

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

.parceiros-section {
  background: #e9eef5;
}

.parceiro-box {
  background: #fff;
  border-radius: 15px;
  padding: 35px 20px;
  text-align: center;
  font-weight: 600;
  color: #0b2c5d;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.parceiro-box:hover {
  transform: translateY(-6px);
}

/* ===========================
   CONTATO / RODAPÃ‰
=========================== */

.contato-section {
  background: #1f2933;
  color: #fff;
  padding: 80px 0;
  text-align: center;
}


.btn-contato-sm {
  padding: 10px 22px;
  border-radius: 30px;
}

/* ===========================
   BOTÃ•ES FLUTUANTES
=========================== */

.btn-whatsapp,
.btn-topo {
  position: fixed;
  bottom: 20px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.btn-whatsapp {
  right: 20px;
  background: #25d366;
  color: #fff;
  font-size: 26px;
}

.btn-topo {
  left: 20px;
  background: #0b2c5d;
  color: #fff;
}

/* MOBILE BOTÃ•ES */
@media (max-width: 768px) {
  .btn-whatsapp,
  .btn-topo {
    width: 46px;
    height: 46px;
  }
}

.logo-site {
  height:80px;      /* desktop */
  width: auto;
}

@media (max-width: 768px) {
  .logo-site {
    height: 48px;    /* mobile */
  }
}

/* === FORÃ‡A A COR DA SEÃ‡ÃƒO CONTATO === */
section#contato,
#contato.contato-section,
.contato-section {
  background: linear-gradient(135deg, #144a8a, #0f3b73) !important;
  color: #ffffff !important;
}


/* AnimaÃ§Ãµes de scroll com AOS */

/* Fade up padrÃ£o */
[data-aos] {
  opacity: 0;
  transform: translateY(20px);
  transition-property: opacity, transform;
  transition-duration: 0.75s;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

/* EspecificaÃ§Ãµes de delay por tipo de conteÃºdo */
#home, #sobre, #servicos, #porque, #parceiros, #contato {
  transition-delay: 0.1s;
}

/* CabeÃ§alhos */
h1, h2, h3 {
  transition-duration: 0.9s;
}

/* Cards e boxes com animaÃ§Ã£o mais rÃ¡pida */
.card-servico,
.porque-card,
.parceiro-box,
.box-highlight {
  transition-duration: 0.6s;
}

/* Ajuste de efeito em imagens */
.hero-img, .imagem-box img {
  transition-duration: 0.8s;
}

/* ===========================
   ANIMAÃ‡Ã•ES SCROLL (DESCE E SOBE)
=========================== */

[data-aos] {
  opacity: 0;
  transform: translateY(40px);
  transition-property: opacity, transform;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

/* Cards e boxes */
.card-servico,
.porque-card,
.parceiro-box,
.box-highlight {
  transition-duration: 0.6s;
}

/* TÃ­tulos */
h1, h2, h3 {
  transition-duration: 0.8s;
}

/* Imagens */
.hero-img,
.imagem-full {
  transition-duration: 0.9s;
}



/* =========================================
   SCROLL ANIMATION — IMAGEM LATERAL
========================================= */

.imagem-lateral-section {
  overflow: hidden;
}

.imagem-lateral-section .scroll-text,
.imagem-lateral-section .scroll-image {
  transform: translateY(40px);
  opacity: 0;
  transition: transform 0.10s ease, opacity 0.8s ease;
}

/* quando entra na tela */
.imagem-lateral-section.ativo .scroll-text,
.imagem-lateral-section.ativo .scroll-image {
  transform: translateY(0);
  opacity: 1;
}

/* micro movimento contínuo ao scroll */
.imagem-lateral-section .scroll-image img {
  transition: transform 0.3s ease;
}


/* =========================================
   DESTAQUE DE CARDS NO HOVER
========================================= */

/* SERVIÇOS + PORQUE + PARCEIROS */
.card-servico,
.porque-card,
.parceiro-box {
  position: relative;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

/* efeito hover principal */
.card-servico:hover,
.porque-card:hover,
.parceiro-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.18);
}

/* realce sutil de borda */
.card-servico::after,
.porque-card::after,
.parceiro-box::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 2px solid transparent;
  transition: border-color 0.35s ease;
  pointer-events: none;
}

/* borda aparece no hover */
.card-servico:hover::after {
  border-color: rgba(192, 0, 0, 0.4);
}

.porque-card:hover::after {
  border-color: rgba(11, 44, 93, 0.4);
}

.parceiro-box:hover::after {
  border-color: rgba(13, 110, 253, 0.35);
}

/* ícones ganham vida */
.card-servico i,
.porque-card i {
  transition: transform 0.35s ease, color 0.35s ease;
}

.card-servico:hover i,
.porque-card:hover i {
  transform: scale(1.15);
  color: #c00000;
}

/* =========================
   MOBILE — DESATIVA HOVER
========================= */

@media (max-width: 768px) {
  .card-servico:hover,
  .porque-card:hover,
  .parceiro-box:hover {
    transform: none;
    box-shadow: none;
  }

  .card-servico::after,
  .porque-card::after,
  .parceiro-box::after {
    display: none;
  }
}

/* =========================================
   CURSOR "MÃOZINHA" NOS CARDS
========================================= */

.card-servico,
.porque-card,
.parceiro-box {
  cursor: pointer;
}

/* =========================================
   HERO — BULLETS DE CONFIANÇA
========================================= */

.hero-bullets {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
  opacity: 0.95;
}

.hero-bullets span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #ffffff;
  font-weight: 600;
}

/* Mobile */
@media (max-width: 768px) {
  .hero-bullets {
    justify-content: center;
    font-size: 0.9rem;
  }
}

/* =========================================
   HERO — GARANTIR IMAGEM VISÍVEL
   (SEM BRIGAR COM BOOTSTRAP)
========================================= */

/* garante que a coluna da imagem exista */
.hero-media {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* garante que a imagem sempre apareça */
.hero-img {
  width: 100%;
  max-width: 420px;   /* controla tamanho */
  height: auto;
  display: block;
}

/* desktop */
@media (min-width: 992px) {
  .hero-img {
    max-width: 420px;
  }
}

/* mobile */
@media (max-width: 991px) {
  .hero-img {
    max-width: 320px;
    margin: 0 auto;
  }
}

/* =========================================
   HERO — CENTRALIZAR APENAS O BOTÃO
========================================= */

.hero-content a.btn {
  display: block;
  margin: 20px auto 0 auto;
}

/* =========================================
   HERO — AUMENTAR UM POUCO A IMAGEM
========================================= */

.hero-img {
  max-width: 580px;   /* antes estava ~420px */
}

/* desktop grande */
@media (min-width: 1200px) {
  .hero-img {
    max-width: 580px;
  }
}

/* mobile mantém proporcional */
@media (max-width: 768px) {
  .hero-img {
    max-width: 340px;
  }
}

/* =========================================
   PASSO 3 — HIERARQUIA VISUAL DOS TÍTULOS
========================================= */

/* padrão dos h2 */
section h2 {
  position: relative;
  font-weight: 800;
  margin-bottom: 40px;
  padding-bottom: 12px;
}

/* linha decorativa */
section h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 4px;
  background: #c00000; /* vermelho da marca */
  border-radius: 4px;

  /* animação */
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s ease;
}

/* quando a seção entra na tela */
section:hover h2::after {
  transform: scaleX(1);
}

/* títulos centralizados (ex: Serviços, Parceiros) */
.text-center h2::after {
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
}

.text-center:hover h2::after {
  transform: translateX(-50%) scaleX(1);
}

/* =========================================
   MOBILE — AJUSTE
========================================= */

@media (max-width: 768px) {
  section h2 {
    margin-bottom: 30px;
  }

  section h2::after {
    width: 50px;
  }
}

/* =========================================
   TÍTULOS — LINHA FIXA CENTRAL (SEM ANIMAÇÃO)
========================================= */

section h2 {
  position: relative;
  font-weight: 800;
  margin-bottom: 40px;
  padding-bottom: 12px;
  text-align: center;
}

/* linha fixa */
section h2::after {
  content: "";
  position: relative;
  left: 50%;
  bottom: 0;
  width: 70px;
  height: 4px;
  background: #c00000;
  border-radius: 4px;
  
}

/* mobile */
@media (max-width: 768px) {
  section h2 {
    margin-bottom: 30px;
  }

  section h2::after {
    width: 48px;
  }
}

/* =========================================
   NÍVEL 2 — PASSO 1
   MICROINTERAÇÕES EM BOTÕES
========================================= */

/* padrão para todos os botões clicáveis */
button,
.btn,
a.btn,
.btn-contato,
.btn-contato-sm {
  cursor: pointer;
  transition: 
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease;
}

/* efeito hover (desktop) */
button:hover,
.btn:hover,
a.btn:hover,
.btn-contato:hover,
.btn-contato-sm:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.25);
}

/* efeito clique */
button:active,
.btn:active,
a.btn:active {
  transform: translateY(0);
  box-shadow: 0 8px 18px rgba(0,0,0,0.2);
}

/* botão principal (Solicitar Cotação) */
.btn-danger {
  background: linear-gradient(135deg, #c00000, #ff3b3b);
  border: none;
}

/* WhatsApp flutuante */
.btn-whatsapp {
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-whatsapp:hover {
  transform: scale(1.12);
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}

/* botão subir topo */
.btn-topo {
  cursor: pointer;
}

.btn-topo:hover {
  transform: scale(1.12);
}

/* =========================================
   NÍVEL 2 — PASSO 2
   CARDS INTERATIVOS
========================================= */

/* aplica para todos os cards */
.card-servico,
.porque-card,
.parceiro-box {
  cursor: pointer;
  transition: 
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

/* efeito hover */
.card-servico:hover,
.porque-card:hover,
.parceiro-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.18);
}

/* ícones respondem junto */
.card-servico i,
.porque-card i {
  transition: transform 0.3s ease, color 0.3s ease;
}

/* ícone cresce levemente */
.card-servico:hover i,
.porque-card:hover i {
  transform: scale(1.15);
  color: #ff3b3b;
}

/* parceiro: leve destaque de borda */
.parceiro-box:hover {
  border: 2px solid #c00000;
}

/* =========================================
   NÍVEL 2 — PASSO 3
   REFINO VISUAL + MOVIMENTO SUAVE
========================================= */

/* ícones com sensação de profundidade */
.card-servico i,
.porque-card i,
.box-highlight i {
  filter: drop-shadow(0 6px 10px rgba(0,0,0,0.25));
}

/* cards ganham leve brilho ao foco */
.card-servico,
.porque-card {
  position: relative;
  overflow: hidden;
}

/* efeito de luz suave */
.card-servico::after,
.porque-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top left,
    rgba(255,255,255,0.35),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

/* ativa o brilho */
.card-servico:hover::after,
.porque-card:hover::after {
  opacity: 1;
}

/* imagem lateral responde ao scroll */
.imagem-box img {
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

/* efeito sutil ao entrar em foco */
.imagem-box img:hover {
  transform: scale(1.03);
  box-shadow: 0 25px 60px rgba(0,0,0,0.35);
}

/* texto ganha mais leitura */
section p {
  line-height: 1.65;
}

/* =========================================
   NÍVEL 3 — HERO CINEMATOGRÁFICO
========================================= */

.hero-blue {
  position: relative;
  overflow: hidden;
}

/* efeito de luz suave no fundo */
.hero-blue::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.12), transparent 60%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08), transparent 60%);
  pointer-events: none;
}

/* imagem com efeito premium */
.hero-img {
  transition: transform 1s ease, box-shadow 1s ease;
}

.hero-img:hover {
  transform: scale(1.04);
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
}

/* =========================================
   NÍVEL 3 — SCROLL MAIS FLUIDO
========================================= */

html {
  scroll-behavior: smooth;
}

body {
  overscroll-behavior: none;
}

/* =========================================
   NÍVEL 3 — CTA PREMIUM
========================================= */

.btn-danger {
  position: relative;
  overflow: hidden;
}

/* efeito de luz */
.btn-danger::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: rgba(255,255,255,0.25);
  transform: rotate(25deg);
  transition: left 0.8s ease;
}

/* luz passando */
.btn-danger:hover::after {
  left: 140%;
}
/* =========================================
   NÍVEL 3 — PROFUNDIDADE NAS IMAGENS
========================================= */

.imagem-box img,
.hero-img {
  will-change: transform;
}

/* =========================================
   NÍVEL 4 — UX DE LEITURA
========================================= */

section p {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.92;
}
/* =========================================
   NÍVEL 4 — AUTORIDADE VISUAL
========================================= */

.box-highlight,
.porque-card.destaque {
  position: relative;
}

.box-highlight::before,
.porque-card.destaque::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: inherit;
  pointer-events: none;
}
/* =========================================
   NÍVEL 4 — CONFIANÇA NO HOVER
========================================= */

a,
button,
.card-servico,
.porque-card,
.parceiro-box {
  -webkit-tap-highlight-color: transparent;
}

/* =========================================
   NÍVEL 4 — MOBILE CONVERSÃO
========================================= */

@media (max-width: 768px) {

  #contato h2 {
    font-size: 1.6rem;
  }

  #contato .btn {
    width: 100%;
    max-width: 320px;
  }

}
/* =========================================
   NÍVEL 5 — HIERARQUIA INVISÍVEL
========================================= */

.hero-content h1 {
  letter-spacing: -0.5px;
}

.hero-content h2 {
  opacity: 0.9;
}

section h2 {
  text-transform: uppercase;
  font-size: 1.9rem;
}
/* =========================================
   NÍVEL 5 — SOMBRAS PROFISSIONAIS
========================================= */

.card-servico,
.porque-card,
.parceiro-box,
.box-highlight {
  box-shadow:
    0 8px 20px rgba(0,0,0,0.08),
    0 25px 50px rgba(0,0,0,0.06);
}
/* =========================================
   NÍVEL 5 — MOBILE PREMIUM
========================================= */

@media (max-width: 768px) {

  section h2 {
    font-size: 1.6rem;
  }

  section p {
    font-size: 1rem;
  }

  .hero-content p {
    font-size: 1.05rem;
  }

}

/* =========================================
   LOGOS DOS CLIENTES
========================================= */

.logo-cliente {
  max-height: 200px;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: all 0.35s ease;
  cursor: pointer;
}

/* efeito profissional ao passar o mouse */
.logo-cliente:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

/* mobile */
@media (max-width: 768px) {
  .logo-cliente {
    max-height: 55px;
  }
}

/* =========================================
   ANIMAÇÃO DE ENTRADA DOS LOGOS (AOS)
   SEM ALTERAR O VISUAL EXISTENTE
========================================= */

/* estado inicial antes de aparecer */
.logo-cliente[data-aos] {
  opacity: 0;
  transform: translateY(25px);
}

/* quando o AOS ativa */
.logo-cliente.aos-animate {
  opacity: 0.8; /* mantém seu valor original */
  transform: translateY(0);
}

/* =========================================
   CLIENTES + SEGURADORAS — MOBILE
========================================= */

@media (max-width: 768px) {

  /* reduz o espaço da section no mobile */
  #parceiros,
  #seguradoras {
    padding: 50px 0;
  }

  /* organiza melhor o grid */
  #parceiros .row,
  #seguradoras .row {
    row-gap: 20px;
  }

  /* logos no mobile */
  .logo-cliente {
    max-height: 100px;        /* tamanho ideal mobile */
    width: 100%;
    opacity: 0.95;
    filter: grayscale(0%);  /* no mobile fica colorido */
  }

  /* remove exagero de hover no mobile */
  .logo-cliente:hover {
    transform: none;
    box-shadow: none;
  }

}

/* =========================================
   CONTATO — E-MAIL
========================================= */

.contato-info {
  font-size: 1.05rem;
}

.contato-email {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.contato-email i {
  font-size: 1.2rem;
}

.contato-email:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}













