html,
body {
  font-family: "Red Hat Text", sans-serif;
  font-weight: 400;
  margin: 0;
  background: #E4F0F6;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    gap: 10px;
    /* background-color: #E8E8E8; */
    /* margin-bottom: 40px; */
}

.logo-image {
    height: 100px;
    width: auto;
}

.navbar {
  z-index: 10;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.container {
  flex-grow: 1;
}

footer .footer-logo{
  max-width: 280px!important;
}

.footer-logo-descuentate{
  max-width: 280px!important;
}

.sectores {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.sectores li {
  width: 33.33%; /* 3 columnas por defecto */
  /* box-sizing: border-box; */
  /* padding: 8px; */
  /* background: #f2f2f2; */
  /* border-radius: 4px; */
  margin-bottom: 10px;
}

/* TY PAGE */

.ty-container {
    text-align: center;
    padding: 40px 20px;
    background-color: #ffffff;
}

.ty-emoji {
    font-size: 48px;
    margin-bottom: 20px;
}

.ty-title {
    font-size: 32px;
    color: var(--color-secundario);
    margin-bottom: 15px;
    font-weight: 600;
}

.ty-message {
    color: #666;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 30px;
}


@media (max-width: 768px) {
  .sectores li {
    width: 50%; /* 2 columnas */
  }
}

@media screen and (max-width: 578px) {

  /* footer .footer-logo{
    max-width: 200px!important;
  } */

  .sectores li {
    width: 100%; /* 1 columna */
  }

}

/* ===============================
    GDPR - INFORMACIÓN BÁSICA (1ª CAPA)
    Layout reusable para landings
   =============================== */

:root {
  --gdpr-border: rgba(0,0,0,0.15);
  --gdpr-label-bg: rgba(0,0,0,0.04);
  --gdpr-text: #333;
  --gdpr-link: var(--color-principal, #333); /* usa color de landing si existe */
}

.gdpr-modal .modal-title {
  font-weight: 700;
}

.gdpr-basic {
  color: var(--gdpr-text);
  font-size: 13px;
}

.gdpr-basic__table {
  border: 1px solid var(--gdpr-border);
}

.gdpr-basic__row {
  display: grid;
  grid-template-columns: 180px 1fr;
  border-bottom: 1px solid var(--gdpr-border);
}

.gdpr-basic__row:last-child {
  border-bottom: 0;
}

.gdpr-basic__label {
  background: var(--gdpr-label-bg);
  padding: 12px 10px;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
}

.gdpr-basic__value {
  padding: 12px 10px;
  line-height: 1.5;
}

.gdpr-basic a {
  color: var(--gdpr-link);
  text-decoration: none;
}

.gdpr-basic a:hover {
  text-decoration: underline;
}

.gdpr-basic__foot {
  margin: 12px 0 0;
  font-size: 12px;
  color: rgba(0,0,0,0.7);
}

/* Mobile */
@media (max-width: 576px) {
  .gdpr-basic__row {
    grid-template-columns: 1fr;
  }

  .gdpr-basic__label {
    border-bottom: 1px solid var(--gdpr-border);
  }
}
