html {
  background-color: #f7fafc;
  overflow: auto;
  scrollbar-width: none; /* Firefox */
  text-shadow: 0 2px 5px rgba(0, 123, 255, 0.2);
}
.landing-page * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.landing-page {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji',
    'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
  background-color: rgba(247, 250, 252, 0.5); /*f7fafc*/
  color: #1a202c;
}

/* -- Seção do Hero -- */
.hero-section {
  background-color: #f7fafc;
  padding: 6rem 2rem 2rem 2rem;
  min-height: 75vh;
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.hero-content {
  max-width: 44rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .hero-content {
    text-align: left;
    margin-bottom: 0;
  }
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.25;
  color: #1a202c;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
}

.hero-subtitle {
  color: #3182ce;
}

.hero-description {
  font-size: 1.125rem;
  color: #4a5568;
  margin-bottom: 2rem;
  text-shadow: '0 2px 5px rgba(0, 123, 255, 0.2)';
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: end;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
    gap: 1rem;
  }
}

.btn {
  background-color: rgb(0, 123, 255);
  color: rgb(255, 255, 255);
  border: none;
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  transition: background-color 0.2s;
  box-shadow: rgba(0, 123, 255, 0.2) 0px 2px 5px;
}
.btn:disabled {
  background-color: #9ec9ff;
  cursor: not-allowed;
}
.btn:hover:not(:disabled) {
  background-color: #0069d9;
  transform: scale(1.02);
  transition: all 0.2s ease-in-out;
}

/* -- Seção de Funcionalidades -- */
.section-features {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  color: #1a202c;
}

.features-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background-color: #ffffff;
  padding: 1.5rem;
  box-shadow: 0 2px 5px rgba(0, 123, 255, 0.2);
  text-align: center;
  width: -webkit-fill-available;
}

.card-title {
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.card-text {
  color: #4a5568;
}

/* -- Seção de Como Funciona -- */
.section-how-it-works {
  background-color: #fff;
  padding: 4rem 1.5rem;
  min-height: 80vh;
}

.how-it-works-container {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}

.steps-grid {
  display: flex;
  gap: 2rem;
  flex-direction: column;
}

@media (min-width: 768px) {
  .steps-grid {
    flex-direction: row;
    justify-content: center;
  }
}

.step-item {
  padding: 1.5rem;
}

.step-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #007bff;
  font-weight: bold;
}

.step-title {
  font-weight: 600;
  font-size: 1.125rem;
}

.step-text {
  color: #4a5568;
}

/* -- Seção de Depoimento (Slider) -- */
.section-testimonial {
  margin: 0 auto;
  padding: 4rem 0rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonial-slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.testimonial-item {
  min-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonial-quote {
  font-style: italic;
  margin-bottom: 1rem;
  max-width: 70rem;
  line-height: 1.6;
}

.testimonial-author {
  font-weight: 600;
}

.testimonial-nav {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.nav-button {
  background: #007bff;
  border: 1px solid #fff;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s;
}

.nav-button:hover {
  background-color: #2c5282;
  transform: translateY(-2px);
}

.nav-button-icon {
  font-size: 1.5rem;
  color: #fff;
}

.nav-dots {
  display: flex;
  gap: 0.5rem;
}

.nav-dot {
  width: 0.75rem;
  height: 0.75rem;
  background-color: #cbd5e0;
  cursor: pointer;
  transition: background-color 0.3s;
}

.nav-dot.active {
  background-color: #3182ce;
}
.fade-slide {
  opacity: 0;
  transform: translateY(10px);
  animation: fadeSlide 0.4s ease forwards;
}
/* Overlay escuro */
.accountcard-overlay {
  position: fixed;
  inset: 0; /* top:0; right:0; bottom:0; left:0; */
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(2px);
  z-index: 10000; /* abaixo do card */
  animation: fadeInOverlay 240ms ease forwards;
}

/* Wrapper do card em portal — garante posicionamento relativo à viewport */
.accountcard-portal-wrapper {
  position: fixed;
  top: 20px; /* ajuste se precisar */
  right: 20px; /* ajuste se precisar */
  z-index: 10001; /* acima do overlay */
  display: flex;
  pointer-events: auto;
  /* opcional: um pouco de transição para o card aparecer */
  animation: fadeSlide 320ms cubic-bezier(0.2, 0.9, 0.3, 1) forwards;
}

@keyframes fadeInOverlay {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Ajustes para Mobile */
@media (max-width: 767px) {
  .section-title {
    font-size: 1.5rem; /* menor título */
  }
  .hero-title {
    font-size: 1.75rem; /* título do hero reduzido */
  }

  .hero-description {
    font-size: 1rem; /* descrição mais enxuta */
  }
  .hero-buttons {
    gap: 0.1rem;
  }
}

/* Ajustes para Desktop */
@media (min-width: 1024px) {
  .section-features,
  .section-how-it-works,
  .section-testimonial {
    padding: 6rem 1.5rem; /* aumenta altura da seção */
  }

  .section-title {
    font-size: 2rem; /* títulos maiores */
  }

  .features-grid,
  .steps-grid {
    gap: 3rem; /* mais respiro entre os cards */
  }
}

/* -- Seção Comprar Créditos -- */
.section-buy-credits {
  background-color: #ffffff;
  padding: 4rem 0;
}

.buy-credits-container {
  width: 100%;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}

.section-buy-credits .section-title {
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1a202c;
}

.section-buy-credits .steps-grid {
  margin-bottom: 2.5rem;
}

.cta-container {
  margin-top: 2rem;
}
.tooltip-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Texto padrão */
.tooltip-label {
  color: #333;
  transition: color 0.3s ease;
}

/* Imagem padrão */
.tooltip-img {
  width: 20px;
  height: 20px;
  transition: filter 0.3s ease, transform 0.2s ease;
}

/* 🔵 HOVER: container controla tudo */
.tooltip-container:hover .tooltip-label {
  color: #000; /* azul */
}

.tooltip-text {
  opacity: 1;
  transition: opacity 0.2s ease;

  visibility: hidden;
  opacity: 0;
  background-color: #000;
  color: #fff;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
  font-size: 0.75rem;
  padding: 6px 10px;
  position: absolute;
  z-index: 10;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  cursor: pointer;
}

/* Quando o usuário passa o mouse */
.tooltip-container:hover .tooltip-text {
  animation: showTooltip 2s ease forwards;
}

@keyframes showTooltip {
  0% {
    visibility: visible;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

.menu-top {
  background-color: #fff;
  color: #1a202c;
  border: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  width: 100%;
  z-index: 1000;
}
.no-scrollbar::-webkit-scrollbar {
  display: none;
}

body {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE 10+ */
  overflow-y: visible; /* Mantém rolagem */
}

body::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}
.menu-icon {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  font-size: 0.75rem;
  color: #444;
  transition: all 0.25s ease;
}

.menu-icon:hover,
.menu-icon.hovered {
  font-weight: 600;
}

.menu-icon:hover .tooltip-img {
  transform: scale(1.1);
}

.tooltip-label {
  transition: color 0.3s ease, font-weight 0.3s ease;
}

.tooltip-container {
  position: relative;
}

/* container / input base */
.search-input {
  display: flex;
  width: 100%;
  border: none;
  outline: none;
  font-size: 0.95rem;
  padding: 20px 18px;
  transition: box-shadow 0.18s ease, background 0.18s ease;
  -webkit-appearance: none;
}

/* placeholder cross-browser */
/* Chrome, Safari, Opera */
.search-input::-webkit-input-placeholder {
  color: #8ea6b8;
  opacity: 1; /* some browsers apply opacity */
  font-style: normal;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.2px;
}

/* Firefox 19+ */
.search-input::-moz-placeholder {
  color: #8ea6b8;
  opacity: 1;
}

/* Firefox 4 - 18 */
.search-input:-moz-placeholder {
  color: #8ea6b8;
  opacity: 1;
}

/* Internet Explorer 10+ */
.search-input:-ms-input-placeholder {
  color: #8ea6b8;
  opacity: 1;
}

/* Focus state: darker placeholder and subtle glow */
.search-input:focus {
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.4);
}

.search-input:focus::-webkit-input-placeholder {
  color: #6b8596;
}
.search-input:focus::-moz-placeholder {
  color: #6b8596;
}
.search-input:focus:-moz-placeholder {
  color: #6b8596;
}
.search-input:focus:-ms-input-placeholder {
  color: #6b8596;
}

/* Special styling if you want the emoji smaller or with different spacing */
.search-input::placeholder {
  /* modern browsers */
  font-size: 0.95rem;
}

/* If you want the emoji slightly dimmer than text, use this trick:
   the emoji is part of the placeholder string — you can reduce its visual weight
   by lowering placeholder opacity (already above) or using an actual element
   inside the input container (more work). */
.items {
  cursor: pointer;
  padding: 1rem;
  font-size: 0.6rem;
}
@media (max-width: 500px) {
  .items {
    flex-wrap: wrap;
    padding: 0.5rem;
  }
}
.card-doc {
  box-shadow: 0 1px 0 rgba(10, 40, 80, 0.04) inset,
    /* detalhe interno sutil */ rgba(0, 123, 255, 0.06) 0px 1px 2px; /* leve glow azul na base */
  transition: box-shadow 0.18s ease, transform 0.12s ease;
  -webkit-appearance: none;
  backface-visibility: hidden;
}
.card-doc:hover {
  background: rgba(#e4eef5, 0.2);
}
.tools {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1rem 0rem 0rem 1rem;
  flex-direction: column;
  align-items: baseline;
  width: 100%;
}
@media (max-width: 600px) {
  .tools {
    min-height: 20vh;
  }
}
.account-menu {
  position: absolute;
  right: 20px;
  background-color: #f8fbff; /* fundo padrão do sistema */
  box-shadow: 0 2px 6px rgba(255, 255, 255, 1);
  overflow: hidden;
  width: 30vw;
  font-family: 'Inter, Roboto, sans-serif';
  z-index: 9999;
}
@media (max-width: 600px) {
  .account-menu {
    width: 70vw;
  }
}

.page-frame {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.content-area {
  flex: 1;
  padding: 20px;
}
.section-score {
  display: flex;
  justify-content: space-between;
}

.score-badge {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  line-height: 1;
}

/* Número principal – estilo promoção */
.score-number {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  font-weight: 900;
  font-size: 4rem;
  letter-spacing: -1px;
}

/* /10 menor e discreto */
.score-max {
  font-size: 1.1rem;
  font-weight: bold;
  opacity: 0.6;
  margin-bottom: 6px;
  color: rgb(0, 0, 0);
}

/* Estados */
.score-badge.good .score-number {
  color: #0f5132; /* verde escuro */
}

.score-badge.medium .score-number {
  color: #9a6700; /* âmbar escuro */
}

.score-badge.bad .score-number {
  color: #7f1d1d; /* vermelho escuro */
}

/* ============================================
   CLASSES UTILITÁRIAS GLOBAIS
   ============================================ */

/* Flexbox comum */
.flex-center {
  display: flex;
  align-items: center;
  gap: 12px;
}

.flex-column {
  display: flex;
  flex-direction: column;
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Texto */
.text-shadow {
  text-shadow: 0 2px 5px rgba(0, 123, 255, 0.2);
}

.text-white-bold {
  color: #fff;
  font-weight: 600;
}

.text-small {
  font-size: small;
}

.text-center {
  text-align: center;
}

.text-justify {
  text-align: justify;
  text-justify: inter-word;
}

/* Espaçamento */
.mb-24 {
  margin-bottom: 24px;
}

.mb-16 {
  margin-bottom: 16px;
}

.mt-2rem {
  margin-top: 2rem;
}

.mb-1rem {
  margin-bottom: 1rem;
}

.ml-16 {
  margin-left: 16px;
}

.mr-1rem {
  margin-right: 1rem;
}

.p-8 {
  padding: 8px;
}

.pt-2rem {
  padding-top: 2rem;
}

/* Cores */
.text-color-444 {
  color: #444;
}

.text-color-666 {
  color: #666;
}

.text-color-333 {
  color: #333;
}

/* Bordas */
.border-top-light {
  padding: 4rem 2rem 2rem 2rem;
  min-height: 75vh;
}

/* Layout */
.min-height-80vh {
  min-height: 80vh;
}

.line-height-16 {
  line-height: 1.6rem;
}

.line-height-17 {
  line-height: 1.7rem;
}

/* Loading spinner container */
.loading-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.loading-text {
  color: #fff;
  font-weight: 600;
}

/* Imagens pequenas */
.img-small {
  height: 0.8rem;
  margin-right: 0.5rem;
}

/* Status tags */
.status-tag-good {
  background-color: #f0fff4;
  border-left: 4px solid #198754;
  color: #0f5132;
}

.status-tag-medium {
  background-color: #fff3cd;
  border-left: 4px solid #ffc107;
  color: #664d03;
}

.status-tag-bad {
  background-color: #fff0f0;
  border-left: 4px solid #dc3545;
  color: #842029;
}

.status-tag-init {
  background-color: #e7f3ff;
  border-left: 4px solid #007bff;
  color: #31708f;
}

.status-tag-small {
  padding: 0.3rem 0.5rem;
  font-size: 0.6rem;
  width: fit-content;
  display: flex;
  align-items: center;
}

.status-tag {
  padding: 1rem 1.5rem;
  font-size: 1rem;
  box-shadow: rgba(0, 123, 255, 0.2) 0px 2px 5px;
  flex-direction: column;
  display: flex;
}

.status-tag-good {
  background-color: #f0fff4;
  border-left: 4px solid #198754;
  color: #0f5132;
}

.status-tag-medium {
  background-color: #fff3cd;
  border-left: 4px solid #ffc107;
  color: #664d03;
}

.status-tag-bad {
  background-color: #fff0f0;
  border-left: 4px solid #dc3545;
  color: #842029;
}

.status-tag-init {
  background-color: #e7f3ff;
  border-left: 4px solid #007bff;
  color: #31708f;
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.75);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow-y: auto;
  z-index: 1000;
  padding: 2rem 0rem;
}

.modal-content {
  background: #fff;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  padding: 2rem;
  line-height: 1.6;
  word-wrap: break-word;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: fadeIn 0.3s ease;
  border-radius: 0;
}

.modal-close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  border: none;
  background: none;
  font-size: 1.5rem;
  color: #666;
  cursor: pointer;
}

.modal-title {
  margin-bottom: 1rem;
  color: #222;
  border-bottom: 1px solid #ddd;
  padding-bottom: 0.5rem;
  font-size: 1.3rem;
  text-align: center;
}

.modal-body {
  white-space: pre-wrap;
  color: #333;
  font-size: 0.95rem;
  text-align: justify;
  text-justify: inter-word;
}

/* Section headers */
.section-h4 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #444;
}

.section-h4-large {
  margin-top: 32px;
  margin-bottom: 12px;
  font-weight: 600;
}

/* Lists */
.list-legal {
  margin-left: 16px;
  line-height: 1.7rem;
}

.list-legal-small {
  margin-left: 16px;
}

/* Contract analysis margin */
.contract-analysis-margin {
  margin: 1rem 0rem;
}

.contract-analysis-margin-left {
  margin: 1rem 0rem 0rem 1rem;
}

/* Display utilities */
.display-contents {
  display: contents;
}

.cursor-pointer {
  cursor: pointer;
}

/* Font sizes */
.font-size-small {
  font-size: small;
}

.font-size-06rem {
  font-size: 0.6rem;
}

.font-size-085rem {
  font-size: 0.85rem;
}

.font-size-09rem {
  font-size: 0.9rem;
}

.font-size-095rem {
  font-size: 0.95rem;
}

.font-size-13rem {
  font-size: 1.3rem;
}

.font-size-16rem {
  font-size: 1.6rem;
}

/* Opacity */
.opacity-05 {
  opacity: 0.5;
}

.opacity-07 {
  opacity: 0.7;
}

/* Background colors */
.bg-rgba-black-005 {
  background-color: rgba(0, 0, 0, 0.05);
}

.bg-rgba-black-002 {
  background-color: rgba(0, 0, 0, 0.02);
}

/* Box shadow common */
.box-shadow-inset {
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.08);
}

/* Transform */
.transform-scale-12 {
  transform: scale(1.2);
}

/* Width */
.width-fit-content {
  width: fit-content;
}

/* Margin zero */
.margin-zero {
  margin: 0;
}

.margin-top-05rem {
  margin-top: 0.5rem;
}

/* Font weight */
.font-weight-500 {
  font-weight: 500;
}

.font-weight-600 {
  font-weight: 600;
}

/* Color specific */
.color-rgb-blue {
  color: rgb(0, 123, 255);
}

.color-rgba-black-06 {
  color: rgba(0, 0, 0, 0.6);
}

/* Height */
.height-1px {
  height: 1px;
  background-color: #eee;
}

/* Text align */
.text-align-end {
  text-align: end;
}

/* Font family */
.font-inter {
  font-family: 'Inter, Segoe UI, sans-serif';
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Additional utility classes */
.user-select-none {
  user-select: none;
}

.width-100 {
  width: 100%;
}

.ml-1rem {
  margin-left: 1rem;
}

.mt-05rem {
  margin-top: 0.5rem;
}

.mb-05rem {
  margin-bottom: 0.5rem;
}

.justify-end {
  justify-content: flex-end;
}

.pt-2rem {
  padding-top: 2rem;
}

.white-space-pre-wrap {
  white-space: pre-wrap;
}

/* Flex utilities */
.flex-start {
  display: flex;
  align-items: flex-start;
  justify-content: space-evenly;
}

/* Button secondary variant */
.btn-secondary {
  background-color: #fff;
  color: #007bff;
  border: none;
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  transition: background-color 0.2s ease;
  box-shadow: 0 2px 5px rgba(0, 123, 255, 0.2);
}

.btn-secondary:hover {
  color: #f7fafc;
}
.contract-analysis {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 0 auto;
}

.contract-status {
  padding: 1rem;
  color: #000;
}

.contract-section {
  padding: 4rem 2rem 2rem 2rem;
  min-height: 75vh;
}

.contract-section h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.contract-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.contract-table th {
  text-align: left;
  padding: 0.5rem;
  color: #4a5568;
}

.contract-table td {
  padding: 0.5rem;
  border-top: 1px solid #e2e8f0;
}

.recommendations {
  list-style: disc;
  padding-left: 1.25rem;
}
.hero-buttons-sample {
  display: flex;
  flex-direction: row;
  align-items: center;

  justify-content: flex-end;
  margin-top: 4vh;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-buttons-sample {
    flex-direction: row;
    gap: 1rem;
  }
}
.list-item {
  display: flex;
  align-items: center;
  gap: 1rem;

  padding: 0.9rem 1rem;

  cursor: pointer;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.12s ease;
}

/* Hover padrão do sistema — azul leve e sombra suave */
.list-item:hover {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  transform: translateY(-1px);
}

/* Acessibilidade */
.list-item:focus {
  outline: 2px solid rgba(0, 123, 255, 0.4);
  outline-offset: 2px;
  background: rgba(0, 123, 255, 0.1);
}

/* Ícone */
.list-icon img {
  width: 20px;
  height: 20px;
  filter: drop-shadow(0 1px 2px rgba(0, 123, 255, 0.15));
}

/* Título */
.list-title {
  font-weight: 600;
}

/* Descrição */
.list-description {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 300;
  opacity: 0.8;
}
/* components/typing-indicator.css */
.typing-indicator {
  display: inline-flex;
  align-items: center;
  gap: calc(var(--dot-size) / 2.5);
  height: calc(var(--dot-size) * 1.8);
}

/* the visible dots */
.typing-indicator .dot {
  width: var(--dot-size);
  height: var(--dot-size);
  background: var(--dot-color, #333);
  border-radius: 50%;
  display: inline-block;
  transform: translateY(0);
  opacity: 0.45;
  animation: typing-bounce 900ms infinite cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform, opacity;
}

/* staggered delays for the three dots */
.typing-indicator .dot:nth-child(1) {
  animation-delay: 0ms;
}
.typing-indicator .dot:nth-child(2) {
  animation-delay: 120ms;
}
.typing-indicator .dot:nth-child(3) {
  animation-delay: 240ms;
}

/* keyframes: subtle upward bounce + opacity change */
@keyframes typing-bounce {
  0% {
    transform: translateY(0);
    opacity: 0.45;
  }
  30% {
    transform: translateY(-8px);
    opacity: 1;
  }
  60% {
    transform: translateY(0);
    opacity: 0.6;
  }
  100% {
    transform: translateY(0);
    opacity: 0.45;
  }
}

/* screen-reader only text */
.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.errors-section {
  width: 100%;
  padding: 4rem 2rem 2rem 2rem;
  min-height: 75vh;
}

.errors-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.error-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem;
}
.error-item:hover {
  background-color: rgba(255, 255, 255, 0.9);
  color: #007bff;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.2s ease;
}

.error-number {
  font-size: 1.4rem;
  font-weight: 700;
  background-color: #007bff;
  padding: 0.5rem 0.8rem;
  color: #fff;
}

.error-text {
  font-weight: 600;
  color: rgba(0, 105, 217, 0.9);
}

.error-desc {
  font-weight: 300;
  padding-top: 0.6rem;
  margin-left: 0.5rem;
  color: #333;
  font-style: italic;
}

#login-form-wrap {
  margin: 10vh auto;
  text-align: center;
  min-height: 80vh;
}
#login-form {
  padding: 16px;
  margin: 16px;
}
#login-form p {
  position: relative;
}

/* Mantém a validação alinhada dentro do input */

select {
  padding: 0px 12px;
  display: block;
  box-sizing: border-box;
  width: 100%;
  outline: none;
  height: 60px;
  line-height: 60px;
}
input {
  padding: 0px 12px;
  display: block;
  box-sizing: border-box;
  width: 100%;
  outline: none;
  height: 60px;
  line-height: 60px;
}
input[type='text'],
input[type='email'],
input[type='tel'],
input[type='password'] {
  width: 100%;
  padding: 0 0 0 16px;
  margin: 0;
  color: #007bff; /* 🔹 azul do texto digitado */
  font-weight: 500; /* 🔹 peso da fonte */
  font-style: normal;
  font-size: 16px;
  appearance: none;
  position: relative;
  display: inline-block;
  border: 1px solid #e4eef5;
  background: none;
  transition: all 0.25s ease;
}

/* estado de foco */
input[type='text']:focus,
input[type='email']:focus,
input[type='tel']:focus,
input[type='password']:focus {
  border-color: #3ca9e2;
  color: #0056b3; /* azul mais escuro no foco */
  background: #f9fcff; /* leve azul no fundo */
}

/* estado inválido (quando padrão HTML5 detectar erro) */
input[type='text']:focus:invalid,
input[type='email']:focus:invalid,
input[type='tel']:focus:invalid,
input[type='password']:focus:invalid {
  color: #cc1e2b;
  border-color: #cc1e2b;
}

/* hover (opcional, sutil) */
input[type='text']:hover,
input[type='email']:hover,
input[type='tel']:hover,
input[type='password']:hover {
  border-color: #b9dcf5;
}

/* validação visual com ícone verde (check) */
input[type='text']:valid ~ .validation,
input[type='email']:valid ~ .validation,
input[type='tel']:valid ~ .validation,
input[type='password']:valid ~ .validation {
  display: block;
  border-color: #0c0;
}

.validation span {
  background: #0c0;
  position: absolute;
}

.validation span:first-child {
  top: 30px;
  left: 14px;
  width: 20px;
  height: 3px;
  transform: rotate(-45deg);
}

.validation span:last-child {
  top: 35px;
  left: 8px;
  width: 11px;
  height: 3px;
  transform: rotate(45deg);
}

.validation {
  display: none;
  position: absolute;
  content: ' ';
  height: 60px;
  width: 30px;
  right: 15px;
  top: 0px;
}

input[type='submit'] {
  display: block;
  background-color: #3ca9e2;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 18px;
  position: relative;
  display: inline-block;
  cursor: pointer;
  text-align: center;

  &:hover {
    background-color: #329dd5;
    transition: all 0.2s ease;
  }
}
#create-account-wrap {
  color: #8a8b8e;
  font-size: 14px;
  width: 100%;
  display: flex;
  padding: 10px 0;
  justify-content: center;
}
.tab-btn {
  border: none;
  background: none;
  padding: 0.8rem 1.2rem;
  font-size: 0.95rem;
  color: #444;
  cursor: pointer;
  transition: all 0.2s ease;
  border-bottom: 2px solid transparent;
}

.tab-btn:hover {
  color: #0078d7;
  background-color: #f3f7fb;
}

.active-tab {
  color: #0078d7;
  font-weight: 600;
  border-bottom: 2px solid #0078d7;
}

.form-field {
  margin: 0.8rem 0;
}

.form-field input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d0d7de;
  font-size: 0.95rem;
  transition: 0.2s ease;
}

.form-field input:focus {
  box-shadow: 0 0 0 3px rgba(0, 120, 215, 0.15);
  outline: none;
}
.contract-analysis {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  margin: 0 auto;
}

.contract-status {
  padding: 1rem;
  color: #000;
}

.contract-section {
  background-color: #fff;
  padding: 4rem 2rem 2rem 2rem;
  min-height: 75vh;
}

.contract-section h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.contract-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.contract-table th {
  text-align: left;
  padding: 0.5rem;
  color: #4a5568;
}

.contract-table td {
  padding: 0.5rem;
  border-top: 1px solid #e2e8f0;
}

.recommendations {
  list-style: disc;
  padding-left: 1.25rem;
}
.hero-buttons-sample {
  display: flex;
  flex-direction: row;
  align-items: center;

  justify-content: flex-end;
  margin-top: 4vh;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-buttons-sample {
    flex-direction: row;
    gap: 1rem;
  }
}

.upload-area {
  border: 2px dashed #0ff;
  margin: 2rem auto;
  padding: 2rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
  transition: all 0.3s ease;
  width: 60vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

.upload-area:hover {
  background: rgba(0, 255, 255, 0.05);
  transform: scale(1.02);
}

.upload-area.has-file {
  border-color: #4caf50;
  background: rgba(76, 175, 80, 0.1);
}

.upload-prompt .upload-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.5rem;
}

.file-preview {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
}

.file-icon {
  width: 40px;
  height: 40px;
}

.file-name {
  font-weight: bold;
}

.file-size {
  font-size: 0.85rem;
  color: #666;
}
.now-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 0 auto;
}
.legal-container {
  padding: 2rem;
  margin: auto;
  color: #000;
}

.legal-content {
  background: rgba(255, 255, 255, 0.03);
  padding: 2rem;
  line-height: 1.6;
}

.legal-content section {
  margin-bottom: 2rem;
}

.legal-content h2 {
  margin-bottom: 0.75rem;
}

.legal-content ul {
  list-style: none;
  padding: 0;
}

.legal-content li {
  margin-bottom: 1rem;
}
