.container-section-termos-condicoes#container-section-termos-condicoes {
  grid-column: start-lef/end-right;
  grid-row: start-main/end-main;
  overflow-x: hidden;
}

.container-section-termos-condicoes#container-section-termos-condicoes #content-section-termos-condicoes .section-main #main-content-termos-condicoes {
  height: 100%;
}

.container-section-termos-condicoes#container-section-termos-condicoes #content-section-termos-condicoes .section-main #main-content-termos-condicoes .termos-condicoes-row {
  display: flex;
  height: 100%;
  width: 100%;
  flex-direction: column;
  overflow-y: auto;
}

.container-section-termos-condicoes#container-section-termos-condicoes #content-section-termos-condicoes .section-main #main-content-termos-condicoes .termos-condicoes-row .termos-condicoes-col {
  height: 100%;
}


/*Inicio estilo da pagina*/
:root {
  --primary: #007bff;
  --primary-dark: #0056b3;
  --bg: #f6f8fb;
  --text: #1f2937;
  --muted: #6b7280;
  --border: #e5e7eb;
  --card: #ffffff;
  --highlight: #eef5ff;
  --shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  --radius: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: linear-gradient(180deg, #f8fbff 0%, var(--bg) 100%);
  color: var(--text);
  line-height: 1.7;
}

.wrapper {
  width: 100%;
  padding: 40px 20px;
}

.container {
  max-width: 980px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero {
  padding: 42px 40px 28px;
  background: linear-gradient(135deg, #0f172a 0%, #133b72 55%, #0b73ff 100%);
  color: #fff;
}

.hero h1 {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15;
}

.hero p {
  margin: 0;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
}

.content {
  padding: 36px 40px 44px;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.meta-badge {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  background: #f3f6fb;
  border: 1px solid var(--border);
  border-radius: 12px;
  color: #374151;
  font-size: 14px;
  font-weight: 600;
}

.notice {
  margin: 0 0 30px;
  padding: 18px 20px;
  background: var(--highlight);
  border: 1px solid #cfe0ff;
  border-left: 5px solid var(--primary);
  border-radius: 12px;
  color: #1f3557;
}

h2 {
  margin: 34px 0 14px;
  font-size: 24px;
  color: #111827;
}

p {
  margin: 12px 0;
  font-size: 16px;
}

ul {
  margin: 14px 0 16px 22px;
  padding: 0;
}

li {
  margin: 8px 0;
}

.section {
  padding-bottom: 8px;
  border-bottom: 1px solid #f0f2f5;
}

.section:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.footer {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 14px;
}

.footer strong {
  color: #374151;
}

a {
  color: var(--primary-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .hero {
    padding: 30px 22px 24px;
  }

  .content {
    padding: 26px 22px 32px;
  }

  h2 {
    font-size: 21px;
  }

  p,
  li {
    font-size: 15px;
  }
}