/* === CSS Ativo (1 blocos) === */
/* Fundos únicos por seção */
.bg-full {
  background-image: url('https://sysv2.websim.com.br//images/bg1.webp');
}

.bg-global {
  background-image: url('https://sysv2.websim.com.br/images/bgglobal.webp');
}

.bg-sobre {
  background-image: url('https://sysv2.websim.com.br/images/bg-sobre.webp');
}

.bg-contato {
  background-image: url('https://sysv2.websim.com.br/images/bg-contato3.webp');
}

/* Cores de fundo translúcidas */
.bg-verde {
  background-color: rgba(63, 255, 164, 0.15);
}

.bg-azul {
  background-color: rgba(0, 123, 255, 0.15);
}

.bg-vermelho {
  background-color: rgba(220, 53, 69, 0.15);
}

.bg-cinza {
  background-color: rgba(108, 117, 125, 0.15);
}

.bg-preto {
  background-color: rgba(0, 0, 0, 0.3);
}

/* === Seção Home === */
:root {
  --accent: #00ff95;
  --banner-img: url('https://sysv2.websim.com.br/images/bg-fundo.webp');
  --safe-radius: 24vmin;
  --logo-gap: 4px;
  --line-dur: 2.6s;
  --line-gap: 1.8s;
}

* {
  box-sizing: border-box;
}

.banner {
  position: relative;
  width: 100vw;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  isolation: isolate;
  --px: 0;
  --py: 0;
  --depth-mol: 22px;
  --depth-form: 12px;
  --depth-copy: 6px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.65)), var(--banner-img), radial-gradient(120% 100% at 0% 0%, #16213f 0%, #0b0f1a 65%);
  background-size: cover, cover, auto;
  background-position: center, center, center;
}

/* Efeitos de animação */
.banner::before {
  content: "";
  position: absolute;
  inset: -35%;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(closest-side at 50% 50%, rgba(0, 255, 170, 0.18), transparent 60%), conic-gradient(from 0deg at 50% 50%, rgba(0, 255, 170, 0.85) 0%, rgba(0, 0, 0, 0) 10%, rgba(0, 255, 170, 0.7) 20%, rgba(0, 0, 0, 0) 30%, rgba(0, 255, 170, 0.85) 40%, rgba(0, 0, 0, 0) 50%, rgba(0, 255, 170, 0.7) 60%, rgba(0, 0, 0, 0) 70%, rgba(0, 255, 170, 0.85) 80%, rgba(0, 0, 0, 0) 90%, rgba(0, 255, 170, 0.85) 100%);
  filter: blur(44px) saturate(150%);
  mix-blend-mode: screen;
  opacity: 0.8;
  animation: auraSpin 16s linear infinite, auraPulse 6s ease-in-out infinite alternate;
}

.banner[data-aura="off"]::before {
  display: none;
}

@keyframes auraSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes auraPulse {
  from {
    opacity: 0.45;
  }
  to {
    opacity: 0.9;
  }
}

/* Camadas */
.layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  will-change: transform;
  transition: transform 0.08s linear;
}

.layer--molecules,
.layer--formulas {
  -webkit-mask-image: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) var(--safe-radius), rgba(255, 255, 255, 1) calc(var(--safe-radius) + 3vmin));
  mask-image: radial-gradient(circle at 50% 50%, transparent 0, transparent var(--safe-radius), white calc(var(--safe-radius) + 3vmin));
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.layer--molecules {
  z-index: 1;
  transform: translate3d(calc(var(--px) * var(--depth-mol)), calc(var(--py) * var(--depth-mol)), 0);
}

.layer--formulas {
  z-index: 2;
  transform: translate3d(calc(var(--px) * var(--depth-form)), calc(var(--py) * var(--depth-form)), 0);
}

/* Moléculas (SVG) */
.molecule {
  position: absolute;
  transform: translate(-50%, -50%);
  opacity: 0.65;
  filter: drop-shadow(0 0 6px rgba(0, 255, 170, 0.75)) drop-shadow(0 0 22px rgba(0, 255, 170, 0.55));
}

.molecule .drift {
  animation: molDrift var(--driftDur) ease-in-out infinite alternate;
}

.molecule .spin {
  transform-origin: 50% 50%;
  animation: molSpin var(--spinDur) linear infinite;
}

.molecule svg {
  display: block;
  overflow: visible;
}

.molecule [data-bond] {
  stroke: rgba(0, 255, 170, 0.75);
  stroke-width: 2;
  stroke-linecap: round;
}

.molecule [data-atom] {
  fill: #eafff3;
}

@keyframes molSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes molDrift {
  from {
    transform: translateY(-8px);
  }
  to {
    transform: translateY(8px);
  }
}

/* Fórmulas (flicker) */
.formula {
  position: absolute;
  color: #eafff3;
  opacity: 0.75;
  white-space: nowrap;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Roboto Mono", monospace;
  text-shadow: 0 0 6px rgba(234, 255, 243, 0.9), 0 0 18px var(--accent), 0 0 36px var(--accent);
  transform: translate(-50%, -50%);
  animation: flicker var(--dur) steps(1, end) infinite;
  animation-delay: var(--delay);
}

@keyframes flicker {
  0% {
    opacity: 0.12;
    filter: blur(0.3px);
  }
  5% {
    opacity: 0.95;
  }
  10% {
    opacity: 0.25;
  }
  15% {
    opacity: 0.85;
  }
  20% {
    opacity: 0.22;
  }
  25% {
    opacity: 0.92;
  }
  30% {
    opacity: 0.2;
  }
  35% {
    opacity: 0.9;
  }
  40% {
    opacity: 0.3;
  }
  100% {
    opacity: 0.78;
  }
}

/* Bloco central (logo + frases) */
.copy {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--logo-gap);
  text-align: center;
  padding: 24px;
  transform: translate3d(calc(var(--px) * var(--depth-copy)), calc(var(--py) * var(--depth-copy)), 0);
}

.logo-wrap {
  display: inline-block;
  pointer-events: auto;
}

.logo {
  display: block;
  width: clamp(260px, 32vw, 600px);
  max-width: 95vw;
  height: auto;
  user-select: none;
}

.logo--glow {
  filter: drop-shadow(0 0 6px rgba(0, 255, 170, 0.85)) drop-shadow(0 0 22px rgba(0, 255, 170, 0.55));
}

.logo--tint {
  filter: invert(1) brightness(1.1) saturate(1.2) hue-rotate(80deg) drop-shadow(0 0 12px rgba(0, 255, 170, 0.6));
}

.taglines {
  margin: 0;
  display: grid;
  gap: 0;
  justify-items: center;
  max-width: min(92vw, 980px);
  text-align: center;
}

.taglines .line {
  margin: 0;
  opacity: 0;
  transform: translateY(8px);
  animation: lineIn var(--line-dur) ease-out forwards;
  animation-delay: calc(var(--i) * var(--line-gap));
  font-size: clamp(12px, 1.6vw, 16px);
  line-height: 1.03;
  letter-spacing: 0.4px;
  color: #dfffea;
  text-transform: uppercase;
  text-shadow: 0 0 6px rgba(0, 255, 170, 0.35), 0 0 18px rgba(0, 255, 170, 0.15);
  will-change: transform, opacity;
}

@keyframes lineIn {
  to {
    opacity: 0.92;
    transform: translateY(0);
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .banner::before,
  .formula,
  .molecule .drift,
  .molecule .spin {
    animation: none !important;
  }
  .layer,
  .copy {
    transition: none !important;
    transform: none !important;
  }
  .taglines .line {
    animation: none !important;
    opacity: 0.92;
    transform: none;
  }
}

/* === Seções Padrão de Conteúdo === */
.container-full {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 100vh;
  width: 100%;
  padding: 30px;
  line-height: 1.2;
  color: #fff;
}

.container-full h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 40px;
  color: #064e3b;
  text-align: center;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  width: 100%;
  max-width: 1200px;
}

.card {
  background: rgba(63, 255, 164, 0.15);
  color: #064e3b;
  border-radius: 16px;
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  text-align: center;
  min-height: 150px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.card i {
  font-size: 28px;
  margin-bottom: 12px;
  color: #064e3b;
}

.card p {
  font-size: 0.95rem;
  line-height: 1.4;
}

/* Botões e ícones genéricos */
.logo-contato {
  display: block;
  margin: 0 auto 20px auto;
  max-width: 100%;
  height: auto;
}

.logo-img {
  max-width: 100%;
  height: auto;
}

.intro-text {
  max-width: 90%;
  line-height: 1.6;
  margin-top: 20px;
  padding: 20px;
}

.btn-acessar {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 24px;
  background-color: #4a90e2;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.2rem;
}

.btn-acessar svg {
  vertical-align: middle;
  margin-left: 5px;
}

.scroll-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #4a90e2;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease;
}

.scroll-icon:hover {
  background-color: #357ac9;
}

.scroll-icon svg {
  fill: currentColor;
}

/* === Seção Sobre === */
.sobre {
  min-height: 100dvh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 2vw, 32px);
}

.sobre-texto {
  display: grid;
  align-content: center;
  padding: clamp(16px, 4vw, 64px);
  max-width: 75ch;
}

.sobre-texto h4 {
  margin: 0 0 0.5rem 0;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.25;
}

.sobre-texto h4:first-of-type {
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
}

.sobre-subtitulo {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 700;
  text-transform: uppercase;
}

.sobre-texto p {
  margin-top: 1rem;
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  text-wrap: pretty;
}

.sobre-imagem {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (max-width: 1024px) {
  .sobre {
    grid-template-columns: 1fr;
  }
  .sobre-imagem {
    min-height: 40vh;
    order: 2;
  }
}

/* Benefícios (layout/estilo) */
.subtitulo-benef {
  max-width: 1000px;
  margin: -10px auto 24px auto;
  color: #064e3b;
  line-height: 1.4;
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  text-wrap: pretty;
}

.cols-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 1200px;
}

.benef-card {
  background: rgba(63, 255, 164, 0.15);
  color: #064e3b;
  border-radius: 16px;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  min-height: 280px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.benef-card h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  margin: 0 0 10px 0;
  color: #064e3b;
  font-weight: 800;
  letter-spacing: 0.2px;
}

.benef-card h3 i {
  font-size: 20px;
}

.benef-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
  text-align: left;
}

.benef-card li {
  position: relative;
  padding-left: 20px;
  line-height: 1.35;
  font-size: 0.95rem;
}

.benef-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #064e3b;
  font-weight: 900;
}

.nota-benef {
  margin-top: 12px;
  font-size: 0.85rem;
  color: rgba(6, 78, 59, 0.7);
}

@media (max-width: 1024px) {
  .cols-3 {
    grid-template-columns: 1fr 1fr;
  }
  .benef-card {
    min-height: 260px;
  }
}

@media (max-width: 640px) {
  .cols-3 {
    grid-template-columns: 1fr;
  }
  .benef-card {
    min-height: 0;
  }
}

/* === Seção Equipe (Presidente e outros) === */
.directory {
  --bg: #f5f7fa;
  --card: #ffffff;
  --text: #111827;
  --muted: #6b7280;
  --accent: #065f46;
  background: var(--bg);
  color: var(--text);
  width: 100%;
  min-height: 100vh;
  padding: 32px 20px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.directory .inner {
  width: min(1100px, 100%);
  margin: 0 auto;
}

.directory .title {
  text-align: center;
  margin: 0 0 20px;
}

.directory .title h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--accent);
}

.directory .title .period {
  display: block;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 6px;
}

.president-card {
  background: var(--card);
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 16px 20px;
  width: 100%;
  max-width: 620px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
}

.president-card .avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #e5e7eb;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.president-card .meta {
  text-align: center;
}

.president-card .meta .name {
  font-weight: 800;
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
}

.president-card .meta .role {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 700;
}

@media (max-width: 640px) {
  .president-card {
    flex-direction: column;
    gap: 12px;
    padding: 14px;
    max-width: 90%;
  }
  .president-card .avatar {
    width: 100px;
    height: 100px;
  }
}

.directory .grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 900px) {
  .directory .grid {
    grid-template-columns: 1fr;
  }
}

.directory .section {
  background: var(--card);
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 16px;
}

.directory .section h3 {
  margin: 0 0 10px;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.directory .person {
  padding: 10px 0;
  border-bottom: 1px dashed #e5e7eb;
}

.directory .person:last-child {
  border-bottom: 0;
}

.directory .name {
  font-weight: 700;
}

.directory .role {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  color: var(--accent);
}

/* === Seção Clientes e Parceiros === */
.clientes-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  width: 100%;
  padding: 40px 0;
  text-align: center;
  color: #fff;
  box-sizing: border-box;
  background: url('https://v2.asperact.com.br/images/bg1.webp') center/cover no-repeat;
  overflow: hidden;
}

.clientes-titulo {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.carousel-wrapper {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

.carousel {
  width: 100%;
  overflow: hidden;
}

.slide-track {
  display: flex;
  flex-wrap: nowrap;
  transition: transform 0.4s ease-in-out;
  will-change: transform;
}

.slide {
  flex: 0 0 20%;
  padding: 10px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slide img {
  width: 100%;
  max-height: 180px;
  object-fit: contain;
  padding: 0;
  border-radius: 0;
  background: none;
}

.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav.prev {
  left: 0;
}

.nav.next {
  right: 0;
}

@media (max-width: 992px) {
  .slide {
    flex: 0 0 33.33%;
  }
}

@media (max-width: 576px) {
  .slide {
    flex: 0 0 100%;
    padding: 0 20px;
  }
  .nav {
    font-size: 1.5rem;
    padding: 8px;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
  }
}

.equipe-section {
  width: 100vw;
  min-height: 100vh;
  background-image: url('https://v2.asperact.com.br/images/bg1.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow-x: hidden;
  padding: 2rem 1.5rem;
}

.equipe-container {
  color: #ffffff;
  max-width: 960px;
  width: 100%;
}

.equipe-titulo {
  width: 100%;
  margin-bottom: 2rem;
}

.equipe-titulo h2 {
  font-size: 2.8rem;
  margin: 0;
  color: #ffffff;
  font-weight: 800;
}

.membro {
  display: flex;
  justify-content: center;
}

.membro img {
  width: 100%;
  max-width: 330px;
  height: auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

@media (max-width: 767px) {
  .membro {
    flex: 1 1 100% !important;
    max-width: 100% !important;
  }
  .equipe-titulo h2 {
    font-size: 3rem !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .membro {
    flex: 1 1 calc(50% - 2rem) !important;
    max-width: calc(50% - 2rem) !important;
  }
}

@media (min-width: 992px) {
  .membro {
    flex: 1 1 calc(33.33% - 2rem) !important;
    max-width: calc(33.33% - 2rem) !important;
  }
}

/* Parceiros */
.parceiros-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  align-items: center;
  justify-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.parceiro img{
  display:block;
  width:120px;          /* base: bate com sizes = 120px */
  height:auto;          /* preserva proporção */
  max-height:176px;     /* teu limite vertical */
  object-fit:contain;
  filter:grayscale(100%);
  transition:filter .3s;
}

/* md */
@media (min-width:768px){
  .parceiro img{ width:140px; }  /* bate com sizes = 140px */
}

/* lg */
@media (min-width:1200px){
  .parceiro img{ width:160px; }  /* bate com sizes = 160px */
}

/* opcional: tira o cinza no hover/foco */
.parceiro:hover img,
.parceiro:focus-within img{
  filter:none;
}


.parceiro img:hover {
  filter: grayscale(0%);
}

.pnav {
  display: none;
}

@media (max-width: 768px) {
  .parceiros-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    overflow: hidden;
  }
  .parceiros-grid {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 20px 0;
  }
  .parceiro {
    flex: 0 0 100%;
    min-width: 221px;
    scroll-snap-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .pnav {
    display: flex;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    font-size: 1.5rem;
    align-items: center;
    justify-content: center;
  }
  .pnav.prev {
    left: 5px;
  }
  .pnav.next {
    right: 5px;
  }
  .pnav:hover {
    background: rgba(0, 0, 0, 0.6);
  }
}

/* === Seção de PDFs === */
.container-full .pdf-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
  justify-items: center;
  width: 100%;
  max-width: 1100px;
  padding: 30px;
  color: #111827;
}

@media (max-width: 900px) {
  .container-full .pdf-grid {
    grid-template-columns: 1fr;
  }
}

.pdf-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  padding: 8px;
  border-radius: 10px;
  transition: transform 0.15s ease, opacity 0.15s ease;
  cursor: pointer;
}

.pdf-link:hover {
  transform: translateY(-2px);
}

.pdf-link:focus {
  outline: 2px solid #cbd5e1;
  outline-offset: 2px;
}

.pdf-icon {
  line-height: 0;
}

.pdf-title {
  margin: 4px 0 0;
  font-size: clamp(1rem, 1.8vw, 1rem);
  font-weight: 800;
  letter-spacing: 0.01em;
  text-align: center;
}

.pdf-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.65);
  display: none;
  align-items: center;
  justify-content: center;
}

.pdf-modal.open {
  display: flex;
}

.pdf-viewer {
  width: min(1100px, 96vw);
  height: min(90vh, 900px);
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(17, 24, 39, 0.1);
}

.pdf-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 12px;
  background: #111827;
  color: #fff;
}

.pdf-title-txt {
  font-weight: 700;
}

.pdf-actions .btn {
  background: #1f2937;
  color: #fff;
  border: 1px solid #374151;
  padding: 6px 10px;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
}

.pdf-actions .btn:hover {
  background: #374151;
}

.pdf-body {
  flex: 1;
  background: #111;
}

.pdf-body iframe {
  width: 100%;
  height: 100%;
  border: 0;
  background: #fff;
}

/* === Seção Contato / Formulários === */
:root {
  --bg-dark: #00522d;
  --text-light: #fff;
  --text-muted: #ddd;
  --text-dark: #000;
  --primary: #4a90e2;
  --primary-hover: #357ac9;
  --border-dark: #fff;
  --border-light: #ccc;
  --radius: 6px;
  --gap: 16px;
  --pad: 10px;
}

.form-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}

.form-container {
  width: 100%;
  max-width: 700px;
  padding: 25px 30px;
  border-radius: 8px;
  background: transparent;
  color: var(--text-light);
}

/* =========================
   BASE DOS FORM FIELDS (com tema escuro padrão)
========================= */
.form-container form{ display:block; } /* sem grid global */

.form-container label{
  display:block;font-size:14px;font-weight:600;margin-bottom:6px;
}
.form-container :is(input,select,textarea){
  width:100%;box-sizing:border-box;
  padding:var(--pad);font-size:14px;
  background:var(--bg-dark);color:var(--text-light);
  border:1px solid var(--border-dark);border-radius:5px;
  appearance:none;
}
.form-container input[type="file"]{ padding:6px; }
.form-container select option{ background:var(--bg-dark);color:var(--text-light); }
.form-container :is(input,textarea)::placeholder{ color:var(--text-muted); }

.form-container button{
  width:100%;padding:12px;border:0;border-radius:var(--radius);
  font-size:15px;font-weight:700;cursor:pointer;
  color:#fff;background:var(--primary);transition:background .3s ease;
}
.form-container button:hover{ background:var(--primary-hover); }

.form-container :is(input,select,textarea,button):focus{
  outline:2px solid var(--primary);outline-offset:2px;
}

/* ====================================================================
   CONTATO
==================================================================== */

/* Container geral em 2 colunas (info + form) no desktop */
.projeto-container.projeto-invertido {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(320px, 1fr);
  gap: 30px;
  align-items: start;
}

/* Colunas centralizadas */
.col-esquerda-contato,
.col-direita-contato {
  display: flex;
  justify-content: center;
  align-items: center;
}
.col-direita-contato p {
  color: #00522d;
  text-align: left;
  margin: 0 0 10px 0;
}
/* Coluna esquerda (form) */
.col-esquerda-contato {
  flex: 1;
  min-height: 100vh;
  background: transparent;
}

/* Coluna direita (info) */
.col-direita-contato {
  flex: 1;
  max-width: 600px;
  background: transparent;
  padding: 20px;
  margin: 40px 25px;
  border-radius: 8px;
  flex-direction: column;
  align-items: flex-start; /* Alinha o conteúdo à esquerda */
}

/* Form interno → 2 colunas por linha no desktop */
.col-esquerda-contato .formulario2 {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
}

/* Campos que ocupam linha inteira */
.col-esquerda-contato .formulario2 .col-span-2 {
  grid-column: 1 / -1;
}

/* Tema claro apenas no contato */
.formulario2 :is(input, select, textarea) ::placeholder {
  background: #fff !important;
  color: var(--text-dark) !important;
  border: 1px solid var(--border-light);
  font-size: 1rem;
  border-radius: 4px;
}

/* Título e info */
.titulo-form {
  text-align: center;
  margin-bottom: 20px;
  color: var(--text-dark);
}
.col-info {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.6;
}
.btn-area {
  text-align: center;
}

.btn-area button {
  width: 150px;            /* largura automática */
  min-width: 140px;        /* opcional: evita botão minúsculo */
  padding: 12px 24px;      /* mantém boa área de clique */
  background-color: #00522d;
}

@media (max-width: 1024px) {
  .projeto-container.projeto-invertido {
    grid-template-columns: 1fr !important;
    min-height: 100svh;
  }
  .col-direita-contato {
    margin: 20px 16px;
    max-width: 720px;
    box-sizing: border-box;
    height: calc(100svh - 40px);
  }
  .col-esquerda-contato .formulario2 {
    grid-template-columns: 1fr !important;
    gap: 14px;
  }
  .col-esquerda-contato .formulario2 .col-span-2 {
    grid-column: auto !important;
  }
}

@media (max-width: 480px) {
  .col-direita-contato {
    margin: 0;
    padding: 16px;
    min-height: 100svh;
  }
  .col-esquerda-contato .formulario2 {
    gap: 12px;
  }
}

/* Formulário de Orçamento */
.form-orcamento-wrapper {
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  background-size: cover;
  background-position: center;
}

.form-orcamento-container {
  width: 100%;
  max-width: 800px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  background: transparent;
}

.form-orcamento-container .linha-cheia {
  grid-column: 1 / -1;
}

.form-orcamento-container .btn-area {
  text-align: center;
}

@media (max-width: 1024px) {
  .form-orcamento-container {
    grid-template-columns: 1fr;
  }
  .form-orcamento-container .linha-cheia {
    grid-column: auto;
  }
}

@media (max-width: 768px) {
  .form-orcamento-wrapper {
    padding: 30px 15px;
  }
  .form-orcamento-container {
    gap: 14px;
  }
}

@media (max-width: 480px) {
  .form-orcamento-wrapper {
    padding: 20px 10px;
  }
  .form-orcamento-container {
    gap: 12px;
  }
  .form-orcamento-container button {
    padding: 10px;
    font-size: 14px;
  }
}

/* Formulário de Newsletter */
.form-newsletter {
  width: 100%;
  padding: 40px 20px;
  text-align: center;
}

.form-newsletter .inner {
  max-width: 960px;
  margin: 0 auto;
}

.form-newsletter .fn-title {
  margin: 0 0 20px 0;
  font-weight: 800;
  color: #00522d;
  font-size: clamp(1.4rem, 3vw, 2rem);
  letter-spacing: 0.02em;
}

.form-newsletter .fn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

.form-newsletter input[type="text"],
.form-newsletter input[type="email"] {
  flex: 1 1 260px;
  max-width: 320px;
  padding: 14px;
  border-radius: 6px;
  border: 1px solid var(--border-dark);
  background: var(--bg-dark);
  color: var(--text-light);
}

.form-newsletter input::placeholder {
  color: var(--text-muted);
}

.form-newsletter .fn-btn {
  flex: 0 0 auto;
  padding: 14px 28px;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 800;
  color: #fff;
  background: #0fb766;
  transition: filter 0.2s ease;
}

.form-newsletter .fn-btn:hover {
  filter: brightness(0.92);
}

@media (max-width: 640px) {
  .form-newsletter .fn-row {
    flex-direction: column;
    gap: 10px;
  }
  .form-newsletter input[type="text"],
  .form-newsletter input[type="email"],
  .form-newsletter .fn-btn {
    width: 100%;
    max-width: 300px;
    flex: none;
    margin: 0 auto;
  }
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.captcha-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 12px 0;
  flex-wrap: nowrap;
}

.captcha-wrap label {
  font-size: 1rem;
  font-weight: 600;
  white-space: nowrap;
}

.captcha-input {
  width: 100px;
  height: 40px;
  padding: 0 8px;
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  border: 1px solid #444;
  border-radius: 6px;
}

.captcha-input::-webkit-outer-spin-button,
.captcha-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.captcha-input {
  -moz-appearance: textfield;
}

.formulario2 .btn-area {
  margin-top: 10px;
}

@media (max-width: 480px) {
  .captcha-wrap {
    flex-wrap: wrap;
    gap: 8px;
  }
  .captcha-input {
    width: 160px;
  }
}

#observacoes + small,
#observacoes + .char-counter,
textarea[maxlength] + .char-counter,
textarea[maxlength] + .textarea-length,
textarea[maxlength] + .textarea-counter,
textarea[maxlength] + small {
  display: none !important;
}

/* === Rodapé (Footer) === */
.footer-info {
  margin: 20px 0;
  text-align: center;
  font-size: 0.9rem;
  color: #064e3b;
}

.footer-info .copy {
  margin-bottom: 15px;
  font-weight: 600;
}

.footer-cols {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.footer-cols .col-left {
  text-align: left;
  font-size: 0.8rem;
  line-height: 1.4;
}

.footer-cols .col-left a {
  color: #064e3b;
  text-decoration: underline;
}

.footer-cols .col-right {
  text-align: right;
}

.btn-websim {
  display: inline-block;
  background-color: #3ffaa4;
  color: #fff;
  padding: 8px 14px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  font-size: 0.85rem;
  transition: background-color 0.2s ease;
}

.btn-websim:hover {
  background-color: #1ebe5d;
}

@media (max-width: 768px) {
  .footer-cols {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-cols .col-left,
  .footer-cols .col-right {
    text-align: center;
  }
}

.footer-info {
  margin: 20px 0;
  text-align: center;
  font-size: 0.9rem;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
}

.footer-info .copy {
  font-weight: 600;
  margin: 0;
}

.btn-websim {
  display: inline-block;
  background-color: #3ffaa4;
  color: #fff;
  padding: 8px 14px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  font-size: 0.85rem;
  transition: background-color 0.2s ease;
}

.btn-websim:hover {
  background-color: #49d192;
}

.recaptcha-note {
  font-size: 0.8rem;
  line-height: 1.4;
  color: #ffffff;
  max-width: 600px;
}

.recaptcha-note a {
  color: #ffffff;
  text-decoration: underline;
}