@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root{
  --red: #8b1212;        /* rojo oscuro del encabezado */
  --red-check: #b01212;  /* rojo del check */
  --border: #2b2b2b;     /* bordes tipo captura */
  --bg: #ffffff;
  --text: #111111;

  --container: 1050px;
}

*{ box-sizing: border-box; }

html, body{ height: 100%; }

body{
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Poppins", sans-serif;
}

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

h2 {
  margin: 0 0 18px;
  font-size: 1.25rem;
  font-weight: 600;
}

h3 {
  margin: 0 0 18px;
  font-size: 1rem;
  font-weight: 500;
}

.container{
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

/* Header como la captura: logo izquierda, título centrado */
.header{
  padding: 18px 0 10px;
}

.header__inner{
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 1rem;
  align-items: start;
  justify-content: space-between;
}

.logo{
  width: 120px;
  height: auto;
}

.title{
  margin: 0;
  color: var(--red);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-align: center;
}

.header__spacer{ height: 1px; }

/* Main */
.main{
  padding: 10px 0 28px;
}

/* Tabla */
.table-wrap{
  border: 1px solid var(--border);
  overflow-x: auto; /* Versión A: scroll horizontal */
  background: #fff;
  margin: 3rem 0;
}

.privacy-table{
  width: 100%;
  min-width: 980px; /* fuerza scroll en móvil para conservar el look */
  border-collapse: collapse;
  table-layout: fixed;
}

.privacy-table th,
.privacy-table td{
  border: 1px solid var(--border);
  padding: 6px 8px;
  vertical-align: middle;
  font-size: .75rem;
}

.privacy-table thead th{
  background: var(--red);
  color: #fff;
  font-weight: 700;
  text-align: center;
  padding: 10px 8px;
}

.col-responsable{
  width: 320px;
  text-align: center;
}

.privacy-table tbody td:first-child{
  text-align: left;
  font-weight: 400;
}

.privacy-table td{
  text-align: center;
}

.check{
  color: var(--red-check);
  font-weight: 900;
  font-size: 20px;
  line-height: 1;
}

/* Texto debajo (similar a captura) */
.text-block{
  margin-top: 18px;
  font-size: 18px;
  line-height: 1.35;
}

.text-block p,
.text-block ul,
.text-block ol{
  margin: 0 0 14px;
  font-size: .85rem;
}

/* Footer simple */
.footer{
  padding: 18px 0 30px;
  font-size: 14px;
  color: #444;
}

/* Responsivo: ajusta tamaños sin cambiar el look */
@media (max-width: 760px){
  .title{ font-size: 28px; }
  .privacy-table th,
  .privacy-table td{ font-size: .75rem; }
  .check{ font-size: 1rem; }
  .text-block{ font-size: 1rem; }
}