p.MsoNormal {
  margin-top: 0cm;
  margin-right: 0cm;
  margin-bottom: 10pt;
  margin-left: 0cm;
  line-height: 115%;
  font-size: 11pt;
  font-family: "Calibri", "sans-serif";
}
a:link {
  color: #001739;
  text-decoration: underline;
}
a:hover {
  color: #636363;
}

body {
  font-family: "Roboto", sans-serif;
  color: #3e3e3e;
  padding: 50px 5%;

  text-align: justify;

  max-width: 1280px;
  margin: 0 auto;
}

.logoPrivacy {
  width: 100%;
}

.logoPrivacy img {
  width: 160;
  height: 80px;
  margin: 0 auto;
  position: relative;
  display: block;
}

table {
  border-collapse: collapse;
  border: 1px solid #a8acad;
}

th,
td {
  padding: 20px;
  text-align: left;
  /*width: 20%;*/
}

/*
    th {
        background-color: #eee;
    }
    */

th {
  background-color: #001739;
  color: white;
  font-weight: normal;
}

/* =================== METODO 3: GRID SYSTEM =================== */
table {
  width: 100%;
  border-collapse: collapse;
}

table th,
table td {
  padding: 12px;
  text-align: left;
}

table th {
}

@media screen and (max-width: 768px) {
  table {
    display: block;
  }

  table thead {
    display: none;
  }

  table tbody {
    display: block;
  }

  table tr {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;

    /*margin-bottom: 15px;*/
    /*padding: 15px;*/
    border-bottom: 1px solid #ddd;
  }

  table td {
    display: flex;
    flex-direction: column;
    border: none;
    padding: 10px;
    background: white;
    border-radius: 4px;
  }

  table td:before {
    content: attr(data-label);
    /*background-color: #001739;*/
    font-weight: bold;
    font-size: 16px;
    color: #001739;
    margin-bottom: 5px;
    text-transform: uppercase;
    padding: 10px 10px 10px 0;
  }
}
