/* ============================
   VARIÁVEIS GLOBAIS
============================ */
:root {
  --blue-main: #1d71b8;
  --blue-1: #070a13;
  --blue-2: #112135;
  --blue-3: #112d46;
  --blue-4: #103757;
  --white: #ffffff;
}

/* ============================
   RESET E BASE
============================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  background: var(--blue-1);
  color: var(--white);
}

/* Container padrão */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ============================
   HEADER
============================ */
.header {
  background-color: var(--blue-2);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo img {
  height: 65px;
  width: auto;
}

/* Menu desktop */
.nav-list {
  list-style: none;
  display: flex;
  gap: 24px;
}

.nav-list a {
  color: var(--white);
  text-decoration: none;
  font-weight: 400;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.nav-list a:hover {
  color: var(--blue-main);
}

/* Botão mobile */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background-color: var(--white);
}

/* ============================
   HERO / BANNER PRINCIPAL
============================ */
.hero {
  margin-top: 72px;
  position: relative;
  min-height: 800px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: -1;
}

.hero-content {
  position: relative;
  max-width: 800px;
}

.hero h1 {
  font-size: 3.6rem;
  font-weight: 800;
  margin-bottom: 16px;
  animation: slideLeft 1s ease forwards;
  opacity: 0;
}

.hero p {
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 24px;
  color: #dbe7ff;
  animation: slideLeft 1.3s ease forwards;
  opacity: 0;
}

.btn-primary {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 999px;
  background-color: var(--blue-main);
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.btn-primary:hover {
  background-color: #15558a;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.45);
}

/* ============================
   SESSÃO INÍCIO — BANNER
============================ */
.inicio {
  background: #ffffff;
  padding: 50px;
  position: relative;
  color: #000;
}

.inicio-banner {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
}

.inicio-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.inicio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1;
}

.inicio-textos {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  max-width: 550px;
  z-index: 2;
}

.inicio-headline {
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 20px;
  animation: slideLeft 0.9s ease forwards;
  opacity: 0;
}

.inicio-headline strong {
  color: #1d71b8;
}

.inicio-subheadline {
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.55;
  color: #000;
  animation: slideLeft 1.2s ease forwards;
  opacity: 0;
}

/* Curva inferior */
.inicio-curve {
  width: 100%;
  height: 60px;
  background: #1d71b8;
  clip-path: ellipse(75% 100% at 50% 100%);
  display: block;
}

/* ============================
   CTA ENTRE BANNER E INTRO
============================ */
.cta-mid {
  background: #1d71b8;
  padding: 40px 0;
  text-align: center;
  position: relative;
  z-index: 5;
  margin-top: -40px;
}

.cta-mid-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  animation: fadeUp 0.8s ease forwards;
  opacity: 0;
}

.cta-mid h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
}

.cta-mid-btn {
  display: inline-block;
  padding: 12px 32px;
  background: #ffffff;
  color: #1d71b8;
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
  font-size: 1rem;
  transition: 0.25s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.cta-mid-btn:hover {
  background: #e8f1ff;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.35);
}

/* ============================
   SESSÃO ATUAÇÃO — PARALLAX
============================ */
.atuacao {
  position: relative;
  padding: 80px 0 140px 0;
  color: #ffffff;
  overflow: hidden;
  background: url("img/parallax.png") center center / cover no-repeat fixed;
}

.atuacao::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 0;
}

.atuacao-header,
.atuacao-grid,
.atuacao-watermark {
  position: relative;
  z-index: 2;
}

.atuacao-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 900px;
}

.atuacao-titulo {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 20px;
  animation: slideLeft 1s ease forwards;
  opacity: 0;
}

.atuacao-subtitulo {
  font-size: 1.2rem;
  font-weight: 400;
  opacity: 0.9;
  animation: slideLeft 1.3s ease forwards;
  opacity: 0;
}

.atuacao-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.atuacao-card {
  background: rgba(255, 255, 255, 0.08);
  padding: 28px;
  border-radius: 14px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  backdrop-filter: blur(4px);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: fadeUp 0.8s ease forwards;
  opacity: 0;
}

.atuacao-card i {
  font-size: 32px;
  margin-bottom: 16px;
  color: #ffffff;
  opacity: 0.9;
}

.atuacao-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.atuacao-card p {
  font-size: 0.95rem;
  line-height: 1.45;
}

.atuacao-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.25);
}

/* ============================
   SESSÃO QUEM SOMOS
============================ */
.quem-somos {
  background: #ffffff;
  padding: 100px 0;
  color: #112135;
}

.qs-wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 60px;
}

.qs-col-texto {
  flex: 1;
}

.qs-col-imagem {
  flex: 1;
}

.qs-col-imagem img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
  object-fit: cover;
}

.qs-titulo {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 20px;
  animation: slideLeft 0.8s ease forwards;
  opacity: 0;
}

.qs-subtitulo {
  font-size: 1.2rem;
  color: #103757;
  margin-bottom: 30px;
  animation: slideLeft 1s ease forwards;
  opacity: 0;
}

.qs-texto {
  font-size: 1.05rem;
  line-height: 1.65;
  animation: fadeUp 0.8s ease forwards;
  opacity: 0;
}

.qs-texto p + p {
  margin-top: 18px;
}

/* Box de destaque */
.qs-box {
  background: #1d71b8;
  padding: 48px;
  border-radius: 14px;
  max-width: 1100px;
  margin: 0 auto;
  box-shadow: 0 12px 32px rgba(0,0,0,0.18);
  animation: fadeUp 1s ease forwards;
  opacity: 0;
  color: #ffffff;
}

.qs-box h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 18px;
}

.qs-box p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: #f6f6f6;
}

/* ============================
   SESSÃO CASES
============================ */
.cases {
  background: #103757;
  padding: 100px 0;
  color: #ffffff;
}

.cases-titulo {
  font-size: 2.2rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 20px;
  animation: slideLeft 0.8s ease forwards;
  opacity: 0;
}

.cases-subtitulo {
  font-size: 1.2rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #e8f1ff;
  animation: slideLeft 1s ease forwards;
  opacity: 0;
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.case-card {
  background: rgba(255, 255, 255, 0.08);
  padding: 32px;
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.25);
  backdrop-filter: blur(4px);
  animation: fadeUp 0.8s ease forwards;
  opacity: 0;
}

.case-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.case-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #f6f6f6;
}

.case-card strong {
  color: #ffffff;
}

/* ============================
   SESSÃO CLIENTES — CARROSSEL
============================ */
.clientes {
  background: #ffffff;
  padding: 100px 0;
  text-align: center;
}

.clientes-titulo {
  font-size: 2rem;
  font-weight: 800;
  color: #112135;
  margin-bottom: 50px;
}

.carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 40px 0;
}

/* TRACK */
.carousel-track {
  display: flex;
  transition: transform 0.4s ease;
}

/* ITENS */
.carousel-item {
  flex: 0 0 25%; /* 4 no desktop */
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.4;
  transition: opacity 0.4s ease;
}

.carousel-item.active {
  opacity: 1;
}

.carousel-item img {
  width: 100%;
  max-width: 220px;
  filter: grayscale(100%);
  transition: 0.4s ease;
}

.carousel-item img:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* SETAS MODERNAS */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: none;
  background: none;
  cursor: pointer;
  z-index: 10;
}

.arrow::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  border-right: 4px solid #1d71b8;
  border-bottom: 4px solid #1d71b8;
  transform: rotate(-45deg);
  transition: 0.3s ease;
}

.prev::before {
  transform: rotate(135deg);
}

.arrow:hover::before {
  border-color: #0f4f82;
  transform: scale(1.2) rotate(-45deg);
}

.prev:hover::before {
  transform: scale(1.2) rotate(135deg);
}

.prev { left: 10px; }
.next { right: 0; }

/* ============================
   SESSÃO SÓCIOS
============================ */
.socios {
  background: #f2f2f2;
  padding: 100px 0;
  color: #112135;
}

.socios-titulo {
  font-size: 2.2rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 16px;
}

.socios-subtitulo {
  font-size: 1.2rem;
  text-align: center;
  color: #103757;
  max-width: 900px;
  margin: 0 auto 60px auto;
}

.socio-bloco {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 80px;
}

.socio-left {
  flex-direction: row;
}

.socio-right {
  flex-direction: row-reverse;
}

.socio-foto img {
  width: 340px;
  height: 420px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}

.socio-texto {
  flex: 1;
}

.socio-texto h3 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.socio-cargo {
  font-size: 1rem;
  font-weight: 600;
  color: #1d71b8;
  margin-bottom: 20px;
}

.socio-texto p {
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 16px;
}

/* FOOTER BASE */
.footer {
  background: #0f1b2b;
  color: #fff;
  padding: 60px 0;
}

.footer-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

/* COLUNA ESQUERDA */
.footer-info {
  flex: 1;
}

.footer-info h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.footer-subtitulo {
  font-size: 1rem;
  opacity: 0.8;
  margin-bottom: 20px;
}

.footer-dados p {
  display: grid;
  grid-template-columns: 24px auto; /* ícone fixo + texto flexível */
  align-items: start;
  column-gap: 10px;
  margin: 10px 0;
  line-height: 1.4;
}

.footer-dados i {
  font-size: 18px;
  color: #1d71b8;
  margin-top: 3px; /* ajusta verticalmente */
}

/* MAPA */
.footer-mapa iframe {
  width: 100%;
  height: 260px;
  border-radius: 8px;
  margin-top: 20px;
}

/* FORMULÁRIO */
.footer-form {
  flex: 1;
  background: #16263a;
  padding: 25px;
  border-radius: 10px;
}

.footer-form h3 {
  margin-bottom: 20px;
   font-size: 1.8rem;
}

.footer-form input,
.footer-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border-radius: 6px;
  border: none;
  outline: none;
  font-size: 1rem;
  font-family: inherit; 
  color: #000;
}

.footer-form input::placeholder,
.footer-form textarea::placeholder {
  color: #ccc;
  font-family: inherit;
  font-size: 1rem;
}

.btn-footer {
  width: 100%;
  padding: 14px;
  background: #1d71b8;
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
  box-shadow: 0 4px 12px rgba(29, 113, 184, 0.35);
}

.btn-footer:hover {
  background: #0f4f82;
  box-shadow: 0 6px 16px rgba(15, 79, 130, 0.45);
  transform: translateY(-2px);
}
.g-recaptcha {
  margin-bottom: 20px;
}

/* ============================
   BOTÃO WHATSAPP FLUTUANTE
============================ */

/* Reset para evitar traços */
.whatsapp-btn, 
.whatsapp-btn i {
  text-decoration: none !important;
  border: none !important;
  outline: none !important;
}

.whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 64px;
  height: 64px;
  background: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 6px 14px rgba(0,0,0,0.22);
  z-index: 999;
  transition: 0.3s ease;
  animation: pulse 1.9s infinite ease-in-out;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.12); }
  100% { transform: scale(1); }
}

.whatsapp-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 26px rgba(0,0,0,0.32);
}

.whatsapp-btn i {
  display: block;
  line-height: 1;
}

.footer-copy {
  text-align: center;
  padding: 20px 10px;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.9rem;
  color: #ccc;
}

.footer-copy a {
  color: #1d71b8;
  text-decoration: none;
  font-weight: 600;
}

.footer-copy a:hover {
  color: #0f4f82;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #112135;
  color: #fff;
  padding: 20px;
  z-index: 9999;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.25);
  display: none;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-content a {
  color: #1d71b8;
  font-weight: 600;
  text-decoration: none;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
}

.cookie-btn {
  padding: 10px 20px;
  background: #1d71b8;
  border: none;
  border-radius: 50px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.cookie-btn:hover {
  background: #0f4f82;
}

.btn-outline {
  background: transparent;
  border: 2px solid #1d71b8;
}

.btn-outline:hover {
  background: #1d71b8;
}


/* ============================
   RESPONSIVO — 992px
============================ */
@media (max-width: 992px) {
  .atuacao-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================
   RESPONSIVO — 900px
============================ */
@media (max-width: 900px) {

  /* QUEM SOMOS */
  .qs-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .qs-col-imagem img {
    width: 100%;
    max-height: 320px;
    object-fit: cover;
  }

  .qs-titulo {
    font-size: 1.8rem;
  }

  .qs-subtitulo {
    font-size: 1.1rem;
  }

  .qs-box {
    padding: 32px;
    max-width: 100%;
  }

  /* CASES */
  .cases-grid {
    grid-template-columns: 1fr;
  }

  .case-card {
    padding: 28px;
  }

  .cases-titulo {
    font-size: 1.8rem;
  }

@media (max-width: 900px) {

  .socio-bloco {
    flex-direction: column !important;
    text-align: center;
    gap: 20px;
    align-items: center !important; /* AQUI ESTÁ A SOLUÇÃO */
  }

  .socio-left,
  .socio-right {
    flex-direction: column !important;
  }

  .socio-foto img {
    display: block;
    margin: 0 auto;
    max-width: 260px;
    width: 100%;
    border-radius: 10px;
  }

  .socio-texto {
    text-align: center;
  }
}

  /* INÍCIO — MOBILE LAYOUT */
  .inicio-banner {
    height: auto;
    display: flex;
    flex-direction: column-reverse;
  }

  .inicio-banner img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: 90% center;
  }

  .inicio-textos {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    padding: 30px 20px;
    text-align: center;
    background: #f6f6f6;
    color: #112135;
    z-index: 5;
  }

  .inicio-headline,
  .inicio-subheadline {
    opacity: 1 !important;
    animation: none !important;
  }

  .inicio-subheadline {
    color: #103757;
  }

  .inicio-overlay {
    display: none;
  }

  /* PARALLAX FALLBACK */
  .atuacao {
    background-attachment: scroll;
    background-position: center;
  }
}

/* ============================
   RESPONSIVO — 768px
============================ */
@media (max-width: 768px) {

  /* MENU MOBILE */
  .nav-list {
    position: absolute;
    top: 72px;
    right: 0;
    background-color: var(--blue-2);
    flex-direction: column;
    width: 100%;
    padding: 16px;
    gap: 16px;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .nav-list.nav-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .menu-toggle {
    display: flex;
  }

  /* HERO */
  .hero {
    min-height: 520px;
  }

  .hero h1 {
    font-size: 2rem;
  }
	
.carousel-item {
    flex: 0 0 100%;
  }

  .arrow {
    width: 38px;
    height: 38px;
  }

  .arrow::before {
    width: 14px;
    height: 14px;
  }
	
	.footer-wrapper {
    flex-direction: column;
  }

  .footer-form {
    order: 1;
  }

  .footer-info {
    order: 2;
  }

  .footer {
    padding: 40px 20px;
  }

  .footer-form {
    margin-bottom: 30px;
  }
	.g-recaptcha {
    transform: scale(0.88);
    transform-origin: 0 0;
  }
}

/* ============================
   RESPONSIVO — 600px
============================ */
@media (max-width: 600px) {

  /* ATUAÇÃO */
  .atuacao-grid {
    grid-template-columns: 1fr;
  }

  .atuacao-watermark {
    left: -120px;
  }

  /* WHATSAPP */
  .whatsapp-btn {
    width: 58px;
    height: 58px;
    font-size: 1.8rem;
  }
}


/* ============================
   ANIMAÇÕES (NO FINAL)
============================ */
@keyframes slideLeft {
  0% { opacity: 0; transform: translateX(-40px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}