.container {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);

  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fafafa;
  padding: 1rem 5rem;
  margin-top: 80px;     
  margin-bottom: 80px;  
}

h1, h2 {
  color: #CA2026;
}

h1 {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #CA2026;
}

ul {
  margin-left: 2rem;
}

p {
  margin-bottom: 1rem;
}

.email {
  font-weight: bold;
  color: #007bff;
  text-decoration: none;
}

.email:hover {
  text-decoration: underline;
}

.cookies-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}

.cookies-table th,
.cookies-table td {
  border: 1px solid #ccc;
  padding: 0.8rem;
  text-align: left;
  font-size: 0.95rem;
}

.cookies-table th {
  background-color: #f0f0f0;
  font-weight: bold;
}

.cookies-table tr:nth-child(even) {
  background-color: #f9f9f9;
}

a {
  color: #367dc9;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}
























/* Fondo */
.cookie-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 99999;
}

/* Tarjeta del popup */
.cookie-popup-card {
  width: 100%;
  max-width: 380px;
  background: #fff;
  color: #222;
  border-radius: 14px;
  box-shadow: 0 0 0 3px #00669920, 0 12px 30px rgba(0,0,0,0.25); /* borde premium + sombra */
  overflow: hidden;
  animation: slideUp .32s ease;
  display: flex;
  flex-direction: column;
}

/* Header centrado */
.cookie-header {
  padding: 14px 16px 8px 16px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  text-align: center;
  position: relative;
  background: linear-gradient(to right, #ffffff, #f5faff); /* degradado leve premium */
font-family: sans-serif;
}

.cookie-header h2 {
  font-size: 17px;
  margin: 0;
  font-weight: 600;
  color: #CA2026;
font-family: sans-serif;
}

/* Botón cerrar */
.cookie-close {
  position: absolute;
  right: 12px;
  top: 8px;
  background: transparent;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #666;
font-family: sans-serif;
}

/* Body */
.cookie-body {
  padding: 14px 18px;
  font-size: 14px;
  line-height: 1.45;
  text-align: center;
font-family: sans-serif;
}

.cookie-body a {
  color: #006699;
  font-weight: 500;
  text-decoration: none;
}

.cookie-body a:hover {
  text-decoration: underline;
}

/* Botones */
.cookie-actions {
  display: flex;
  gap: 10px;
  padding: 12px;
}

.btn {
  flex: 1;
  padding: 10px;
  border-radius: 8px;
  font-size: 15px;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: #CA2026;
  color: #fff;
  font-weight: 600;
  transition: 0.2s;
}

.btn-primary:hover { background: #CA2026; }

.btn-ghost {
  background: transparent;
  color: #CA2026;
  border: 1px solid rgba(0,0,0,0.1);
}

.btn-ghost:hover {
  background: rgba(0,0,0,0.03);
}

/* Animación */
@keyframes slideUp {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1); }
}

/* Ocultar */
.hidden { display: none !important; }

