.cookie-consent { position: fixed; bottom: 0; left: 0; right: 0; transform: translateY(100%); transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); z-index: 50; background: linear-gradient(145deg, #523857, #807490); box-shadow: 0 -10px 30px rgba(82, 56, 87, 0.2); width: 100%; border-top: 1px solid rgba(255, 255, 255, 0.1); backdrop-filter: blur(10px); } .cookie-container { padding: 1.5rem 2rem; position: relative; overflow: hidden; display: flex; justify-content: space-between; align-items: center; gap: 2rem; max-width: 1400px; margin: 0 auto; } .cookie-container::before { content: ""; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(circle at top right, rgba(191, 135, 9, 0.1), transparent 70%); pointer-events: none; } .cookie-title { font-size: 1.25rem; color: #BF8709; margin-bottom: 0.75rem; font-weight: 600; display: flex; align-items: center; gap: 0.75rem; } .cookie-title i { color: #BF8709; } .cookie-text { color: rgba(255, 255, 255, 0.95); line-height: 1.6; font-size: 0.95rem; margin: 0; } .cookie-link { color: #BF8709; text-decoration: none; font-weight: 500; transition: all 0.3s ease; position: relative; border-bottom: 1px solid rgba(191, 135, 9, 0.3); } .cookie-link:hover { color: #d4a040; border-bottom-color: #d4a040; } .cookie-buttons { display: flex; gap: 1rem; align-items: center; flex-shrink: 0; } .cookie-button-reject, .cookie-button-accept { padding: 0.75rem 1.75rem; font-size: 0.95rem; font-weight: 500; cursor: pointer; transition: all 0.3s ease; border-radius: 999px; } .cookie-button-reject { background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); color: white; } .cookie-button-reject:hover { background: rgba(255, 255, 255, 0.15); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1); } .cookie-button-accept { background: #BF8709; border: none; color: white; box-shadow: 0 4px 12px rgba(191, 135, 9, 0.2); } .cookie-button-accept:hover { background: #d4a040; transform: translateY(-2px); box-shadow: 0 6px 16px rgba(191, 135, 9, 0.3); } @media (max-width: 768px) { .cookie-container { flex-direction: column; padding: 1.5rem; gap: 1.5rem; align-items: stretch; } .cookie-buttons { flex-direction: row; justify-content: stretch; } .cookie-button-reject, .cookie-button-accept { flex: 1; text-align: center; } } '; if (!isset($_COOKIE["aprenderd_cookie_consent"])) { echo $cookieConsentHtml; } ?>