/* ================================================================
   VARIÁVEIS GLOBAIS
   ================================================================ */
:root {
  --verde-escuro: #1f512a;
  --azul-petroleo: #294358;
  --dourado: #ddc13b;
  --dourado-dark: #997b38;
  --cinza-claro: #f8f9fa;
  --texto: #333333;
  --branco: #ffffff;
  --verde-claro: #b3d143;

  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 28px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.28);
  --trans-base: 0.3s ease;

  /* Contato */
  --contato-bg: #0e1f2c;
}

/* ================================================================
   RESET & BASE
   ================================================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--texto);
  line-height: 1.6;
  background-color: var(--branco);
  overflow-x: hidden;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  transition: color var(--trans-base);
}

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

/* ================================================================
   FOCO — acessibilidade global
   ================================================================ */
:focus-visible {
  outline: 3px solid var(--dourado);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ================================================================
   TIPOGRAFIA
   ================================================================ */
h1,
h2,
h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 1px;
}

h1 {
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 900;
}
h2 {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
}
h3 {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
}

p {
  font-size: 1rem;
  line-height: 1.7;
  text-align: justify;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

/* ================================================================
   UTILITÁRIOS
   ================================================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ================================================================
   ANIMAÇÕES
   ================================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.15);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}
@keyframes shine {
  from {
    left: -120%;
  }
  to {
    left: 140%;
  }
}

/* ================================================================
   BOTÕES
   ================================================================ */
.btn-md,
.btn-servico,
.btn-enviar-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 280px;
  height: 55px;
  border-radius: 3px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  border: none;
  transition:
    transform var(--trans-base),
    box-shadow var(--trans-base),
    background var(--trans-base),
    filter var(--trans-base);
  position: relative;
  overflow: hidden;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  max-width: 280px;
  height: 55px;
  border-radius: 3px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  border: none;
  transition:
    transform var(--trans-base),
    box-shadow var(--trans-base),
    background var(--trans-base);
  position: relative;
  overflow: hidden;
}

.btn-md {
  padding: 12px 28px;
  height: 45px;
}
.btn-md::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 3px;
  background: var(--dourado);
  opacity: 0.7;
  z-index: -1;
  animation: pulse 2s infinite;
}
.btn-md,
.btn-hero,
.btn-dourado {
  background: linear-gradient(135deg, #d0c13b, #997b38);
  color: var(--branco) !important;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 70%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.35),
    transparent
  );
  transform: skewX(-25deg);
  transition: left 0.75s ease;
}

.btn-lima {
  background-color: var(--verde-claro);
  color: var(--verde-escuro);
}

.btn-enviar-dark {
  background-color: var(--azul-petroleo);
  color: var(--branco);
  max-width: 100%;
}

.btn-md:hover,
.btn-hero:hover,
.btn-servico:hover,
.btn-enviar-dark:hover {
  transform: translateY(-3px);
  filter: brightness(1.1);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.btn-hero:hover::before {
  left: 140%;
}

.btn-md:active,
.btn-hero:active,
.btn-servico:active,
.btn-enviar-dark:active {
  transform: translateY(1px) scale(0.98);
}
/* ----------------------------------------------------------------
   5. BOTÃO WHATSAPP FLUTUANTE
   ---------------------------------------------------------------- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 998;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: var(--branco);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.3s, box-shadow 0.3s;
  animation: waBounce 2.5s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.6);
  animation: none;
}
.whatsapp-tooltip {
  position: absolute;
  right: 68px;
  background: #1a1a1a;
  color: var(--branco);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: #1a1a1a;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

@keyframes waBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

/* ================================================================
   HEADER & NAVEGAÇÃO
   ================================================================ */
header {
  background: var(--branco);
  padding: 15px 8%;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  transition:
    background var(--trans-base),
    box-shadow var(--trans-base);
}
header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.logo-container img {
  height: 50px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-menu a {
  color: var(--azul-petroleo);
  margin-left: 18px;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.5px;
}
.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: var(--dourado-dark);
}

.hamburger {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--verde-escuro);
  background: none;
  border: none;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}
.hamburger i {
  font-size: 1.5rem;
}

/* ================================================================
   HERO
   ================================================================ */
.hero {
  /* 1. Define a altura para ocupar a tela quase toda */
  height: 89vh; 
  min-height: 500px;
  margin-top: 80px;

  /* 2. Camadas de cor e imagem */
  background-image: 
    linear-gradient(rgba(31, 81, 42, 0.72), rgba(41, 67, 88, 0.72)),
    url("../img/banner.png");

  /* 3. O "pulo do gato" para não deformar */
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover; /* Faz a imagem cobrir tudo sem esticar */
  background-attachment: scroll; /* Ou 'fixed' para efeito parallax */

  /* 4. Alinhamento do conteúdo */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--branco);
  padding: 0 20px;
  gap: 24px;
}

@media (max-width: 992px) {
 .hero{
   background-image: 
    linear-gradient(rgba(31, 81, 42, 0.72), rgba(41, 67, 88, 0.72)),
    url("../img/banner-mobile-inicio.png");
 }
}

.hero h1 {
  margin-bottom: 4px;
  animation: fadeInDown 1s ease;
}
.hero p {
  max-width: 680px;
  animation: fadeInUp 1.2s ease;
  opacity: 0.92;
  text-align: center;
}
.hero span {
  color: var(--dourado);
}

/* ================================================================
   SOBRE NÓS
   ================================================================ */
.sobre-container {
  width: 100%;
  max-width: 1200px;
  background: var(--branco);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  justify-content: center;
  align-items: center;
  padding: 100px 10px;
  margin: auto;
}

.titulo-servic {
  color: var(--azul-petroleo) !important;
}
.titulo-servic span {
  color: var(--dourado-dark);
}

.sobre-texto h2 {
  color: var(--verde-escuro);
  margin-bottom: 20px;
}
.sobre-texto p {
  font-weight: 400;
  margin-bottom: 15px;
   line-height: 1.5;
}
.sobre-img img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 20px 20px 0 var(--dourado);
}

/* Fundadoras */
.fundadoras-grid {
  grid-column: 1 / -1;
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
   align-items: start;
}

.titulo-fundadoras {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 1.8rem;
  color: var(--azul-petroleo);
  margin-bottom: 20px;
}
.titulo-fundadoras span {
  color: var(--dourado-dark);
}

.card-fundadora {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: fit-content;
  gap: 20px;
  background: #fdfdfd;
  padding: 20px;
  border-radius: 15px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition:
    transform var(--trans-base),
    box-shadow var(--trans-base);
  overflow: hidden;
}
.card-fundadora:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.foto-fundadora img {
  width: 140px;
  height: 150px;
  border-radius: 100px;
  object-fit: cover;
  border: 4px solid var(--dourado);
  flex-shrink: 0;
}

.info-fundadora h4 {
  color: var(--azul-petroleo);
  font-size: 1.05rem;
  margin-bottom: 10px;
}
.info-fundadora h4 span {
  display: block;
  font-weight: 300;
}
.info-fundadora p {
  font-size: 0.88rem;
  margin-bottom: 8px;
  text-align: left;
  text-align: center;
}
.info-fundadora p i {
  color: var(--dourado-dark);
  margin-right: 5px;
  font-size: 1rem;
}

.btn-saiba-mais {
  margin-top: 15px;
  background: linear-gradient(135deg, #d0c13b, #997b38);
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 3px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-saiba-mais:hover {
  background: var(--dourado-dark);
  transform: translateY(-2px);
}

.bio-fundadora {
  width: 100%;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.4s ease,
    opacity 0.3s ease,
    margin-top 0.3s ease;

  margin-top: 0;
}

.bio-fundadora.ativo {
  max-height: 900px;
  opacity: 1;
  margin-top: 15px;
}

.bio-fundadora p {
  background: #f8f8f8;
  padding: 15px;
  border-left: 4px solid var(--dourado);
  border-radius: 10px;
  font-size: 0.9rem;
  line-height: 1.5;
  text-align: justify;
}

/* Diretrizes */
.diretrizes-container {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 80px;
  text-align: center;
}

.diretriz-card {
  background: var(--branco);
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border-top: 5px solid var(--dourado);
  transition:
    transform var(--trans-base),
    box-shadow var(--trans-base);
}
.diretriz-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
}
.diretriz-card i.ph {
  font-size: 2.5rem;
  color: var(--verde-escuro);
  margin-bottom: 20px;
}
.diretriz-card i.ph.ce {
  font-size: 1.2rem;
  color: var(--azul-petroleo);
  margin-bottom: 20px;
}
.diretriz-card h3 {
  color: var(--azul-petroleo);
  margin-bottom: 14px;
}
.diretriz-card p,
.diretriz-card ul {
  font-size: 0.93rem;
  color: var(--texto);
  line-height: 1.6;
  font-weight: 400;
  text-align: center;
}
.diretriz-card ul {
  list-style: none;
  padding: 0;
  text-align: center;
  display: inline-block;
}
.diretriz-card ul li {
  margin-bottom: 8px;
  font-weight: 600;
  margin: auto;
}
.diretriz-card ul li i {
  font-size: 0.9rem;
  color: var(--dourado-dark);
  margin-right: 8px;
}

/* ================================================================
   SERVIÇOS — BLOCOS FULL WIDTH
   ================================================================ */
.servicos-full-width {
  width: 100%;
  overflow: hidden;
}

.bloco-servico {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 0 40px;
}

.bg-verde-escuro {
  background-color: var(--verde-escuro);
  color: var(--branco);
}
.bg-azul-petroleo {
  background-color: var(--azul-petroleo);
  color: var(--branco);
}
.text-dourado {
  color: var(--dourado);
}

.bloco-titulo-topo,
.ttl {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--azul-petroleo);
  font-size: 2.2rem;
  margin-bottom: 20px;
  margin-top: 10px;
}

.conteudo-full {
  max-width: 1200px;
  width: 100%;
  margin: 20px auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 40px 5px;
}
.conteudo-full.reverse {
  direction: rtl;
}
.conteudo-full.reverse > * {
  direction: ltr;
}

.tag-label {
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 2px;
  font-size: 0.78rem;
  color: var(--verde-claro);
}
.text-dourado {
  color: var(--dourado);
}

.titulo-servico {
  font-size: 3.2rem;
  line-height: 1.1;
  margin: 16px 0 20px;
}

.texto-servico p {
  font-size: 0.97rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}

.imagem-servico img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.lista-checks {
  list-style: none;
  margin: 20px 0 28px;
}
.lista-checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 0.93rem;
  color: rgba(255, 255, 255, 0.85);
}
.lista-checks li i {
  color: var(--verde-claro);
  font-size: 1rem;
}

.lista-check {
  list-style: none;
  margin: 20px 0 28px;
}
.lista-check li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 0.93rem;
  color: rgba(255, 255, 255, 0.85);
}
.lista-check li i {
  color: var(--dourado);
  font-size: 1rem;
}

/* DEALER BI SEÇÃO */
.banner-dl {
  display: flex;
  justify-content: center;
  width: 100%;
}
.banner-dl a {
  position: relative;
  display: inline-block; 
  width: 100%;
  max-width: 2500px;
}
.img-mobile {
  display: none;
}
.banner-dl img {
  max-width: 100%;
  width: 100%;
  height: auto;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.banner-dl img:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
/* --- ESTILO DO BOTÃO FLUTUANTE --- */
.btn-flutuante {
  position: absolute;
  bottom: 18%; 
  left: 42.8%;
  width: 280px;
  transform: translateX(-50%) translateY(0);
  background-color: #62788b; 
  color: #ffffff;
  padding: 12px 28px;
  font-family:  "Montserrat", sans-serif;
  font-weight: bold;
  font-size: 14px;
  text-transform: uppercase;
  text-align: center;
  border-radius: 3px; 
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  animation: flutuar 2s ease-in-out infinite alternate;
}
.btn-flutuante:hover {
  background-color: var(--azul-petroleo); 
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  animation-play-state: paused; 
}

/* --- A MÁGICA DA ANIMAÇÃO --- */
@keyframes flutuar {
  0% {
    /* Posição inicial: centralizado e na altura padrão */
    transform: translateX(-50%) translateY(0);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }
  100% {
    /* Posição final: sobe 8px e a sombra aumenta para dar efeito de distância */
    transform: translateX(-50%) translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
  }
}
@media (max-width: 768px) {
  .btn-flutuante {
    width: 230px;
    left: 50%;
    padding: 10px 20px;
    font-size: 14px;
    bottom: 10px; /* Fica mais perto da borda em telas pequenas */
  }
}

/* ================================================================
   CARROSSEL
   ================================================================ */
   /* Remove bolinhas criadas por antes do texto (::before) */
.sem-marcador::before {
    content: none !important;
    display: none !important;
}

/* Garante que nenhum marcador de lista apareça */
.sem-marcador {
    list-style: none !important;
    list-style-image: none !important;
}
.carousel-servicos {
  width: 100%;
  max-width: 1200px;
  padding: 2.5rem 5%;
  position: relative;
  box-sizing: border-box;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.carousel-ambiental {
  border-top-color: rgba(255, 255, 255, 0.12);
}

.cs-outer {
  overflow: hidden;
  width: 100%;
}

.cs-track {
  display: flex;
  gap: 24px;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  cursor: grab;
  user-select: none;
}
.cs-track:active {
  cursor: grabbing;
}

/* Card base */
.cs-card {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 240px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform var(--trans-base),
    box-shadow var(--trans-base);
}
.cs-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}
.cs-card-verde {
  border-color: rgba(141, 198, 63, 0.22);
}

/* Cabeçalho do card */
.cs-card-header {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 90px;
  gap: 14px;
  padding: 22px 22px 18px;
  height: 110px;
  background: rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(212, 175, 55, 0.18);
}
.cs-header-verde {
  border-bottom-color: rgba(141, 198, 63, 0.18);
}

/* Ícone Phosphor */
.cs-icon-box {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.14);
  border-radius: 10px;
}
.cs-icon-box i.ph {
  font-size: 1.5rem;
  color: var(--dourado);
  line-height: 1;
}
.cs-header-verde .cs-icon-box {
  background: rgba(141, 198, 63, 0.14);
}
.cs-header-verde .cs-icon-box i.ph {
  color: var(--verde-claro);
}
.icon-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

/* IMPORTANTE: sobrescreve o estilo global */
.cs-icon-box .icon-wrapper i.ph {
  color: var(--verde-claro); /* mantém padrão */
}
/* Textos do cabeçalho */
.cs-header-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cs-tag-new {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dourado);
  opacity: 0.9;
  margin-bottom: 5px;
}
.cs-header-verde .cs-tag-new {
  color: var(--verde-claro);
}

.cs-title-new {
  font-family: "Montserrat", sans-serif;
  font-size: 0.93rem;
  font-weight: 700;
  color: var(--branco);
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: left;
  hyphens: none;
}

/* Corpo do card */
.cs-card-body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.cs-card-body ul {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cs-desc {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 14px;
  line-height: 1.6;
  text-align: center;
  hyphens: none;
  word-break: normal;
}

.cs-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}
.cs-list li {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.68);
  padding: 4px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}
.cs-list li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--dourado);
  flex-shrink: 0;
}
.cs-card-verde .cs-list li::before {
  background: var(--verde-claro);
}

/* Botão "Saiba Mais" */
.cs-btn-more {
  margin-top: auto;
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--dourado);
  border: 1px solid rgba(212, 175, 55, 0.4);
  background: transparent;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  text-align: center;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
}
.cs-btn-more:hover {
  background: var(--dourado);
  color: var(--branco);
  border-color: var(--dourado);
}
.cs-btn-verde {
  color: var(--verde-claro);
  border-color: rgba(141, 198, 63, 0.4);
}
.cs-btn-verde:hover {
  background: var(--verde-claro);
  color: var(--verde-escuro);
  border-color: var(--verde-claro);
}

/* Navegação carrossel */
.cs-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 34px;
}

.cs-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.4);
  background: transparent;
  color: var(--dourado);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
}
.cs-btn i.ph {
  font-size: 1.1rem;
  line-height: 1;
}
.cs-btn:hover {
  background: var(--dourado);
  color: var(--branco);
  border-color: var(--dourado);
}
.cs-btn-verde-nav {
  border-color: rgba(141, 198, 63, 0.4);
  color: var(--verde-claro);
}
.cs-btn-verde-nav:hover {
  background: var(--verde-claro);
  color: var(--verde-escuro);
  border-color: var(--verde-claro);
}

/* Dots */
.cs-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.cs-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all var(--trans-base);
}
.cs-dot.active {
  background: var(--dourado);
  transform: scale(1.3);
}
.carousel-ambiental .cs-dot.active {
  background: var(--verde-claro);
}

/* ================================================================
   CASES DE SUCESSO
   ================================================================ */
.cases-section {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: auto;
  padding: 90px 10px;
  background: var(--branco);
}

.cases-titulo {
  text-align: center;
  margin-bottom: 50px;
  color: var(--azul-petroleo);
}
.cases-titulo span {
  color: var(--dourado-dark);
}

/* Novo container para controlar o transbordo e permitir o arrastar */
.cases-carousel-container {
  width: 100%;
  overflow-x: auto;
  cursor: grab;
  padding-bottom: 20px; /* Espaço para a sombra não cortar */
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.cases-carousel-container:active {
  cursor: grabbing;
}

/* Esconde a barra de rolagem padrão para estética mais limpa */
.cases-carousel-container::-webkit-scrollbar {
  display: none;
}
.cases-carousel-container {
  -ms-overflow-style: none;  
  scrollbar-width: none;  
}

/* Mudança de Grid para Flex para alinhar lado a lado */
.cases-grid {
  display: flex;
  gap: 30px;
  width: max-content; /* Garante que a div estique horizontalmente */
}

/* Definindo tamanho fixo para os cards no carrossel */
.case-card {
  width: 380px; /* Largura confortável para desktop e mobile */
  flex-shrink: 0; /* Impede que o flexbox esmague os cards */
  background: var(--branco);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.09);
  transition: transform var(--trans-base), box-shadow var(--trans-base);
}

.case-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.14);
}

.case-img {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.case-content {
  padding: 24px;
}
.case-content h3 {
  margin: 14px 0 10px;
  color: var(--azul-petroleo);
  font-size: 1.05rem;
  text-align: center;
}
.case-content p {
  font-size: 0.9rem;
  font-weight: 400;
  text-align: center;
}

.case-tag {
  display: flex;
  justify-content: center;
  background: var(--dourado);
  color: var(--verde-escuro);
  text-align: center;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 5px;
  letter-spacing: 0.5px;
}

@media (max-width: 1100px) {
  .case-card{
    width: 320px;
  }
}

/* ================================================================
   CONTATO 
   ================================================================ */
.contato-section {
  position: relative;
  width: 100%;
  background: linear-gradient(145deg, #1a3548 0%, #1f512a 55%, #294358 100%);
  padding: 90px 5% 80px;
  overflow: hidden;
}

/* Detalhes decorativos de fundo */
.contato-section::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(221, 193, 59, 0.05);
  pointer-events: none;
}
.contato-section::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(179, 209, 67, 0.05);
  pointer-events: none;
}

/* Faixa superior decorativa */
.contato-detalhe-topo {
  display: flex;
  gap: 0;
  width: 100%;
  height: 4px;
  position: absolute;
  top: 0;
  left: 0;
}
.contato-detalhe-topo span:nth-child(1) {
  flex: 1;
  background: var(--dourado);
}
.contato-detalhe-topo span:nth-child(2) {
  flex: 1;
  background: var(--verde-claro);
}
.contato-detalhe-topo span:nth-child(3) {
  flex: 1;
  background: var(--dourado-dark);
}

/* Layout principal */
.contato-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
  position: relative;
  z-index: 1;
}

/* ── COLUNA ESQUERDA ── */
.contato-col-esq {
  color: var(--branco);
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Badge "Consultoria Especializada" */
.contato-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(221, 193, 59, 0.15);
  border: 1px solid rgba(221, 193, 59, 0.35);
  color: var(--dourado);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 50px;
  width: fit-content;
}
.contato-badge i {
  font-size: 0.85rem;
}

/* Título principal */
.contato-titulo-principal {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  font-weight: 900;
  line-height: 1;
  color: var(--branco);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 12px;
}
.contato-titulo-principal span {
  color: var(--dourado);
  display: block;
}

.contato-subtitulo {
  font-size: 0.97rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  max-width: 450px;
  margin-top: 0;
}

/* Imagem da equipe */
.contato-imagem-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}
.contato-imagem-wrap img {
  width: 100%;
  height: 435px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

.contato-img-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(221, 193, 59, 0.4);
  color: var(--dourado);
  border-radius: 50px;
  padding: 7px 14px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.contato-img-badge i {
  font-size: 0.8rem;
}

/* ── COLUNA DIREITA — CARD DO FORMULÁRIO ── */
.contato-col-dir {
  width: 100%;
}

.contato-form-card {
   background: linear-gradient(135deg, var(--azul-petroleo), #1a2e3d);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

/* Cabeçalho do card */
.form-card-header {
 background: linear-gradient(135deg, var(--azul-petroleo), #1a2e3d);
  padding: 28px 36px;
  border-bottom: 3px solid var(--dourado);
}
.form-card-header h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--branco);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.form-card-header p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
}

/* Formulário interno */
.contato-form {
  padding: 32px 36px 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Linhas do formulário */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-grupo {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 20px;
}
.form-row .form-grupo {
  margin-bottom: 0;
}

.form-grupo label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--branco);
  display: flex;
  align-items: center;
  gap: 7px;
}
.form-grupo label i {
  font-size: 0.8rem;
  color: var(--branco);
}

.form-grupo input,
.form-grupo textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #e0e0e0;
  border-radius: 10px;
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  color: var(--texto);
  background: #fafafa;
  transition:
    border-color var(--trans-base),
    background var(--trans-base),
    box-shadow var(--trans-base);
  outline: none;
}

.form-grupo input:focus,
.form-grupo textarea:focus {
  border-color: var(--dourado-dark);
  background: var(--branco);
  box-shadow: 0 0 0 3px rgba(221, 193, 59, 0.18);
}

.form-grupo input::placeholder,
.form-grupo textarea::placeholder {
  color: #aaa;
  font-size: 0.88rem;
}

.form-grupo textarea {
  resize: vertical;
  min-height: 110px;
}

/* Select customizado */
.select-wrapper {
  position: relative;
}
.select-wrapper select {
  width: 100%;
  padding: 13px 40px 13px 16px;
  border: 1.5px solid #e0e0e0;
  border-radius: 10px;
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  color: var(--texto);
  background: #fafafa;
  appearance: none;
  cursor: pointer;
  transition:
    border-color var(--trans-base),
    background var(--trans-base),
    box-shadow var(--trans-base);
  outline: none;
}
.select-wrapper select:focus {
  border-color: var(--dourado-dark);
  background: var(--branco);
  box-shadow: 0 0 0 3px rgba(221, 193, 59, 0.18);
}
.select-wrapper > i {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--dourado-dark);
  font-size: 0.75rem;
  pointer-events: none;
}

/* Rodapé do formulário */
.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 4px;
  flex-wrap: wrap;
}

.form-privacidade {
  font-size: 0.75rem;
  color: #999;
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  min-width: 180px;
}
.form-privacidade i {
  color: var(--verde-escuro);
  font-size: 0.8rem;
}

/* Botão de envio */
.btn-enviar-form {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  background: linear-gradient(135deg, #d0c13b,  #997b38);
  color: var(--branco);
  border: none;
  border-radius: 3px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform var(--trans-base),
    box-shadow var(--trans-base),
    filter var(--trans-base);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn-enviar-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.25),
    transparent
  );
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}
.btn-enviar-form:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(153, 123, 56, 0.45);
  filter: brightness(1.08);
}
.btn-enviar-form:hover::before {
  left: 140%;
}
.btn-enviar-form:active {
  transform: translateY(1px) scale(0.98);
}
.btn-enviar-form:focus-visible {
  outline: 3px solid var(--dourado);
  outline-offset: 3px;
}
.btn-enviar-form i {
  font-size: 0.9rem;
}

/* ================================================================
   FOOTER
   ================================================================ */
footer {
  background: #191919;
  color: #c0c0c0;
  padding: 80px 10% 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col{
  width: auto;
  margin: 0 auto 0 auto;
}
.footer-col h4 {
  color: var(--branco);
  margin-bottom: 22px;
  font-size: 1rem;
  letter-spacing: 0.5px;
  white-space: nowrap !important;
}
.footer-col p {
  font-size: 0.88rem;
  line-height: 1.8;
  font-weight: 300;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  color: #c0c0c0;
  font-size: 0.88rem;
  font-weight: 300;
  transition:
    color 0.2s,
    padding-left 0.2s;
}
.footer-col ul li a:hover,
.footer-col ul li a:focus-visible {
  color: var(--dourado);
  padding-left: 4px;
}

.footer-logo {
  margin-bottom: 24px;
  height: 46px;
  width: auto;
}

.footer-social {
  display: flex;
  gap: 14px;
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.footer-social a {
  color: #c0c0c0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition:
    color 0.2s,
    transform 0.2s,
    background 0.2s,
    border-color 0.2s;
}
.footer-social a i.ph {
  font-size: 1.2rem;
}
.footer-social a:hover,
.footer-social a:focus-visible {
  color: var(--dourado);
  background: rgba(221, 193, 59, 0.1);
  border-color: var(--dourado);
  transform: translateY(-3px);
}

.bottom-bar {
  border-top: 1px solid #2e2e2e;
  padding-top: 20px;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 300;
  color: #888;
}

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

/* Tablet largo */
@media (max-width: 1100px) {
  .rede{
  margin-top: 10px !important;
}
.rede p{
  text-align: center !important;
}
  .cs-card {
    flex: 0 0 calc(33.333% - 11px) !important;
    min-width: 180px !important;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contato-inner {
    grid-template-columns: 1fr 1.4fr;
    gap: 40px;
  }
  .contato-col-visual {
    flex: 0 0 40%;
  }
  .contato-form-card {
    padding: 40px 36px;
  }
  .lista-check li{
    margin: auto;
  }

}

/* Tablet */
@media (max-width: 992px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: var(--branco);
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  .nav-menu.active {
    display: flex;
  }
  .nav-menu a {
    margin: 10px 0;
    font-size: 0.95rem;
  }

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

  .sobre-container {
    grid-template-columns: 1fr;
    padding: 60px 5%;
    gap: 30px;
  }
  .sobre-texto {
    text-align: center;
  }
  .sobre-texto p,
  .hero p,
  .case-content p {
    text-align: center;
  }
  .sobre-img img {
    box-shadow: 10px 10px 0 var(--dourado);
  }

  .fundadoras-grid {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }
  .card-fundadora {
    flex-direction: column;
    text-align: center;
  }
  .foto-fundadora img {
    margin-bottom: 14px;
    width: 110px;
    height: 120px;
  }
  .info-fundadora p {
    text-align: center;
  }

  .diretrizes-container {
    grid-template-columns: 1fr;
    margin-top: 50px;
  }

  .footer-col p {
    text-align: center;
  }

  .conteudo-full,
  .conteudo-full.reverse {
    grid-template-columns: 1fr;
    text-align: center;
    direction: ltr;
    gap: 36px;
    padding: 50px 5%;
  }
  .titulo-servico {
    font-size: 2.4rem;
  }
  .lista-checks {
    text-align: left;
    display: inline-block;
  }
  

  /* Contato tablet */
  .contato-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contato-col-esq {
    order: 2;
  }
  .contato-col-dir {
    order: 1;
  }
  .contato-titulo-principal {
    font-size: 2.2rem;
    text-align: center;
  }
  .contato-subtitulo {
    text-align: center;
  }
  .contato-badge {
    margin: auto;
  }
  .contato-badge span {
    font-size: 13px;
    padding: auto;
  }
  .form-card-header h3 {
    font-size: 16px;
  }
  .cases-grid{
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     text-align: center;
  }
}

/* Mobile */
@media (max-width: 768px) {
  h1 {
    font-size: 2.2rem;
  }
  h2 {
    font-size: 1.8rem;
  }
 
  .sobre-container {
    padding: 50px 5%;
  }
  footer {
    text-align: center;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-social {
    justify-content: center;
  }
  .footer-logo {
    margin: 0 auto 24px;
  }
  .footer-col ul {
    text-align: center;
    display: inline-block;
  }

  .contato-form-card {
    padding: 32px 24px;
  }

  /* Contato mobile */
  .contato-section {
    padding: 60px 4% 60px;
  }
  .contato-form-card {
    border-radius: 16px;
  }
  .form-card-header {
    padding: 22px 22px;
  }
  .contato-form {
    padding: 24px 22px 28px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .form-footer {
    flex-direction: column;
    align-items: stretch;
  }
  .btn-enviar-form {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 720px) {
  .cs-card {
    flex: 0 0 calc(50% - 8px) !important;
    min-width: 160px !important;
  }
  .carousel-servicos {
    padding: 2rem 4%;
  }

}
@media ( max-width: 600px) {
   .img-desktop {
    display: none;
  }

  .img-mobile {
    display: block;
  }
}

@media (max-width: 480px) {
  .cs-card {
    flex: 0 0 100% !important;
  }
  
  .titulo-servico {
    font-size: 2rem;
  }
  .hero h1 {
    font-size: 1.9rem;
  }

  .contato-form-card {
    padding: 28px 20px;
  }
  .contato-visual-content {
    padding: 32px 24px;
  }
}

@media (max-width: 380px) {
  .sobre-texto h2 {
    font-size: 1.7rem;
  }
  .titulo-fundadoras {
    font-size: 1.4rem;
  }
  .contato-headline {
    font-size: 1.5rem;
  }
}

/* ================================================================
   PREFERÊNCIA: SEM MOVIMENTO (acessibilidade)
   ================================================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
