/* ============================================================
   MAPEAMENTO E REDESENHO DE PROCESSOS — VERDE
   ============================================================ */

:root {
  --primary:          #017369;
  --primary-dark:     #003840;
  --primary-soft:     rgba(1, 115, 105, 0.15);
  --primary-rgba-92:  rgba(1, 115, 105, 0.92);
  --bg:               #FAFAFA;
  --card-bg:          #FFFFFF;
  --text-dark:        #1f1f1f;
  --text-muted:       #4a4a4a;
  --white-soft:       rgba(255, 255, 255, 0.6);
  --white-soft-hover: rgba(255, 255, 255, 0.82);
}

/* ===== RESET ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
}

body {
  background: var(--bg);
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ============================================================
   NAV (idêntica à gestão-empresarial)
   ============================================================ */

.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--primary);
  transition: box-shadow 0.3s ease;
}

.site-nav.scrolled {
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.22);
}

.topbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(16px, 2.2vw, 36px);
  width: 100%;
  padding: 14px 28px;
}

.nav-group {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.6vw, 24px);
}
.nav-group.left  { justify-content: flex-start; }
.nav-group.right { justify-content: flex-end; }

.nav-item { position: relative; }

.nav-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(130px, 10vw, 175px);
  height: 50px;
  padding: 0 28px;
  border-radius: 999px;
  background: var(--white-soft);
  color: var(--primary);
  text-decoration: none;
  font-size: clamp(15px, 1vw, 18px);
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
  transition: background 0.25s ease, transform 0.2s ease;
}

.nav-pill:hover {
  background: var(--white-soft-hover);
  transform: translateY(-1px);
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo img {
  height: clamp(70px, 6vw, 100px);
  width: auto;
  object-fit: contain;
  display: block;
}

/* Dropdown desktop */
.has-dropdown .dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 280px;
  background: var(--primary);
  border-radius: 0 16px 16px 16px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  z-index: 20;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.35;
  padding: 4px 0;
  transition: opacity 0.15s ease;
}
.dropdown-menu a:hover { opacity: 0.85; text-decoration: underline; text-underline-offset: 4px; }

.dropdown-right { left: auto; right: 0; border-radius: 16px 0 16px 16px; }

/* Hamburguer */
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  justify-self: end;
}
.menu-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: #fff;
  border-radius: 999px;
  transition: 0.25s ease;
}
.menu-toggle.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* Menu mobile */
.mobile-menu {
  display: none;
  padding: 0 28px 16px;
  background: var(--primary-rgba-92);
  backdrop-filter: blur(6px);
}
.mobile-menu.active { display: block; }

.mobile-item,
.mobile-menu > a {
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
.mobile-menu > a:last-child,
.mobile-item:last-child { border-bottom: none; }

.mobile-link {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  color: #fff;
  text-decoration: none;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  padding: 14px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: inherit;
}

.mobile-submenu {
  display: none;
  padding: 0 0 10px 14px;
}
.mobile-submenu a {
  display: block;
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 7px 0;
}
.mobile-item.active .mobile-submenu { display: block; }
.mobile-item.active .mobile-submenu-toggle span { transform: rotate(45deg); }

.mobile-submenu-toggle span {
  display: inline-block;
  background: none;
  border-radius: 0;
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.2s ease;
}

/* ============================================================
   HERO
   ============================================================ */

.mapeamento-hero {
  background: var(--primary);
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 36px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 400px;  /* ← provavelmente está 1fr 1fr ou algo diferente */
  gap: 56px;
  width: 100%;
  max-width: 1280px;
  align-items: center;
  padding: 40px 0;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-left h1 {
  color: #fff;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.hero-right {
  display: flex;
  align-items: center;
  justify-content: flex-end; 
}

.form-card {
  background: #fff;
  border-radius: 20px;
  padding: 22px 24px 24px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.14);
}

.form-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
  text-align: right;
}

.form-fields {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  border: 1.5px solid #d8d8d8;
  border-radius: 8px;
  padding: 9px 12px;
  font-family: inherit;
  font-size: 13.5px;
  color: var(--text-dark);
  background: #fff;
  outline: none;
  transition: border-color 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #aaa;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--primary);
}

.select-wrapper {
  position: relative;
}

.select-wrapper::after {
  content: '▾';
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
  pointer-events: none;
  font-size: 14px;
}

.form-select {
  color: #aaa;
  cursor: pointer;
}

.form-select option:not([disabled]) {
  color: var(--text-dark);
}

.form-textarea {
  resize: vertical;
  min-height: 64px;
}

.btn-form {
  align-self: flex-end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  height: 40px;
  padding: 0 24px;
  font-size: 14px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  width: 100%;
  margin-top: 4px;
}

.btn-form:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.16);
}

/* ============================================================
   PAGE BODY
   ============================================================ */

.page-body {
  padding: 28px 24px 0;
}

/* ===== DESCRIPTION CARD ===== */
.description-card {
  border: none;
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.09);
  border-radius: 18px 18px 0 18px;
  background: var(--card-bg);
  padding: 24px 28px 26px;
  margin-bottom: 32px;
}

.desc-text {
  font-size: clamp(13.5px, 0.95vw, 15px);
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 18px;
  max-width: 860px;
}

.envolvido-heading {
  font-size: clamp(19px, 1.5vw, 24px);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 10px;
}

.envolvido-list {
  list-style: disc;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.envolvido-list li {
  font-size: clamp(13px, 0.9vw, 14.5px);
  color: var(--text-muted);
  line-height: 1.5;
}

/* ============================================================
   IDEAL SECTION
   ============================================================ */

.ideal-section {
  padding-bottom: 32px;
}

.ideal-title {
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 800;
  color: var(--primary);
  text-align: center;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.ideal-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.ideal-card {
  border: 1.5px solid #e2e2e2;
  border-radius: 20px 20px 0 20px;
  background: var(--card-bg);
  padding: 36px 28px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  min-height: 240px;
  text-align: center;
  justify-content: flex-start;
}

.ideal-card h3 {
  font-size: clamp(16px, 1.3vw, 20px);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.25;
}

.ideal-card p {
  font-size: clamp(13px, 0.92vw, 15px);
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   CTA DARK
   ============================================================ */

.cta-dark {
  background: var(--primary-dark);
  padding: 56px 48px;
  margin-top: 4px;
  border-radius: 0 80px 0 0;
}

.cta-inner {
  max-width: 700px;
}

.cta-heading {
  color: #fff;
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 28px;
}

.cta-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(15px, 1.1vw, 18px);
  font-weight: 500;
  line-height: 1.4;
}

.check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}

/* ============================================================
   CASES CAROUSEL (auto-ticker — idêntico à home2)
   ============================================================ */

.Cases-section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--text-dark);
  text-align: center;
  padding: 3rem 0 0;
  background: var(--bg);
}

.Cases-carousel {
  display: flex;
  align-items: center;
  padding: 3rem 0;
  overflow: hidden;
  background: var(--bg);
}

@keyframes ticker {
  0%   { transform: translateX(0%); }
  100% { transform: translateX(-100%); }
}

.Cases-track {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  animation: ticker 30s linear infinite;
}

.Cases-track img {
  width: 160px;
  height: 140px;
  object-fit: contain;
  flex-shrink: 0;
  padding: 0 1em;
  filter: grayscale(0.2);
}

.Cases-track .img-smaller {
  width: 120px;
  height: 100px;
}

/* ============================================================
   FEEDBACKS (estrutura idêntica à home2 — cores verdes)
   ============================================================ */

.Feedbacks {
  background: var(--bg);
  padding: 5rem clamp(1rem, 4vw, 3rem) 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  overflow: hidden;
}

.Feedbacks-title {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--text-dark);
  text-align: center;
  letter-spacing: -0.02em;
}

.Feedbacks-carousel-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 100%;
  position: relative;
}

.Feedbacks-track {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  max-width: 1100px;
  height: 440px;
}

/* ── Cards ── */
.Feedback-card {
  position: absolute;
  width: 400px;
  height: 420px;
  background: var(--primary);          /* verde principal */
  border-radius: 16px 0 16px 0;
  padding: 1.8rem 1.8rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  color: #fff;
  transition:
    transform  0.55s cubic-bezier(0.4, 0, 0.2, 1),
    opacity    0.55s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.55s ease;
  cursor: pointer;
  user-select: none;
  will-change: transform, opacity;
}

/* variante escura — alterna nos cards ímpar */
.Feedback-card.fb-alt {
  background: var(--primary-dark);     /* verde escuro */
}

.Feedback-card[data-pos="center"] {
  transform: translateX(0) scale(1);
  z-index: 10;
  opacity: 1;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
}

.Feedback-card[data-pos="left"] {
  transform: translateX(-72%) scale(0.84);
  z-index: 5;
  opacity: 1;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
}

.Feedback-card[data-pos="right"] {
  transform: translateX(72%) scale(0.84);
  z-index: 5;
  opacity: 1;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
}

.Feedback-card[data-pos="far-left"],
.Feedback-card[data-pos="far-right"] {
  transform: translateX(0) scale(0.65);
  z-index: 1;
  opacity: 0;
  pointer-events: none;
}

.Feedback-quote {
  font-size: 3.5rem;
  line-height: 0.6;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 900;
}

.Feedback-text {
  font-size: 1rem;
  line-height: 1.65;
  color: #fff;
  flex: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
}

.Feedback-card::after {
  content: '"';
  font-size: 3.5rem;
  line-height: 1;
  margin-top: 2%;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 900;
  align-self: flex-end;
}

.Feedback-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.4rem;
}

.Feedback-author {
  display: flex;
  align-items: stretch;
  gap: 0.75rem;
}

.Feedback-bar {
  width: 3px;
  background: #fff;
  border-radius: 2px;
  flex-shrink: 0;
}

.Feedback-author-info {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.Feedback-name    { font-size: 0.95rem; color: rgba(255,255,255,0.9); }
.Feedback-company { font-size: 1rem;    color: #fff; font-weight: 800; }

.Feedback-logo {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 1);
  border-radius: 6px;
  flex-shrink: 0;
}

.Feedback-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* ── Navegação ── */
.Feedback-nav {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 20;
  transition: transform 0.2s ease;
}

.Feedback-nav:hover { transform: scale(1.2); }

.Feedback-nav img { width: 4em; }

.nav-arrow-left  { transform: rotate(180deg); }
.nav-arrow-right { transform: rotate(0deg); }

/* ── Dots ── */
.Feedback-dots {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.Feedback-dot {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.4rem;
  color: #ccc;
  line-height: 1;
  padding: 0;
  transition: color 0.3s ease, transform 0.3s ease;
}

.Feedback-dot.active {
  color: var(--primary);
  transform: scale(1.3);
}

/* ============================================================
   RESPONSIVO — Cases + Feedbacks
   ============================================================ */

@media (max-width: 900px) {
  .Feedbacks-track { height: 380px; }
  .Feedback-card   { width: 300px; height: 380px; }
  .Feedback-card[data-pos="left"]  { transform: translateX(-62%) scale(0.82); }
  .Feedback-card[data-pos="right"] { transform: translateX(62%)  scale(0.82); }
}

@media (max-width: 600px) {
  .Feedbacks-track { height: 360px; }
  .Feedback-card   { width: 270px; height: 360px; }
  .Feedback-card[data-pos="left"]  { transform: translateX(-54%) scale(0.76); opacity: 0.6; }
  .Feedback-card[data-pos="right"] { transform: translateX(54%)  scale(0.76); opacity: 0.6; }
  .Feedback-nav img { width: 28px; }
}

/* ============================================================
   FOOTER
   ============================================================ */

.Footer {
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
  padding: 36px 28px 28px;
  margin-top: 0;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 30px;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  align-items: start;
}

.footer-left p {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.92);
}

.footer-logo {
  display: block;
  height: auto;
  max-height: 64px;
  max-width: 220px;
  width: auto;
  margin-top: 18px;
  object-fit: contain;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: opacity 0.2s ease;
}
.footer-col a:hover { opacity: 0.78; }

.footer-contact p {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.95);
}

/* ============================================================
   RESPONSIVO
   ============================================================ */

@media (max-width: 1024px) {
  .topbar {
    grid-template-columns: 1fr auto;
    gap: 14px;
    padding: 12px 22px;
  }
  .desktop-nav { display: none !important; }
  .logo { justify-content: flex-start; }
  .logo img { height: 60px; }
  .menu-toggle { display: inline-flex; }

  .mapeamento-hero { padding: 0 22px; }
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 32px 0;
    gap: 28px;
  }
  .hero-right { justify-content: flex-start; }
  .form-card { max-width: 100%; }

  .ideal-cards { grid-template-columns: 1fr; }
  .cases-placeholder { grid-template-columns: 1fr; }
  .footer-container { grid-template-columns: 1fr; gap: 26px; }
  .footer-links { max-width: 360px; }
}

@media (max-width: 768px) {
  .topbar { padding: 10px 14px; }
  .mobile-menu { padding: 0 14px 14px; }
  .logo img { height: 50px; }

  .mapeamento-hero { padding: 0 14px; }
  .hero-inner { padding: 24px 0; }
  .hero-left h1 { font-size: 30px; }

  .page-body { padding: 20px 14px 0; }
  .description-card { padding: 18px 18px 20px; }

  .ideal-section { padding-bottom: 24px; }
  .ideal-title { font-size: 20px; }
  .ideal-card { min-height: 180px; padding: 28px 22px; }

  .cta-dark { padding: 42px 24px; }
  .cta-heading { font-size: 26px; }

  .cases-section { padding: 32px 14px 40px; }
  .Footer { padding: 28px 18px 22px; border-top-left-radius: 22px; border-top-right-radius: 22px; }
}

@media (max-width: 480px) {
  .hero-left h1 { font-size: 26px; }
  .cta-heading { font-size: 22px; }
  .cases-title { font-size: 24px; }
}

#_form_8_ input[type="text"],
#_form_8_ input[type="tel"],
#_form_8_ input[type="email"],
#_form_8_ input[type="date"],
#_form_8_ select,
#_form_8_ textarea {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #c0c0c0;
    border-radius: 10px;
    padding: 10px 12px;
    color: #1f1f1f !important;
    font-family: 'Telegraf', Arial, sans-serif;
    font-size: 0.93rem;
    width: 100%;
    outline: none;
    transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

#_form_8_ input[type="text"]:focus,
#_form_8_ input[type="tel"]:focus,
#_form_8_ input[type="email"]:focus,
#_form_8_ select:focus,
#_form_8_ textarea:focus {
    border-color: var(--primary);
    background: #fff;
    transform: translateY(-1px);
}

#_form_8_ input::placeholder,
#_form_8_ textarea::placeholder {
    color: #aaa;
}

#_form_8_ ._submit {
    cursor: pointer;
    font-family: arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    background: #FF0901 !important;
    border: none !important;
    -moz-border-radius: 8px !important;
    -webkit-border-radius: 8px !important;
    border-radius: 8px !important;
    color: #fff !important;
    padding: 12px 20px !important;
    letter-spacing: 0.01em;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 2px 8px rgba(255, 9, 1, 0.22);
}

#_form_8_ ._submit:hover {
    background: #B92700 !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(255, 9, 1, 0.28);
}

#_form_8_ ._submit:disabled { cursor: not-allowed; opacity: 0.4; }
#_form_8_ ._submit.processing { position: relative; }

#_form_8_ ._submit.processing::before {
    content: "";
    width: 1em; height: 1em;
    position: absolute; z-index: 1; top: 50%; left: 50%;
    border: double 3px transparent; border-radius: 50%;
    background-image: linear-gradient(#fff, #fff), conic-gradient(#fff, #FF0901);
    background-origin: border-box; background-clip: content-box, border-box;
    animation: 1200ms ease 0s infinite normal none running _spin_8;
}

#_form_8_ ._submit.processing::after {
    content: ""; position: absolute; top: 0; bottom: 0; left: 0; right: 0;
}

@keyframes _spin_8 {
    0%   { transform: translate(-50%, -50%) rotate(90deg); }
    100% { transform: translate(-50%, -50%) rotate(450deg); }
}

#_form_8_ ._form-body {
    font-family: Raleway; font-size: 14px; font-weight: 700; color: #1f1f1f; margin-bottom: 16px;
}

#_form_8_ .form-sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0;
    margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

#_form_8_ ._form-label,
#_form_8_ ._form_element ._form-label { font-weight: bold; margin-bottom: 5px; display: block; color: #1f1f1f; }

#_form_8_ ._form_element { position: relative; margin-bottom: 10px; max-width: 100%; }
#_form_8_ ._form_element * { font-size: 14px; }
#_form_8_ ._form_element._clear { clear: both; width: 100%; float: none; }
#_form_8_ ._form_element._clear:after { clear: left; }

#_form_8_ ._form_element :is(textarea, select, input[type="text"], input[type="date"], input[type="phone"], input[type="email"]) {
    color: #142341 !important;
    border-radius: 10px;
}

#_form_8_ ._form_element input[type="text"],
#_form_8_ ._form_element input[type="date"],
#_form_8_ ._form_element select,
#_form_8_ ._form_element textarea:not(.g-recaptcha-response) {
    display: block; width: 100%;
    -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box;
    font-family: inherit;
}

#_form_8_ ._field-wrapper { position: relative; }
#_form_8_ ._clear-element { clear: left; }
#_form_8_ ._full_width { width: 100%; }
#_form_8_ ._form_full_field { display: block; width: 100%; margin-bottom: 10px; }

#_form_8_ input[type="text"]._has_error,
#_form_8_ textarea._has_error { border: #F37C7B 1px solid; }
#_form_8_ input[type="checkbox"]._has_error { outline: #F37C7B 1px solid; }
#_form_8_ ._show_be_error { float: left; }

#_form_8_ ._error {
    display: block; position: absolute; font-size: 14px; z-index: 10000001;
}
#_form_8_ ._error._above { padding-bottom: 4px; bottom: 39px; right: 0; }
#_form_8_ ._error._below { padding-top: 8px; top: 100%; right: 0; }
#_form_8_ ._error._above ._error-arrow {
    bottom: -4px; right: 15px;
    border-left: 8px solid transparent; border-right: 8px solid transparent;
    border-top: 8px solid #FFDDDD;
}
#_form_8_ ._error._below ._error-arrow {
    top: 0; right: 15px;
    border-left: 8px solid transparent; border-right: 8px solid transparent;
    border-bottom: 8px solid #FFDDDD;
}

#_form_8_ ._error-inner {
    padding: 12px 12px 12px 36px; background-color: #FFDDDD;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M16 8C16 12.4183 12.4183 16 8 16C3.58172 16 0 12.4183 0 8C0 3.58172 3.58172 0 8 0C12.4183 0 16 3.58172 16 8ZM9 3V9H7V3H9ZM9 13V11H7V13H9Z' fill='%23CA0000'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: 12px center;
    font-size: 14px; font-family: arial, sans-serif; font-weight: 600;
    line-height: 16px; color: #000; text-align: center; text-decoration: none;
    border-radius: 4px; box-shadow: 0 1px 4px rgba(31,33,41,0.298295);
}

#_form_8_ ._error-inner._form_error { margin-bottom: 5px; text-align: left; }
#_form_8_ ._button-wrapper ._error-inner._form_error { position: static; }
#_form_8_ ._error-inner._no_arrow { margin-bottom: 10px; }
#_form_8_ ._error-arrow { position: absolute; width: 0; height: 0; }
#_form_8_ ._error-html { margin-bottom: 10px; }

#_form_8_ ._form-title,
#_form_8_ ._html-code :is(h1,h2,h3,h4,h5,h6) {
    font-family: Raleway; font-size: 18px; font-weight: 800; color: #1f1f1f;
}

#_form_8_ .field-required { color: #FF0000; }

#_form_8_ {
    position: relative;
    text-align: left;
    margin: 0;
    padding: 22px 24px 24px;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.78) !important;
    border: 1px solid rgba(255, 255, 255, 0.32) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    max-width: 400px;
    width: 100%;
    border-radius: 42px 0 42px 0 !important;
    color: #1f1f1f;
    box-shadow: 0 16px 50px rgba(0,0,0,.14);
}

#_form_8_ ._show_be_error { min-width: 100%; }

#_form_8_._inline-form,
#_form_8_._inline-form ._form-content { font-family: Raleway; font-size: 14px; font-weight: 700; }

#_form_8_._inline-form ._row span:not(.field-required),
#_form_8_._inline-form ._row label {
    font-family: Raleway; font-size: 14px; font-weight: 400; line-height: 1.6em; color: #1f1f1f;
}

#_form_8_._inline-form ._html-code,
#_form_8_._inline-form .sms_consent_message,
#_form_8_._inline-form ._form-thank-you { font-family: Raleway; font-size: 14px; font-weight: 700; color: #1f1f1f; }

#_form_8_._inline-form ._form-label,
#_form_8_._inline-form ._form-emailidentifier,
#_form_8_._inline-form ._form-checkbox-option-label {
    font-family: Raleway; font-size: 13.5px; font-weight: 700; line-height: 1.6em; color: #1f1f1f;
}

#_form_8_._inline-form ._submit {
    margin-top: 8px;
    font-family: Raleway; font-size: 14px; font-weight: 700;
}

#_form_8_._inline-form ._form-title { margin-bottom: 0; display: block; }

#_form_8_:before, #_form_8_:after { content: ""; display: table; }
#_form_8_:after { clear: both; }

#_form_8_ ._form-thank-you { position: relative; left: 0; right: 0; text-align: center; font-size: 18px; }

#_form_8_ ._x41197490 ._form-title { text-align: center; }

#_form_8_ ._submit {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 68%;
    min-height: 48px;
    font-size: 15px;
    font-weight: 800;
    margin: 0.55rem auto 0;
}

#_form_8_._form_8 { transform: none; margin-bottom: 0; max-width: 100%; width: 100%; }

@media (max-width: 600px) {
    #_form_8_._form_8 { transform: none; max-width: 100%; margin: 0; }
    #_form_8_._form_8 input,
    #_form_8_._form_8 select,
    #_form_8_._form_8 textarea { font-size: 16px; padding: 12px; }
    #_form_8_._form_8 ._submit {
      font-size: 15px !important;
      padding: 14px 12px !important;
      width: 100%;
      min-height: 48px;
      margin: 16px 0 0;
  }
}

#_form_8_ .iti { width: 100%; }
#_form_8_ .iti input { width: 100%; border: 1.5px solid #d8d8d8; border-radius: 8px; }
#_form_8_ .phone-error-hidden { display: none; }
#_form_8_ .phone-error { color: #E40E49; }
#_form_8_ .phone-input-error { border: 1px solid #E40E49 !important; }

#_form_8_ ._submit {
    background: #06A576 !important;  /* verde */
    box-shadow: 0 2px 8px rgba(6, 165, 118, 0.22);
}

#_form_8_ ._submit:hover {
    background: #017369 !important;  /* verde escuro */
    box-shadow: 0 4px 14px rgba(6, 165, 118, 0.28);
}