/* Variáveis de Fonte e Cor */
:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway", sans-serif;
  --nav-font: "Poppins", sans-serif;
  --background-color: #ffffff;
  /* Cor de fundo para todo o site, incluindo seções individuais */
  --default-color: #212529;
  /* Cor padrão usada para a maioria do conteúdo de texto em todo o site */
  --heading-color: #8a1414; /* Dark red */
  /* Cor para títulos, subtítulos e títulos em todo o site */
  --accent-color: #b22222; /* Firebrick */
  /* Cor de destaque que representa sua marca no site. É usada para botões, links e outros elementos que precisam se destacar */
  --surface-color: #ffffff;
  /* A cor da superfície é usada como fundo de elementos em caixas dentro das seções, como cartões, caixas de ícones ou outros elementos que requerem uma separação visual do fundo global */
  --contrast-color: #ffffff;
  /* Cor de contraste para texto, garantindo legibilidade contra fundos de cores de destaque, título ou padrão */
  --nav-color: #ffffff;
  /* Cor padrão dos links do menu de navegação principal */
  --nav-hover-color: #dbdbdb; /* IndianRed */
  /* Aplicada aos links do menu de navegação principal quando são sobrevoados ou ativos */
  --nav-mobile-background-color: #ffffff;
  /* Usada como cor de fundo para o menu de navegação móvel */
  --nav-dropdown-background-color: #ffffff;
  /* Usada como cor de fundo para itens suspensos que aparecem ao passar o mouse sobre itens de navegação primária */
  --nav-dropdown-color: #212529;
  /* Usada para links de navegação dos itens suspensos no menu de navegação */
  --nav-dropdown-hover-color: #dc143c; /* Crimson */
  /* Semelhante à --nav-hover-color, essa cor é aplicada aos links de navegação suspensos quando são sobrevoados */
  scroll-behavior: smooth;
  /* Rolagem suave */
}

.light-background {
  --background-color: #f1f3f8;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #8a1414;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #8a1414;
  --contrast-color: #ffffff;
}

/* Estilização Geral e Classes Compartilhadas */
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

html {
  scroll-behavior: smooth;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* Mensagens do Formulário de Email PHP */
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Cabeçalho Global */
.header {
  --background-color: rgba(255, 255, 255, 0);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 32px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Cabeçalho Global ao Rolar */
.scrolled .header {
  --background-color: #9c1d1de6; /* Firebrick */
}

/* Alinha e estiliza o dropdown */
.dropdown .dropdown-menu {
  display: none;
  position: absolute;
  background-color: #fff;
  width: 55px; /* Largura ajustada ao conteúdo */

  padding: 4px 8px; /* Espaçamento interno reduzido */
  border-radius: 5px; /* Cantos arredondados */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Sombra mais leve */
}

.dropdown .dropdown-menu.show {
  display: block;
}

/* Estilo dos itens do dropdown */
.dropdown-item {
  display: flex;
  align-items: center; /* Centraliza verticalmente */
  padding: 0px; /* Reduz o espaçamento dos itens */
  width: 160px;
  gap: 0px; /* Espaço entre a bandeira e o texto */
  font-size: 13px; /* Tamanho menor da fonte */
  color: #333; /* Cor padrão do texto */
}

/* Estilo das bandeiras no dropdown */
.dropdown-item img {
  width: 25px; /* Reduz tamanho das bandeiras */
  height: auto; /* Mantém proporção */
  margin: 0; /* Remove espaçamento extra */
}

/* Botão do dropdown */
#languageDropdown {
  color: #fff;
  padding: 8px 12px; /* Reduz o tamanho do botão */
  font-size: 14px; /* Texto um pouco menor */
  display: flex;
  align-items: center;
  gap: 15px; /* Espaço entre bandeira e ícone */
  border: none; /* Remove bordas padrão */
  background: transparent; /* Sem fundo para visual limpo */
}

/* Efeito de rotação da seta */
#languageDropdown::after {
  transition: transform 0.3s ease;
}

#languageDropdown[aria-expanded="true"]::after {
  transform: rotate(180deg);
}

/* Removendo efeito hover para dropdown */
.navmenu .dropdown:hover>ul {
  opacity: 0;
  top: 130%;
  visibility: hidden;
}

.navmenu .dropdown .dropdown:hover>ul {
  opacity: 0;
  top: 0;
  left: -90%;
  visibility: hidden;
}

/* Ajuste de responsividade para mobile */
@media (max-width: 768px) {
  #languageDropdown {
    font-size: 12px;
    padding: 6px 10px;
    gap: 0px;
  }

  .dropdown-item {
    font-size: 12px;
  }
}

/* Menu de Navegação */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 18px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Menu de Navegação - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    position: fixed;
    top: 15px;
    right: 15px;
    font-size: 28px;
    color: var(--nav-color);
    cursor: pointer;
    z-index: 10000;
    transition: color 0.3s ease-in-out, transform 0.3s ease-in-out;
  }

  .close-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 28px;
    color: var(--nav-dropdown-color);
    cursor: pointer;
    z-index: 10001;
    display: none;
    transition: color 0.3s ease-in-out;
  }

  .navmenu.open .close-nav-toggle {
    display: block;
  }

  .navmenu.open ~ .mobile-nav-toggle {
    display: none;
  }

  .navmenu {
    position: fixed;
    top: 0;
    right: 0;
    width: 260px;
    height: 100vh;
    background-color: var(--nav-mobile-background-color);
    box-shadow: -2px 0px 15px rgba(0, 0, 0, 0.15);
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 9999; /* Ensure the menu stays on top */
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    opacity: 97%;
  }

  .navmenu.open {
    transform: translateX(0);
  }

  .navmenu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .navmenu li {
    width: 100%;
  }

  .navmenu a {
    color: #8a1414;
    padding: 15px 20px;
    font-family: var(--nav-font);
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out, transform 0.2s ease-in-out;
    display: block;
    width: 100%;
    text-align: left;
  }

}

/* Rodapé Global */
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  text-align: center;
  padding: 30px 0;
  position: relative;
}

.footer h3 {
  font-size: 36px;
  font-weight: 700;
  position: relative;
  padding: 0;
  margin: 0 0 15px 0;
}

.footer p {
  font-size: 15;
  font-style: italic;
  padding: 0;
  margin: 0 0 30px 0;
}

.footer .social-links {
  margin: 0 0 30px 0;
}

.footer .social-links a {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-color);
  color: var(--contrast-color);
  line-height: 1;
  margin: 0 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  text-decoration: none;
}

.footer .copyright {
  padding-top: 25px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .credits {
  font-size: 13px;
  padding-top: 5px;
}

/* Preloader */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*bandeiras nav-bar*/
.language-selector {
  display: flex;
  align-items: center;
  gap: 0; /* Remove qualquer espaçamento entre os elementos */
}

.img-traducao {
  margin-right: 5px; /* Reduz o espaço à direita da imagem */
}

/* Botão de Voltar ao Topo */
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 17px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 30px;
  height: 30px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/* Desativar atraso de animação aos em dispositivos móveis */
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/* Títulos de Página Globais e Breadcrumbs */
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/* Seções Globais */
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/* Títulos de Seção Globais */
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.section-title p {
  margin-bottom: 0;
}

/* Seção Hero */
.hero {
  width: 100%;
  min-height: 75vh;
  position: relative;
  padding: 70px 0;
  display: flex;
  align-items: center;
  background: url(../img/hero/hero-bg.jpg) no-repeat center/cover;
}

.hero:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 25%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h2 {
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  line-height: 44px;
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 5px 0 10px 0;
  font-size: 20px;
  font-weight: 400;
}

.hero .download-btn {
  color: var(--contrast-default);
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  padding: 8px 30px 10px 30px;
  border-radius: 3px;
  transition: 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .download-btn+.download-btn {
  margin-left: 100px !important;
}

.hero .download-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.hero .download-btn i {
  font-size: 16px;
  line-height: 0;
  margin-right: 8px;
}

.hero .hero-img {
  position: relative;
  min-height: 400px;
}

.hero .hero-img .phone-1 {
  margin-top: 20px;
  position: absolute;
  left: 0;
  box-shadow: 0 15px 50px 0 rgba(0, 0, 0, 0.5);
  border-radius: 30px;
  width: 250px;
}

.hero .hero-img .phone-2 {
  position: absolute;
  left: 0;
  box-shadow: 0 15px 50px 0 rgba(0, 0, 0, 0.5);
  border-radius: 30px;
  width: 100%;
  max-width: 500px;
  margin-top: 50px;
}

@media screen and (max-width: 992px) {
  .hero .hero-img {
    text-align: center;
    overflow: hidden;
    min-height: 400px;
  }

  .hero .hero-img .phone-1,
  .hero .hero-img .phone-2 {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 992px) {
  .hero {
    padding: 60px 0 30px 0;
  }

  .hero .hero-img .phone-2 {
    width: 80%;
    max-width: 450px;
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 10px 0;
  }

  .hero h2 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 50px;
  }

  .hero .download-btn {
    font-size: 14px;
    padding: 8px 20px;
  }

  .hero .hero-img .phone-2 {
    width: 100%;
    max-width: 400px;
    margin-top: 50px;
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 10px 0 5px 0;
  }

  .hero .hero-img .phone-2 {
    width: 100%;
    max-width: 300px;
    margin-top: 60px;
  }
}

@media (max-width: 768px) {
  .hero .download-btn {
    margin: 0 auto;
  }
}

@media (min-width: 769px) {
  .hero .download-btn {
    margin-left: 0;
  }
}

.align-left-btn {
  justify-content: flex-start;
}

.align-left {
  margin-left: -430px !important;
}

@media (max-width: 1399px) {
  .align-left {
    margin-left: -370px !important;
  }
}

@media (max-width: 1199px) {
  .align-left {
    margin-left: -310px !important;
  }
}

@media (max-width: 991px) {
  .align-left {
    margin-left: 0 !important;
  }
}

/* Seção Sobre */
.about .content h3 {
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
  padding: 10px 20px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%); /* Firebrick */
  color: var(--accent-color); /* Firebrick */
  border-radius: 7px;
  display: inline-block;
}

.about .content h2 {
  font-weight: 700;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .read-more {
  background: var(--accent-color); /* Firebrick */
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about .content .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.about .content .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%); /* Firebrick */
  padding-right: 19px;
}

.about .content .read-more:hover i {
  margin-left: 10px;
}

.about .icon-box {
  background-color: var(--surface-color);
  padding: 50px 40px;
  box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease-out 0s;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  text-align: left;
}

.about .icon-box i {
  width: 60px; /* Reduced size */
  height: 60px; /* Reduced size */
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 32px;
  line-height: 0;
  transition: all 0.4s ease-out 0s;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%); /* Firebrick */
  color: var(--accent-color); /* Firebrick */
  overflow: hidden; /* Ensure the image fits within the icon box */
}

.about .icon-box i img {
  width: 60%; 
  height: 60%; 
  object-fit: cover;
  filter: brightness(0) saturate(10%) invert(4.5%) sepia(100%) saturate(7496%) hue-rotate(353deg) brightness(91%) contrast(105%); /* Initial red filter */
}

.about .icon-box:hover i img {
  filter: none
}

.about .icon-box h3 {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}

.about .icon-box p {
  margin-bottom: 0;
  flex-grow: 1;
  display: flex;
  align-items: flex-start;
}

.about .icon-box:hover i {
  background-color: var(--accent-color); /* Firebrick */
  color: var(--contrast-color);
}

.about .icon-boxes .row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}


.about .icon-boxes .col-md-6:nth-child(2) .icon-box,
.about .icon-boxes .col-md-6:nth-child(4) .icon-box {
  margin-top: -40px;
}

@media (max-width: 768px) {

  .about .icon-boxes .col-md-6:nth-child(2) .icon-box,
  .about .icon-boxes .col-md-6:nth-child(4) .icon-box {
    margin-top: 0;
  }
}

/* Seção em Destaque */
.featured .card {
  background-color: var(--surface-color);
  color: var(--default-color);
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1); /* Slightly increased shadow for better visibility */
  border-radius: 10px; /* Added border radius for rounded corners */
  margin-bottom: 20px;
  border: 1px solid rgba(0, 0, 0, 0.05); /* Added a light border */
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* Align content to the top */
  align-items: center;
  text-align: center;
  padding: 20px; /* Increased padding for better spacing */
  min-height: 250px; /* Set a fixed minimum height for all cards */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Added transition for hover effect */
}

.featured .card:hover {
  transform: translateY(-10px); /* Slight lift on hover */
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15); /* Enhanced shadow on hover */
}

.featured .card .icon {
  color: var(--accent-color); /* Firebrick */
  background-color: color-mix(in srgb, var(--accent-color) 10%, white 100%); /* Firebrick */
  border: 4px solid var(--background-color);
  width: 72px;
  height: 72px;
  text-align: center;
  position: absolute;
  border-radius: 50%;
  left: calc(50% - 36px);
  top: -36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  line-height: 0;
  transition: 0.3s;
}

.featured .card:hover .icon {
  background-color: var(--accent-color); /* Firebrick */
  color: var(--contrast-color);
}

.featured .card h2 {
  font-weight: 700;
  font-size: 20px;
  padding: 0;
  margin: 50px 0 12px 0;
}

.featured .card p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  padding: 0 30px 10px 30px; /* Adjust padding for spacing */
  overflow: hidden; /* Ensure text does not overflow */
  text-overflow: ellipsis; /* Add ellipsis for overflow text */
  display: -webkit-box;
  -webkit-line-clamp: 8; /* Limit the number of lines */
  -webkit-box-orient: vertical;
}

.featured .card ul {
  list-style: none;
  padding: 0;
  margin: 10px 0 0 0; /* Adjust margin for better spacing */
  text-align: left; /* Align text to the left */
}

.featured .card ul li {
  font-size: 14px;
  line-height: 24px;
  padding-left: 20px;
  position: relative;
}

.featured .card ul li:before {
  content: "•";
  color: var(--accent-color); /* Firebrick */
  position: absolute;
  left: 0;
  top: 0;
}

/* Ensure all cards have the same size */
.featured .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.featured .swiper-wrapper {
  display: flex;
  align-items: stretch;
}

.featured .swiper-slide .card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* Align content to the top */
}

/* Seção de Recursos */
.features .features-item {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: -20px;
}

.features .features-item img {
  width: 500px;
  height: 500px;
  border-radius: 10px;
  box-shadow: none; /* Removed the shadow */
}

.features .features-item h3 {
  font-weight: 700;
  font-size: 26px;
  margin-bottom: 20px;
}

.features .features-item ul {
  list-style: none;
  padding: 0;
}

.features .features-item ul li {
  padding-bottom: 10px;
  display: flex;
  align-items: center;
}

.features .features-item ul li:last-child {
  padding-bottom: 0;
}

.features .features-item ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.features .features-item p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .features .features-item {
    flex-direction: column;
    text-align: center;
  }

  .features .features-item img {
    margin-bottom: 20px;
  }
}

/* Seção de Jornada do Cliente */
.features .features-item h3 {
  font-size: 28px; /* Increased font size */
  font-weight: 700;
  margin-bottom: 20px;
}

.features .features-item ul li {
  font-size: 18px; /* Increased font size */
  padding-bottom: 12px;
  display: flex;
  align-items: center;
}

.features .features-item ul i {
  font-size: 22px; /* Increased font size */
  padding-right: 6px;
  color: var(--accent-color);
}

/* Seção de Depoimentos */
.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
}

.testimonials .testimonial-item .testimonial-img {
  width: 120px;
  border-radius: 50%;
  border: 4px solid var(--background-color);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0 0 15px 0;
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/* Seção de Investimento */
.pricing .plan {
  background-color: var(--surface-color);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  padding: 40px 20px;
  text-align: center;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  align-items: stretch;
  transition: 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (min-width: 1200px) {
  .pricing .plan:hover {
    transform: scale(1.1);
    box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  }
}

.pricing h3 {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 20px;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing .price {
  font-size: 36px;
  color: var(--heading-color);
  font-weight: 600;
  font-family: var(--heading-font);
}

.pricing .price sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing .price span {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  font-weight: 300;
}

.pricing .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
  margin-bottom: 20px;
}

.pricing .icon i {
  font-size: 48px;
  line-height: 1;
}

.pricing ul {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
  list-style: none;
  margin: 0;
}

.pricing ul li {
  padding-bottom: 10px;
  text-align: left;
}

.pricing ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
  text-decoration: line-through;
}

.pricing .btn-buy {
  display: inline-block;
  padding: 8px 40px 10px 40px;
  border-radius: 50px;
  color: var(--accent-color); /* Firebrick */
  transition: none;
  font-size: 16px;
  font-weight: 400;
  font-family: var(--heading-font);
  font-weight: 600;
  transition: 0.3s;
  border: 1px solid var(--accent-color); /* Firebrick */
  margin-top: 40px;
}

.pricing .btn-buy:hover {
  background: var(--accent-color); /* Firebrick */
  color: var(--contrast-color);
}

.pricing .featured {
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
  background: var(--accent-color); /* Firebrick */
  color: var(--contrast-color);
}

/* Seção de Contato */
.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item i {
  color: var(--accent-color); /* Firebrick */
  background: color-mix(in srgb, var(--accent-color), transparent 92%); /* Firebrick */
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .info-item:hover i {
  background: var(--accent-color); /* Firebrick */
  color: var(--contrast-color);
}

.contact .php-email-form {
  height: 100%;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color); /* Firebrick */
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color); /* Firebrick */
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var (--accent-color), transparent 25%); /* Firebrick */
}

/* WhatsApp */
.whatsapp {
  position: fixed;
  visibility: visible;
  width: 45px;
  height: 45px;
  bottom: 60px;
  right: 8px;
  background-color: #ffffff;
  color: #07742f;
  border-radius: 60px;
  text-align: center;
  font-size: 30px;
}

.whatsapp-icon {
  margin-top: 13px;
}

/* Instagram */
.instagram {
  position: fixed;
  visibility: visible;
  width: 45px;
  height: 45px;
  bottom: 120px; 
  right: 8px;
  background-color: #ffffff;
  color: #E4405F;
  border-radius: 60px;
  text-align: center;
  font-size: 30px;
}

.instagram-icon {
  margin-top: 13px;
}

/* Instagram */
.linkedin {
  position: fixed;
  visibility: visible;
  width: 45px;
  height: 45px;
  bottom: 180px;
  right: 8px;
  background-color: #ffffff;
  color: #0173B1;
  border-radius: 60px;
  text-align: center;
  font-size: 30px;
}

.linkedin-icon {
  margin-top: 13px;
}

.whatsapp:hover {
  background-color: #ffffff; 
  color: #128C7E; 
}

.instagram:hover {
  background-color: #ffffff; 
  color: #C13584;
}

.linkedin:hover {
  background-color: #ffffff; 
  color: #004182;
}

.whatsapp, .instagram, .linkedin {
  display: inline-block;
  transition: background-color 0.3s ease;
}


[data-aos] {
  opacity: 0;
  transition-property: opacity, transform;
}

[data-aos].aos-animate {
  opacity: 1;
}

[data-aos][data-aos][data-aos-duration="1000"] {
  transition-duration: 1000ms;
}

[data-aos][data-aos][data-aos-easing="ease-in-out"] {
  transition-timing-function: ease-in-out;
}

/* Seção Tecnologias */

.tech-image {
  max-width: 100%;
  height: 100px;
  object-fit: contain;
  margin: 0 auto;
}

.tech-image-aumentar {
  max-width: 100%;
  height: 190px !important;
  object-fit: contain;
  margin: 0 auto;
}

.swiper-container {
  padding: 20px 0;
}

.swiper-wrapper {
  align-items: center;
  transition-timing-function: ease-in-out !important;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.gallery {
  padding: 70px 0;
}

.gallery-cell {
  width: 30%; 
  height: 140px;
  margin-right: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

.gallery-cell img {
  width: 220px;
  height:220px;
  object-fit: contain;
}


/* Estilo melhorado para seção de serviços */
.services-swiper {
  padding: 30px 0;
  overflow: visible !important;
}

.service-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 30px 25px;
  height: 100%;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  border-bottom: 4px solid #8a1414;
}

.service-card .icon-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(138, 20, 20, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: all 0.4s ease;
}

.service-card:hover .icon-wrapper {
  background: #8a1414;
}

.service-card .icon-wrapper i {
  font-size: 32px;
  color: #8a1414;
  transition: all 0.4s ease;
}

.service-card:hover .icon-wrapper i {
  color: #fff;
}

.service-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #212529;
  transition: all 0.3s ease;
}

.service-card:hover h3 {
  color: #8a1414;
}

.service-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #6c757d;
  flex-grow: 1;
  margin-bottom: 20px;
}

.service-card .example {
  background-color: rgba(138, 20, 20, 0.05);
  padding: 12px 15px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.5;
  color: #6c757d;
}

.service-card .example span {
  font-weight: 700;
  color: #8a1414;
}

/* Estilização para botões de navegação do Swiper */
.services-swiper .swiper-button-next,
.services-swiper .swiper-button-prev {
  color: #8a1414;
  background: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-swiper .swiper-button-next:after,
.services-swiper .swiper-button-prev:after {
  font-size: 18px;
}

.services-swiper .swiper-button-next {
  right: -20px;
}

.services-swiper .swiper-button-prev {
  left: -20px;
}

.services-swiper .swiper-pagination {
  bottom: -40px;
}

.services-swiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #ddd;
  opacity: 1;
}

.services-swiper .swiper-pagination-bullet-active {
  background: #8a1414;
  width: 25px;
  border-radius: 5px;
}

/* Efeito de transição para o coverflow */
.services-swiper .swiper-slide {
  transition: all 0.4s ease;
  opacity: 0.7;
  transform: scale(0.9);
}

.services-swiper .swiper-slide-active {
  opacity: 1;
  transform: scale(1);
}

.services-swiper .swiper-button-next:hover,
.services-swiper .swiper-button-prev:hover {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  box-shadow: 0 5px 15px rgba(138, 20, 20, 0.2);
}

.img-services{
  width: 350px;
  height: 320px;
  align-items: center;
}

/* Responsividade */
@media (max-width: 991px) {
  .services-swiper .swiper-button-next {
    right: 10px;
  }
  
  .services-swiper .swiper-button-prev {
    left: 10px;
  }
}

@media (max-width: 768px) {
  .service-card {
    padding: 25px 20px;
  }
  
  .service-card h3 {
    font-size: 18px;
  }
  
  .service-card p {
    font-size: 14px;
  }
  
  .service-card .example {
    padding: 10px;
    font-size: 13px;
  }
}

/* Estilização para seção de tecnologias - rolagem infinita lenta */
.tech-section {
  background: linear-gradient(to bottom, #f8f9fa, #fff);
  position: relative;
  overflow: hidden;
}

.tech-card {
  background-color: transparent;
  border-radius: 0;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 15px;
  overflow: hidden;
  transition: transform 0.4s ease;
  border: none;
  cursor: default !important;
  /* Removido pointer-events: none para permitir hover */
}

.tech-card:hover {
  transform: translateY(-8px);
}

.tech-card img {
  height: 180px;
  width: 180px;
  object-fit: contain;
  transition: all 0.3s ease;
  filter: grayscale(15%);
  /* Removido pointer-events: none para permitir hover */
}

.tech-image-low{
  height: 150px !important;
  width: 150px !important;
}

.tech-image-low-fabric{
  height: 100px !important;
  width: 100px !important;
}

.tech-card:hover img {
  transform: scale(1.08);
  filter: grayscale(0%);
}

.tech-overlay {
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
  background: rgba(138, 20, 20, 0.9);
  color: white;
  padding: 8px;
  text-align: center;
  transition: all 0.3s ease;
  opacity: 0;
  /* Removido pointer-events: none para permitir hover */
}

.tech-card:hover .tech-overlay {
  bottom: 0;
  opacity: 1;
}

.tech-overlay h4 {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: white;
}

/* Fluidez suave do carrossel de tecnologias */
.tech-swiper {
  padding: 20px 0;
  overflow: visible !important;
  cursor: default !important;
}

.tech-swiper .swiper-slide {
  transition: none;
  cursor: default !important;
  /* Removido pointer-events: none para permitir hover */
}

/* Melhora o desempenho de renderização */
.tech-swiper .swiper-wrapper {
  transition-timing-function: linear !important;
  will-change: transform;
  /* Removido pointer-events: none para permitir hover */
}

/* Seção de clientes estilizada */
.clients-section {
  position: relative;
}

.client-card {
  border-radius: 12px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  transition: all 0.3s ease;
  overflow: hidden;
}

.client-card img {
  width: 200px;
  height: 200px;
  object-fit: contain;
  transition: all 0.4s ease;
}

.clients-swiper .swiper-button-next,
.clients-swiper .swiper-button-prev {
  color: #8a1414;
  background: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transition: all 0.3s ease;
}

.clients-swiper:hover .swiper-button-next,
.clients-swiper:hover .swiper-button-prev {
  opacity: 1;
}

.clients-swiper .swiper-button-next:after,
.clients-swiper .swiper-button-prev:after {
  font-size: 20px;
  font-weight: bold;
}

.clients-swiper .swiper-button-next {
  right: -25px;
}

.clients-swiper .swiper-button-prev {
  left: -25px;
}

.clients-swiper .swiper-pagination {
  bottom: -40px;
}

.clients-swiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #ddd;
  opacity: 1;
  transition: all 0.3s ease;
}

.clients-swiper .swiper-pagination-bullet-active {
  background: #8a1414;
  width: 25px;
  border-radius: 5px;
}

/* Responsividade para ambas as seções */
@media (max-width: 991px) {
  .clients-swiper .swiper-button-next {
    right: 10px;
  }
  
  .clients-swiper .swiper-button-prev {
    left: 10px;
  }
  
  .tech-card, .client-card {
    height: 150px;
  }
}

@media (max-width: 768px) {
  .tech-card, .client-card {
    height: 140px;
  }
  
  .tech-overlay h4 {
    font-size: 14px;
  }
  
  .client-card img {
    max-height: 60px;
  }
}