.cookies {
  padding: 80px 20px;
  background: #fff;
}

.cookies-container {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 50px;
  max-width: 1200px;
  margin: auto;
  align-items: start;
}

/* TITULO IZQUIERDA */
.cookies-titulo h2 {
  font-size: 2rem;
  color: #1a1a1a;
}

/* TEXTO */
.cookies-texto {
  column-count: 2;
  column-gap: 40px;
}

.cookies-texto p {
  margin-bottom: 15px;
  color: #555;
  line-height: 1.6;
  break-inside: avoid;
}


.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #1a1a1a;
  color: white;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
  font-size: 14px;
}

.cookie-banner a {
  color: #2b6cb0;
  text-decoration: underline;
}

.cookie-buttons button {
  background: #2b6cb0;
  border: none;
  color: white;
  padding: 8px 15px;
  border-radius: 6px;
  cursor: pointer;
}

.cookie-buttons button:hover {
  background: #245a94;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .cookies-container {
    grid-template-columns: 1fr;
  }

  .cookies-texto {
    column-count: 1;
  }

  .cookies-titulo {
    text-align: center;
  }
}

@media (max-width: 600px) {

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .cookie-buttons {
    width: 100%;
    display: flex;
    gap: 10px;
  }

  .cookie-buttons button {
    flex: 1;
    width: 100%;
    padding: 10px;
  }
}