.logo-impulso {
  width: 40px;
  height: 60px;
  margin-right: 7px;
  border-radius: 50%;
}

.titulo {
  margin-top: 7px;
}

.subtitulo {
  padding-top: 15px;
}

.contacto {
  margin-bottom: 150px;
}

#language-switcher {
  top: 20px;
  right: 20px;
  z-index: 999;
}

#language-switcher button {
  padding: 8px 12px;
  background-color: #e3a127;
  color: white;
  border: none;
  border-radius: 2px;
  cursor: pointer;
}

.demo {
  text-align: center;
  padding: 50px 20px;
  margin-top: 55px;
}

.iframe-container {
  display: flex;
  justify-content: center; /* centra horizontalmente */
  align-items: center; /* centra verticalmente (si tiene altura definida) */
  margin: 0 auto;
  width: 100%; /* ocupa todo el ancho disponible */
}

.iframe-container iframe {
  width: 90%; /* ajustá el % que quieras */
  max-width: 1000px; /* límite para que no se haga gigante en pantallas grandes */
  height: 600px; /* altura fija */
  border: 0;
  border-radius: 10px;
}

.contactameDemo {
  margin-top: 30px;
  text-align: center;
}

.link-demo {
  margin-top: 20%;
  padding: 15px 25px;
  background: #e3a127;
  color: white;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
}

@media (max-width: 768px) {
  .iframe-container iframe {
    height: 400px;
  }
}

@media (max-width: 480px) {
  .iframe-container iframe {
    height: 300px;
  }
}

/* Blog article styles */
body.blog-article-page {
  background: radial-gradient(circle at top, #0f2430, #050f16 60%);
  min-height: 100vh;
}
body.blog-article-page .header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 15, 22, 0.95);
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}
body.blog-article-page .header .nav-link {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
}
body.blog-article-page .header .nav-link:hover {
  color: var(--accent-color);
}
.blog-article {
  max-width: 860px;
  padding-top: 140px;
  padding-bottom: 80px;
}
.blog-article h1 {
  font-size: clamp(2.3rem, 4vw, 3.2rem);
  line-height: 1.3;
  margin-bottom: 1.5rem;
  color: #fff;
}
.blog-article h2 {
  font-size: 1.6rem;
  margin-top: 3rem;
  margin-bottom: 1rem;
  color: var(--accent-color);
}
.blog-article p,
.blog-article ul,
.blog-article ol {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
}
.blog-article ul,
.blog-article ol {
  padding-left: 1.5rem;
  margin-bottom: 1.4rem;
}
.blog-article li {
  margin-bottom: 0.6rem;
}
.blog-article a {
  color: #f6c056;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(246, 192, 86, 0.35);
}
.blog-article a:hover {
  text-decoration-color: rgba(246, 192, 86, 0.85);
}
.blog-article strong {
  color: #fff;
}
.blog-cta {
  margin-top: 3.5rem;
}
.blog-cta .btn-plan-main {
  padding: 16px 42px;
  font-size: 1.05rem;
  color: #0f172a;
  text-decoration: none;
  border: none;
}
footer.footer {
  padding-bottom: 40px;
  color: rgba(255, 255, 255, 0.6);
}
@media (max-width: 768px) {
  body.blog-article-page .header {
    position: static;
  }
  .blog-article {
    padding-top: 100px;
  }
  .blog-article h1 {
    font-size: 2rem;
  }
  .blog-article h2 {
    font-size: 1.4rem;
  }
}
