:root {
  --primary: #0f172a;
  --primary-alt: #1e3a8a;
  --accent: #b45309;
  --accent-light: #fef3c7;
  --success: #059669;
  --warning: #d97706;
  --danger: #dc2626;
  --bg-main: #f8fafc;
  --bg-card: #ffffff;
  --text-main: #1e293b;
  --text-muted: #64748b;
  --border: #e2e8f0;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md:
    0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg:
    0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --sidebar-width: 280px;
  --header-height: 80px;
  --font-main: "Inter", system-ui, -apple-system, sans-serif;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: var(--font-main);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
.app-container {
  display: flex;
  min-height: 100vh;
}
.sidebar {
  width: var(--sidebar-width);
  background: white;
  border-right: 1px solid var(--border);
  position: fixed;
  height: 100vh;
  z-index: 1000;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.sidebar-collapsed .sidebar {
  transform: translateX(-100%);
}
.sidebar-header {
  height: var(--header-height);
  display: flex;
  align-items: center;
  padding: 0 1.5rem;
  border-bottom: 1px solid var(--border);
}
.logo-text {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--primary);
  letter-spacing: -0.025em;
}
.nav-menu {
  padding: 1.5rem 1rem;
  list-style: none;
}
.nav-item {
  margin-bottom: 0.5rem;
}
.nav-link {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  color: var(--text-muted);
  text-decoration: none;
  border-radius: var(--radius-md);
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.nav-link i {
  margin-right: 0.75rem;
  font-size: 1.25rem;
  width: 20px;
  text-align: center;
  transition: transform 0.3s ease;
}
.nav-link:hover {
  background: var(--bg-main);
  color: var(--primary);
  transform: scale(1.05) translateX(5px);
}
.nav-link:hover i {
  transform: scale(1.2);
}
.nav-link.active {
  background: var(--primary);
  color: white;
  box-shadow: var(--shadow-md);
  transform: scale(1.05);
}
.main-wrapper {
  flex: 1;
  margin-left: var(--sidebar-width);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 0;
}
.sidebar-collapsed .main-wrapper {
  margin-left: 0;
}
.top-header {
  height: var(--header-height);
  background: white;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  position: sticky;
  top: 0;
  z-index: 900;
}
.sidebar-toggle {
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 1001;
}
.sidebar-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.sidebar.open ~ .sidebar-backdrop {
  opacity: 1;
  pointer-events: auto;
}
#menuBtn {
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  color: var(--primary);
}
#menuBtn:hover {
  transform: scale(1.2) rotate(90deg);
  background: rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}
.content-body {
  padding: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  flex: 1;
}
.grid-responsive {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 2rem;
}
@media (max-width: 992px) {
  .grid-responsive {
    grid-template-columns: 1fr;
  }
}
.card {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.card:hover {
  box-shadow: var(--shadow-md);
}
.page-title {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--primary);
}
.page-subtitle {
  color: var(--text-muted);
  margin-bottom: 2rem;
}
.official-news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .official-news-grid {
    grid-template-columns: 1fr;
  }
}
.footer-official {
  background: var(--primary);
  color: #f8fafc;
  padding: 4rem 2rem 2rem;
  margin-top: auto;
  border-top: 4px solid var(--accent);
  position: relative;
  z-index: 800;
  width: 100%;
}
.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
}
.footer-brand .logo-container {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: center;
}
.footer-brand .logo-container img {
  height: 45px;
}
.footer-section h4 {
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}
.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 0.85rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: #cbd5e1;
}
.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: white;
}
.footer-bottom {
  max-width: 1200px;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: #94a3b8;
  font-size: 0.85rem;
}
.footer-social-column {
  margin-top: 2rem;
}
@media (max-width: 1024px) {
  .sidebar {
    transform: translateX(-100%);
  }
  .main-wrapper {
    margin-left: 0;
  }
  .sidebar.open {
    transform: translateX(0);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.3);
  }
}
@media (max-width: 1200px) {
  .grid-responsive {
    grid-template-columns: 1fr;
  }
  .content-body {
    padding: 1.5rem;
  }
}
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: left;
  }
  .footer-brand {
    text-align: left;
  }
  .logo-container {
    justify-content: flex-start;
  }
  .content-body {
    padding: 1.5rem;
  }
  .top-header {
    padding: 0 1rem;
  }
  .header-branding img {
    height: 35px;
  }
  .header-branding div {
    display: none;
  }
  .user-profile span {
    display: none;
  }
}
.news-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}
.news-card:hover {
  transform: translateY(-5px);
}
.news-img {
  height: 200px;
  background: #f1f5f9;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.news-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--accent);
  color: white;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 10;
}
.news-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.news-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.news-title {
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.4;
  color: var(--primary);
}
.hover-scale:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.success-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.success-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.success-check {
  width: 80px;
  height: 80px;
  background: var(--success);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin-bottom: 2rem;
  transform: scale(0.5);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.success-overlay.active .success-check {
  transform: scale(1);
  opacity: 1;
}
.toast-container {
  position: fixed;
  top: 2rem;
  right: 2rem;
  z-index: 10000;
}
.toast {
  background: white;
  padding: 1rem 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 1rem;
  border-left: 4px solid var(--success);
  margin-bottom: 1rem;
  animation: toastIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}
@keyframes toastIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.toast.error {
  border-left-color: var(--danger);
}
.btn-animate:active {
  transform: scale(0.98);
}
.cursor-shadow {
  position: fixed;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition:
    width 0.3s,
    height 0.3s;
  mix-blend-mode: multiply;
}
.tap-effect {
  position: fixed;
  width: 50px;
  height: 50px;
  background: rgba(15, 23, 42, 0.2);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%) scale(0);
  animation: tapRipple 0.6s ease-out forwards;
}
@keyframes tapRipple {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0.8;
  }
  100% {
    transform: translate(-50%, -50%) scale(3);
    opacity: 0;
  }
}
.iframe-container {
  border: 1px solid var(--border);
  overflow: hidden;
}
.scroll-wrapper {
  width: 100%;
  position: relative;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y pan-x;
}
.drag-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  z-index: 20;
  cursor: grab;
  display: none;
  pointer-events: none;
  transition: all 0.3s ease;
  user-select: none;
  -webkit-user-drag: none;
}
.drag-overlay.active {
  display: block;
  pointer-events: auto;
}
.drag-overlay:active {
  cursor: grabbing;
}
.mode-toggle-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 30;
  background: #059669;
  color: white;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  animation: pulse-button 2s infinite;
}
@keyframes pulse-button {
  0% {
    box-shadow: 0 0 0 0 rgba(5, 150, 105, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(5, 150, 105, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(5, 150, 105, 0);
  }
}
.mode-toggle-btn:hover {
  transform: scale(1.1);
}
#lookerIframe {
  width: 100%;
  min-width: 100%;
  border: none;
  height: 2200px;
  min-height: 2200px;
  pointer-events: auto;
}
@media (max-width: 768px) {
  .iframe-container {
    border: 2px solid #3b82f6;
  }
  .scroll-wrapper {
    height: 75vh;
    overflow-y: auto;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x pan-y;
  }
  #lookerIframe {
    min-width: 900px;
    height: 2200px;
  }
}
.about-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
}
.about-contact-grid {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 2rem;
}
.news-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(8px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
  padding: 1.5rem;
}
.news-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.news-modal-container {
  background: white;
  width: 100%;
  max-width: 800px;
  max-height: 90vh;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  transform: translateY(30px) scale(0.95);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.news-modal-overlay.active .news-modal-container {
  transform: translateY(0) scale(1);
}
.news-modal-banner {
  width: 100%;
  height: 300px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.news-modal-banner::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
}
.news-modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  border: none;
  z-index: 10;
  transition: transform 0.2s;
}
.news-modal-close:hover {
  transform: scale(1.1);
}
.news-modal-body {
  padding: 2.5rem;
  overflow-y: auto;
  flex: 1;
}
.news-modal-header {
  margin-bottom: 2rem;
}
.news-modal-category {
  background: var(--accent);
  color: white;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 1rem;
}
.news-modal-title {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--primary);
  margin-bottom: 1rem;
}
.news-modal-meta {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
  display: flex;
  gap: 1.5rem;
}
.news-modal-content {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #334155;
}
@media (max-width: 768px) {
  .news-modal-banner {
    height: 200px;
  }
  .news-modal-body {
    padding: 1.5rem;
  }
  .news-modal-title {
    font-size: 1.5rem;
  }
}
.news-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(8px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
  padding: 1.5rem;
}
.news-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.news-modal-container {
  background: white;
  width: 100%;
  max-width: 800px;
  max-height: 90vh;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  transform: translateY(30px) scale(0.95);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.news-modal-overlay.active .news-modal-container {
  transform: translateY(0) scale(1);
}
.news-modal-banner {
  width: 100%;
  height: 300px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.news-modal-banner::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
}
.news-modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  border: none;
  z-index: 10;
  transition: transform 0.2s;
}
.news-modal-close:hover {
  transform: scale(1.1);
}
.news-modal-body {
  padding: 2.5rem;
  overflow-y: auto;
  flex: 1;
}
.news-modal-header {
  margin-bottom: 2rem;
}
.news-modal-category {
  background: var(--accent);
  color: white;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 1rem;
}
.news-modal-title {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--primary);
  margin-bottom: 1rem;
}
.news-modal-meta {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
  display: flex;
  gap: 1.5rem;
}
.news-modal-content {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #334155;
}
@media (max-width: 768px) {
  .news-modal-banner {
    height: 200px;
  }
  .news-modal-body {
    padding: 1.5rem;
  }
  .news-modal-title {
    font-size: 1.5rem;
  }
}
@media (max-width: 768px) {
  .about-content-wrapper {
    grid-template-columns: 1fr;
  }
  .about-image-section {
    height: 200px;
  }
  .about-contact-grid {
    flex-direction: column;
    gap: 1.25rem;
  }
}
@media (pointer: coarse) {
  .cursor-shadow {
    display: none;
  }
}
