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

body {
    font-family: 'Open Sans', sans-serif;
    color: #444;
    background: #fff;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Raleway', sans-serif;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

a { text-decoration: none; color: inherit; }

/* ---------- NAVBAR ---------- */
/* ---------- NAVBAR (versão sólida e fixa, compatível com a home) ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #1d1d1d; /* fundo sólido */
  color: white;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo img {
  height: 50px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 25px;
}

nav ul li a {
  color: white;
  font-weight: 600;
  transition: color 0.3s;
}

nav ul li a:hover,
nav ul li a.active {
  color: #f9b233;
}

/* Garante espaçamento apenas nas páginas que não têm hero fullscreen */
body:not(.home) {
  padding-top: 80px;
}


/* ---------- HERO ---------- */
.hero {
    height: 100vh;
    background: linear-gradient(to right, #36a9e1, #5cc3f1);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.25);
}

.hero-text {
    z-index: 2;
    max-width: 700px;
    animation: fadeIn 1.5s ease;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 24px;
    animation: bounce 2s infinite;
    z-index: 2;
}

@keyframes fadeIn { from { opacity: 0; transform: translateY(20px);} to { opacity: 1; transform: translateY(0);} }
@keyframes bounce { 0%,20%,50%,80%,100% {transform:translateY(0);} 40% {transform:translateY(-10px);} 60% {transform:translateY(-5px);} }

/* ---------- BOTÕES ---------- */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 3px 15px rgba(0,0,0,0.2);
}

.btn-primary {
    background: #f9b233;
    color: #1d1d1d;
}
.btn-primary:hover {
    background: #ffc85a;
}

.btn-outline {
    border: 2px solid #36a9e1;
    color: #36a9e1;
}
.btn-outline:hover {
    background: #36a9e1;
    color: white;
}

/* ---------- SEÇÕES ---------- */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-header p {
    color: #36a9e1;
    font-weight: 700;
    letter-spacing: 1px;
}
.section-header h2 {
    font-size: 2rem;
}

/* ---------- SOBRE ---------- */
.sobre {
    background: #e8f5fd;
}

.sobre-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
    align-items: center;
}

.sobre-text h3 { margin-bottom: 15px; color: #333; }

.read-more {
    color: #36a9e1;
    font-weight: 600;
    display: inline-block;
    margin-top: 10px;
}
.read-more:hover { text-decoration: underline; }

.sobre-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}
.feature-card i {
    font-size: 30px;
    color: #36a9e1;
    margin-bottom: 10px;
}
.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* ---------- CARDS GENÉRICOS ---------- */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
    gap: 30px;
}

.card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.card-body {
    padding: 20px;
}
.card-body h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}
.card-body p {
    font-size: 0.95rem;
    color: #666;
}

.center-btn {
    text-align: center;
    margin-top: 40px;
}

/* ---------- FOOTER ---------- */
footer {
    background: #1d1d1d;
    color: white;
    padding: 60px 20px 30px;
}
.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 40px;
    flex-wrap: wrap;
}
.footer-info img {
    height: 60px;
    margin-bottom: 15px;
}
.footer-info p {
    max-width: 500px;
    color: #ccc;
    font-size: 0.95rem;
}
.footer-parceiros h4 {
    color: #f9b233;
    margin-bottom: 10px;
}
.footer-parceiros img {
    max-width: 250px;
}
.copyright {
    text-align: center;
    border-top: 1px solid #333;
    margin-top: 40px;
    padding-top: 20px;
    font-size: 0.9rem;
    color: #999;
}

/* ---------- RESPONSIVIDADE ---------- */
@media (max-width: 900px) {
    .sobre-grid {
        grid-template-columns: 1fr;
    }
    nav ul { flex-wrap: wrap; justify-content: center; }
    .hero h1 { font-size: 2rem; }
}

/* ----------- SOBRE ----------- */
.about-intro {
  background: #f9f9f9;
  padding: 80px 0;
}
.about-intro h1 {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 20px;
  color: #333;
}
.about-intro p {
  margin-bottom: 15px;
  font-size: 1.05rem;
  color: #555;
}
.container.narrow {
  max-width: 800px;
}

/* ----------- MISSÃO / VISÃO / VALORES ----------- */
.missao-visao-valores {
  background: #e8f5fd;
  padding: 100px 0;
}
.feature i,
.feature .fa {
  font-size: 30px;
  color: #36a9e1;
  margin-bottom: 10px;
}
.feature ul {
  list-style: disc;
  margin-left: 20px;
  text-align: left;
}
.feature ul li {
  margin-bottom: 8px;
  color: #555;
}

/* ----------- PARCERIAS ----------- */
.parcerias {
  background: #f9f9f9;
  padding: 100px 0;
}
.partner {
  text-align: center;
}
.partner img {
  height: 100px;
  object-fit: contain;
  margin-bottom: 15px;
  filter: grayscale(20%);
  transition: filter 0.3s;
}
.partner img:hover {
  filter: grayscale(0%);
}

/* ----------- EQUIPE ----------- */
.team {
  background: #fff;
  padding: 100px 0;
}
.team .intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
  font-size: 1.05rem;
  color: #555;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  justify-items: center;
}
.member {
  text-align: center;
}
.member img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 100%;
  margin-bottom: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.member h4 {
  color: #36a9e1;
  margin-bottom: 10px;
}
.member p {
  font-size: 0.95rem;
  color: #666;
}

/* ----------- AJUSTE RESPONSIVO ----------- */
@media (max-width: 768px) {
  .about-intro,
  .missao-visao-valores,
  .parcerias,
  .team {
    padding: 60px 0;
  }
}

/* Centralização dos emojis e títulos em Missão/Visão/Valores */
.feature {
  text-align: center;
}
.feature .emoji {
  font-size: 40px;
  margin-bottom: 10px;
}
.feature h4 {
  color: #36a9e1;
  margin-bottom: 15px;
}

/* Ajustes dos blocos de equipe */
.team-member {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
  margin-bottom: 50px;
}
.team-member-image img {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}
.team-member-bio {
  flex: 1;
  min-width: 250px;
}
.team-member-bio h3 {
  color: #36a9e1;
  margin-bottom: 10px;
}
.subtitulo {
  text-align: center;
  font-size: 1.5rem;
  margin: 60px 0 30px;
  color: #333;
}

/* Ajustes responsivos */
@media (max-width: 768px) {
  .team-member {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .team-member-bio {
    text-align: center;
  }
}

/* ----------- MISSÃO / VISÃO / VALORES (layout vertical) ----------- */
.missao-visao-valores {
  background: #e8f5fd;
  padding: 80px 0;
}

.mvv-item {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  margin-bottom: 60px;
}

.mvv-icon {
  background: #36a9e1;
  color: white;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.mvv-content h2 {
  color: #1d1d1d;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  margin-bottom: 15px;
}

.mvv-content p,
.mvv-content ul {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.6;
}

.mvv-content ul {
  list-style: disc;
  margin-left: 20px;
}

/* Responsividade */
@media (max-width: 768px) {
  .mvv-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .mvv-icon {
    margin-bottom: 15px;
  }
  .mvv-content ul {
    text-align: left;
  }
}
/* --- Ajuste: reduzir espaço entre Missão / Visão / Valores --- */
.missao-visao-valores {
  padding: 50px 0; /* antes era 80px */
}

.mvv-item {
  margin-bottom: 35px; /* antes era 60px */
}

/* --- Ajuste: reduzir o espaçamento superior da seção "O Observatório" --- */
.about-intro {
  padding-top: 40px; /* antes era 80px */
}

/* --- Compensar o cabeçalho fixo para começar o conteúdo mais próximo --- */
main {
  padding-top: 90px !important; /* substitui o 120px inline anterior */
}
/* ----------- DADOS E FERRAMENTAS ----------- */
.dados-intro {
  background: #e8f5fd;
  padding: 80px 0;
}
.dados-intro h1 {
  font-size: 2rem;
  font-family: 'Raleway', sans-serif;
  margin-bottom: 20px;
  color: #1d1d1d;
}
.dados-intro p {
  color: #555;
  font-size: 1.05rem;
  margin-bottom: 15px;
}

/* ----------- COMO OS DADOS AJUDAM ----------- */
.dados-ajuda {
  background: #fff;
  padding: 100px 0;
}
.ajuda-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.ajuda-card {
  background: #f9f9f9;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}
.ajuda-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}
.ajuda-card i {
  font-size: 36px;
  color: #36a9e1;
  margin-bottom: 15px;
}
.ajuda-card h4 {
  color: #1d1d1d;
  margin-bottom: 10px;
}
.ajuda-card p {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}

/* ----------- FONTES DE DADOS ----------- */
.dados-fontes {
  background: #e8f5fd;
  padding: 100px 0;
}
.fontes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.fonte-item {
  text-align: center;
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}
.fonte-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}
.fonte-item i {
  font-size: 34px;
  color: #36a9e1;
  margin-bottom: 10px;
}
.fonte-item h4 {
  margin-bottom: 8px;
  color: #1d1d1d;
}
.fonte-item p {
  color: #555;
  font-size: 0.95rem;
}

/* ----------- LINKS (Monitoramento e Dashboard) ----------- */
.dados-links {
  background: #fff;
  padding: 100px 0;
  text-align: center;
}
.links-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}
.btn-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #36a9e1;
  color: white;
  padding: 18px 35px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.btn-link:hover {
  background: #2f90c9;
  transform: translateY(-3px);
}
.btn-link i {
  font-size: 20px;
}

/* ----------- Responsividade ----------- */
@media (max-width: 768px) {
  .dados-intro,
  .dados-ajuda,
  .dados-fontes,
  .dados-links {
    padding: 60px 0;
  }
  .links-grid {
    flex-direction: column;
  }
}
/* ----------- MONITORAMENTO E DASHBOARD ----------- */
.monitoramento-intro,
.dashboard-intro {
  background: #e8f5fd;
  padding: 80px 0;
}
.monitoramento-intro h1,
.dashboard-intro h1 {
  font-size: 2rem;
  font-family: 'Raleway', sans-serif;
  margin-bottom: 20px;
  color: #1d1d1d;
}
.monitoramento-intro p,
.dashboard-intro p {
  color: #555;
  font-size: 1.05rem;
  margin-bottom: 15px;
  line-height: 1.7;
}

.monitoramento-placeholder,
.dashboard-placeholder {
  background: #fff;
  padding: 100px 0;
  text-align: center;
}

.placeholder-box {
  background: #f9f9f9;
  border-radius: 16px;
  padding: 80px 30px;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.placeholder-box i {
  font-size: 48px;
  color: #36a9e1;
  margin-bottom: 15px;
}
.placeholder-box p {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .monitoramento-intro,
  .dashboard-intro {
    padding: 60px 0;
  }
  .placeholder-box {
    padding: 60px 20px;
  }
}
/* ----------- BOTÃO VOLTAR ----------- */
.btn-voltar {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #36a9e1;
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  margin: 15px 0 25px 0;
  transition: all 0.3s ease;
}
.btn-voltar i {
  font-size: 14px;
}
.btn-voltar:hover {
  background: #2f90c9;
  transform: translateY(-2px);
}
/* ----------- MAPA DE MONITORAMENTO ----------- */
.monitoramento-mapa {
  background: #fff;
  padding: 100px 0;
}

#map {
  height: 500px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
}

#loading {
  text-align: center;
  padding: 10px;
  font-weight: 600;
  color: #555;
}

#error-message {
  text-align: center;
  color: #d9534f;
  font-weight: 600;
}

/* CARDS DAS ESTAÇÕES */
#stations-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 20px;
}

.station-card {
  background: #f9f9f9;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.station-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.station-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.aqi-indicator {
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 10px;
  font-size: 0.9rem;
  color: #fff;
}

.aqi-indicator.good { background: #00e400; }
.aqi-indicator.moderate { background: #ffff00; color: #333; }
.aqi-indicator.unhealthy-sensitive { background: #ff7e00; }
.aqi-indicator.unhealthy { background: #ff0000; }
.aqi-indicator.very-unhealthy { background: #8f3f97; }
.aqi-indicator.hazardous { background: #7e0023; }
.aqi-indicator.unknown { background: #666666; }

.data-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  margin: 2px 0;
}

.station-timestamp {
  font-size: 0.85rem;
  color: #777;
  margin-top: 8px;
}

@media (max-width: 768px) {
  #map {
    height: 380px;
  }
}
/* ----------- DASHBOARD EMBED ----------- */
.dashboard-section {
  background: #fff;
  padding: 100px 0;
}

.dashboard-container {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.dashboard-container iframe {
  width: 100%;
  height: 800px;
  border-radius: 16px;
  border: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.dashboard-fallback {
  text-align: center;
  margin-top: 15px;
  font-size: 0.9rem;
  color: #666;
}

.dashboard-fallback a {
  color: #36a9e1;
  text-decoration: none;
  font-weight: 600;
}

.dashboard-fallback a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .dashboard-container iframe {
    height: 600px;
  }
}
/* ----------- TEXTO INTRODUTÓRIO DO DASHBOARD ----------- */
.dashboard-intro-text {
  max-width: 900px;
  margin: 0 auto 40px auto;
  text-align: center;
  color: #555;
  font-size: 1.05rem;
  line-height: 1.8;
}
.dashboard-intro-text strong {
  color: #1d1d1d;
}
/* ----------- NOTÍCIAS ----------- */
.news-intro {
  background: #e8f5fd;
  padding: 100px 0 60px;
  text-align: center;
}
.news-intro h1 {
  font-family: 'Raleway', sans-serif;
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: #1d1d1d;
}
.news-subtext {
  color: #555;
  font-size: 1.1rem;
  margin-top: 15px;
}

.news-listing {
  background: #fff;
  padding: 80px 0;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
}

.news-card {
  background: #f9f9f9;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}
.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}
.news-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.news-content {
  padding: 20px;
}
.news-date {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 8px;
}
.news-date i {
  margin-right: 5px;
  color: #36a9e1;
}
.news-content h3 a {
  font-size: 1.1rem;
  color: #1d1d1d;
  text-decoration: none;
  font-weight: 600;
  line-height: 1.4;
}
.news-content h3 a:hover {
  color: #2f90c9;
}
.news-content p {
  color: #555;
  margin: 10px 0 15px;
  font-size: 0.95rem;
  line-height: 1.6;
}
.read-more {
  color: #36a9e1;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}
.read-more:hover {
  color: #2f90c9;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .news-intro {
    padding: 60px 0;
  }
  .news-grid {
    gap: 25px;
  }
}
/* ----------- CONTATO ----------- */
.contact-intro {
  background: #e8f5fd;
  padding: 100px 0 60px;
  text-align: center;
}
.contact-intro h1 {
  font-family: 'Raleway', sans-serif;
  font-size: 2.2rem;
  color: #1d1d1d;
}
.contact-subtext {
  color: #555;
  font-size: 1.1rem;
  margin-top: 15px;
}

.contact-section {
  background: #fff;
  padding: 80px 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  align-items: flex-start;
}
.contact-form label {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
  display: block;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #36a9e1;
  outline: none;
}
.contact-form .form-row {
  display: flex;
  gap: 15px;
}
.contact-form .half-width {
  flex: 1;
}
.btn-enviar {
  background: #36a9e1;
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-enviar:hover {
  background: #2f90c9;
  transform: translateY(-2px);
}

/* INFORMAÇÕES DE CONTATO */
.contact-info h3 {
  font-family: 'Raleway', sans-serif;
  margin-bottom: 25px;
}
.info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}
.info-item i {
  font-size: 24px;
  color: #36a9e1;
  margin-top: 4px;
}
.info-item h4 {
  margin-bottom: 5px;
  color: #1d1d1d;
}
.info-item p,
.info-item a {
  color: #555;
  text-decoration: none;
  font-size: 0.95rem;
}
.info-item a:hover {
  color: #2f90c9;
}

/* MAPA */
.contact-map {
  background: #e8f5fd;
  padding: 100px 0;
  text-align: center;
}
.map-container {
  margin-top: 30px;
  border-radius: 16px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-intro {
    padding: 60px 0;
  }
  .contact-map {
    padding: 60px 0;
  }
}
/* ----------- NOTÍCIA INDIVIDUAL ----------- */
.article-hero img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.article-section {
  background: #fff;
  padding: 80px 0;
}

.article-section h1 {
  font-family: 'Raleway', sans-serif;
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: #1d1d1d;
}

.article-meta {
  color: #777;
  font-size: 0.9rem;
  margin-bottom: 30px;
}

.article-lead {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 25px;
}

.article-section p {
  color: #444;
  margin-bottom: 20px;
  line-height: 1.8;
}

.article-inline-image {
  margin: 40px 0;
  text-align: center;
}
.article-inline-image img {
  width: 100%;
  max-width: 800px;
  border-radius: 10px;
}
.article-inline-image figcaption {
  font-size: 0.9rem;
  color: #666;
  margin-top: 8px;
}

.article-links li {
  margin-bottom: 8px;
}
.article-links a {
  color: #36a9e1;
  text-decoration: none;
}
.article-links a:hover {
  text-decoration: underline;
}

.back-to-news {
  margin-top: 40px;
}
.btn-secondary {
  background: #e8f5fd;
  color: #036;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-secondary:hover {
  background: #36a9e1;
  color: #fff;
}
/* ==== ESTILO PARA CITAÇÕES NAS NOTÍCIAS ==== */

.article-section blockquote {
  position: relative;
  margin: 40px auto;
  padding: 25px 35px;
  border-left: 4px solid #0073e6; /* Azul institucional */
  background: #f8fbff;
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.article-section blockquote::before {
  content: "“";
  position: absolute;
  top: -20px;
  left: 10px;
  font-size: 4rem;
  color: #0073e6;
  opacity: 0.2;
  line-height: 1;
}

.article-section blockquote::after {
  content: "”";
  position: absolute;
  bottom: -20px;
  right: 15px;
  font-size: 4rem;
  color: #0073e6;
  opacity: 0.2;
  line-height: 1;
}

.article-section blockquote cite {
  display: block;
  margin-top: 10px;
  font-size: 0.95rem;
  font-style: normal;
  text-align: right;
  color: #0073e6;
  font-weight: 600;
}

