/* TÍTULO */
.ics {
    flex-direction: column;
    margin-top: -550px;
    width: 100%;
    height: auto;
    background-color: rgb(3, 40, 110);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding-bottom: 20px;
    }

/* DISPLAY BLOCK */
.ics-text-group {
    background-color: rgb(234, 139, 22);
    margin-top: 15px;
    font-size: 40px;
    text-align: center;
    font-weight: bold;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    }

/* BOTÕES NAVEGAÇÃO NO SITE */
.ics-nav {
    display: flex;
    flex-wrap: wrap;
    max-width: 1000px;
    justify-content: center;
    gap: 10px;
    }

.ics-nav-link {
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    margin-bottom: 25px;
    color: #ffffff;
    font-size: 16px;
    padding: 7px 50px;
    margin-bottom: 10px;
    border-radius: 9999px;
    border: 2px solid rgb(255, 255, 255);
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.2s;
    }

.ics-nav-link:hover {
    background-color: rgba(255, 255, 255, 0.3);
    }
/* FIM NAVEGAÇÃO INTERNA NO SITE */

/* BOTÕES DE REDES SOCIAIS */
.box-icons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 36px;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 0PX;
    color: #ffffff;
    font-size: 40px;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    font-weight: 700;
    }
/* FIM BOTÕES DE REDES SOCIAIS */


/* ===== PÁGINA TERMOS E CONDIÇÕES DE USO ===== */

.termos-content {
  background-color: #f9f9f9;
  padding: 36px 20px 60px;
}

.termos-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Topo: título + data */
.termos-topo {
  text-align: center;
  padding-bottom: 8px;
  border-bottom: 2px solid rgb(5, 60, 150);
}

.termos-titulo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: rgb(5, 60, 150);
  margin-bottom: 8px;
}

.termos-data {
  font-size: 13px;
  color: #888;
}

/* Texto de introdução */
.termos-intro {
  font-size: 15px;
  color: #444;
  line-height: 1.7;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px 24px;
}

/* Card de seção */
.termos-section {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}

/* Cabeçalho da seção */
.termos-section-header {
  background-color: rgb(5, 60, 150);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.termos-num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.termos-section-header h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
}

/* Corpo da seção */
.termos-section-body {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.termos-section-body p {
  font-size: 15px;
  color: #444;
  line-height: 1.7;
}

/* Subtítulos internos (3.1, 3.2...) */
.termos-subtitulo {
  font-size: 14px !important;
  font-weight: 700;
  color: rgb(5, 60, 150) !important;
  margin-top: 8px;
  margin-bottom: -4px;
}

/* Lista */
.termos-lista {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.termos-lista li {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
  padding-left: 18px;
  position: relative;
}

.termos-lista li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: rgb(5, 60, 150);
  font-weight: 700;
}

/* Definições (seção 1) */
.termos-def {
  border-left: 3px solid rgb(5, 60, 150);
  padding-left: 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.termos-def-termo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: rgb(5, 60, 150);
}

.termos-def p {
  font-size: 14px !important;
  color: #555 !important;
}

/* Responsivo */
@media (max-width: 750px) {
  .termos-titulo {
    font-size: 22px;
  }

  .termos-section-header h2 {
    font-size: 15px;
  }

  .termos-section-body {
    padding: 16px;
  }

  .termos-intro,
  .termos-section-body p,
  .termos-lista li,
  .termos-def p {
    font-size: 14px !important;
  }
}

/* RODAPÉ */
.icsfooter {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100px;
  background-color: rgb(5, 60, 150);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2px;
  gap: 16px;
}

.ics-linha-1 {
  color: rgb(255, 255, 255);
  text-align: center;
  font-size: 16px;
  max-width: 1000px;
  display: block;
  width: 100%;
  margin: -2px 0;

}
.ics-linha-2 {
  text-align: center;
}

.ics-linha-2 a:link,
.ics-linha-2 a:visited {
  display: inline-block;
  font-size: 20px;
  color: #ffffff;
  text-decoration: none;
  margin: 0 15px;
}

.ics-linha-2 a:hover {
  color: #cccccc;
  text-decoration: underline;
}
