/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #f5f7fb;
  color: #111;
  line-height: 1.5;
}

:root {
  --azul: #1F57D6;
  --amarelo: #FFEB3B;
  --preto: #0d0d0d;
  --cinza: #444;
  --radius: 14px;
}

/* ===== CONTAINERS ===== */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ===== HEADER ===== */
.header {
  background: #1742a1;
  padding: 18px 0;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 1px 6px rgba(0,0,0,0.1);
}

.header.scrolled {
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  width: 70px;
}

.menu {
  display: flex;
  gap: 22px;
}

.menu a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  transition: .3s;
}
.menu a:hover {
  color: var(--azul);
}

.menu-btn {
  display: none;
}

/* ===== HERO ===== */
.hero {
  margin-top: 0;
  position: relative;
  height: 80vh;
  background: url('img/hero.png') center/cover no-repeat;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
}

.hero-content {
  position: relative;
  color: #fff;
  text-align: left;
  max-width: 600px;
}

.hero-content h1 {
  font-size: 42px;
  font-weight: 700;
}
.hero-content h1 span {
  color: var(--amarelo);
}



/* ===== SERVIÇOS ===== */
.servicos {
  padding: 70px 0;
  text-align: center;
}

.titulo {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 10px;
}

.subtitulo {
  font-size: 16px;
  color: var(--cinza);
  margin-bottom: 40px;
}

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.servico-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 3px 12px rgba(0,0,0,0.1);
  transition: .35s ease;
  position: relative;

  opacity: 0;
  transform: translateY(30px);
}

/* Efeito reveal */
.servico-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Efeito ao passar o mouse */
.servico-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Imagem sempre completa */
.servico-img {
  height: 180px;
  background-size: cover;
  background-position: center;
  transition: .4s;
}

.servico-card:hover .servico-img {
  transform: scale(1.08);
}

/* Área inferior */
.servico-info {
  padding: 20px;
  background: #fff;
}

.servico-info h3 {
  font-size: 20px;
  margin-bottom: 14px;
  font-weight: 600;
  color: var(--preto);
}

.btn-servico {
  display: block;
  background: var(--azul);
  color: #fff;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: var(--radius);
  font-weight: 600;
  transition: .3s;
  width: fit-content;
  margin: auto;
  box-shadow: 0 0 0 transparent;
}

/* Igual ao concorrente: hover suave + sombra */
.btn-servico:hover {
  background: #1742a1;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
  transform: translateY(-2px);
}

/* ===== RESPONSIVO MENU ===== */
@media(max-width: 820px){
  .menu { 
      display: none; 
      flex-direction: column;
      position: absolute;
      top: 90px;
      right: 0;
      background: #1f57d6;
      padding: 20px;
      width: 60%;
      box-shadow: 0 4px 14px rgba(0,0,0,0.2);
      border-radius: var(--radius);
  }

  .menu.active {
    display: flex;
  }

  .menu-btn {
    display: block;
    background: transparent;
color: #ffff;
    border: none;
    font-size: 30px;
    cursor: pointer;
  }
}



/* BOTÃO WHATSAPP — CORREÇÃO FINAL */
.whatsapp-float {
    position: fixed;
    width: 80px !important;
    height: 80px !important;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.35);
    z-index: 99999;
    animation: pulse 2s infinite;
    overflow: hidden;
}

.whatsapp-float img {
    width: 50px !important;
    height: 50px !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Efeito de pulsação */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
    70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes pulseAnimation {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 150, 0, 0.5);
    }
    50% {
        transform: scale(1.08);
        box-shadow: 0 0 20px 8px rgba(0, 150, 0, 0.35);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 150, 0, 0.5);
    }
}

.btn-hero {
    animation: pulseAnimation 1.7s infinite;
    transform-origin: center;
  display: inline-block;
  margin-top: 20px;
  padding: 12px 26px;
  background: #149b27;
  color: #fff;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  transition: .3s;
}
.btn-hero:hover {
  background: #00c01b;
}



/* ===== FAIXA PROMOCIONAL ===== */

.top-banner {
    width: 100%;
    background: #ffed00de;; /* amarelo promoção */
    color: #0a263a; 
    padding: 0 0;
    position: fixed;
    top: 100px;
    left: 0;
    z-index: 9999;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.25);
}

/* TEXTO ROLANDO + BRILHO */
.banner-content {
color: #000;
    white-space: nowrap;
    display: inline-block;

    font-size: 13px;
    font-weight: 600;
    padding-left: 100%;
    animation: bannerMove 20s linear infinite, brilho 1.0s ease-in-out infinite;
}

/* Movimento horizontal */
@keyframes bannerMove {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* Efeito BRILHO */
@keyframes brilho {
    0% { text-shadow: 0 0 0px #fffff; }
    50% { text-shadow: 0 0 12px #fffff; }
    100% { text-shadow: 0 0 0px #fffff; }
}

/* NÃO sobrepor o menu */
body {
    padding-top: 90px; /* ajuste para seu menu */
}

/* Ajuste opcional se o menu for fixo */
header,
nav {
    position: relative;
    z-index: 9000;
}



.review-carousel {
    width: 100%;
    max-width: 750px;
    margin: 40px auto;
    position: relative;
    overflow: hidden;
}

.review-track {
    display: flex;
    transition: transform 0.5s ease;
}

.review-slide {
    min-width: 100%;
    box-sizing: border-box;
    padding: 20px;
}

.review-box {
    width: 100%;
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    font-family: Arial, sans-serif;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.review-header img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
}

.review-name {
    font-size: 18px;
    font-weight: bold;
}

.review-stars {
    color: #f4b400;
    font-size: 18px;
}

.review-time {
    color: #777;
    font-size: 14px;
}

.review-text {
    margin-top: 12px;
    font-size: 16px;
    color: #333;
    line-height: 1.4;
}

/* Botões */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffffdd;
    border: none;
    font-size: 28px;
    padding: 10px 15px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.carousel-btn:hover {
    background: #fff;
}

#prevBtn { left: 10px; }
#nextBtn { right: 10px; }

/* Indicadores */
.carousel-dots {
    display: flex;
    justify-content: center;
    margin-top: 15px;
    gap: 8px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    background: #bbb;
    border-radius: 50%;
    cursor: pointer;
}

.carousel-dot.active {
    background: #333;
}


.fundoazul-depoimentos {

	background: #1742a1;
	padding: 50px;
	
}

.titulo-depoimentos {

    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
color: #ffff;
text-align: center;

}

/* ======== FUNDO COM TEXTURA LEVE ======== */
.call-section {
    width: 100%;
    background-size: cover;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

/* ======== ANIMAÇÃO DE ENTRADA ======== */
.fade-in {
    opacity: 0;
    transform: translateY(25px);
    animation: fadeSlide 1.2s ease forwards;
}

@keyframes fadeSlide {
    0% { opacity: 0; transform: translateY(25px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* ======== CONTAINER ======== */
.call-container {
    text-align: center;
    max-width: 900px;
}

.call-container h2 {
    font-size: 32px;
    font-weight: 800;
    color: #004aad;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.call-subtitle {
    font-size: 18px;
    color: #222;
    opacity: 0.85;
    margin-bottom: 32px;
}




/* Rodapé */
.rodape {
    background: #ffffff;
    padding: 25px 10px;
    border-top: 2px solid #e5e5e5;
    text-align: center;
    font-family: 'Arial', sans-serif;
}

.rodape-servicos {
    color: #1b3b6f; /* azul escuro elegante */
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 600;
}

.rodape-copy {
    color: #555555;
    font-size: 14px;
}


.instagram-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.2s ease, opacity 0.3s ease;
    margin-bottom: -5px;
	margin-left: 5px;
    cursor: pointer;
}

/* Animação simples ao passar o mouse */
.instagram-icon:hover {
    transform: scale(1.1);
    opacity: 0.8;


}