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: #ffffff;
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .hero-container {
    flex-direction: row;
  }
}

.hero-content {
  max-width: 44rem;
  margin-bottom: 2.5rem;
  text-align: center;
}

@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: 3rem;
  }
}

.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;
}

@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;
}

.button.primary {
  background-color: #3182ce;
  color: #ffffff;
}

.button.primary:hover {
  background-color: #2c5282;
}

.button.secondary {
  background-color: #fff;
  color: #2d3748;
  border: 1px solid #1a202c;
}

.button.secondary:hover {
  background-color: #f7fafc;
  color: #1a202c;
}

.hero-image-container {
  margin-top: 2.5rem;

  border: 10px solid white; /* borda branca */
  background: white;
  box-shadow: 0 0 20px 10px #f8f9fa;

  overflow: hidden; /* garante que o degradê respeite os cantos */
  display: inline-block;
}

@media (min-width: 768px) {
  .hero-image-container {
    margin-top: 0;
  }
}

.hero-svg {
  width: 20rem;
  height: auto;
}
.hero-image-container img {
  border: 10px solid white;

  /* degrade suave para fora */
  -webkit-mask-image: radial-gradient(
    circle,
    rgba(0, 0, 0, 1) 95%,
    rgba(0, 0, 0, 0) 100%
  );
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: cover;

  mask-image: radial-gradient(
    circle,
    rgba(0, 0, 0, 1) 95%,
    rgba(0, 0, 0, 0) 100%
  );
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: cover;
}

/* -- Seção de Funcionalidades -- */
.section-features {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  min-height: 70vh;
  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: 70vh;
}

.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;
}

.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: 70vh;
  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;
  border-radius: 50%;
  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;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
}

.nav-dot.active {
  background-color: #3182ce;
}

/* 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: 2.5rem; /* 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 {
  max-width: 1024px;
  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 .section-subtitle {
  font-size: 1.125rem;
  color: #4a5568;
  margin-bottom: 3rem;
}

.benefits-grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: #4a5568;
  font-size: 1rem;
}

.benefit-icon {
  font-size: 1.25rem;
  color: #6b46c1; /* roxo destacado */
}

.section-buy-credits .steps-grid {
  margin-bottom: 2.5rem;
}

.cta-container {
  margin-top: 2rem;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: #3182ce;
  color: #fff;
  font-weight: 600;
  font-size: 1.125rem;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s, transform 0.2s;
}

.cta-button:hover {
  background-color: #2c5282;
  transform: translateY(-2px);
}

@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.benefits-grid {
  display: grid;
  gap: 1.5rem;
  margin: 2rem auto;
  max-width: 900px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.benefit-item {
  background: #f9fafb;
  border-radius: 0.75rem;
  padding: 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s;
}

.benefit-item:hover {
  transform: translateY(-3px);
}

.benefit-icon {
  font-size: 1.5rem;
  color: #38a169; /* verde mais claro */
  flex-shrink: 0;
}
.img {
  transition: transform 0.2s;
}
.img:hover {
  transform: translateY(-2px);
  cursor: pointer;
}

.contracts-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tooltip-container {
  position: relative;
  display: inline-flex;
  cursor: pointer;
  align-items: center;
}

.tooltip-label {
  cursor: pointer;
}

.tooltip-img {
  margin: 1rem;
}

.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);
  text-align: center;
  font-size: 0.75rem;
  padding: 6px 10px;
  position: absolute;
  z-index: 10;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

/* 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;
  }
}

.label {
  text-align: 'end';
  margin-right: 2.5rem;
  margin-top: '16px';
  cursor: 'pointer';
  transition: 'background-color 0.3s ease';
}
.label:hover {
  padding: '16px';
  background-color: 'rgba(0, 123, 255, 0.08)';
  width: 'fit-content';
}
.prev {
  padding: 0.5rem;
  border-radius: 20%;
  transition: all 0.2s ease;
}
.prev:hover {
  background-color: #f8f8f8;
  transform: translateY(-2px);
}
.menu-top {
  background-color: #f7fafc;
  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;
}
.card-content {
  display: flex;
}

@media (max-width: 500px) {
  .card-content {
    align-items: stretch;
  }
}

/* Layout de grid estilo Google Drive */
.items {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
}

/* Responsivo */
@media (max-width: 500px) {
  .items {
    flex-wrap: wrap;
    justify-content: center;
  }
}

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;
  padding: 0.4rem 0.6rem;
  border-radius: 6px;
  transition: all 0.25s ease;
}

.menu-icon:hover,
.menu-icon.hovered {
  background-color: #f5f7fa; /* levemente mais claro */
  color: #000;
  font-weight: 600;
}

.tooltip-img {
  transition: filter 0.3s ease, transform 0.2s ease;
}

.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;
  color: #222;
  background: #ffffff;
  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;
}
.items:hover {
}
@media (max-width: 500px) {
  .items {
    flex-wrap: wrap;
    padding: 0.5rem;
  }
}
/* 💡 Efeito da aba selecionada */
.items.active-tab {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  font-weight: 600;
}
.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);
}
.contract-analysis {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 0 auto;
}

.contract-status {
  
  padding: 1rem;
  color: #000;
}

.contract-section {
  
  padding: 2rem;
}

.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: 1rem 1.5rem;
  background: #f4f7fb;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  opacity: 0.7;
  transition: 
    opacity 0.25s ease,
    background-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
  cursor: pointer;
}

.list-item:hover {
  opacity: 1;
  background: #f8fbff; /* um pouco mais claro */
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.list-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6c757d; /* cinza inicial */
  font-size: 1.5rem;
  transition: color 0.25s ease;
}

.list-item:hover .list-icon {
  color: #007bff; /* azul destacado */
}

.list-content {
  flex: 1;
}

.list-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.25rem;
  transition: color 0.25s ease;
}

.list-description {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
  transition: color 0.25s ease;
}

.list-item:hover .list-title {
  color: #111; /* texto mais escuro */
}

.list-item:hover .list-description {
  color: #333;
}
:root {
  --blue: rgba(163, 0, 0, 0.8);
  --blue-hover: #0069d9;
  --text-dark: #1a1a1a;
  --text-gray: #5f6368;
  --bg-light: #ffffff;
}

.errors-section {
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.errors-header {
  margin: 2rem;
}

.errors-header h2 {
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.errors-header h2 span {
  color: var(--blue);
}

.errors-header-p {
  color: var(--blue);
  font-size: 1.1rem;
  line-height: 1.6;
  text-align: end;
  padding: 2rem 0rem;
}

.errors-list {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0 auto 3rem;
}

.error-item {
  display: flex;
  align-items: baseline;
  gap: 1.2rem;
  padding: 1rem;
  transition: all 0.25s ease;
}

.error-item:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}
.error-item:hover .error-number {
  background: rgba(0, 123, 255, 1);
  transition: background 0.3s ease;
}
.error-number {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: rgba(0, 123, 255, 0.5);

  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-text {
  text-align: left;
  flex: 1;
  color: rgba(0, 0, 0, 0.5);
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 400;
}
@media (max-width: 768px) {
  .errors-header h2 {
    padding: 0;
  }
  .error-desc {
    font-size: small;
  }
  .error-text {
    font-size: 1rem;
    line-height: 1;
  }
}
#login-form-wrap {
	
	margin: 10vh auto;
	text-align: center;
	padding:2rem;
	min-height: 70vh;
}
#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;
  
  margin: 0 auto;
}

.contract-status {
  padding: 1rem;
  color: #000;
}

.contract-section {
  background-color: #fff;
 padding: 2rem;
}

.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;
}

.back-button {
  text-align: right;
  cursor: pointer;
  margin-bottom: 1rem;
}

.legal-title {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 0.5rem;
}

.legal-subtitle {
  text-align: center;
  color: #aaa;
  margin-bottom: 2rem;
}

.tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.tab {
  padding: 0.75rem 1.5rem;
  border: none;
  cursor: pointer;
  background: rgba(0, 255, 255, 0.1);
  
  font-weight: 500;
  transition: 0.3s;
}

.tab:hover {
  background: rgba(0, 255, 255, 0.2);
}

.tab.active {
  
  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;
}
