:root {
  --green-main: #D7DD3F;
  --green-soft: #EFF5C2;
  --black-soft: #0A0A0A;
  --gray-50: #FCFCFC;
  --gray-100: #F7F7F7;
  --gray-200: #E2E2E2;
  --gray-300: #C7C7C7;
  --text-main: #111111;
  --text-soft: #666666;
  --font-main: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --purple-soft: #8A7CFF;
  --blue-soft: #A9D0FF;
  --orange-soft: #FFB661;
  --beige-soft: #F3F2EB;

  --max-width: 1080px;
  --radius-md: 16px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-main);
  color: var(--text-main);
  background: #FFFFFF;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  min-height: 100vh;
  background: #FFFFFF;
  color: var(--text-main);
}

/* Ajuste específico para a página de contato */
.hero-contact .page-subtitle {
  margin-top: 14px;    /* aumenta espaço abaixo do título */
  max-width: 600px;    /* melhora leitura */
  line-height: 1.7;    /* mais respirado */
}

/* SECTIONS & CONTAINERS */

.section {
  padding: 72px 24px;
}

@media (min-width: 900px) {
  .section {
    padding: 96px 24px;
  }
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
}

/* HEADER */

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  height: 32px;        /* Ajuste fino da altura */
  width: auto;         /* Mantém proporção */
  display: block;
}

/* Ajuste da logo no mobile */
@media (max-width: 600px) {
  .brand-logo {
    height: 26px;      /* tamanho ideal no mobile */
    max-width: 140px;   /* trava contra logos muito largas */
  }
}


@media (min-width: 900px) {
  .brand-logo {
    height: 38px;      /* Maior no desktop */
  }
}


.brand-name {
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.01em;
}

.nav {
  display: flex;
  gap: 18px;
  font-size: 14px;
}

.nav a {
  color: #333;
  opacity: 0.85;
}

.nav a:hover {
  opacity: 1;
}

/* Link ativo no menu — cor verde da marca */
.nav a.active {
  font-weight: 600;
  color: var(--green-main) !important;
  opacity: 1;
}

.nav a:active {
  color: var(--green-main);
}

.nav a.active {
  color: var(--green-main) !important;
  font-weight: 600;
  opacity: 1;
}

/* Seção de logos de clientes / parceiros */
.logo-section {
  padding-top: 56px;
  padding-bottom: 64px;
}

/* Grid formatado para 3 logos por linha */
.client-logos {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* ← 3 por linha */
  gap: 40px 48px;
  align-items: center;
  justify-items: center; /* centraliza cada logo */
}

/* Cada slot da logo */
.client-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Tamanho padrão — 191x80 conforme seus arquivos */
.client-logo {
  height: 80px;
  width: auto;
  max-width: 191px;
  object-fit: contain;
  display: block;
  opacity: 0.9;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.client-logo-item:hover .client-logo {
  opacity: 1;
  transform: translateY(-2px);
}

/* Mobile — 2 logos por linha */
@media (max-width: 600px) {
  .client-logos {
    grid-template-columns: repeat(2, 1fr); /* 2 por linha */
    gap: 24px 24px;
  }

  .client-logo {
    height: 64px;
    max-width: 170px;
  }
}



@media (max-width: 720px) {
  .header-inner {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .brand {
    flex: 1 0 100%;
  }

  .nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 12px;
    margin-top: 8px;
    font-size: 13px;
  }
}


/* HERO HOME */

.hero {
  background: radial-gradient(130% 160% at 50% 0%, #1A1A1A 0%, #050505 50%, #000000 100%);
  color: white;
  padding: 100px 24px;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}


@media (min-width: 900px) {
  .hero-layout {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

/* TAG ANIMADA */

.tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 10px 6px 6px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  width: fit-content;
  opacity: 0;
  transform: scale(0.7);
  transform-origin: left center;
  animation: tagWrapIntro 0.7s ease-out forwards 0.1s;
}

.tag-pill {
  border-radius: 999px;
  background: var(--green-main);
  padding: 4px 12px;
  font-size: 12px;
  color: #111;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-12px);
  animation: pillIntro 0.55s ease-out forwards 0.25s;
}

.tag-separator {
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  opacity: 0;
  transform: translateX(-8px);
  animation: tagTextIntro 0.5s ease-out forwards 0.4s;
}

.tag-text {
  color: rgba(255,255,255,0.9);
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-8px);
  animation: tagTextIntro 0.55s ease-out forwards 0.48s;
}

@keyframes tagWrapIntro {
  0%   { opacity: 0; transform: scale(0.7); }
  70%  { opacity: 1; transform: scale(1.03); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes pillIntro {
  0%   { opacity: 0; transform: translateX(-16px) scaleX(0.7); }
  100% { opacity: 1; transform: translateX(0) scaleX(1); }
}

@keyframes tagTextIntro {
  0%   { opacity: 0; transform: translateX(-10px); }
  100% { opacity: 1; transform: translateX(0); }
}

.hero-title {
  font-size: 38px;
  line-height: 1.15;
  letter-spacing: -0.04em;
  font-weight: 700;
  margin-top: 20px;
}

@media (min-width: 900px) {
  .hero-title {
    font-size: 48px;
  }
}

.hero-subtitle {
  max-width: 540px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.80);
  margin-top: 12px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

/* BOTÕES */

.btn {
  border-radius: 999px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: transform 0.1s ease-out, box-shadow 0.12s ease-out, background 0.12s ease-out, color 0.12s ease-out;
}

.btn-primary {
  background: var(--green-main);
  color: #111111;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.32);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: #111;
  border: 1px solid #222;
}

.btn-secondary:hover {
  background: #222;
  color: #FFFFFF;
}

.btn-outline {
  background: transparent;
  border: 1px solid #222;
  color: #222;
}

.btn-outline:hover {
  background: #222;
  color: #FFFFFF;
}

/* Ajuste do botão secundário no hero (fundo escuro) */
.hero .btn-secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #FFFFFF;
}

.hero .btn-secondary:hover {
  background: #FFFFFF;
  color: #111111;
}

/* HERO VISUAL + "DADOS" */

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  aspect-ratio: 4 / 3;
}

.hero-orb {
  position: absolute;
  inset: 12%;
  border-radius: 32px;
  background: radial-gradient(circle at 20% 15%, #D7DD3F 0%, #8A7CFF 40%, #111 90%);
  opacity: 0.95;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.6);
}

.hero-node {
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-main);
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.5);
  animation: float 6s ease-in-out infinite alternate;
}

.hero-node:nth-child(2) { top: 10%; left: 12%; animation-delay: -1.2s; }
.hero-node:nth-child(3) { bottom: 16%; right: 10%; animation-delay: -2.8s; }
.hero-node:nth-child(4) { top: 55%; left: 60%; animation-delay: -4.2s; }

@keyframes float {
  0% { transform: translate3d(0,0,0); }
  100% { transform: translate3d(6px,-10px,0); }
}

/* COLUNAS DE DADOS */

.hero-data-columns {
  position: absolute;
  inset: 10% 6% 10% auto;
  width: 82px;
  display: flex;
  gap: 6px;
  justify-content: flex-end;
  pointer-events: none;
  mix-blend-mode: screen;
}

.data-col {
  flex: 1;
  font-size: 11px;
  line-height: 1.2;
  color: rgba(255,255,255,0.75);
  text-align: center;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.8;
  overflow: hidden;
  position: relative;
}

.data-col-inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  animation: scrollData 9s linear infinite;
  white-space: pre-line;
}

.data-col:nth-child(2) .data-col-inner { animation-duration: 11s; animation-delay: -2s; }
.data-col:nth-child(3) .data-col-inner { animation-duration: 13s; animation-delay: -4s; }

@keyframes scrollData {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

/* TITULOS DAS SEÇÕES */

.section-title {
  font-size: 34px;
  letter-spacing: -0.03em;
  font-weight: 700;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-soft);
  max-width: 560px;
  line-height: 1.6;
}

.section-header {
  margin-bottom: 32px;
}

/* GRIDS */

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

@media (min-width: 900px) {
  .grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 900px) {
  .grid-2 {
    grid-template-columns: 1.2fr 0.9fr;
  }
}

/* CARDS */

.card {
  border-radius: var(--radius-md);
  background: var(--gray-100);
  padding: 20px 18px;
  border: 1px solid var(--gray-200);
}

.card-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
}

.card-text {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.7;
}

.card-tag {
  font-size: 12px;
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  background: #FFFFFF;
  border: 1px solid var(--gray-200);
  margin-bottom: 10px;
  color: #555;
}

/* SERVICE SECTIONS */

.service {
  background: #FFFFFF;
}

.service-dark {
  background: #050505;
  color: white;
}

.service-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.service-header {
  margin-bottom: 18px;
}

.service-tag {
  display: inline-flex;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--gray-100);
  color: #555;
  margin-bottom: 10px;
}

.service-tag.ads {
  border: 1px solid var(--orange-soft);
  background: #FFF4E4;
  color: #8A5A1A;
}

.service-tag.ai {
  border: 1px solid var(--purple-soft);
  background: #F3F0FF;
  color: #43308F;
}

.service-tag.consult {
  border: 1px solid var(--blue-soft);
  background: #EDF4FF;
  color: #244A7F;
}

.service-dark .service-tag {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.18);
}

.service-title {
  font-size: 26px;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
  font-weight: 650;
}

.service-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-soft);
  max-width: 640px;
}

.service-dark .service-text {
  color: rgba(255, 255, 255, 0.78);
}

.service-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.metric-pill {
  font-size: 13px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  color: #444;
}

.service-dark .metric-pill {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.84);
}

.service-cta {
  margin-top: 20px;
}

/* RESULTADOS */

.results {
  background: #FFFFFF;
  padding-bottom: 56px;
}

.results-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 24px;
}

@media (min-width: 900px) {
  .results-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.result-card {
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  background: #FFFFFF;
  padding: 18px 16px;
}

.result-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
}

.result-text {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.6;
}

/* COMPANIES */

.section-companies {
  padding-top: 32px;
  padding-bottom: 72px;
}

@media (min-width: 900px) {
  .section-companies {
    padding-top: 40px;
    padding-bottom: 96px;
  }
}

.logos-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 24px;
}

.logo-placeholder {
  height: 32px;
  border-radius: 10px;
  border: 1px dashed var(--gray-300);
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  color: #888;
}

/* CTA FINAL */

.cta-final {
  background: var(--green-soft);
}

.cta-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.cta-title {
  font-size: 26px;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.cta-text {
  font-size: 15px;
  color: var(--text-soft);
  max-width: 540px;
  margin: 0 auto 20px auto;
}

.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

/* FOOTER */

.footer {
  border-top: 1px solid var(--gray-200);
  padding: 18px 24px 32px 24px;
  font-size: 12px;
  color: #888;
  background: #FFFFFF;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: space-between;
  align-items: center;
}

/* SCROLL ANIMATIONS */

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* SEÇÕES AUXILIARES */

.section-delivery {
  padding-top: 40px;
  padding-bottom: 40px;
}

@media (min-width: 900px) {
  .section-delivery {
    padding-top: 56px;
    padding-bottom: 56px;
  }
}

/* ECOSSISTEMA DIGITAL */

.ecosys {
  background: #F4F5F0;
}

.ecosys-header {
  max-width: var(--max-width);
  margin: 0 auto 28px auto;
  padding: 0 24px;
}

.ecosys-tagline {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #888;
  margin-bottom: 8px;
}

.ecosys-grid-wrapper {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.ecosys-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

@media (min-width: 900px) {
  .ecosys-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.ecosys-card {
  border-radius: 18px;
  padding: 18px 18px 20px 18px;
  background: #FFFFFF;
  border: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  overflow: hidden;
}

.ecosys-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  background: radial-gradient(circle at 0 0, var(--green-main), transparent 55%);
}

.ecosys-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--gray-100);
  color: #555;
  width: fit-content;
  position: relative;
  z-index: 1;
}

.ecosys-pill span {
  font-weight: 600;
  font-size: 11px;
}

.ecosys-title {
  font-size: 18px;
  font-weight: 650;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}

.ecosys-sub {
  font-size: 13px;
  color: #999;
  position: relative;
  z-index: 1;
}

.ecosys-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-soft);
  position: relative;
  z-index: 1;
}

.ecosys-link {
  margin-top: 4px;
  font-size: 12px;
  color: #444;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  position: relative;
  z-index: 1;
}

.ecosys-link span {
  text-decoration: underline;
  text-decoration-style: dotted;
}

.ecosys-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--green-main);
}

.ecosys-footer-note {
  max-width: var(--max-width);
  margin: 18px auto 0 auto;
  padding: 0 24px;
  font-size: 13px;
  color: #777;
}

/* SOBRE */

.page-title {
  font-size: 40px;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}

.page-subtitle {
  font-size: 16px;
  color: var(--text-soft);
  max-width: 640px;
  line-height: 1.7;
}

.pill {
  display: inline-flex;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  margin-bottom: 10px;
}

.list {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.list-item {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.6;
  display: flex;
  gap: 8px;
}

.list-bullet {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  margin-top: 7px;
  background: var(--green-main);
  flex-shrink: 0;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.badge {
  font-size: 12px;
  border-radius: 999px;
  padding: 6px 10px;
  background: #fff;
  border: 1px solid var(--gray-200);
  color: #555;
}

.section-alt {
  background: #050505;
  color: #fff;
}

.section-alt .page-subtitle {
  color: rgba(255,255,255,0.78);
}

.timeline {
  border-left: 1px solid rgba(0,0,0,0.08);
  padding-left: 16px;
  margin-top: 16px;
}

.timeline-item {
  margin-bottom: 18px;
}

.timeline-year {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #999;
  margin-bottom: 2px;
}

.timeline-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 2px;
}

.timeline-text {
  font-size: 14px;
  color: var(--text-soft);
}

.quote {
  border-radius: 18px;
  padding: 20px 18px;
  border: 1px solid rgba(255,255,255,0.18);
  background: linear-gradient(135deg, rgba(215,221,63,0.08), rgba(255,255,255,0.02));
  font-size: 15px;
  line-height: 1.7;
}

.quote-mark {
  font-size: 20px;
  opacity: 0.7;
}

.quote-author {
  margin-top: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.78);
}

.section-values {
  background: var(--gray-50);
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 24px;
}

@media (min-width: 900px) {
  .values-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.value-card {
  border-radius: 16px;
  padding: 18px 16px;
  background: #fff;
  border: 1px solid var(--gray-200);
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.7;
}

.value-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
  color: #222;
}

/* CONTATO */

.layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 32px;
}

@media (min-width: 900px) {
  .layout {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.contact-option {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px dashed var(--gray-200);
}

.contact-option:last-child {
  border-bottom: none;
}

.contact-label {
  font-size: 14px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.contact-main {
  font-size: 15px;
  font-weight: 500;
}

.contact-desc {
  font-size: 13px;
  color: var(--text-soft);
  margin-top: 2px;
}

.contact-action {
  font-size: 13px;
  color: #222;
  text-decoration: underline;
  text-decoration-style: dotted;
  white-space: nowrap;
}

.hint {
  font-size: 13px;
  color: #999;
  margin-top: 12px;
}

.form-label {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 4px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}

.inline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 720px) {
  .inline {
    grid-template-columns: 1fr 1fr;
  }
}

input,
textarea,
select {
  border-radius: 999px;
  border: 1px solid var(--gray-300);
  padding: 10px 14px;
  font-family: var(--font-main);
  font-size: 14px;
  outline: none;
  transition: border 0.12s ease-out, box-shadow 0.12s ease-out;
  background: #FFF;
}

textarea {
  border-radius: 16px;
  min-height: 120px;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--green-main);
  box-shadow: 0 0 0 1px rgba(215,221,63,0.4);
}

/* ---------- Feedback tecnológico do formulário ---------- */

.form-feedback {
  margin-top: 24px;
  max-width: 520px;
  border-radius: 20px;
  padding: 18px 20px;
  background: radial-gradient(circle at top left, rgba(215, 221, 63, 0.2), transparent),
              #0b0b0b;
  color: #f9fafb;
  display: none; /* aparece só com a classe .is-visible */
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
}

.form-feedback.is-visible {
  display: block;
  animation: feedbackFadeUp 0.4s ease-out forwards;
}

.form-feedback.is-error {
  background: radial-gradient(circle at top left, rgba(239, 68, 68, 0.3), transparent),
              #111827;
}

.form-feedback-inner {
  display: flex;
  align-items: center;
  gap: 16px;
}

.form-feedback-copy h3 {
  margin: 0 0 4px;
  font-size: 16px;
}

.form-feedback-copy p {
  margin: 0;
  font-size: 14px;
  color: #e5e7eb;
}

/* Orbitas “tech” */

.form-feedback-orbit {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(250, 250, 250, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: visible;
}

.form-feedback-core {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #d7dd3f, #a6ff9f);
  box-shadow: 0 0 16px rgba(215, 221, 63, 0.7);
  animation: corePulse 1.8s ease-in-out infinite;
}

.form-feedback-orbit::before {
  content: '';
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 999px;
  border: 1px dashed rgba(249, 250, 251, 0.25);
  animation: orbitRotate 6s linear infinite;
}

/* Animações */

@keyframes feedbackFadeUp {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes corePulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 10px rgba(215, 221, 63, 0.7);
  }
  50% {
    transform: scale(1.15);
    box-shadow: 0 0 22px rgba(215, 221, 63, 1);
  }
}

@keyframes orbitRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Botão “enviando” */

.btn.is-loading {
  position: relative;
  pointer-events: none;
}

.btn.is-loading::after {
  content: '';
  position: absolute;
  inset: 6px 12px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: transparent;
  animation: spinLoader 0.8s linear infinite;
}

@keyframes spinLoader {
  to {
    transform: rotate(360deg);
  }
}

