/* Checando os Fatos - Blog CSS */
:root {
  --primary: #000000;        /* Cor principal: preto */
  --text: #111111;           /* Texto principal */
  --text-light: #555555;     /* Texto secundário */
  --border: #e5e5e5;         /* Bordas suaves */
  --bg: #b4cad1;             /* Fundo branco */
  --bg-alt: #f4f4f4;         /* Fundo alternativo */
  --accent: #2b2b2b;         /* Destaques discretos */
}

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

a {
  color: var(--primary);
  text-decoration: underline;
}

a:hover {
  opacity: 0.7;
}

.button {
  background: #000;
  color: #fff;
  border: 1px solid #000;
  padding: 0.6rem 1.2rem;
  font-weight: 600;
  transition: 0.2s;
}

.button:hover {
  background: #fff;
  color: #000;
}

h1, h2, h3 {
  font-weight: 700;
  letter-spacing: -0.5px;
}

h1 {
  font-size: 2.4rem;
}

body {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: linear-gradient(to bottom, #c1cddf, #ffffff);
}

/* Header */
header {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.main-content{
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 1rem 0;
  max-width: 1200px;
  width: 100%;
  background: linear-gradient(to bottom, #ffffff, #ffffff);
}

.container {
  width: 100%;
  max-width: 1200px;  
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding: 0 1rem;
  max-width: 1200px;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--primary);
  transition: color 0.2s;
}

.logo:hover {
  color: var(--accent);
}

.menu-icon {
  display: none;
  font-size: 1.5rem;
}

.header-detective{
  width: 50px;
  height: 50px;
  border-radius: 10%;
  margin-right: 10px;
  float: left;
}

nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
}

nav a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}

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

/* Main Content */
main {
  min-height: 80vh;
  padding: 2rem 0;
}

p {
  margin-bottom: 1rem;
}

/* Video Embed */
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  margin: 2rem 0;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

/* Posts Grid */
.posts-grid {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 10px;
  margin-top: 15px;
}

.post-card {
  background: var(--bg-alt);
  border-radius: 8px;
  padding: 1.5rem;
  border-left: 4px solid var(--primary);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  width: 48%;
  border: 1px solid var(--border);
  margin-bottom: 30px;;
}

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

.post-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.post-card-content {
  padding: 1.5rem;
}

.post-card h2 {
  font-size: 1.2rem;
  line-height: 1.4;
}

.post-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
}

.post-meta {
  color: var(--text-light);
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.category-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--primary);
  color: white;
  border-radius: 16px;
  font-size: 0.75rem;
  margin-right: 0.5rem;
}

/* Newsletter */
.newsletter {
  background: var(--bg-alt);
  padding: 3rem 0;
  margin: 4rem 0;
}

.newsletter-form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  gap: 1rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 1rem;
}

.newsletter-form button {
  padding: 0.75rem 2rem;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  transition: opacity 0.2s;
}

.newsletter-form button:hover {
  opacity: 0.9;
}

/* Footer */
footer {
  background: var(--text);
  color: white;
  padding: 2rem 0;
  margin-top: 4rem;
}

footer a {
  color: white;
}

/* Hero */
.hero {
  text-align: center;
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
}

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

.hero p {
  font-size: 1.2rem;
  color: var(--text-light);
}

.post-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.post-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: var(--bg-alt);
}

.post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-content {
  padding: 1.5rem;
}

.post-meta {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
}

.category-badge {
  background: var(--primary);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  display: inline-block;
}

.post-date {
  color: var(--text-light);
}



/* Categories Grid */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.category-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.2s;
}

.category-card:hover {
  transform: translateY(-2px);
}

.category-card a {
  text-decoration: none;
  color: inherit;
}

.category-card h3 {
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.post-count {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Archive */
.archive-year {
  margin: 2rem 0;
}

.archive-year h2 {
  border-bottom: 2px solid var(--primary);
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
}

.archive-month {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
}

.archive-month h3 {
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.posts-list {
  list-style: none;
}

.posts-list li {
  margin: 0.5rem 0;
}

.posts-list a {
  text-decoration: none;
  color: var(--primary);
  display: flex;
  gap: 1rem;
}

.posts-list a:hover {
  text-decoration: underline;
}

.posts-list .post-date {
  color: var(--text-light);
  min-width: 80px;
}

/* About Page */
.about-page {
  max-width: 800px;
  margin: 0 auto;
}

.about-page header {
  text-align: center;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 2rem;
}

.about-page h1 {
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.1rem;
  color: var(--text-light);
}

.about-content {
  margin: 2rem 0;
  line-height: 1.8;
}

.about-content h2 {
  margin: 1.5rem 0 1rem 0;
  color: var(--primary);
}

.about-content h3 {
  margin: 1rem 0 0.5rem 0;
}

.about-content ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.about-content li {
  margin: 0.5rem 0;
}

.about-contact {
  background: var(--bg-alt);
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 2rem;
  text-align: center;
}

/* Post Footer */
.post-footer {
  margin-top: 3rem;
  padding: 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #f0f0f0 100%);
  border-radius: 12px;
  border-left: 4px solid var(--primary);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.post-footer p {
  margin: 1rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text);
  font-size: 1rem;
}

.post-footer strong {
  font-weight: 600;
  color: var(--primary);
}

.post-footer a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  background-color: rgba(26, 115, 232, 0.1);
  display: inline-block;
}

.post-footer a:hover {
  background-color: var(--primary);
  color: white;
  transform: translateX(2px);
  box-shadow: 0 4px 12px rgba(26, 115, 232, 0.3);
}

/* Botões de Compartilhamento */
.share-buttons {
  margin: 3rem 0;
  padding: 2rem;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border: 2px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.share-title {
  text-align: center;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.share-buttons-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.share-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  padding: 1rem;
  min-width: 80px;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  color: var(--text);
  font-weight: 500;
  font-size: 0.85rem;
}

.share-icon {
  font-size: 1.8rem;
  display: block;
}

.share-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Cores específicas para cada rede social */
.share-whatsapp {
  background-color: rgba(37, 211, 102, 0.1);
  color: #25d366;
  border-color: #25d366;
}

.share-whatsapp:hover {
  background-color: #25d366;
  color: white;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.share-facebook {
  background-color: rgba(59, 89, 152, 0.1);
  color: #3b5998;
  border-color: #3b5998;
}

.share-facebook:hover {
  background-color: #3b5998;
  color: white;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(59, 89, 152, 0.4);
}

.share-twitter {
  background-color: rgba(0, 0, 0, 0.1);
  color: #000;
  border-color: #000;
}

.share-twitter:hover {
  background-color: #000;
  color: white;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.share-linkedin {
  background-color: rgba(0, 119, 181, 0.1);
  color: #0077b5;
  border-color: #0077b5;
}

.share-linkedin:hover {
  background-color: #0077b5;
  color: white;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 119, 181, 0.4);
}

.share-telegram {
  background-color: rgba(0, 136, 204, 0.1);
  color: #0088cc;
  border-color: #0088cc;
}

.share-telegram:hover {
  background-color: #0088cc;
  color: white;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 136, 204, 0.4);
}

.share-pinterest {
  background-color: rgba(189, 8, 28, 0.1);
  color: #bd081c;
  border-color: #bd081c;
}

.share-pinterest:hover {
  background-color: #bd081c;
  color: white;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(189, 8, 28, 0.4);
}

.share-email {
  background-color: rgba(108, 117, 125, 0.1);
  color: #6c757d;
  border-color: #6c757d;
}

.share-email:hover {
  background-color: #6c757d;
  color: white;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(108, 117, 125, 0.4);
}

/* Mobile optimization for post-footer */
@media (max-width: 768px) {
  .post-footer {
    padding: 1.5rem;
    margin-top: 2rem;
  }
  
  .post-footer p {
    flex-direction: column;
    gap: 0.8rem;
  }
}

.no-posts {
  text-align: center;
  padding: 2rem;
  color: var(--text-light);
}

/* Responsive */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  nav ul {
    gap: 1rem;
  }

  .posts-grid {
    grid-template-columns: 1fr;
  }

  .categories-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    flex-direction: column;
  }

  nav {
    flex-direction: column;
    gap: 1rem;
  }

  nav ul {
    flex-direction: column;
    width: 100%;
  }

  /* Responsivo para botões de compartilhamento */
  .share-buttons {
    padding: 1.5rem;
    margin: 2rem 0;
  }

  .share-buttons-container {
    gap: 0.8rem;
  }

  .share-btn {
    min-width: 70px;
    padding: 0.8rem;
    font-size: 0.75rem;
  }

  .share-icon {
    font-size: 1.5rem;
  }

  .share-label {
    font-size: 0.65rem;
  }
}

/* ==================== COMENTÁRIOS ==================== */
.comments-section {
  margin-top: 4rem;
  padding: 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 12px;
  border: 1px solid var(--border);
}

.comments-section h2 {
  color: var(--primary);
  margin-bottom: 2rem;
  font-size: 1.5rem;
}

.comment-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 600;
  color: var(--text);
  font-size: 1rem;
}

.form-control {
  padding: 0.8rem;
  border: 2px solid var(--border);
  border-radius: 6px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.1);
}

.comment-textarea {
  resize: vertical;
  min-height: 120px;
  padding: 1rem;
}

.char-count {
  font-size: 0.85rem;
  color: var(--text-light);
  text-align: right;
}

.btn-submit {
  padding: 0.8rem 2rem;
  background-color: var(--primary);
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.btn-submit:hover {
  background-color: #1665d8;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(26, 115, 232, 0.3);
}

.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.form-status {
  padding: 0.8rem 1rem;
  border-radius: 6px;
  font-weight: 500;
  animation: slideIn 0.3s ease;
}

.form-status-success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-status-error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Seção de Comentários */
.comments-list-section {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid var(--border);
}

.comments-list-section h3 {
  color: var(--text);
  margin-bottom: 2rem;
  font-size: 1.3rem;
}

.comments-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.no-comments {
  text-align: center;
  color: var(--text-light);
  padding: 2rem;
  font-style: italic;
}

.comment-item {
  padding: 1.5rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: all 0.3s ease;
  animation: slideIn 0.5s ease;
}

.comment-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-color: var(--primary);
}

.comment-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  gap: 1rem;
}

.comment-author {
  font-size: 1.05rem;
  color: var(--primary);
  word-break: break-word;
}

.comment-date {
  font-size: 0.85rem;
  color: var(--text-light);
  white-space: nowrap;
}

.comment-content {
  color: var(--text);
  line-height: 1.6;
  word-break: break-word;
}

.comment-content p {
  margin: 0;
  white-space: pre-wrap;
}

/* Responsivo para comentários */
@media (max-width: 768px) {
  .comments-section {
    padding: 1.5rem;
  }

  .form-group {
    gap: 0.4rem;
  }

  .form-control {
    padding: 0.7rem;
    font-size: 16px; /* Previne zoom automático em iOS */
  }

  .comment-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .comment-date {
    font-size: 0.8rem;
  }

  .btn-submit {
    width: 100%;
    align-self: stretch;
  }
}

/* ============================================ */
/* NOVA HOMEPAGE - LAYOUT MELHORADO */
/* ============================================ */

/* Site Header */
.site-header {
  /* background: linear-gradient(to bottom, #ffffff, #4169a7); */
  background: linear-gradient(to bottom, #d4b9a0 5%, #ce6123); /* a0b5d4 | 4169a7*/
  padding-top: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 10px;
}

.header-top {
  margin: 0 auto; 
  padding-left: 10px;
  border-radius: 0px 0px 0px 10px;  
}

.header-text{
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.site-logo {
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  font-size: xx-large;
  font-weight: bold;
  color: rgba(0,0,0,1.0);
  padding-bottom: 2px;
}

.header-logo-section{
  position: relative;
}

.site-tagline {
  position: relative;
  font-size: small;
  top: -10px;
  border-bottom: 0.1px solid rgba(255, 255, 255, 0.212);
}

.main-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 0.75rem; /* antes 1.5rem */
  align-items: center;
  padding: 0;
  margin: 0;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: medium;
  padding: 5px;
}

.main-nav a:hover {
  background-color: rgba(255, 255, 255, 0.973);
  border-radius: 4px;
  transition: all 0.3s ease;
  color: #091a66;
  transform: translateY(-2px);
  box-shadow: none; /* remove sombra */
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  color: var(--text);
  flex-direction: column;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  padding: 0.5rem 0;
  margin-top: 0.5rem;
  gap: 0;
}

.dropdown:hover .dropdown-menu {
  display: flex;
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--text);
  text-decoration: none;
  transition: background 0.2s ease;
}

.dropdown-menu a:hover {
  background: var(--bg-alt);
  opacity: 1;
}

/* featured box */
.featured-box {
  width: 98%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  border-radius: 12px;
  padding: 5px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  border-left: 3px solid rgb(32, 67, 121);
  background: linear-gradient(to right, #a0b5d4 5%, #4169a7); /* a0b5d4 | 4169a7*/
}


/* Featured Banner */
.featured-banner {
  width: 70%;
  height:240px;
  padding: 20px; 
  border-left: 3px solid rgb(32, 67, 121);
  position: relative;
  margin-bottom: 10px;
  border-radius: 12px 0px 0px 12px;
}

.ads-section {
  width: 30%;
  height:240px;
  padding-left: 10px; 
  padding-bottom: 10px;
  padding-right: 10px;
  padding-top: 5px;
  border-left: 3px solid rgb(32, 67, 121);
  position: relative;
  background: linear-gradient(to right, #d4b9a0 5%, #ce6123); /* a0b5d4 | 4169a7*/
  border-radius: 0px 10px 10px 0px;
}

.ads-text{
  color: rgb(0, 0, 0);
  font-size: 1.2rem;
  padding: 10px;
}

.ads-image{
  width:100%;
  max-height:160px;
  object-fit:cover;
  border-radius:8px;
  border: 2px solid rgb(32, 67, 121);
  padding: 1px;
  filter: grayscale(100%);
}

.btn-anuncie {
  display: block;
  width: 100%;
  padding: 0.6rem 0;
  background: #000;
  color: #fff;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid #000;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.btn-anuncie:hover {
  background: #fff;
  color: #000;
}


.featured-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, #4169a7 5%, #a0b5d4);
  border-radius: 12px 0px 0px 12px;
  z-index: 1;
  
}

.featured-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  width: 100%;
}

.featured-text {
  color: white;
}

.featured-title {
  font-size: 2rem;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.featured-date,
.featured-views {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 0.5rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.featured-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

/* Layout Grid */
.layout-grid {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 1px;
}

.main-column {
  width: 70%;
  padding: 10px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  border-radius: 12px 0px 0px 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  border-left: 3px solid rgb(32, 67, 121);
  background: linear-gradient(to right, #4169a7 5%, #a0b5d4); /* a0b5d4 | 4169a7*/
}

/* Trust Section */
.trust-section {
  width: 100%;
  padding: 10px;
}

.trust-section h2 {
  font-size: 1.75rem;
  margin-bottom: 2rem;
  color: var(--text);
}

.trust-items {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  border-radius: 0px 12px 12px 0px;
}

.trust-item {
  width: 32%;
  padding: 10px;
  background-color: white;
  border-radius: 8px;
  border-left: 2px solid var(--primary);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 20px;
  text-align: center;
  font-size: small;
}

.trust-item p {
  font-size: 10px;
}

.trust-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.check {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0.5rem;
}

.trust-item h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.trust-item p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* Recent Posts */
.recent-posts {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  border-top: 1px solid #cccccc;
}

.recent-posts h2 {
  font-size: 1.75rem;
  color: var(--text);
}

.post-image-wrapper {
  margin: -1.5rem -1.5rem 1rem -1.5rem;
  width: calc(100% + 3rem);
  height: 180px;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
}

.post-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.post-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-light);
}

.post-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.tag {
  display: inline-block;
  background: white;
  color: var(--primary);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  border: 1px solid var(--primary);
}

.read-more {
  display: inline-block;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: #1557b0;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary {
  background: var(--primary);
  color: white;
}

.btn-primary:hover {
  background: #1557b0;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(26, 115, 232, 0.3);
}

.btn-secondary {
  background: var(--bg-alt);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: var(--border);
}

.btn-small {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

.btn-block {
  width: 100%;
}

/* Sidebar */
.sidebar {
  display: flex;
  flex-direction: column;
  width: 30%;
  padding: 10px;
  border-left: 3px solid rgb(32, 67, 121);
  background: linear-gradient(to right, #a0b5d4 5%, #4169a7); /* a0b5d4 | 4169a7*/
  border-radius: 0px 12px 12px 0px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15); 
  gap: 1rem;
}

.sidebar-widget {
  background: white;
  border-radius: 6px;
  padding: 10px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.sidebar-widget h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--text);
  font-weight: 700;
}

.sidebar-widget p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

/* Most Read Widget */
.most-read ul {
  list-style: none;
}

.most-read li {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.most-read li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.most-read a {
  color: var(--text);
  text-decoration: none;
  display: block;
  transition: color 0.3s ease;
}

.most-read a:hover {
  color: var(--primary);
}

.most-read strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.view-count {
  display: block;
  font-size: 0.8rem;
  color: var(--text-light);
}

/* Newsletter Widget */
.newsletter-form,
.ask-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.newsletter-input,
.ask-textarea {
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.newsletter-input:focus,
.ask-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.1);
}

.ask-textarea {
  resize: vertical;
  min-height: 100px;
}

.char-counter {
  display: block;
  font-size: 0.8rem;
  color: var(--text-light);
  text-align: right;
}

.newsletter-status,
.ask-status {
  font-size: 0.85rem;
  margin-top: 0.5rem;
  padding: 0.5rem;
  border-radius: 4px;
  display: none;
}

.newsletter-status.success,
.ask-status.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  display: block;
}

.newsletter-status.error,
.ask-status.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  display: block;
}

/* Essential Reads Widget */
.essential-list {
  list-style: none;
}

.essential-keyword {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.keyword-badge {
  background: var(--primary);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.keyword-weight {
  color: var(--text-light);
  font-size: 0.85rem;
}

.essential-sub {
  list-style: none;
  margin-bottom: 1rem;
  padding-left: 0;
}

.essential-sub li {
  margin-bottom: 0.5rem;
}

.essential-sub a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
  display: block;
}

.essential-sub a:hover {
  color: var(--primary);
}

/* Support Widget */
.support-widget .btn {
  width: 100%;
}

/* About Section */
.about-section {
  background: white;
  border-radius: 0px 12px 12px 12px;
  padding: 3rem;
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
  margin: 20px;
  border-bottom: 2px solid rgb(32, 67, 121);
  border-left: 4px solid rgb(32, 67, 121);
}

.about-content h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.about-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.about-content strong {
  color: var(--text);
  font-weight: 600;
}

.about-content em {
  font-style: italic;
  color: var(--primary);
}

/* Transparency Section */
.transparency-section {
  /* background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%); */
  background: linear-gradient(to bottom, #d4b9a0 5%, #ce6123); /* a0b5d4 | 4169a7*/
  border-radius: 12px;
  padding: 2rem;
  border-left: 4px solid var(--primary);
  margin-left: 20px;
  margin-right: 20px;
  margin-bottom: 20px
}

.transparency-notice {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text);
  margin: 0;
}

/* Footer */
.site-footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to bottom, #ffffff 5%, #4169a7); /* a0b5d4 | 4169a7*/
  padding: 20px;
}

.footer-content {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 10px;
  margin-bottom: 2rem;
}

.footer-section h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--text);
}

.footer-section p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.footer-links,
.footer-section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a,
.footer-section a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-section a:hover {
  color: var(--primary);
}

.footer-bottom {
  width: 100%;;
  border-top: 2px solid var(--border);
  padding-top: 2rem;
  text-align: center;
  color: #ffffff;
  font-size: 0.9rem;
  font-size: small;
}

.transparency-footer {
  font-size: 0.85rem;
  margin-top: 0.5rem;
  color: #adbac4;
}

/* Responsivo */
@media (max-width: 768px) {
  .site-logo {
    font-size: 1.75rem;
  }

  .site-tagline {
    font-size: 0.95rem;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }

  .featured-banner {
    grid-template-columns: 1fr;
    padding: 2rem;
    min-height: 250px;
  }

  .featured-content {
    grid-template-columns: 1fr;
  }

  .featured-title {
    font-size: 1.5rem;
  }

  .layout-grid {
    grid-template-columns: 1fr;
  }

  .trust-items {
    grid-template-columns: 1fr;
  }

  .posts-grid {
    grid-template-columns: 1fr;
  }

  .about-section {
    padding: 1.5rem;
  }

  .about-content h2 {
    font-size: 1.5rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }
}



