:root {
  --primary: #2563eb;
  --primary-hover: #1d4ed8;
  --secondary: #64748b;
  --bg-body: #f1f5f9;
  --bg-card: #ffffff;
  --text-main: #0f172a;
  --text-muted: #475569;
  --border-color: #e2e8f0;
  --accent: #f59e0b;
  --radius: 16px;
  --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --yellow-pop: #fbbf24;
}

/* Pop-art Badge Novo */
.badge-new {
    display: inline-block;
    background: var(--yellow-pop);
    color: #000;
    font-weight: 900;
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: 4px;
    border: 2px solid #000;
    box-shadow: 3px 3px 0px #000;
    text-transform: uppercase;
    margin-bottom: 10px;
    animation: oscillate 0.6s infinite alternate ease-in-out;
    transform-origin: center;
    pointer-events: none;
    width: fit-content;
    position: relative;
}

.badge-new::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 10px;
    border-width: 8px 8px 0 0;
    border-style: solid;
    border-color: #000 transparent transparent transparent;
}

.badge-new::before {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 11px;
    border-width: 6px 6px 0 0;
    border-style: solid;
    border-color: var(--yellow-pop) transparent transparent transparent;
    z-index: 1;
}

@keyframes oscillate {
    from {
        transform: rotate(-3deg) scale(1);
    }
    to {
        transform: rotate(3deg) scale(1.1);
    }
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--bg-body);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Hide Everything by Default for Clean Slate */
#menu_nav, #menu-topo, #menu, #g-login, .sharelink, #logo img, .ads_mobi, .ads10 {
  display: none !important;
}

/* Base Layout */
#center {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Modern Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(to bottom, #87CEEB 0%, #E0F7FA 100%) !important;
  border-bottom: 1px solid var(--border-color);
  padding: 0.75rem 0;
  transition: all 0.3s ease;
  overflow: hidden;
}

.navbar::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: 
      radial-gradient(circle at 20% 50%, rgba(255,255,255,0.8) 0%, transparent 15%),
      radial-gradient(circle at 50% 20%, rgba(255,255,255,0.6) 0%, transparent 20%),
      radial-gradient(circle at 80% 40%, rgba(255,255,255,0.7) 0%, transparent 15%);
  opacity: 0.5;
  pointer-events: none;
  animation: cloudsMove 120s linear infinite;
  background-size: 200% 100%;
}

@keyframes cloudsMove {
  from { background-position: 0% 0%; }
  to { background-position: 100% 0%; }
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.nav-logo {
  font-size: 1.8rem;
  font-weight: 800;
  color: #0369a1 !important;
  -webkit-text-fill-color: initial !important;
  text-decoration: none;
  letter-spacing: -1px;
  text-shadow: 1px 1px 2px rgba(255,255,255,0.5);
  position: relative;
  z-index: 2;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #0369a1 !important;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s;
  text-shadow: 1px 1px 2px rgba(255,255,255,0.5);
}

.nav-links a:hover {
  color: var(--primary);
}

/* Sub-navbar for States */
.states-nav {
  background: white;
  border-bottom: 1px solid var(--border-color);
  padding: 8px 0;
  display: flex;
  justify-content: center;
  position: sticky;
  top: 60px; /* Below the main navbar */
  z-index: 999;
}

.nav-states {
  display: flex;
  gap: 8px;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding: 5px 15px;
  -ms-overflow-style: none;
  scrollbar-width: none;
  max-width: 1200px;
  justify-content: center;
}

.nav-states::-webkit-scrollbar {
  display: none;
}

.nav-states a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 32px;
  background: #f8fafc;
  color: var(--text-main);
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--border-color);
}

.nav-states a:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.2);
}

@media (max-width: 900px) {
    .nav-states {
        justify-content: flex-start;
    }
}

/* Page Hero/Header */

.nav-auth {
  display: flex;
  gap: 1rem;
}

.btn-login {
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s;
  background: var(--primary);
  color: white;
}

.btn-login:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
}

/* Page Hero/Header */
#header {
  display: none !important;
}

.hero-banner {
  max-width: 1000px;
  width: 100%;
  aspect-ratio: 21 / 7;
  margin: 0 auto 40px auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  background: white;
  transition: transform 0.3s ease;
}

.hero-banner:hover {
  transform: scale(1.01);
}

.hero-banner img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: fill; /* User wants it stretched */
}

/* Main Layout Styles */
.main-heading {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 30px;
  color: var(--text-main);
  letter-spacing: -1px;
}

.region-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.region-item {
  padding: 10px 20px;
  border-radius: 50px;
  background: white;
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  box-shadow: var(--shadow);
}

.region-item:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.region-item.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.search-hero-wrapper {
  max-width: 800px;
  margin: 0 auto 80px auto;
  padding: 0 20px;
}

.modern-search-box {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 50px;
  padding: 8px 8px 8px 24px;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
}

.modern-search-box:focus-within {
  border-color: var(--primary);
  box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.2);
}

.search-icon {
  color: var(--secondary);
  font-size: 1.2rem;
}

.modern-search-input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 12px 16px;
  font-size: 1.1rem;
  font-family: inherit;
  color: var(--text-main);
  outline: none;
}

.modern-search-btn {
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 40px;
  padding: 12px 30px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s;
}

.modern-search-btn:hover {
  background: var(--primary-hover);
  transform: scale(1.02);
}

@media(max-width: 600px) {
  .modern-search-box {
      flex-direction: column;
      border-radius: 20px;
      padding: 16px;
      gap: 16px;
  }
  .search-icon { display: none; }
  .modern-search-btn { width: 100%; border-radius: 12px; }
  .hero-banner { aspect-ratio: 16 / 9; }
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -2px;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

#conteudo h1 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 40px;
  color: var(--text-main);
  text-align: center;
  letter-spacing: -0.5px;
}

/* Search Bar Fix */
.container.my-0 {
    margin-top: 40px !important;
    margin-bottom: 80px !important;
}

.input-group {
  display: flex;
  background: white;
  border-radius: 50px;
  padding: 6px;
  box-shadow: var(--shadow-lg);
  max-width: 600px;
  margin: 0 auto;
  border: 1px solid var(--border-color);
}

.form-control {
  border: none !important;
  background: transparent !important;
  padding: 12px 24px !important;
  flex: 1;
  font-size: 1rem;
  outline: none !important;
  color: var(--text-main);
}

.btn-outline-pci {
  background: var(--primary) !important;
  color: white !important;
  border: none !important;
  padding: 12px 30px !important;
  border-radius: 40px !important;
  font-weight: 600 !important;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-outline-pci:hover {
  background: var(--primary-hover) !important;
  transform: scale(1.02);
}

/* Quick Nav Buttons */
#btn-concursos {
  background: white;
  padding: 30px !important;
  border-radius: 24px;
  border: 1px solid var(--border-color);
  margin-bottom: 50px !important;
  display: flex !important;
  flex-direction: column;
  gap: 24px;
  box-shadow: var(--shadow);
}

#btn-concursos .nav {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  width: 100%;
  padding: 0;
  list-style: none;
}

#btn-concursos .nav-item {
  margin: 0 !important;
}

#btn-concursos .btn {
  width: 100%;
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 16px 24px !important;
  background: white !important;
  border: 1px solid var(--border-color) !important;
  color: var(--text-main) !important;
  border-radius: 100px !important; /* Fully rounded pill shape */
  font-weight: 700 !important;
  font-size: 0.95rem !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

#btn-concursos .btn:hover {
  background: #f8fafc !important;
  border-color: var(--primary) !important;
  color: var(--primary) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
}

#btn-concursos .btn i {
  font-size: 1.1rem;
  color: var(--secondary);
  transition: color 0.3s;
}

#btn-concursos .btn:hover i {
  color: var(--primary);
}

@media (max-width: 600px) {
    #btn-concursos {
        padding: 20px !important;
    }
    #btn-concursos .nav {
        grid-template-columns: 1fr;
    }
}

/* Stats box (date updated) */
.modern-stat-box {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px !important;
    margin-bottom: 10px;
}

#btn-concursos .modern-stat-box ul {
    display: flex;
    justify-content: center;
    gap: 12px;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

#btn-concursos .modern-stat-box li {
    font-size: 0.95rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

#btn-concursos .modern-stat-box li:not(:last-child)::after {
    content: "•";
    margin-left: 12px;
    color: var(--border-color);
    font-weight: bold;
}

.modern-stat-box i {
    font-size: 1.4rem !important;
    color: var(--primary) !important;
    animation: spin-slow 10s linear infinite;
}

@keyframes spin-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

#btn-concursos li abbr {
    text-decoration: none;
    font-weight: 800;
    color: var(--text-main);
}

/* Concursos Grid */
#concursos {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

/* State Headings (ex: NACIONAL, SP) */
h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 60px 0 24px 0;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 12px;
}

h2::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--border-color);
}

/* Individual Card (da/na) */
.da, .na {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: flex-start;
  border: 1px solid transparent;
  width: 100% !important;
  cursor: pointer;
}

.da:hover, .na:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
  border-color: var(--primary);
}

/* Logo/Image Container */
.cb {
  display: block !important;
  width: 72px;
  height: 72px;
  background: #f8fafc;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.cb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}

/* Title Container */
.ca {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ca a {
  color: var(--text-main);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.3;
  transition: color 0.2s;
}

.da:hover .ca a, .na:hover .ca a {
  color: var(--primary);
}

/* Details Container */
.cd {
  font-size: 0.95rem;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cd span {
    display: inline-block;
    background: #f1f5f9;
    padding: 2px 10px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.85rem;
    margin-right: 8px;
}

/* Date/Deadline Container */
.ce {
  text-align: right;
  min-width: 160px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--border-color);
  padding-left: 24px;
}

.ce::before {
    content: "Inscrições até";
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary);
    display: block;
    margin-bottom: 4px;
}

.ce span {
  color: var(--accent);
  font-size: 1.2rem;
  font-weight: 800;
}

/* Apostila link */
.l_ap2 {
  position: absolute;
  bottom: 12px;
  right: 32px;
}

.l_ap2 a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #10b981;
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  background: #ecfdf5;
  padding: 4px 12px;
  border-radius: 100px;
}

/* State List (AC, AL, etc) */
.ul_estados {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
  gap: 8px;
  list-style: none;
  margin-bottom: 50px;
  padding: 20px;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.ul_estados li a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 4px;
  background: #f8fafc;
  border-radius: 8px;
  text-decoration: none;
  color: var(--primary);
  font-weight: 800;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.ul_estados li a:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.3);
}

/* Mobile Responsiveness */
@media (max-width: 850px) {
  .da, .na {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px;
    text-align: center;
  }
  
  .cb {
    margin: 0 auto;
  }
  
  .ce {
    border-left: none;
    border-top: 1px solid var(--border-color);
    padding-left: 0;
    padding-top: 16px;
    text-align: center;
    min-width: auto;
  }
  
  .l_ap2 {
    position: static;
    margin-top: 10px;
  }
}
/* Detail View Styles - Premium Article Look */
.detail-view {
  background: white;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  margin: 20px auto 60px auto;
  max-width: 900px;
  border: 1px solid var(--border-color);
}

.back-link {
  margin-bottom: 40px;
}

.back-link a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-body);
  padding: 8px 16px;
  border-radius: 50px;
  transition: all 0.2s;
}

.back-link a:hover {
  background: var(--primary);
  color: white;
  transform: translateX(-5px);
}

.article-header {
  margin-bottom: 40px;
  text-align: left;
}

.article-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 16px;
  font-size: 0.75rem;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
}

.article-header h1 {
  font-size: 2.75rem !important;
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-main);
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}

.description {
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--text-muted);
  font-weight: 400;
  border-left: 4px solid var(--primary);
  padding-left: 24px;
  margin-bottom: 40px;
}

.article-content {
  font-size: 1.1rem;
  color: var(--text-main);
  line-height: 1.8;
}

.article-content img.noticia-img {
  display: block;
  margin: 40px auto;
  max-width: 100%;
  width: auto;
  max-height: 400px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  border: 4px solid white;
}

.article-content p {
  margin-bottom: 1.5rem;
}

.article-content ul, .article-content ol {
  margin: 1.5rem 0 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.article-content li {
  padding-left: 0.5rem;
}

/* Link as Button inside article */
.article-content a[href*="edital"], .article-content a[href*="site"] {
    background: var(--primary);
    color: white !important;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    margin: 10px 0;
    transition: all 0.2s;
}

.article-content a[href*="edital"]:hover, .article-content a[href*="site"]:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
}

/* Detail View Article Styles */
.detail-view article {
  display: flex;
  flex-direction: column;
}

.article-header {
  margin-bottom: 40px;
}

.article-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.article-content {
    color: var(--text-main);
    line-height: 1.8;
}

.article-content p {
    margin-bottom: 1.5rem;
}

.article-content h2, .article-content h3 {
    margin: 3rem 0 1.5rem 0;
    text-align: left;
    color: var(--text-main);
    font-weight: 800;
}

.article-content h2::after {
    display: none;
}

/* Modern Footer */
.footer {
  background: #ffffff;
  border-top: 1px solid var(--border-color);
  padding: 60px 0 30px 0;
  margin-top: 80px;
  width: 100%;
}

.footer-container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 4%;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
}

.footer-column h3, .footer-column h4 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--text-main);
}

.footer-column p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.2s;
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-body);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  transition: all 0.2s;
  text-decoration: none;
}

.social-links a:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
}

.footer-bottom {
  width: 100%;
  max-width: 100%;
  margin: 40px auto 0 auto;
  padding: 30px 4% 0 4%;
  border-top: 1px solid var(--border-color);
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

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

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .social-links {
    justify-content: center;
  }
  .nav-links {
    display: none;
  }
  .hero-title {
    font-size: 2.5rem;
  }
}
/* Layout Grid for Sidebar */
.layout-grid {
  display: grid;
  grid-template-columns: minmax(0, 800px) 250px;
  justify-content: center;
  gap: 40px;
  align-items: start;
  margin-top: 20px;
  position: relative;
  z-index: 1;
}

@media(max-width: 900px) {
  .layout-grid {
    grid-template-columns: 1fr;
  }
}

/* Sidebar Styles */
.sidebar-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 130px;
}

.sidebar-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 12px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  text-align: center;
}

.promo-card {
  background: linear-gradient(135deg, #1e3a8a, #2563eb);
  color: white;
  border: none;
}

.promo-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 6px;
  color: white;
}

.promo-card p {
  font-size: 0.8rem;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.9);
}

.promo-card img {
  max-width: 30%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 12px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.btn-promo {
  display: inline-block;
  background: #f59e0b;
  color: white;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 8px 16px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.btn-promo:hover {
  background: #d97706;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

/* Info Cards Grid (below search) */
.info-cards-section {
  max-width: 1200px;
  margin: 0 auto 50px auto;
  padding: 0 20px;
}

.info-cards-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-card {
  background: white;
  border-radius: var(--radius);
  padding: 0;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  overflow: hidden;
  text-align: left;
}

.info-card:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.info-card-img {
  width: 300px;
  min-height: 200px;
  flex-shrink: 0;
  overflow: hidden;
}

.info-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.info-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.info-card:hover .info-card-img img {
  transform: scale(1.05);
}

.info-card h4 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.2;
}

.info-card p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.info-card .card-footer {
  margin-top: auto;
  padding-top: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
}

@media (max-width: 800px) {
  .info-card {
    flex-direction: column;
  }
  .info-card-img {
    width: 100%;
    height: 200px;
  }
}


/* Latest Updates Section */
.latest-updates-container {
    margin-top: 40px;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.latest-updates-container h2 {
    color: var(--text-main);
    font-size: 1.5rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.latest-updates-container h2::before {
    content: '\f017';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary);
}

#latest-updates-list .da {
    margin-bottom: 12px;
    border-left: 4px solid var(--primary);
    transition: all 0.3s ease;
}

#latest-updates-list .da:hover {
    transform: translateX(5px);
    background: #f8fafc;
}
