/* Global Styles */
html, body {
    overflow-x: hidden; /* Esconde rolagem horizontal */
    width: 100vw; /* Garante que o site ocupe exatamente a largura da tela */
    margin: 0;
    padding: 0;
    background-color: #f8f9fa; /* Fundo claro e clean */
}

/* ================================================================ 
Header Styles  
===================================================================*/

.header {
    background: linear-gradient(70deg, #fff 1%, #fff 30%, #fff 70%, #6E1D1E 100%);
    border: none !important; /* Remove a borda */
    box-shadow: none !important; /* Remove qualquer sombra */
    padding: 5px 100px 5px 100px;

}

/* Links de navegação */
.navbar-light .navbar-nav .nav-link {
    color: #6E1D1E; /* Texto branco no gradiente */
    font-weight: 800;
    transition: color 0.3s ease; /* Transição suave */
}

.navbar-light .navbar-nav .nav-link:hover {
    color: #F0AFAF; /* Cor mais clara ao passar o mouse */
}

/* Logotipo */
.logo {
    height: 50px; /* Tamanho padrão no desktop */
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.1); /* Leve zoom ao passar o mouse */
}

/* Redes sociais (desktop) */
.social-icons {
    display: flex;
    gap: 15px;
    padding-left: 40px;
}

.social-link {
    color: #ffffff; /* Ícones brancos no degradê */
    font-size: 24px; /* Tamanho dos ícones */
    transition: transform 0.3s ease, color 0.3s ease; /* Efeito hover */
}

.social-link:hover {
    color: #F0AFAF; /* Ícones com cor mais clara ao passar o mouse */
}

/* Menu Hambúrguer no Mobile */
.custom-toggler {
    border: none !important;
    padding: 5px;
    background-color: transparent; /* Fundo transparente */
    display: flex;
    align-items: center;
    justify-content: center;
}


/* Dropdown Redes Sociais */
.dropdown-menu {
    border-radius: 8px; /* Borda arredondada */
    border: none;
    padding: 10px 0;
    text-align: center;
}

.dropdown-item {
    font-size: 14px;
    color: #3F3F40;
    padding: 8px 15px;
    font-family: "Poppins", serif;
}

.dropdown-item:hover {
    color: #8F0909; /* Vermelho da marca */
    background-color: #f8f9fa; /* Fundo claro */
}

/* ======================================================================= 
Hero Section  
=========================================================================*/
.hero {
    background: linear-gradient(150deg, #411A1A 10%, #6E1D1E 30%, #6E1D1E 30%, #6E1D1E 70%);
    height: auto; /* Altura fixa */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden; /* Evita transbordo */
    border-radius: 0 0 0 150px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
    padding: 60px 100px 20px 100px;

}

/* Efeito de Fade In com Slide Up */
.image-banner {
    width: 90%;
    height: 700px;
    background-image: url('../img/img-section-hero.webp');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;

    /* Configuração inicial da animação */
    opacity: 0; /* Começa invisível */
    transform: translateY(90px); /* Move a imagem para baixo no início */
    animation: fadeInUp 1.5s ease-out forwards; /* Nome da animação + tempo */
}

/* Keyframes da animação */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.hero h1 {
    font-size: 45px;
    font-weight: bold;
    margin-bottom: 15px;
    margin-top: 20px;
    font-family: "Poppins", serif;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    line-height: 1.6;
    font-family: "Poppins", serif;
}

.hero .btn {
    background: linear-gradient(45deg, #ffcc00, #ff6600);
    color: #000;
    border: 1px solid #fff;
    font-size: 22px;
    padding: 15px 15px;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-family: "Poppins", serif;
    width: 70%;
    font-weight: 600;
}

.hero .btn:hover {
    transform: scale(1.1);
}

.btn i.bi-whatsapp {
    font-size: 1.5rem; /* Ajusta o tamanho do ícone */
    color: #000; /* Cor branca para o ícone */
    transition: color 0.3s ease; /* Transição suave no hover */
}

.btn:hover i.bi-whatsapp {
    color: #25d366; /* Cor do WhatsApp ao passar o mouse */
}


/* Estilo do texto digitado */
.typing-effect {
    font-size: 20px; /* Tamanho do texto */
    font-weight: bold;
    font-family: "Raleway", serif;
    color: #fff; /* Cor do texto */
    height: 150px; /* Garante alinhamento vertical */
    text-align: left; /* Alinha o texto à esquerda */
    overflow: hidden; /* Oculta qualquer transbordo */
}

#typing-text-desktop {
    display: inline-block;
    padding-right: 8px;
    white-space: pre-wrap;
    overflow: hidden;
    word-wrap: break-word;
    max-width: 90%;
    line-height: 1.2;
    padding-top: 20px;
    padding-left: 10px;
    font-family: "Raleway", serif;
    font-style: italic;
}

/* Cursor simples para o texto digitado */
#typing-text-desktop::after {
    content: ''; /* Adiciona o cursor */
    display: inline-block;
    width: 6px; /* Largura do cursor */
    height: 1em; /* Altura igual ao texto */
    background-color: #FFCC51; /* Cor do cursor */
    margin-left: 5px; /* Pequeno espaço entre texto e cursor */
    animation: blink 0.7s steps(1) infinite; /* Piscar */
    transform: translateY(3px); /* Ajusta a posição vertical */
}


/* Animação do cursor piscando */
@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

/* --------------------------------------------------- 
Serviços Section 
----------------------------------------------------*/
#servicos {
    padding-top: 40px;
    padding-bottom: 40px;
    margin-top: -100px;
}
#servicos h2 {
    display: none;
}
.scroll-container {
    display: flex; /* Cards alinhados horizontalmente */
    gap: 20px; /* Reduz o espaço entre os cards */
    overflow-x: auto; /* Ativa a rolagem horizontal */
    scrollbar-width: none; /* Esconde barra no Firefox */
    -ms-overflow-style: none; /* Remove barra no IE */
    scroll-behavior: smooth; /* Rolagem suave */
    padding: 10px; /* Espaçamento interno para o container */
}

.scroll-container::-webkit-scrollbar {
    display: none; /* Esconde barra de rolagem no Chrome */
}

/* Customização dos Cards */
.custom-card {
    flex: 0 0 310px; /* Largura fixa dos cards */
    max-width: 310px; /* Limita a largura do card */
    background: #ffffff;
    border: 1px solid #e5e5e5; /* Borda fina */
    border-radius: 15px; /* Bordas arredondadas */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Sombra suave */
    overflow: hidden; /* Garante que a imagem fique dentro do card */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Animação no hover */
    padding: 8px;
}

.custom-card:hover {
    transform: translateY(-5px); /* Eleva o card */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Intensifica a sombra */
}

/* Imagem no topo do card */
.custom-card-img {
    width: 100%;
    height: 150px; /* Altura fixa para as imagens */
    object-fit: cover; /* Ajusta a imagem ao espaço */
    border-radius: 15px; /* Bordas arredondadas */
    border: 1px solid #000; /* Borda fina */
}

/* Corpo do Card */
.custom-card-body {
    padding: 15px;
}

.custom-card-title {
    font-size: 18px; /* Tamanho do título */
    font-weight: bold;
    color: #333333;
    margin-bottom: 10px;
    font-family: "Poppins", serif;
}

.custom-card-text {
    font-size: 14px;
    color: #555555;
    line-height: 1.5;
    margin-bottom: 15px;
}

/* Rodapé do Card */
.custom-card-footer {
    background: #f8f9fa;
    padding: 10px;
    font-size: 14px;
    color: #777777;
    border-top: 1px solid #e5e5e5;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Botões de Navegação */
.arrow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background-color: #6D1D1E; /* Preenchimento do botão */
    color: #fff; /* Cor da seta dentro */
    border: 2px solid #dd3543; /* Borda do botão */
    border-radius: 50%; /* Botão circular */
    width: 40px; /* Tamanho do botão */
    height: 40px; /* Altura do botão */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Sombra suave */
    transition: all 0.3s ease; /* Suaviza hover */

}

.arrow-btn:hover {
    background-color: #C51A26; /* Preenchimento ao passar o mouse */
    color: #5D0505; /* Cor da seta invertida */
    border-color: #5D0505; /* Cor da borda invertida */
}

/* Botão Esquerdo */
.left-arrow {
    left: 10px; /* Posição à esquerda */
}

/* Botão Direito */
.right-arrow {
    right: 10px; /* Posição à direita */
}


/* Menu Âncora (Desktop) */
.menu-anchor {
    list-style: none; /* Remove marcadores da lista */
    margin: 0;
    padding: 0;
    display: flex;
    gap: 10px; /* Espaçamento entre os itens */
    justify-content: flex-end; /* Alinha o menu à direita */
}

.menu-anchor .nav-link {
    font-size: 16px; /* Tamanho do texto */
    font-weight: 300;
    color: #3F3F40; /* Cor padrão */
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease; /* Transição suave */
}

.menu-anchor .nav-link:hover {
    color: #8F0909; /* Cor ao passar o mouse */
    transform: scale(1.1); /* Leve zoom ao passar o mouse */
}

.menu-anchor .nav-item {
    display: inline-block; /* Itens alinhados horizontalmente */
}

/* Div das avaliações sociais */
.social-ratings {
    display: flex; /* Alinha os itens horizontalmente */
    gap: 20px; /* Espaçamento entre os itens */
    justify-content: flex-start; /* Alinha os ícones ao início */
    margin-top: 100px;
}

.rating-item {
    display: flex; /* Alinha os itens horizontalmente */
    align-items: center;
    margin: 0; /* Remove margens extras */
}

.rating-logo {
    width: 100px; /* Aumenta o tamanho dos ícones */
    height: auto; /* Mantém a proporção da imagem */
}
.text-md-start h6 {
    font-size: 14px;
    margin-top: -18px;
    color: #d6d6d6;
}

/* --------------------------------------------------- 
Seção Destaque 
----------------------------------------------------*/
.atendimento-section {
    background-color: #f9f9f9; /* Fundo clean */
    padding: 80px 0;
    text-align: center;
}

.atendimento-section h2 {
    display: block; /* Garante que o título seja exibido */
    font-size: 40px;
    margin-bottom: 20px;
    color: #dd2c39;


    }
.atendimento-section h2::after {
    content: '';
    display: block;
    width: 120px; /* Largura da linha */
    height: 3px; /* Espessura da linha */
    background-color: #C51A26; /* Cor da linha (verde do WhatsApp, por exemplo) */
    margin: 5px auto 0; /* Centraliza a linha e adiciona espaçamento */
    border-radius: 2px; /* Bordas arredondadas na linha */
    }

.descricao {
    font-size: 26px;
    color: #555;
    margin-bottom: 30px;
}

/* Grade de serviços */
.grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.grid-item {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    color: #3F3F40;
    transition: all 0.3s ease;
}

.grid-item i {
    font-size: 30px;
    color: #C51A26;
    margin-bottom: 10px;
}

.grid-item:hover {
    background: #C51A26;
    color: #fff;
}

.grid-item:hover i {
    color: #fff;
}


/* =========================
   Footer (Rodapé) 
   ========================= */
.footer-section {
  background-color: #1a1a1a; /* Ajuste para a cor de fundo desejada */
  color: #fff;
  padding: 40px 0;
  font-family: sans-serif; /* Ajuste conforme a fonte utilizada no seu projeto */
}

/* Container centralizado */
.footer-section {
  margin: 0 auto;
  padding: 0 15px;
}

/* Organização das colunas do rodapé */
.footer-columns {
  display: flex;
  flex-wrap: wrap;       /* Permite quebrar linha em telas menores */
  justify-content: space-between;
  margin-bottom: 20px;
  padding-left: 60px;
  gap: 30px;
}

.footer-column {
  flex: 1 1 200px;       /* Largura mínima de 200px por coluna */
  margin: 20px 0;
}

/* Títulos das colunas */
.footer-column h3 {
  font-size: 1rem;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Texto e listas */
.footer-column p,
.footer-column li {
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Listas sem bullets e sem padding */
.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Links */
.footer-column a {
  color: #fff;
  text-decoration: none;
}

.footer-column a:hover {
  text-decoration: underline;
}

/* Ícones de redes sociais em linha */
.social-media {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.social-media li {
  list-style: none;
}

/* Se quiser ajustar tamanho dos ícones: */
.social-media i {
  font-size: 1.2rem;
}

/* Linha inferior de direitos autorais */
.footer-bottom {
  text-align: center;
  font-size: 0.8rem;
  border-top: 1px solid #C51A26;
  padding-top: 10px;
  padding-bottom:8px;
}
.footer-column  h3::after {
    content: '';
    display: block;
    width: 30px; /* Largura da linha */
    height: 6px; /* Espessura da linha */
    background-color: #C51A26;
    border-radius: 2px; /* Bordas arredondadas na linha */
    }


/* ============================================
   Seção Depoimentos
   =========================================== */
.testimonial-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #3F3F40, #8F0909);
    color: white;
    text-align: center;
    overflow: hidden;
}

.testimonial-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.testimonial-container {
    display: flex;
    transition: transform 0.5s ease-in-out; /* Transição suave */
}

.testimonial-img {
    width: 100%; /* Largura total no mobile */
    height: auto;
    border-radius: 6px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
    flex: 0 0 100%; /* Cada imagem ocupa 100% da largura no mobile */
}

/* Estilos para Desktop */
@media (min-width: 768px) {
    .testimonial-container {
        width: 200%; /* Dobra a largura para o carrossel infinito */
        animation: scrollDesktop 20s linear infinite; /* Animação contínua */
    }

    .testimonial-img {
        width: 320px; /* Largura fixa para desktop */
        margin-right: 20px; /* Espaçamento entre as imagens */
        flex: 0 0 auto; /* Impede que as imagens se estiquem */
    }

    @keyframes scrollDesktop {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-50%); /* Move o contêiner para a esquerda */
        }
    }
}

/* Estilos para Mobile */
@media (max-width: 767px) {
    .testimonial-slider {
        overflow: hidden; /* Esconde o overflow para o slide */
    }

    .testimonial-container {
        width: 100%; /* Ajusta a largura para o mobile */
    }

    .testimonial-img {
        width: 100%; /* Largura total no mobile */
        margin-right: 0;
    }
}



.section-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
}
.section-title::after {
        content: '';
        display: block;
        width: 120px; /* Largura da linha */
        height: 3px; /* Espessura da linha */
        background-color: #C51A26; /* Cor da linha (verde do WhatsApp, por exemplo) */
        margin: 5px auto 0; /* Centraliza a linha e adiciona espaçamento */
        border-radius: 2px; /* Bordas arredondadas na linha */
    }

.section-subtitle {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.8;
}


/* Estilos Gerais da Seção */
.section-tech {
  background: linear-gradient(135deg, #1a1a1a, #2c3e50);
  color: #fff;
  padding: 80px 0;
  overflow: hidden;
}

/* Texto de Introdução */
.intro-text {
  text-align: center;
  margin-bottom: 60px;
}

.intro-text h2 {
  font-size: 40px;
  margin-bottom: 20px;
  color: #FFF;
}

.intro-text h2::after {
    content: '';
    display: block;
    width: 120px; /* Largura da linha */
    height: 3px; /* Espessura da linha */
    background-color: #C51A26; /* Cor da linha (verde do WhatsApp, por exemplo) */
    margin: 5px auto 0; /* Centraliza a linha e adiciona espaçamento */
    border-radius: 2px; /* Bordas arredondadas na linha */
}


.intro-text p {
  font-size: 28px;
  line-height: 1.4;
  max-width: 800px;
  margin: 0 auto;
}

/* Grid de Diferenciais */
.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.diferencial-item {
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.diferencial-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.icon-tech {
  font-size: 2.5rem;
  color: #dd2c39;
  margin-bottom: 20px;
}

.diferencial-item h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.diferencial-item p {
  font-size: 1rem;
  color: #ddd;
}

/* Botão CTA */
.cta-wrapper {
  text-align: center;
}
/* Estilos Gerais da Seção */
.section-tech {
  position: relative;
  background: linear-gradient(135deg, #1a1a1a, #2c3e50);
  color: #fff;
  padding: 100px 0;
  overflow: hidden;
}

/* Efeito de Múltiplas Faixas na Divisão da Section */
.section-tech::before,
.section-tech::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 50px;
  background: linear-gradient(135deg, #fc7504, #ffd85e);
  transform: skewY(-3deg);
  z-index: 1;
}

.section-tech::before {
  top: -25px;
}

.section-tech::after {
  bottom: -25px;
  background: linear-gradient(135deg, #fc7504, #ffd85e);
}

/* Texto de Introdução */
.intro-text {
  text-align: center;
  margin-bottom: 60px;
}


/* Grid de Diferenciais */
.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.diferencial-item {
  text-align: center;
  padding: 30px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.diferencial-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.2);
}

.icon-tech i {
  font-size: 2.5rem;
  color: #dd2c39;
  margin-bottom: 20px;
}

.diferencial-item h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.diferencial-item p {
  font-size: 1rem;
  color: #ddd;
}

/* Botão CTA */
.cta-wrapper {
  text-align: center;
}

.cta-btn {
    background: linear-gradient(45deg, #ff6600, #ffcc00);
    color: #000;
    border: 1px solid #fff;
    font-size: 22px;
    padding: 15px 15px;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-family: "Poppins", serif;
    width: 100%;
    font-weight: 600;
    text-decoration: none;
}

.cta-btn:hover {
  background: #ff6600;
  transform: scale(1.1);
color: #000;
}

/* ============================================
   Section Beneficios
   =========================================== */

.section-beneficios {
  background-image: ;
  color: #fff;
  padding: 100px 0;
  overflow: hidden;
position: relative;
  padding: 50px 20px;
  background: url('../img/bkg.webp') no-repeat top center;
  background-size: cover; /* Ajusta a imagem para cobrir toda a área */
  background-attachment: fixed; /* Fixa o fundo no desktop */
}

/* Título da Seção */
.titulo-beneficios {
  text-align: center;
  margin-bottom: 60px;
}

.titulo-beneficios h2 {
  font-size: 40px;
  margin-bottom: 10px;
  color: #FFF;
  padding: 0;
}


.titulo-beneficios h2::after {
    content: '';
    display: block;
    width: 120px; /* Largura da linha */
    height: 3px; /* Espessura da linha */
    background-color: #C51A26; /* Cor da linha (verde do WhatsApp, por exemplo) */
    margin: 5px auto 0; /* Centraliza a linha e adiciona espaçamento */
    border-radius: 2px; /* Bordas arredondadas na linha */
}


.titulo-beneficios p {
  font-size: 30px;
  color: #FFF;
}

/* Linha do Tempo */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 0;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: #dd2c39;
  transform: translateX(-50%);
}

.timeline-item {
  padding: 20px 40px;
  position: relative;
  width: 50%;
}

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 50%;
  text-align: left;
}

.timeline-icon {
  position: absolute;
  top: 20px;
  background: #dd2c39;
  color: #FFF;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.timeline-item:nth-child(odd) .timeline-icon {
  right: -25px;
}

.timeline-item:nth-child(even) .timeline-icon {
  left: -25px;
}

.timeline-content {
  background: rgba(255, 255, 255, 0.9);
  padding: 20px;
  border-radius: 10px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.8);
}

.timeline-item:hover .timeline-content {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.timeline-content h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #dd2c39;
}

.timeline-content p {
  font-size: 1rem;
  color: #000;
}

/* Estilos Gerais da Seção */
.section-faq {
  background: linear-gradient(135deg, #1a1a1a, #2c3e50);
  color: #fff;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

/* Título da Seção */
.titulo-faq {
  text-align: center;
  margin-bottom: 60px;
}

.titulo-faq h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #dd2c39;
}
.titulo-faq h2::after {
    content: '';
    display: block;
    width: 120px; /* Largura da linha */
    height: 3px; /* Espessura da linha */
    background-color: #C51A26; /* Cor da linha (verde do WhatsApp, por exemplo) */
    margin: 5px auto 0; /* Centraliza a linha e adiciona espaçamento */
    border-radius: 2px; /* Bordas arredondadas na linha */
}


.titulo-faq p {
  font-size: 1.2rem;
  color: #ddd;
}

/* Lista de Perguntas e Respostas */
.faq-lista {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.faq-pergunta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  cursor: pointer;
}

.faq-pergunta h3 {
  font-size: 1.2rem;
  margin: 0;
  color: #fff;
}

.faq-pergunta i {
  font-size: 1.2rem;
  color: #dd2c39;
  transition: transform 0.3s ease;
}

.faq-icon {
  margin-right: 15px;
}

.faq-icon i {
  font-size: 1.5rem;
  color: #dd2c39;
}

.faq-resposta {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.5s ease, padding 0.5s ease;
}

.faq-resposta p {
  font-size: 1rem;
  color: #ddd;
  margin: 0;
  padding-bottom: 20px;
}

/* Estado Aberto */
.faq-item.aberto .faq-pergunta i {
  transform: rotate(180deg);
}

.faq-item.aberto .faq-resposta {
  max-height: 200px; /* Ajuste conforme necessário */
  padding-top: 10px;
}



/* Estilos Gerais da Seção */
.section-cta {
  position: relative;
  background: #1a1a1a;
  color: #fff;
  padding: 150px 0;
  overflow: hidden;
  text-align: center;
}

/* Fundo de Partículas Animadas */
#particles-js {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Container */
.container {
  position: relative;
  z-index: 2;
}

/* Texto Principal */
.cta-texto h2 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: #dd2c39;
  line-height: 1.3;
}

.cta-texto p {
  font-size: 1.5rem;
  color: #ddd;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Efeito de Digitação */
.digitando {
  display: inline-block;
  overflow: hidden;
  border-right: 0.15em solid #dd2c39; /* Cursor de digitação */
  white-space: nowrap; /* Mantém o texto em uma linha no desktop */
  animation: digitando 3.5s steps(40, end), piscar 0.75s step-end infinite;
}

@keyframes digitando {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes piscar {
  from, to {
    border-color: transparent;
  }
  50% {
    border-color: #dd2c39;
  }
}

/* Botão de Ação */
.btn-neon {
  display: inline-block;
  padding: 15px 30px;
  font-size: 1.2rem;
  font-weight: bold;
  color: #dd2c39;
  text-decoration: none;
  border: 2px solid #dd2c39;
  border-radius: 50px;
  box-shadow: 0 0 10px #dd2c39, 0 0 20px #dd2c39, 0 0 40px #dd2c39;
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-neon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300%;
  height: 300%;
  background: radial-gradient(circle, rgba(0, 255, 204, 0.3), transparent);
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.5s ease;
  z-index: 0;
}

.btn-neon:hover {
  background: #dd2c39;
  color: #1a1a1a;
  box-shadow: 0 0 20px #dd2c39, 0 0 40px #dd2c39, 0 0 80px #dd2c39;
}

.btn-neon:hover::before {
  transform: translate(-50%, -50%) scale(1);
}

.btn-neon span {
  position: relative;
  z-index: 1;
}



/* -------------------------------------------------------------- Ajustes para Mobile -------------------------------------------------------------- */
@media (max-width: 768px) {
    .navbar {
        padding: 10px 15px;
    }
    main {
        background-color: #fff;
    }

    /* Logo no mobile */
    .navbar .logo {
        height: 40px !important; /* Reduz o tamanho do logo */
    }
    .py-5 {
        padding-top: 0 !important;
    }

    .navbar-toggler {
        border: none;
        display: inline-block;
    }
    .menu-anchor {
        display: none;
    }

    .hero {
        height: auto; /* Altura automática para se ajustar ao conteúdo */
        padding: 10px 0 10px 0; /* Adiciona um pouco de espaço interno */
        border-radius: 0 0 0 60px;
    }

    /* Ajustes para a coluna da esquerda */
    .hero .col-md-6 {
        text-align: center; /* Centraliza o conteúdo */
    }

    /* Ajustes para os ícones de redes sociais */
    .social-ratings {
        justify-content: center; /* Centraliza os ícones */
        margin-bottom: 20px; /* Espaçamento inferior */
        gap: 0;
    }

    .rating-item {
        margin: 5px 10px; /* Espaçamento entre os ícones */
    }

    /* Ajustes para o título */
    .hero h1 {
        font-size: 28px; /* Reduz o tamanho da fonte */
        margin-top: 25px; /* Ajusta o espaçamento superior */
    }

    /* Ajustes para o parágrafo */
    .hero p {
        font-size: 1rem; /* Reduz o tamanho da fonte */
        margin-bottom: 20px; /* Ajusta o espaçamento inferior */
    }

    .hero .btn {
        width: 90%; /* Define a largura do botão como 80% */
        margin: 0 auto; /* Centraliza o botão horizontalmente */
        display: block; /* Garante que o margin: auto funcione */
        font-size: 16px; /* Mantém o tamanho da fonte reduzido */
        padding: 15px 8px; /* Mantém o padding ajustado */
    }
    .bi-whatsapp {
        display: none;
    }

    /* Ajustes para o texto digitado */
    .typing-effect {
        height: 50px; /* Altura automática */
        margin-top: 20px; /* Espaçamento superior */
        text-align: center; /* Centraliza o texto */
    }

    #typing-text-desktop {
        font-size: 16px; /* Reduz o tamanho da fonte */
        padding-top: 5px; /* Ajusta o espaçamento superior */
        padding-left: 0; /* Remove o padding à esquerda */
    }

    /* Ajustes para a coluna da direita (imagem) */
    .image-banner {
        display: none;

    }
    .container.position-relative{
        padding: 0;
    }

    #servicos {
        background-color: #fff;
        margin-top: 0;
    }
    #servicos h2 {
        display: block; /* Garante que o título seja exibido */
        font-size: 32px;
        margin: 30px 0 20px 0;
        color: #333;
        text-align: center;

    }
    
    /* Efeito de sublinhado moderno */
    #servicos h2::after {
        content: '';
        display: block;
        width: 120px; /* Largura da linha */
        height: 3px; /* Espessura da linha */
        background-color: #C51A26; /* Cor da linha (verde do WhatsApp, por exemplo) */
        margin: 5px auto 0; /* Centraliza a linha e adiciona espaçamento */
        border-radius: 2px; /* Bordas arredondadas na linha */
    }
    
    .scroll-container {
        flex-wrap: nowrap; /* Impede a quebra de linha */
        gap: 10px; /* Espaçamento menor entre os cards */
    }

    .custom-card {
        flex: 0 0 calc(80% - 10px); /* Cards ocupam 80% da largura no mobile */
        max-width: none; /* Remove a limitação de largura */
        background-color: #eaeaea;
    }

    .arrow-btn {
        display: none; /* Remove as setas de navegação no mobile */
    }

    .custom-card-img {
        height: 120px; /* Reduz a altura da imagem */
    }

    .custom-card-title {
        font-size: 18px; /* Título menor */
        color: #000;
    }

    .custom-card-text {
        font-size: 15px; /* Texto menor */
        color: #283644;
    }

    .custom-card-footer {
        font-size: 12px; /* Texto menor no rodapé */
    }
    .grid-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .atendimento-section {
        padding: 30px 10px 50px 10px;
    }

    .atendimento-section h2 {
        display: block; /* Garante que o título seja exibido */
        font-size: 32px;
        margin-bottom: 20px;
        color: #dd2c39;


    }
    .atendimento-section h2::after {
        content: '';
        display: block;
        width: 120px; /* Largura da linha */
        height: 3px; /* Espessura da linha */
        background-color: #C51A26; /* Cor da linha (verde do WhatsApp, por exemplo) */
        margin: 5px auto 0; /* Centraliza a linha e adiciona espaçamento */
        border-radius: 2px; /* Bordas arredondadas na linha */
    }

     .footer-column {
        flex-direction: column;  /* Empilha as colunas no mobile */
        flex: 1 1 100%;
        margin: 10px 0;
     }
    .footer-column  h3::after {
        content: '';
        display: block;
        width: 30px; /* Largura da linha */
        height: 6px; /* Espessura da linha */
        background-color: #C51A26; /* Cor da linha (verde do WhatsApp, por exemplo) */
        border-radius: 2px; /* Bordas arredondadas na linha */
    }

    .footer-columns {
        padding-left: 0;
        gap: 0;
    }
        .porque-escolher {
        padding: 60px 10px;
    }

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

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 18px;
    }

    .section-title {
        font-size: 26px;
    }



    /* Oculta as setas no mobile */
    .arrow {
        display: none;
    }


    .testimonial-info h4 {
        font-size: 16px;
    }
      .section-tech {
    padding: 60px 0 80px 0;
  }

  .intro-text h2 {
    font-size: 2rem;
  }

  .intro-text p {
    font-size: 18px;
  }

  .diferenciais-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .diferencial-item {
    padding: 20px;
  }

  .icon-tech i {
    font-size: 2rem;
  }

  .cta-btn {
    font-size: 1rem;
    padding: 12px 24px;
    width: 100%; /* Define a largura do botão como 80% */

  }
    .section-servicos {
    padding: 60px 0;
  }

  .titulo-servicos h2 {
    font-size: 2rem;
  }

  .titulo-servicos p {
    font-size: 1rem;
  }

  .servicos-carrossel {
    flex-direction: column;
    gap: 20px;
    overflow-x: unset;
  }

  .servico-card {
    flex: 1 1 auto;
  }
  .section-beneficios {
    padding: 60px 0;
    background-image: ;
    overflow: hidden;
    position: relative;
    background: url('../img/bkg-mobile.webp') no-repeat top center;
    background-size: cover; /* Ajusta a imagem para cobrir toda a área */
    background-attachment: fixed; /* Fixa o fundo no desktop */
  }

  .titulo-beneficios h2 {
    font-size: 2rem;
  }

  .titulo-beneficios p {
    font-size: 18px;
  }

  .timeline {
    padding: 20px 0;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 50px;
    padding-right: 0px;
    text-align: left;
  }

  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    left: 0;
  }

  .timeline-item:nth-child(odd) .timeline-icon,
  .timeline-item:nth-child(even) .timeline-icon {
    left: 20px;
    right: auto;
    transform: translateX(-50%);
  }

  .timeline-content {
    padding: 15px;
    margin-left: 0px;
  }

  .timeline-content h3 {
    font-size: 1.3rem;
  }

  .timeline-content p {
    font-size: 0.9rem;
  }
.section-faq {
    padding: 60px 0;
  }

  .titulo-faq h2 {
    font-size: 2rem;
  }

  .titulo-faq p {
    font-size: 18px;
  }

  .faq-pergunta h3 {
    font-size: 1rem;
  }

  .faq-resposta p {
    font-size: 0.9rem;
  }
    .section-cta {
    padding: 50px 0;

  }

  .cta-texto h2 {
    font-size: 2rem;
    line-height: 1.4;
  }

  .cta-texto p {
    font-size: 18px;
  }

  .digitando {
    white-space: normal;
    border-right: none;
    animation: none;
  }

  .btn-neon {
    font-size: 1rem;
    padding: 12px 24px;
  }
  .descricao {
    font-size: 18px;
}

    .testimonial-container {
        width: 100%; /* Largura total no mobile */
    }

    .testimonial-img {
        width: 100%; /* Largura total no mobile */
    }

}


/* -------------------------------------------------------------- Ajustes Tela Maior que 1920px -------------------------------------------------------------- */
@media (min-width: 1920px) {
    .header {
    padding: 5px 200px 5px 200px;

}
    .text-coluna {
    width: 50%;
    padding: 0;
    }

    .destaque-section {
        width: 80vw; /* Ocupa toda a largura da tela */
        margin-top: 100px;

    }
    .hero {
    padding: 100px 200px 20px 200px;

}
.hero .btn {
    width: 70%;
}

}