/* ================================
   LATWAN BLOG PROFESSIONAL STYLES
   ================================ */

/* Reset para links - remove o azul padrão */
a {
  color: var(--bs-white);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--bs-hover-color);
  text-decoration: none;
}

/* Estilos específicos do hero do blog */
.blog-hero {
  background: linear-gradient(135deg, rgba(12, 2, 5, 0.95) 0%, rgba(29, 31, 33, 0.9) 100%);
  min-height: 60vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.blog-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(237, 42, 94, 0.1) 0%, transparent 70%);
  z-index: 1;
}

.blog-hero .container {
  position: relative;
  z-index: 2;
}

.blog-hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #fff 0%, #dedede 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.blog-hero h2 {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
  margin-bottom: 2rem;
}

/* Contadores do blog hero */
.bg-counts {
  background: linear-gradient(135deg, rgba(44, 35, 37, 0.8) 0%, rgba(29, 31, 33, 0.9) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2rem;
  margin-top: 3rem;
}

.count-box {
  text-align: center;
  padding: 1rem 0;
}

.count-box .purecounter {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--bs-white);
  display: block;
}

.count-box .pre-text {
  color: var(--bs-hover-color);
  font-size: 2.5rem;
  font-weight: 700;
}

.count-box p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Counter display para manter + e número na mesma linha */
.counter-display {
  display: block;
  white-space: nowrap;
  line-height: 1;
}

.counter-display .pre-text,
.counter-display .purecounter {
  display: inline;
  vertical-align: baseline;
}

/* Seção principal do blog */
.blog-content {
  background: var(--bg-main-color);
  padding: 4rem 0;
  min-height: calc(100vh - 60vh);
}

/* Grid de posts */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

/* Cards dos posts */
.post-card {
  background: linear-gradient(135deg, rgba(29, 31, 33, 0.9) 0%, rgba(44, 35, 37, 0.8) 100%);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.post-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(237, 42, 94, 0.05) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(237, 42, 94, 0.3);
}

.post-card:hover::before {
  opacity: 1;
}

.post-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.post-card:hover img {
  transform: scale(1.05);
}

/* Melhorar usabilidade dos links de imagem */
.post-card > a {
  display: block;
  text-decoration: none;
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
}

.post-card > a:hover {
  text-decoration: none;
}

.post-card > a img {
  border-radius: 0; /* Remove border-radius da imagem pois o link já tem */
  transition: all 0.3s ease;
}

.post-card > a:hover img {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.post-card-content {
  padding: 1.5rem;
}

.post-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.post-card-title a {
  color: var(--bs-white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.post-card-title a:hover {
  color: var(--bs-hover-color);
}

.post-card-excerpt {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.post-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.post-card-date {
  color: rgba(255, 255, 255, 0.6);
}

.post-card-category {
  background: linear-gradient(135deg, var(--bs-hover-color) 0%, rgba(237, 42, 94, 0.8) 100%);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.post-card-category:hover {
  background: linear-gradient(135deg, rgba(237, 42, 94, 0.9) 0%, var(--bs-hover-color) 100%);
  transform: scale(1.05);
  color: white;
}

/* Sidebar */
.blog-sidebar {
  background: linear-gradient(135deg, rgba(29, 31, 33, 0.9) 0%, rgba(44, 35, 37, 0.8) 100%);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: fit-content;
  position: sticky;
  top: 2rem;
}

.sidebar-widget {
  margin-bottom: 2.5rem;
}

.sidebar-widget:last-child {
  margin-bottom: 0;
}

.sidebar-widget h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--bs-white);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--bs-hover-color);
  position: relative;
}

.sidebar-widget h3::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 30%;
  height: 2px;
  background: linear-gradient(90deg, var(--bs-hover-color) 0%, transparent 100%);
}

/* Posts recentes na sidebar */
.recent-posts {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.recent-post {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.recent-post:hover {
  background: rgba(255, 255, 255, 0.08);
  border-left-color: var(--bs-hover-color);
  transform: translateX(5px);
}

.recent-post h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.recent-post h4 a {
  color: var(--bs-white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.recent-post h4 a:hover {
  color: var(--bs-hover-color);
}

.recent-post .post-date {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Categorias na sidebar */
.categories {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.category-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  border-left: 3px solid transparent;
}

.category-link:hover {
  background: rgba(237, 42, 94, 0.1);
  border-left-color: var(--bs-hover-color);
  color: var(--bs-white);
  transform: translateX(5px);
}

/* Newsletter widget */
.newsletter-widget {
  background: linear-gradient(135deg, rgba(237, 42, 94, 0.1) 0%, rgba(237, 42, 94, 0.05) 100%);
  border: 1px solid rgba(237, 42, 94, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
}

.newsletter-widget h3 {
  color: var(--bs-hover-color);
  border-bottom-color: var(--bs-hover-color);
}

.newsletter-widget p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.newsletter-form input {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--bs-white);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--bs-hover-color);
  box-shadow: 0 0 0 3px rgba(237, 42, 94, 0.1);
}

.newsletter-form button {
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, var(--bs-hover-color) 0%, rgba(237, 42, 94, 0.8) 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.newsletter-form button:hover {
  background: linear-gradient(135deg, rgba(237, 42, 94, 0.9) 0%, var(--bs-hover-color) 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(237, 42, 94, 0.3);
}

/* Paginação */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 3rem;
  padding: 0;
  list-style: none;
}

.page-item {
  display: inline-block;
}

.page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  color: var(--bs-white);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-weight: 500;
  min-width: 44px;
  height: 44px;
}

.page-link:hover {
  background: var(--bs-hover-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(237, 42, 94, 0.3);
}

.page-item.active .page-link {
  background: linear-gradient(135deg, var(--bs-hover-color) 0%, rgba(237, 42, 94, 0.8) 100%);
  color: white;
  box-shadow: 0 5px 15px rgba(237, 42, 94, 0.3);
}

/* Responsividade */
@media (max-width: 1200px) {
  .blog-sidebar {
    margin-top: 3rem;
  }
}

@media (max-width: 992px) {
  .blog-hero h1 {
    font-size: 2.5rem;
  }
  
  .posts-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
  }
  
  .bg-counts {
    padding: 1.5rem;
    margin-top: 2rem;
  }
  
  .count-box .purecounter,
  .count-box .pre-text {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .blog-hero {
    min-height: 50vh;
    text-align: center;
  }
  
  .blog-hero h1 {
    font-size: 2rem;
  }
  
  .blog-hero h2 {
    font-size: 1.1rem;
  }
  
  .posts-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .blog-content {
    padding: 2rem 0;
  }
  
  .blog-sidebar {
    margin-top: 2rem;
    padding: 1.5rem;
  }
  
  .count-box .purecounter,
  .count-box .pre-text {
    font-size: 1.8rem;
  }
  
  .pagination {
    flex-wrap: wrap;
    gap: 0.25rem;
  }
  
  .page-link {
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
    min-width: 38px;
    height: 38px;
  }
}

@media (max-width: 480px) {
  .blog-hero h1 {
    font-size: 1.8rem;
  }
  
  .post-card-content {
    padding: 1rem;
  }
  
  .post-card-title {
    font-size: 1.1rem;
  }
  
  .bg-counts {
    padding: 1rem;
  }
  
  .count-box .purecounter,
  .count-box .pre-text {
    font-size: 1.5rem;
  }
  
  /* Decoração em mobile */
  .blog-footer-decoration {
    padding: 1rem 0;
  }
  
  .blog-decoration-wrapper {
    height: 120px;
  }
  
  .particle {
    opacity: 0.3;
  }
  
  .particle-1, .particle-2, .particle-3 {
    display: block;
  }
  
  .particle-4, .particle-5, .particle-6 {
    display: none;
  }
}

/* Animações suaves */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.post-card {
  animation: fadeInUp 0.6s ease forwards;
}

.post-card:nth-child(1) { animation-delay: 0.1s; }
.post-card:nth-child(2) { animation-delay: 0.2s; }
.post-card:nth-child(3) { animation-delay: 0.3s; }
.post-card:nth-child(4) { animation-delay: 0.4s; }

/* Estados de carregamento */
.blog-content {
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.3s forwards;
}

/* Decoração acima do footer (similar ao site principal) */
.blog-footer-decoration {
  background: var(--bg-main-color);
  padding: 2rem 0;
  position: relative;
  overflow: hidden;
}

.blog-decoration-wrapper {
  position: relative;
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-particles-animation {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.particle {
  position: absolute;
  background: var(--bs-hover-color);
  border-radius: 50%;
  opacity: 0.6;
}

.particle-1 {
  width: 4px;
  height: 4px;
  top: 20%;
  left: 10%;
  animation: blogFloatParticle1 8s ease-in-out infinite;
}

.particle-2 {
  width: 6px;
  height: 6px;
  top: 60%;
  left: 25%;
  background: rgba(255, 255, 255, 0.4);
  animation: blogFloatParticle2 10s ease-in-out infinite;
}

.particle-3 {
  width: 3px;
  height: 3px;
  top: 30%;
  right: 20%;
  animation: blogFloatParticle3 12s ease-in-out infinite;
}

.particle-4 {
  width: 5px;
  height: 5px;
  top: 70%;
  right: 15%;
  background: rgba(255, 255, 255, 0.3);
  animation: blogFloatParticle4 9s ease-in-out infinite;
}

.particle-5 {
  width: 2px;
  height: 2px;
  top: 50%;
  left: 50%;
  animation: blogFloatParticle5 11s ease-in-out infinite;
}

.particle-6 {
  width: 4px;
  height: 4px;
  top: 80%;
  left: 75%;
  background: rgba(255, 255, 255, 0.5);
  animation: blogFloatParticle6 7s ease-in-out infinite;
}

@keyframes blogFloatParticle1 {
  0%, 100% { transform: translateY(0px) translateX(0px) scale(1); opacity: 0.6; }
  25% { transform: translateY(-15px) translateX(10px) scale(1.2); opacity: 0.8; }
  50% { transform: translateY(-8px) translateX(-5px) scale(0.8); opacity: 0.4; }
  75% { transform: translateY(-20px) translateX(15px) scale(1.1); opacity: 0.7; }
}

@keyframes blogFloatParticle2 {
  0%, 100% { transform: translateY(0px) translateX(0px) scale(1); opacity: 0.4; }
  30% { transform: translateY(-10px) translateX(-8px) scale(1.3); opacity: 0.6; }
  60% { transform: translateY(-25px) translateX(12px) scale(0.9); opacity: 0.3; }
  80% { transform: translateY(-5px) translateX(-3px) scale(1.1); opacity: 0.5; }
}

@keyframes blogFloatParticle3 {
  0%, 100% { transform: translateY(0px) translateX(0px) scale(1); opacity: 0.6; }
  20% { transform: translateY(-18px) translateX(-12px) scale(1.4); opacity: 0.8; }
  40% { transform: translateY(-3px) translateX(8px) scale(0.7); opacity: 0.4; }
  70% { transform: translateY(-12px) translateX(-6px) scale(1.2); opacity: 0.7; }
}

@keyframes blogFloatParticle4 {
  0%, 100% { transform: translateY(0px) translateX(0px) scale(1); opacity: 0.3; }
  35% { transform: translateY(-22px) translateX(6px) scale(1.1); opacity: 0.5; }
  65% { transform: translateY(-8px) translateX(-10px) scale(0.9); opacity: 0.2; }
  85% { transform: translateY(-15px) translateX(4px) scale(1.3); opacity: 0.4; }
}

@keyframes blogFloatParticle5 {
  0%, 100% { transform: translateY(0px) translateX(0px) scale(1); opacity: 0.6; }
  25% { transform: translateY(-12px) translateX(14px) scale(1.5); opacity: 0.8; }
  55% { transform: translateY(-28px) translateX(-8px) scale(0.6); opacity: 0.4; }
  75% { transform: translateY(-6px) translateX(20px) scale(1.2); opacity: 0.7; }
}

@keyframes blogFloatParticle6 {
  0%, 100% { transform: translateY(0px) translateX(0px) scale(1); opacity: 0.5; }
  40% { transform: translateY(-16px) translateX(-15px) scale(1.3); opacity: 0.7; }
  70% { transform: translateY(-4px) translateX(8px) scale(0.8); opacity: 0.3; }
  90% { transform: translateY(-20px) translateX(-2px) scale(1.1); opacity: 0.6; }
}

/* Melhorias de acessibilidade */
.post-card:focus-within {
  outline: 2px solid var(--bs-hover-color);
  outline-offset: 2px;
}

.page-link:focus {
  outline: 2px solid var(--bs-hover-color);
  outline-offset: 2px;
}

/* Efeitos de hover refinados */
.recent-post,
.category-link {
  position: relative;
  overflow: hidden;
}

.recent-post::before,
.category-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(237, 42, 94, 0.1), transparent);
  transition: left 0.5s ease;
}

.recent-post:hover::before,
.category-link:hover::before {
  left: 100%;
} 

/* =================================
   BLOG NAVIGATION FIXES
   ================================= */

/* Enhanced fix for ALL pages - blog, posts, categories */
body.coverage-brazil .navbar ul li:not(.dropdown) > a.nav-link.scrollto,
.blog-post .navbar ul li:not(.dropdown) > a.nav-link.scrollto,
.category-content .navbar ul li:not(.dropdown) > a.nav-link.scrollto,
.navbar ul li:not(.dropdown) > a.nav-link.scrollto {
  /* Override Bootstrap nav-link styles that leak into our design */
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  
  /* Ensure consistent styling with dropdown links */
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 10px 0 10px 30px !important;
  text-transform: uppercase !important;
  font-size: 16px !important;
  line-height: 16px !important;
  letter-spacing: -2% !important;
  font-weight: 700 !important;
  color: var(--bs-white) !important;
  white-space: nowrap !important;
  text-decoration: none !important;
}

/* Enhanced hover state for non-dropdown nav links */
body.coverage-brazil .navbar ul li:not(.dropdown) > a.nav-link.scrollto:hover,
body.coverage-brazil .navbar ul li:not(.dropdown) > a.nav-link.scrollto:focus,
.blog-post .navbar ul li:not(.dropdown) > a.nav-link.scrollto:hover,
.blog-post .navbar ul li:not(.dropdown) > a.nav-link.scrollto:focus,
.category-content .navbar ul li:not(.dropdown) > a.nav-link.scrollto:hover,
.category-content .navbar ul li:not(.dropdown) > a.nav-link.scrollto:focus,
.navbar ul li:not(.dropdown) > a.nav-link.scrollto:hover,
.navbar ul li:not(.dropdown) > a.nav-link.scrollto:focus {
  color: var(--bs-hover-color) !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  text-decoration: none !important;
}

/* Enhanced fix for getstarted button */
body.coverage-brazil .navbar .getstarted.scrollto,
.blog-post .navbar .getstarted.scrollto,
.category-content .navbar .getstarted.scrollto,
.navbar .getstarted.scrollto {
  /* Maintain the button styling */
  background: var(--bs-white) !important;
  padding: 10px 16px !important;
  margin-left: 30px !important;
  border-radius: 8px !important;
  color: #1f1f1f !important;
  font-size: 14px !important;
  line-height: 14px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  transition: .3s !important;
  text-decoration: none !important;
  border: none !important;
  box-shadow: none !important;
}

body.coverage-brazil .navbar .getstarted.scrollto:hover,
body.coverage-brazil .navbar .getstarted.scrollto:focus,
.blog-post .navbar .getstarted.scrollto:hover,
.blog-post .navbar .getstarted.scrollto:focus,
.category-content .navbar .getstarted.scrollto:hover,
.category-content .navbar .getstarted.scrollto:focus,
.navbar .getstarted.scrollto:hover,
.navbar .getstarted.scrollto:focus {
  color: var(--bs-white) !important;
  background: var(--bs-hover-color) !important;
  text-decoration: none !important;
  border: none !important;
  box-shadow: none !important;
}

/* Ensure dropdown links maintain their styling */
.navbar .dropdown > a {
  /* Keep original dropdown styling intact */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 16px;
  letter-spacing: -2%;
  font-weight: 700;
  color: var(--bs-white);
  white-space: nowrap;
  transition: .3s;
}

/* Enhanced mobile navigation fixes */
@media (max-width: 991px) {
  body.coverage-brazil .navbar-mobile .nav-link.scrollto,
  .blog-post .navbar-mobile .nav-link.scrollto,
  .category-content .navbar-mobile .nav-link.scrollto,
  .navbar-mobile .nav-link.scrollto {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 15px 20px !important;
    font-size: 16px !important;
    color: var(--bs-white) !important;
    justify-content: flex-start !important;
    text-decoration: none !important;
  }
  
  body.coverage-brazil .navbar-mobile .nav-link.scrollto:hover,
  body.coverage-brazil .navbar-mobile .nav-link.scrollto:focus,
  .blog-post .navbar-mobile .nav-link.scrollto:hover,
  .blog-post .navbar-mobile .nav-link.scrollto:focus,
  .category-content .navbar-mobile .nav-link.scrollto:hover,
  .category-content .navbar-mobile .nav-link.scrollto:focus,
  .navbar-mobile .nav-link.scrollto:hover,
  .navbar-mobile .nav-link.scrollto:focus {
    color: var(--bs-hover-color) !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    text-decoration: none !important;
  }
  
  body.coverage-brazil .navbar-mobile .getstarted.scrollto,
  .blog-post .navbar-mobile .getstarted.scrollto,
  .category-content .navbar-mobile .getstarted.scrollto,
  .navbar-mobile .getstarted.scrollto {
    margin: 15px !important;
    background: var(--bs-white) !important;
    color: #1f1f1f !important;
    border-radius: 8px !important;
    text-decoration: none !important;
    border: none !important;
    box-shadow: none !important;
  }
  
  body.coverage-brazil .navbar-mobile .getstarted.scrollto:hover,
  .blog-post .navbar-mobile .getstarted.scrollto:hover,
  .category-content .navbar-mobile .getstarted.scrollto:hover,
  .navbar-mobile .getstarted.scrollto:hover {
    color: var(--bs-white) !important;
    background: var(--bs-hover-color) !important;
    text-decoration: none !important;
    border: none !important;
    box-shadow: none !important;
  }
} 