@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;800&display=swap');
*{box-sizing:border-box}
html,body{
  height:100%;
  margin:0;
  padding:0;
  background: linear-gradient(180deg, #05060a 0%, var(--bg) 100%);
  color:var(--text);
  font-family:var(--font-sans);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  line-height:1.45;
  font-size:16px;
}
:root {
  --noroeste: #044f43;
  --guaira: #021535;
  --ntv: #f40009;
  --noroeste-link: #67ab54;
  --guaira-link: #ff4d00;
  --ntv-link: #cc0000;
  --sub-dom: #9aa3b2;
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

a {
   text-decoration: none;
   color: inherit;
   padding: 0;
   margin: 0;
}

a {
   text-decoration: none;
   color: inherit;
   padding: 0;
   margin: 0;
}

.jn-widget {
  position: relative;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  height: 50px;
  background-color: white;
}

.jn-widget-logo {
  position: absolute;
  top: 0;
  left: 7%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 9.50rem;
  height: 100%;
}

.jn-widget img {
  width: 100%;
  height: auto;
}

.widget-nav {
  position: absolute;
  right: 5.5%;
  top: 0;
  display: inline-flex;
  flex-direction: row;
  align-items: flex-end;
  align-content: flex-end;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0 15px;
  margin: 0;
  width: auto;
}

.nav-link {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  align-content: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0 15px;
  margin: 0;
  font-weight: bold;
  font-size: 1.1rem;
  line-height: 1;
}

.widget-link {
  color: none;
  text-decoration: none;
  box-shadow: none;
  transition: color 0.3s ease-in-out;
  -webkit-transition: color 0.3s ease-out;
 -moz-transition: color 0.3s ease-out;
 -o-transition: color 0.3s ease-out;
 -ms-transition: color 0.3s ease-out;
 transition: color 0.3s ease-out;
}

.widget-link:hover {
  box-shadow: none;
}

.noroeste {
  color: var(--noroeste);
}

.guaira {
  color: var(--guaira);
}

.ntv{
  color: var(--ntv);
}

.noroeste:hover {
  color: var(--noroeste-link);
}

.guaira:hover  {
  color: var(--guaira-link);
}

.ntv:hover {
  color: var(--ntv-link);
}
@media (max-width: 600px) {
    .widget-nav {
        right: 0;
    }
    .nav-link {
        right: 0;
        font-size: 1rem;
    }
    .jn-widget-logo {
        left: 5%;
    }
    .jn-widget img {
        width: 8rem;
    }
}
.site-footer {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  background-color: #111;
  color: #fff;
  width: 100%;
}

.site-footer a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s, transform 0.2s;
}

.site-footer a:hover {
  color: #ccc;
  transform: translateX(2px);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 30px 40px 20px;
  border-bottom: 1px solid #222;
  gap: 15px;
}

.footer-logo a {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
}

.footer-search form {
  display: flex;
  max-width: 300px;
  width: 100%;
}

.footer-search input {
  flex: 1;
  padding: 6px 12px;
  border: none;
  border-radius: 3px 0 0 3px;
  font-size: 14px;
  background-color: #222;
  color: #fff;
}

.footer-search input::placeholder {
  color: #aaa;
}

.footer-search button {
  background-color: #222;
  border: none;
  padding: 6px 12px;
  border-radius: 0 3px 3px 0;
  cursor: pointer;
  color: #fff;
}

.footer-search button:hover {
  background-color: #333;
}

.footer-sections {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 30px 40px;
  gap: 20px;
  border-bottom: 1px solid #222;
}

.footer-column {
  min-width: 150px;
  margin-bottom: 20px;
  padding-right: 20px;
  border-right: 1px solid #222;
}

.footer-column:last-child {
  border-right: none;
}

.footer-column h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #fff;
  text-transform: uppercase;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s, transform 0.2s;
}

.footer-column ul li a:hover {
  color: #ccc;
  transform: translateX(2px);
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 5px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #222;
  font-size: 14px;
  transition: background 0.3s, transform 0.2s;
}

.footer-social a:hover {
  background-color: #333;
  transform: scale(1.1);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-content: center;
  justify-content: center;
  padding: 10px 20px;
  font-size: 14px;
  color: #aaa;
  border-top: 1px solid #222;
}

.footer-bottom img {
  margin-top: 10px;
  max-width: 60px;
}

.footer-credit {
  background-color: #111;
  text-align: center;
  padding: 10px 20px 50px 20px;
  font-size: 20px;
  color: #fff;
  margin-bottom: 25px;
  border-bottom: 1px solid #222;
}

@media (max-width: 768px) {
  .footer-search form {
    display: flex;
    min-width: 80vw;
    width: 100%;
  }
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .footer-sections {
    flex-wrap: wrap;
  }

  .footer-column {
    width: 48%;
    margin-bottom: 25px;
    padding-right: 10px;
    border-right: none;
  }
}

@media (max-width: 480px) {
  .footer-column {
    width: 100%;
  }
}
