html {
  height: 100vh;
}

body {
  height: 100vh;
  font-size: 1rem;
  background-color: var(--color-background-base);
  color: var(--color-text);
}

.tooltip-container {
  position: relative;
  display: inline-block;
  cursor: pointer !important;
}

.tooltip-text {
  visibility: hidden;
  width: 160px;
  background-color: #333333;
  text-align: center;
  border-radius: 6px;
  padding: 3px;
  position: absolute;
  z-index: 1;
  bottom: 125%; /* Posiciona acima do elemento */
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 11px;
}

.tooltip-container:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

::-webkit-scrollbar-track {
  background: #e0e0e0;
}
::-webkit-scrollbar-thumb {
  background: #888;
}
::-webkit-scrollbar-track:hover {
  background: #555;
}

/* -----------------------------faq----------------------- */

.faqs {
  width: 100%;
  margin: 15px auto;
  padding: 0 25%;
}
@media (max-width: 440px) {
  .faqs {
      padding: 7px;
  }
}
.faqs h1 {
  text-align: center;
}
.faq-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.faq-item {
  background: #1a1a1a;
  border-radius: 6px;
  box-shadow: 0 1px 1px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 3px 8px rgba(0,0,0,0.12);
}

.faq-checkbox {
  display: none;
}

.faq-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1.25rem;
  cursor: pointer;
  font-weight: 500;
  font-size: 1rem;
  color: #d3cece;
  user-select: none;
  transition: background-color 0.2s ease;
  position: relative;
}

.faq-label:hover {
  background-color: #1a1a1a;
}

.faq-label .arrow {
  width: 12px;
  height: 12px;
  border-right: 2px solid #888;
  border-bottom: 2px solid #888;
  transform: rotate(45deg);
  transition: transform 0.3s ease, border-color 0.3s ease;
  margin-left: 8px;
}

.faq-checkbox:checked + .faq-label .arrow {
  transform: rotate(225deg);
  border-color: #555;
}

.faq-content {
  max-height: 0;
  padding: 0 1.25rem;
  color: #fdf3f3;
  background: #1a1a1a;
  font-size: 0.95rem;
  line-height: 1.5;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  border-top: 1px solid #0e0d0d;
}

.faq-checkbox:checked ~ .faq-content {
  max-height: 600px;
  padding: 1rem 1.25rem 1.5rem;
}

.no-faq {
  text-align: center;
  font-style: italic;
  color: #999;
  font-size: 1.1rem;
  padding: 2rem 0;
}

@media (max-width: 600px) {
  .faq-label {
      font-size: 0.95rem;
      padding: 0.6rem 1rem;
  }

  .faq-content {
      font-size: 0.9rem;
      padding: 0 1rem;
  }
}


/* -----------------------------index----------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-primary: #0d0d0d;
  --bg-secondary: #13110f;
  --bg-card: linear-gradient(145deg, #111, #0b0b0b);
  --text-primary: #fff;
  --text-secondary: rgba(255, 255, 255, 0.5);
  --accent-success: #16a34a;
  --accent-hover: #22c55e;
  --border-color: #1e1e1e;
  --border-light: #222;
}

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'Inter', Arial, sans-serif;
  min-height: 100vh;
  line-height: 1.6;
}

.site {
  min-height: 100vh;
}

/* Utility Classes */
.text-gradient {
  background: linear-gradient(90deg, #e879f9, #38bdf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-success {
  color: var(--accent-success) !important;
}

.bg-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  box-shadow: 0 0 20px rgba(0, 255, 100, 0.05);
}

.btn-success {
  background-color: var(--accent-success);
  border: none;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-success:hover {
  background-color: var(--accent-hover);
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--text-primary);
  color: var(--text-primary);
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.container-fluid {
  width: 100%;
  padding: 0 1rem;
}

/* Grid System */
.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.75rem;
}

.col {
  flex: 1;
  padding: 0 0.75rem;
}

/* Responsive Columns */
.col-12 { width: 100%; padding: 0 0.75rem; }
.col-md-6 { width: 50%; padding: 0 0.75rem; }
.col-lg-4 { width: 33.333%; padding: 0 0.75rem; }
.col-lg-6 { width: 50%; padding: 0 0.75rem; }

@media (max-width: 768px) {
  .col-md-6 { width: 100%; }
}

@media (max-width: 992px) {
  .col-lg-4, .col-lg-6 { width: 100%; }
}

/* Typography */
.display-3 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.1;
}

.display-4 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
}

.display-5 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
}

.fs-4 { font-size: 1.25rem; }
.fs-5 { font-size: 1.125rem; }
.fs-6 { font-size: 0.875rem; }

.lead {
  font-size: 1.25rem;
  color: var(--text-secondary);
}

.text-white-50 {
  color: var(--text-secondary);
}

.fw-bold { font-weight: 700; }
.fw-semibold { font-weight: 600; }

/* Spacing */
.py-5 { padding: 3rem 0; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }

/* Badge */
.badge {
  display: inline-block;
  padding: 0.35em 0.65em;
  font-size: 0.75em;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.375rem;
}

.bg-dark {
  background-color: var(--bg-secondary) !important;
}