/* Google Fonts - Funnel Display */
@import url("https://fonts.googleapis.com/css2?family=Funnel+Display:wght@300;400;500;600;700;800;900&display=swap");

body {
  font-family: "Funnel Display", sans-serif;
  background-color: #121212;
}

h1 {
  font-size: 48px;
  color: #e1e1e1;
}

h2 {
  font-size: 40px;
  font-weight: 600;
  color: #e1e1e1;
}

h3 {
  font-size: 32px;
  font-weight: 500;
}

h4 {
  font-size: 28px;
  font-weight: 600;
}

h5 {
  font-size: 22px;
  font-weight: 500;
}

p {
  font-size: 16px;
  font-weight: 300;
}

a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
}

.pb-90 {
  padding-bottom: 90px;
}

.pt-90 {
  padding-top: 90px;
}

.pb-120 {
  padding-bottom: 120px;
}

.pt-120 {
  padding-top: 120px;
}

.btn-blue {
  background-color: #1902e0;
  padding: 10px 20px;
  color: #e1e1e1;
  font-size: 18px;
  transition: all 0.3s ease;
}

.btn-blue:hover {
  background-color: #0d0170;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(25, 2, 224, 0.4);
}

.btn-outline-gray {
  border: 1px solid #e1e1e1;
  padding: 10px 20px;
  color: #e1e1e1;
  font-size: 18px;
  transition: all 0.3s ease;
}

.btn-outline-gray:hover {
  background-color: #e1e1e1;
  transform: translateY(-2px);
  color: #000000;
  box-shadow: 0 4px 12px rgba(225, 225, 225, 0.4);
}

.btn-outline-blue {
  border: 1px solid #1902e0;
  padding: 10px 20px;
  color: #1902e0;
  font-size: 18px;
  transition: all 0.3s ease;
}

.btn-outline-blue:hover {
  background-color: #1902e0;
  color: #e1e1e1;
  transform: translateY(-2px);
}

.content-blog figure {
  text-align: center;
  margin-bottom: 40px;
  margin-top: 40px;
}

.content-blog figure figcaption {
  font-size: 14px;
  font-weight: 400;
  color: #e1e1e1;
  opacity: 0.7;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
}

.menu-header {
  display: flex;
  gap: 40px;
  justify-content: end;
  align-items: center;
}

.menu-header li a {
  color: #fff;
  opacity: 0.7;
  position: relative;
}

.menu-header li a:hover {
  color: #fff;
  opacity: 1;
}

.menu-header li a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #E1E1E1;
  opacity: 0;
  transition: all 0.4s ease;
}

.menu-header li a:hover::after {
  opacity: 1;
}

header {
  padding: 40px 0;
  position: relative;
}

/* Menu Mobile */
.menu-mobile-toggle {
  display: none;
}

.btn-hamburger {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
}

.btn-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #e1e1e1;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.btn-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.btn-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.btn-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.menu-mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #121212;
  z-index: 9999;
  padding: 30px;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.menu-mobile.active {
  transform: translateX(0);
}

.menu-mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(225, 225, 225, 0.1);
}

.btn-close-menu {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.btn-close-menu:hover {
  opacity: 0.7;
}

.menu-mobile-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.menu-mobile-list li {
  margin: 0;
}

.menu-mobile-list li a {
  color: #e1e1e1;
  font-size: 20px;
  font-weight: 400;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.3s ease;
  padding: 10px 0;
}

.menu-mobile-list li a:hover {
  color: #1902e0;
}

.menu-mobile-list li a svg {
  flex-shrink: 0;
}

/* Responsive - Menu Mobile */
@media (max-width: 990px) {
  .menu-desktop {
    display: none;
  }

  .menu-mobile-toggle {
    display: block;
  }

  .menu-mobile {
    display: block;
  }
}

.two-btn {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  padding-top: 35px;
}

.hero-section {
  padding-top: 130px;
  padding-bottom: 90px;
}

.hero-section-small {
  padding-top: 65px;
  padding-bottom: 45px;
}

.hero-section p,.hero-section-small p {
  color: #e1e1e1;
  font-size: 20px;
  opacity: 0.7;
}

.title-sobre-home {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 60px;
}

.feature-box {
  padding: 25px 41px;
  min-height: 224px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 20px;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.feature-box-black {
  background-color: #121212;
}

.feature-box-gray {
  background-color: #666;
}

.feature-icon {
  margin-bottom: 0;
  transition: all 0.3s ease;
}

.feature-text {
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  margin: 0;
  text-align: left;
  transition: color 0.3s ease;
}

/* Hover - animação no bloco */
.feature-box:hover {
  background-color: #1902e0;
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(25, 2, 224, 0.3);
}

.feature-box:hover .feature-icon img {
  filter: brightness(0) invert(1);
}

.feature-box:hover .feature-text {
  color: #e1e1e1;
}

.linha-sobre-home {
  padding: 56px 94px;
  align-items: center;
  background-color: #c1c1c1;
  justify-content: space-between;
}

.linha-sobre-home h2 {
  color: #121212;
}

.title-sobre-home h5 {
  color: #000;
  opacity: 0.24;
  margin-bottom: 0;
}

b {
  font-weight: 600;
}

.solucao-box {
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 25px;
  min-height: 338px;
  background-color: rgba(193, 193, 193, 0.05);
  transition: all 0.3s ease;
  cursor: pointer;
}

.solucao-box h4 {
  color: #fff;
  margin-bottom: 20px;
  transition: color 0.3s ease;
}

.solucao-box p {
  color: #fff;
  opacity: 0.7;
  margin-bottom: 0;
  transition: opacity 0.3s ease;
}

.solucao-box:hover {
  background-color: #1902e0;
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(25, 2, 224, 0.3);
}

.solucao-box:hover p {
  opacity: 1;
}

.solucao-box .icon-solucao img {
  transition: filter 0.3s ease;
}

.solucao-box:hover .icon-solucao img {
  filter: brightness(0) invert(1);
}

.linha-solucoes {
  justify-content: center;
  margin-bottom: 30px;
}

.pt-60 {
  padding-top: 60px;
}

.pb-60 {
  padding-bottom: 60px;
}

.p-opacity-07 {
  color: #e1e1e1;
  opacity: 0.7;
}

.p-b-opacity-07 {
  color: #121212;
  opacity: 0.7;
}

.spn-444 {
  color: #444444;
}

.planos-home h2 {
  color: #121212;
  margin-bottom: 20px;
}

.plano-box {
  background-color: #e1e1e1;
  padding: 30px;

  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.plano-box-recommended {
  background-color: #cecece;
}

.badge-recommended {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #ebb023;
  color: #121212;
  padding: 8px 15px;
  border-radius: 0;
  font-size: 13px;
  font-weight: 300;
}

.plano-box h3 {
  color: #121212;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 0;
}

.plano-features {
  list-style: none;
  margin: 0 0 30px 0;
  flex-grow: 1;
  padding: 40px 0 0;
}

.plano-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: #121212;
  font-size: 15px;
  line-height: 1.5;
}

.plano-features li svg {
  flex-shrink: 0;
  margin-top: 4px;
}

.plano-features li span {
  flex: 1;
}

.plano-box .btn-blue,
.plano-box .btn-outline-blue {
  width: 100%;
  text-align: center;
  display: inline-block;
  margin-top: auto;
}

.plano-features b {
  font-weight: 700;
}

.linha-footer {
  justify-content: space-between;
  align-items: flex-start;
  padding: 60px 0;
}

footer {
  background-color: #c1c1c1;
}

.logo-footer {
  font-size: 32px;
  font-weight: 600;
  color: #444444;
  margin: 0;
}

.logo-footer sup {
  font-size: 14px;
  vertical-align: super;
  margin-left: 2px;
}

.footer-title {
  font-size: 18px;
  font-weight: 500;
  color: #121212;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links li a {
  color: #121212;
  font-size: 16px;
  font-weight: 300;
  transition: color 0.3s ease;
}

.footer-links li a:hover {
  color: #1902e0;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #666666;
  font-size: 16px;
}

.contact-item svg {
  flex-shrink: 0;
}

.contact-item span {
  color: #666666;
}

.linkedin-icon {
  display: inline-flex;
  align-items: center;
  transition: opacity 0.3s ease;
}

.linkedin-icon:hover {
  opacity: 0.7;
}

.footer-bottom {
  border-top: 1px solid #666;
  padding-top: 20px;
  padding-bottom: 20px;
}

.footer-copyright {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright p {
  color: #121212;
  font-size: 15px;
  font-weight: 300;
  margin: 0;
}

.btn-up-home {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
  text-decoration: none;
}

.btn-up-home:hover {
  opacity: 0.7;
}

.fundamentos-row {
  row-gap: 24px;
}

.fundamentos-box {
  background-color: #c1c1c1;
  padding: 35px 25px;
  min-height: 199px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.fundamentos-box h4 {
  color: #121212;
  margin-bottom: 20px;
  transition: color 0.3s ease;
}

.fundamentos-box p {
  color: #121212;
  margin-bottom: 0;
  transition: color 0.3s ease;
}

.fundamentos-box:hover {
  background-color: #1902e0;
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(25, 2, 224, 0.3);
}

.fundamentos-box:hover h4 {
  color: #e1e1e1;
}

.fundamentos-box:hover p {
  color: #e1e1e1;
}

.porque-kythera {
  background-color: #c1c1c1;
}

.porque-kythera h2 {
  color: #121212;
}

.porque-kythera .col-md-12 p {
  font-size: 20px;
}

.porque-kythera-box {
  border: 1px solid #1902e040;
  padding: 30px 35px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 290px;
  transition: all 0.3s ease;
}

.content-porque-kythera p {
  margin-bottom: 0;
  color: #121212;
  transition: color 0.3s ease;
}

.content-porque-kythera h4 {
  color: #121212;
  transition: color 0.3s ease;
}

.porque-kythera-box:hover {
  background-color: #1902e0;
}

.porque-kythera-box:hover .content-porque-kythera p {
  color: #e1e1e1;
}

.porque-kythera-box:hover .content-porque-kythera h4 {
  color: #e1e1e1;
}

.icon-porque-kythera img {
  transition: filter 0.3s ease;
}

.porque-kythera-box:hover .icon-porque-kythera img {
  filter: brightness(0) invert(1);
}

.porque-kythera-row {
  row-gap: 24px;
}

.proximo-passo {
  background-color: #121212;
}

.proximo-passo h2 {
  color: #fff;
}

.date {
  display: flex;
  align-items: center;
  gap: 22px;
  padding-bottom: 20px;
  transition: all 0.5s ease;
}

article:hover .date {
  padding-bottom: 12px;
}

.date span {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #e1e1e1;
  font-size: 15px;
  font-weight: 400;
}

.content-card-blog {
  /*padding: 24px;*/
  padding-top: 1rem;
}

.content-card-blog > a > p {
  height: 2rem;
}

.categorias {
  padding-top: 24px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.categorias span,
.categorias a {
  border: 1px solid #c1c1c1;
  padding: 8px 18px;
  color: #e1e1e1;
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.categorias a:hover {
  border-color: #1902e0;
  color: #1902e0;
  background-color: rgba(25, 2, 224, 0.1);
}

.content-card-blog h2 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 16px;
  transition: all 0.5s ease;
}

.content-card-blog p {
  transition: all 0.5s ease;
}

.img-blog {
  overflow: hidden;
}

.img-blog img {
  width: 100%;
  transition: transform 0.5s ease;
  aspect-ratio: 16/9;
}

article:hover .img-blog img {
  transform: scale(1.2);
}

article:hover .content-card-blog h2 {
  color: #ebb023;
}

article:hover .content-card-blog p {
  color: #fff !important;
  opacity: 1 !important;
}

button.owl-next-custom {
  padding: 20px;
  background-color: #1902e0;
}

button.owl-prev-custom {
  padding: 20px;
  background-color: #1902e0;
}

.linha-blog {
  row-gap: 100px;
}

.title-blog {
  position: relative;

  z-index: 2;
  margin-bottom: 160px;
}

.owl-nav-custom {
  position: absolute;
  display: flex;
  gap: 15px;
  bottom: 0;
  z-index: 3;
  width: 300px;
}

.owl-prev-custom,
.owl-next-custom {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.owl-prev-custom:hover,
.owl-next-custom:hover {
  opacity: 0.7;
}

.owl-prev-custom svg,
.owl-next-custom svg {
  display: block;
}

.owl-carousel .owl-item .date img {
  width: auto;
}

.owl-carousel .owl-stage-outer {
  overflow: visible;
}

.blog-section {
  position: relative;
  overflow: hidden;
}

.blog-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 38%;
  height: 100%;
  background-color: #121212;
  z-index: 2;
}

.linha-top-blog {
  position: relative;
}

.blog-filters {
  display: flex;
  gap: 30px;
  align-items: center;
  margin-bottom: 60px;
}

.btn-dropdown-categoria {
  display: flex;
  align-items: center;
  gap: 50px;
  background-color: #c1c1c1;
  border: 1px solid #c1c1c1;
  color: #121212;
  padding: 14px 13px;
  font-size: 16px;
  font-weight: 400;
  transition: all 0.3s ease;
  border-radius: 0;
}

.btn-dropdown-categoria:hover {
  background-color: #c1c1c1;
  border-color: #c1c1c1;
  color: #121212;
}

.btn-dropdown-categoria:focus {
  box-shadow: none;
  background-color: #c1c1c1;
  color: #121212;
}

.btn-dropdown-categoria svg {
  transition: transform 0.3s ease;
}

.btn-dropdown-categoria[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.form-busca {
  flex: 1;
  max-width: 400px;
}

.input-busca-wrapper {
  display: flex;
  align-items: center;
  border: none;
  background-color: transparent;
  padding: 14px 13px;
  position: relative;
}

.input-busca {
  flex: 1;
  background-color: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  padding: 0;
}

.input-busca::placeholder {
  color: #e1e1e1;
  opacity: 1;
}

.input-busca-wrapper::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #e1e1e1;
}

.btn-busca-submit {
  background: transparent;
  border: none;
  padding: 0;
  margin-left: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.btn-busca-submit:hover {
  opacity: 0.7;
}

.btn-busca-submit:focus {
  outline: none;
  box-shadow: none;
}

.btn-busca-submit svg {
  display: block;
}

.dropdown-menu.show {
  border: 1px solid #c1c1c1;
  border-radius: 0;
  padding: 0;
  margin-top: 5px;
}

.dropdown-menu.show {
  width: 100%;
}

.dropdown-item {
  padding: 10px 20px;
  color: #121212;
  font-size: 16px;
  transition: all 0.3s ease;
}

.dropdown-item:hover {
  background-color: #1902e0;
  color: #fff;
}

button.btn-blue {
  padding: 13px 25px;
  background-color: #1902e0;
  color: #e1e1e1;
  font-size: 18px;
  font-weight: 400;
  transition: all 0.3s ease;
  border-radius: 0;
  border: none;
}

button.btn-blue:hover {
  background-color: #0d0170;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(25, 2, 224, 0.4);
}

.title-single-blog span a {
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  color: #ebb023;
}

.title-single-blog hr {
  color: rgba(225, 225, 225, 0.2);
  background-color: rgba(225, 225, 225, 0.2);
  margin-top: 24px;
  margin-bottom: 16px;
}

.img-destaque-single {
  padding-top: 60px;
  padding-bottom: 60px;
}

.img-destaque-single img {
  width: 100%;
}

.title-single-blog p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  color: #666;
  text-transform: uppercase;
}

.title-single-blog p span {
  color: #fff;
  font-size: 16px;
}

.content-blog h2,
.content-blog h3,
.content-blog h4,
.content-blog h5,
.content-blog p,
.content-blog ul,
.content-blog ol,
.content-blog blockquote {
  color: #fff;
}

.content-blog a {
  text-decoration: underline;
}

.share-section {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 0;
}

.share-section p {
  color: #e1e1e1;
  font-size: 16px;
  font-weight: 400;
  margin: 0;
}

.share-links {
  display: flex;
  align-items: center;
  gap: 15px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.share-links li {
  margin: 0;
}

.share-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
  text-decoration: none;
}

.share-links a:hover {
  opacity: 0.7;
}

.share-links svg {
  display: block;
}

.related-posts h3 {
  color: #fff;
}

.busca-search {
  text-align: center;
  display: flex;
  justify-content: center;
  padding-top: 30px;
}

.busca-search-section h3 {
  color: #ebb023;
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 0;
}

.linha-blog-search {
  row-gap: 24px;
}

.search-card {
  margin-bottom: 0;
}

.search-card .img-blog {
  height: 100%;
}

.search-card .img-blog img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.search-card .categorias {
  padding-top: 5px;
}

.search-card .content-card-blog {
  padding: 12px;
}

.sorry {
  background-color: #c1c1c1;
}

.sorry h2 {
  color: #121212;
  font-size: 64px;
}

.sorry p {
  color: #121212;
  font-size: 22px;
  font-weight: 500;
}

.error-section {
  background-color: #121212;
  padding-top: 120px;
}

.error-section h1 {
  color: #c1c1c1;
  font-weight: 700;
  font-size: 380px;
  line-height: 0.7;
}

.e-mail a {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 35px;
}

.e-mail a p {
  margin-bottom: 0;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  color: #e1e1e1;
}

.e-mail a span {
  font-size: 15px;
  font-style: normal;
  font-weight: 300;
  color: #e1e1e1;
}

.form-contato-section h3 {
  color: #fff;
}

.title-form-contato p {
  margin-bottom: 0;
  color: #000;
}

.title-form-contato {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
}

.form-contato {
  padding: 32px 65px;
  background-color: #c1c1c1;
}

textarea.wpcf7-form-control.wpcf7-textarea.wpcf7-validates-as-required.input-icon.icon-message {
  width: 100%;
  height: 65px;
  border-radius: 2px;
  border: 0.623px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.1);
  padding-left: 15px;
  padding-top: 15px;
}

input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required {
  height: 32px;
  border-radius: 2px;
  border: 0.623px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  width: 100%;
}

input.wpcf7-form-control.wpcf7-text.input-icon.icon-role {
  height: 32px;
  border-radius: 2px;
  border: 0.623px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  width: 100%;
}

select.wpcf7-form-control.wpcf7-select.wpcf7-validates-as-required.input-icon.icon-subject {
  height: 32px;
  border-radius: 2px;
  border: 0.623px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  width: 100%;
}

.form-contato-content label {
  font-weight: 600;
  color: #121212;
  margin-bottom: 5px;
}

input.wpcf7-form-control.wpcf7-submit.has-spinner.btn-blue {
  padding: 10px 60px;
  background-color: #1902e0;
  color: #e1e1e1;
  font-size: 18px;
  font-weight: 400;
  transition: all 0.3s ease;
  border-radius: 0;
  border: none;
}

.btn-container {
  text-align: center;
  padding-top: 10px;
}

.wpcf7-list-item {
  margin: 0;
}

.cont-text-lgpd p {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cont-text-lgpd p span {
  font-size: 15px;
  color: #000;
  font-weight: 400;
}

.cont-text-lgpd p span a {
  color: #1902e0;
  font-size: 15px;
  font-weight: 400;
}

.bg-kythera {
  background-image: url(../imgs/bg-kytera.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.bg-kythera-2 {
  background-image: url(../imgs/bg-kythera-2.png);
  background-size: cover;
  background-position-y: 70px;
  background-position-x: -150px;
  background-repeat: no-repeat;
  background-color: #d9d9d9;
}

/* Formulário de Contato HTML */
.form-contato-html .form-group {
  margin-bottom: 20px;
}

.form-contato-html label {
  font-weight: 600;
  color: #121212;
  margin-bottom: 5px;
  display: block;
  font-size: 16px;
}

.form-control-contato {
  width: 100%;
  height: 32px;
  border-radius: 2px;
  border: 0.623px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.1);
  padding: 0 15px;
  color: #121212;
  font-size: 16px;
  font-weight: 400;
  font-family: "Funnel Display", sans-serif;
  transition: all 0.3s ease;
}

.form-control-contato::placeholder {
  color: rgba(18, 18, 18, 0.5);
  opacity: 1;
}

.form-control-contato:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.15);
}

.item-lang {
  color: #666 !important;
}

/* Dropdown de Idioma */
.menu-header .dropdown {
  position: relative;
}

.menu-header .item-lang.dropdown-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
}

.menu-header .item-lang.dropdown-toggle::after {
  display: none;
}

.menu-header .dropdown-menu-lang {
  background-color: #121212;
  border: 1px solid rgba(225, 225, 225, 0.2);
  border-radius: 0;
  padding: 0;
  margin-top: 10px;
  min-width: 80px;
}

.menu-header .dropdown-menu-lang .dropdown-item {
  color: #e1e1e1;
  font-size: 16px;
  font-weight: 400;
  padding: 10px 20px;
  transition: all 0.3s ease;
}

.menu-header .dropdown-menu-lang .dropdown-item:hover {
  background-color: rgba(225, 225, 225, 0.1);
  color: #fff;
}

.menu-header .dropdown-menu-lang .dropdown-item:active {
  background-color: rgba(225, 225, 225, 0.2);
  color: #fff;
}

/* Dropdown de Idioma Mobile */
.menu-mobile-list .dropdown {
  position: relative;
}

.menu-mobile-list .item-lang.dropdown-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu-mobile-list .item-lang.dropdown-toggle::after {
  display: none;
}

.menu-mobile-list .dropdown-menu-lang {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  margin-top: 10px;
  margin-left: 20px;
  min-width: auto;
  box-shadow: none;
}

.pb-40 {
  padding-bottom: 30px;
}

.menu-mobile-list .dropdown-menu-lang .dropdown-item {
  color: #e1e1e1;
  font-size: 18px;
  font-weight: 400;
  padding: 10px 0;
  transition: all 0.3s ease;
}

.menu-mobile-list .dropdown-menu-lang .dropdown-item:hover {
  color: #1902e0;
  background-color: transparent;
}

.menu-mobile-list .dropdown-menu-lang .dropdown-item:active {
  color: #1902e0;
  background-color: transparent;
}

/* Paginação Customizada */
.pagination-blog {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}

.pagination-custom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.pagination-item {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #1902e0;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.pagination-btn:hover {
  background-color: #0d0170;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(25, 2, 224, 0.4);
}

.pagination-btn svg {
  display: block;
}

.pagination-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #e1e1e1;
  border-radius: 50%;
  color: #e1e1e1;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.3s ease;
  background-color: transparent;
}

.pagination-number:hover {
  border-color: #1902e0;
  color: #1902e0;
  background-color: rgba(25, 2, 224, 0.1);
}

.pagination-number.pagination-active {
  background-color: #cecece;
  border-color: #cecece;
  color: #121212;
  font-weight: 500;
}

.pagination-number.pagination-active:hover {
  background-color: #cecece;
  border-color: #cecece;
  color: #121212;
}

.pagination-ellipsis {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #e1e1e1;
  font-size: 16px;
  font-weight: 400;
  user-select: none;
}

.form-textarea-contato {
  height: 65px;
  padding: 15px;
  resize: vertical;
  min-height: 65px;
}

.form-select-contato {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8' fill='none'%3E%3Cpath d='M12.4585 0.958309L6.70848 6.89996L0.958496 0.958309' stroke='%23121212' stroke-width='1.91666' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-contato-html .row {
  margin-bottom: 0;
}

.cont-text-lgpd {
  margin-bottom: 20px;
}

.cont-text-lgpd p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
}

.cont-text-lgpd input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  cursor: pointer;
  flex-shrink: 0;
  accent-color: #1902e0;
}

.cont-text-lgpd p span {
  font-size: 15px;
  color: #000;
  font-weight: 400;
  line-height: 1.5;
}

.cont-text-lgpd p span a {
  color: #1902e0;
  font-size: 15px;
  font-weight: 400;
  text-decoration: underline;
}

.cont-text-lgpd p span a:hover {
  opacity: 0.8;
}

.blog-desktop {
  display: block;
}

.blog-mobile {
  display: none;
}

.single-section {
  background-image: url(../imgs/bg-kytera.png);
  background-position-x: -213px;
  background-repeat: no-repeat;
  background-position-y: 358px;
}

.single-section hr {
  color: rgba(255, 255, 255, 0.70);


}

.spn-essencial {
  font-size: 14px;
  font-weight: 400;
  color: #000;
  opacity: 0.7;
}

.content-blog p {
  font-size: 18px;
}

@media (max-width: 1399px) {
  .title-blog {
    margin-bottom: 200px;
  }

  .solucao-box {
    min-height: 360px;
  }

  .content-solucao p {
    font-size: 15px;
  }

  .fundamentos-box {
    min-height: 253px;
  }

  .content-porque-kythera h4 {
    font-size: 25px;
  }

  .bg-kythera-2 {
    background-position-y: 100px;
    background-position-x: -130px;
  }

  .fundamentos-box p {
    font-size: 15px;
  }

  .solucoes-home .content-solucao p br {
    display: none;
  }

  .solucoes-home .content-solucao h4 {
    font-size: 26px;
  }
}

@media (max-width: 1199px) {
  .linha-solucoes .col-lg-3 {
    width: 32%;
  }

  .plano-features li {
    font-size: 14px;
  }

  h1 {
    font-size: 38px;
  }

  .fundamentos-box {
    min-height: 270px;
  }

  .hero-section p {
    font-size: 18px;
  }

  .two-btn {
    padding-top: 15px;
  }

  .feature-box {
    padding: 25px 25px;
    min-height: 175px;
  }

  .btn-outline-gray {
    font-size: 16px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 28px;
  }

  h4 {
    font-size: 24px;
  }

  .plano-box h3 {
    font-size: 28px;
  }

  .btn-blue {
    font-size: 16px;
  }

  .btn-outline-blue {
    font-size: 16px;
  }
}

@media (max-width: 991px) {
  .linha-solucoes .col-lg-3 {
    width: 40%;
  }

  .content-blog p {
    font-size: 16px;
  }

  .title-blog {
    margin-bottom: 20px;
  }

  .blog-section::before {
    display: none;
  }

  .plano-features {
    padding-top: 20px;
  }

  .linha-solucoes {
    row-gap: 30px;
  }

  .linha-sobre-home {
    padding: 45px 45px;
    row-gap: 30px;
  }

  br {
    display: none;
  }

  .linha-planos {
    row-gap: 30px;
  }

  .mobile-hamburger {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .form-contato {
    padding: 32px 32px;
  }

  .form-contato-section .row {
    row-gap: 30px;
  }

  .blog-desktop {
    display: none;
  }

  .blog-mobile {
    display: block;
  }

  .linha-blog {
    row-gap: 30px;
  }
}

@media (max-width: 767px) {
  .linha-solucoes .col-md-6 {
    width: 100%;
  }

  .blog-filters {
    flex-direction: column-reverse;
    gap: 15px;
    align-items: flex-start;
  }

  .categorias {
    padding-top: 8px;
  }

  .title-single-blog p {
    font-size: 14px;
  }

  .title-single-blog p span {
    font-size: 14px;
  }

  button.btn-blue {
    font-size: 16px;
  }

  .hero-section {
    padding-top: 70px;
    padding-bottom: 40px;
  }

  .title-form-contato {
    flex-direction: column-reverse;
    gap: 10px;
    align-items: flex-start;
  }

  .porque-kythera-box {
    min-height: auto;
  }

  .hero-section .text-center {
    text-align: left !important;
  }

  .solucoes-home .text-center {
    text-align: left !important;
  }

  .planos-home .text-center {
    text-align: left !important;
  }

  .fundamentos-content .text-center {
    text-align: left !important;
  }

  .porque-kythera .text-center {
    text-align: left !important;
  }

  .proximo-passo .text-center {
    text-align: left !important;
  }

  .blog-section .text-center {
    text-align: left !important;
  }

  .pb-120 {
    padding-bottom: 90px;
  }

  .pt-120 {
    padding-top: 90px;
  }

  .pt-60 {
    padding-top: 45px;
  }

  .pb-60 {
    padding-bottom: 45px;
  }

  .footer-title {
    margin-bottom: 10px;
  }

  .linha-footer {
    row-gap: 30px;
  }

  .plano-box h3 {
    font-size: 24px;
  }

  h1 {
    font-size: 30px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 24px;
  }

  h4 {
    font-size: 22px;
  }

  .two-btn {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }

  .title-sobre-home {
    padding-bottom: 20px;
  }

  .solucao-box {
    min-height: 260px;
  }

  .pb-40 {
    padding-bottom: 10px;
  }

  .pagination-custom {
    gap: 6px;
    flex-wrap: wrap;
  }

  .pagination-btn,
  .pagination-number {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .pagination-ellipsis {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .linha-solucoes .col-md-6 {
    width: 100%;
  }

  .container {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (max-width: 479px) {}

.politica-list {
  list-style-type: disc;
  padding-left: 40px;
  margin: 1em 0;
  font-size: 20px;
  color: #e1e1e1;
  opacity: 0.7;
}