/* === ESTILO GERAL === */
.terms-wrapper {
    padding-top: 140px;
    padding-bottom: 60px;
    background: var(--bg);
}



/* =============================
   HAMBURGER BUTTON
============================= */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1101;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: var(--text);
  border-radius: 4px;
}

/* =============================
   OVERLAY
============================= */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: .3s;
  z-index: 1100;
}

.menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* =============================
   MENU MOBILE
============================= */
.menu-mobile {
  position: fixed;
  top: 0;
  right: 0;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: rgba(20, 22, 27, 0.95);
  backdrop-filter: blur(12px);
  padding: 80px 30px;
  transform: translateX(100%);
  transition: .4s ease;
  z-index: 1102;
  display: flex;
  flex-direction: column;
}

.menu-mobile.active {
  transform: translateX(0);
}

.menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--text);
  cursor: pointer;
}

.menu-mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.menu-mobile-nav a {
  font-size: 1.3rem;
  color: var(--text);
  transition: .3s;
}

.menu-mobile-nav a:hover {
  color: var(--primary);
  transform: translateX(6px);
}

/* =============================
   MOBILE ONLY
============================= */
@media (max-width: 900px) {
  .hamburger {
    display: flex;
  }

  header nav {
    display: none;
  }

  nav.desktop-nav {
    display: none;
  }
}



/* Card principal */
.terms-card {
    max-width: 900px;
    margin: auto;
    padding: 40px 35px;
    background: rgba(255,255,255,0.04);
    border-radius: 18px;
    border: 1px solid rgba(77,163,255,0.12);
    backdrop-filter: blur(12px);
    box-shadow: 0 0 25px rgba(77,163,255,0.08);
}

/* Título principal */
.terms-title {
    text-align: center;
    color: #e49838;
    font-size: 2.7rem;
    margin-bottom: 35px;
}

/* Subtítulos */
.terms-section h2 {
    color: var(--primary);
    font-size: 1.6rem;
    margin-bottom: 12px;
}

/* Textos */
.terms-section p,
.terms-section ul,
.terms-section li {
    color: var(--text);
    opacity: .9;
    line-height: 1.7;
    margin-bottom: 12px;
}

.terms-section ul {
    padding-left: 22px;
}

/* Botão Voltar */
.back-button {
    display: inline-block;
    padding: 12px 26px;
    background: var(--primary);
    color: #000;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s ease;
    margin-bottom: 25px;
}

.back-button:hover {
    opacity: .8;
}

/* Data final */
.last-updated {
    text-align: center;
    margin-top: 35px;
    color: var(--muted);
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.12);
}

/* Responsividade */
@media (max-width: 768px) {
    .terms-card {
        padding: 25px 20px;
    }

    .terms-title {
        font-size: 2.1rem;
    }
}


.termos_footer{
  transition: 200ms;
}

.termos_footer:hover{
  color: var(--primary);
  transition: 200ms;
}