/* ========================================================= */
/* --- ESTILOS GERAIS --- */
/* ========================================================= */

body {
  margin: 0;
  font-family: 'Alata', sans-serif;
  background-color: white;
  color: #2b2442;
  padding-top: 80px;

  /* SOLUÇÃO PARA O FOOTER NA BASE DA PÁGINA: FLEXBOX */
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ========================================================= */
/* --- HEADER E NAVEGAÇÃO --- */
/* ========================================================= */

.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #d13527;
  /* Vermelho KaruGO */
  padding: 10px 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.header-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LOGO */
.logo-container .site-logo {
  max-height: 70px;
  width: auto;
}

/* MENU */
.main-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 25px;
}

.main-menu li {
  display: inline-block;
}

.main-menu a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  transition: color 0.3s;
}

.main-menu a:hover {
  color: #f7680f;
  /* Laranja no hover */
}

/* ÍCONES SOCIAIS (HEADER) */
.social-icons {
  display: flex;
  align-items: center;
}

.social-icons a {
  color: white;
  margin-left: 15px;
  text-decoration: none;
  font-size: 0;
  transition: color 0.3s;
}

.social-icons a i {
  font-size: 20px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icons a:hover {
  color: #f7680f;
}

/* ========================================================= */
/* --- SEÇÃO HERO (COM CORTE CURVO) --- */
/* ========================================================= */

.hero {
  background-color: #E83131;
  /* Cor Vermelha Padrão */
  color: white;

  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 10%;

  position: relative;
  z-index: 2;
  /* Garante que o HERO e seu corte fiquem acima */

  /* Garante que o conteúdo fique visível acima do corte */
  padding-bottom: 10px;
  overflow: visible;
  /* Necessário para que o ::after apareça */
}

/* PSEUDO-ELEMENTO PARA CRIAR A CURVA VERMELHA CONVEXA */
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  /* Puxe para baixo, altura da curva */
  left: 0;
  width: 100%;
  height: 100px;

  background-color: #E83131;
  /* 👈 Cor da BARRIGA (Vermelho) */

  /* Cria o arco arredondado que simula a "barriga" */
  border-radius: 0 0 50% 50% / 0 0 100px 100px;

  z-index: 3;
  /* Acima do hero */
}

.hero-text {
  max-width: 45%;
}

.hero-text h2 {
  font-size: 48px;
  font-weight: 800;
}

.hero-text p {
  font-size: 18px;
  margin-top: 20px;
}

.hashtag {
  margin-top: 20px;
  font-weight: bold;
  color: white;
}

.hero-image img {
  max-width: 800px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* ========================================================= */
/* --- SEÇÃO FEATURES (EFEITO DE CORTE) --- */
/* ========================================================= */

.features-section {
  /* Cor de fundo da sua seção cinza claro */
  background-color: #f7f7f7;

  /* Remove o margin negativo */
  margin-top: 0;

  padding: 60px 10%;
  text-align: center;
  position: relative;
  z-index: 1;
  /* Fica abaixo do pseudo-elemento vermelho */
}

.features-section h2 {
  color: #2b2442;
  font-size: 32px;
  margin-bottom: 10px;
}

.features-section>p {
  /* Seletor direto para o primeiro <p> */
  font-size: 32px;
  color: #E83131;
  font-weight: bold;
  margin-bottom: 40px;
  font-style: italic;
}

.single-feature-card {
  background: white;
  border-radius: 12px;
  padding: 40px;
  max-width: 1200px;
  margin: auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
}

.feature-item img {
  width: 40px;
  height: 40px;
  margin-bottom: 15px;
}

.feature-item h3 {
  font-size: 18px;
  color: #2b2442;
  margin-bottom: 10px;
}

.feature-item p {
  font-size: 14px;
  color: #555;
  /* Sobrescreve o estilo do p principal, pois ele estava grande demais aqui */
  margin-bottom: 0;
  font-style: normal;
  font-weight: normal;
  color: #555;
}

.floating-contact-btn-wrapper {
  /* 1. Posicionamento Fixo */
  position: fixed;
  bottom: 25px;
  /* Distância da parte inferior */
  right: 25px;
  /* Distância da lateral direita */
  z-index: 10000;
  /* Garante que fique acima de tudo */

  /* Layout */
  display: flex;
  align-items: center;
  text-decoration: none;
  /* Remove sublinhado padrão do link */
  cursor: pointer;
}

/* 2. Estilo do Círculo do Ícone (onde o pulso é aplicado) */
.contact-icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #E83131;
  /* Cor Vermelha KaruGO */
  color: white;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  font-size: 30px;

  /* Aplica a animação de pulso */
  animation: pulse 2s infinite;
  transition: background-color 0.3s;
}

.contact-icon-circle:hover {
  background-color: #E83131;
  /* Vermelho um pouco mais escuro no hover */
}

/* 3. Estilo do Bloco de Texto */
.contact-text {
  background-color: #2b2442;
  /* Fundo escuro para o texto */
  color: white;
  padding: 8px 15px;
  border-radius: 8px;
  margin-right: 10px;
  /* Espaço entre o texto e o ícone */
  font-size: 14px;
  font-weight: bold;
  line-height: 1.2;
  text-align: right;

  /* Efeito de Transição (Opcional: Esconder em telas pequenas) */
  transition: opacity 0.3s ease-in-out;
}

.contact-text .sub-text {
  display: block;
  font-size: 11px;
  font-weight: normal;
  color: rgba(255, 255, 255, 0.8);
}

/* 4. Definição da Animação de Pulso */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(223, 32, 32, 0.6);
    /* Cor do KaruGO com opacidade */
  }

  70% {
    box-shadow: 0 0 0 15px rgba(223, 32, 32, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(223, 32, 32, 0);
  }
}

/* 5. Responsividade: Esconde o texto em dispositivos móveis para economizar espaço */
@media (max-width: 500px) {
  .contact-text {
    opacity: 0;
    width: 0;
    padding: 0;
    margin-right: 0;
    overflow: hidden;
  }

  .floating-contact-btn-wrapper {
    bottom: 15px;
    right: 15px;
  }
}

/* ========================================================= */
/* --- RODAPÉ (FOOTER) --- */
/* ========================================================= */

.main-footer {
  background-color: #E83131;
  color: white;
  font-size: 14px;
  padding-top: 120px;
}

.footer-top {
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-cols {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1;
  min-width: 150px;
  padding: 10px 0;
}

/* ESTILOS DE TÍTULO E LISTA DO FOOTER */
.footer-col h4 {
  color: white;
  font-size: 16px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col a {
  color: #e4e4e4;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: #f7680f;
}

/* LOGO e ÍCONES NO RODAPÉ */
.footer-logo {
  max-height: 50px;
  margin-bottom: 15px;
}

.social-icons-footer a {
  color: white;
  margin-right: 15px;
  font-size: 20px;
}

.social-icons-footer a:hover {
  color: #f7680f;
}

/* SEÇÃO INFERIOR DE DIREITOS AUTORAIS */
.footer-bottom {
  background-color: #c02d20;
  padding: 15px 0;
  text-align: center;
  font-size: 12px;
  color: #fdfdfd;
}

.menu-toggle.fas {
  display: none;
  cursor: pointer;
  font-size: 24px;
  color: white;
}

/* ========================================================= */
/* --- MEDIA QUERIES (Responsividade) --- */
/* ========================================================= */

@media (max-width: 768px) {

  /* HEADER: Organização da barra superior */
  .header-container {
    flex-wrap: wrap;
    /* Permite que os elementos quebrem a linha */
    justify-content: space-between;
  }

  /* MENU: Oculta o menu por padrão (será exibido por JS/CSS) */
  .nav-links {
    width: 100%;
    /* Ocupa toda a largura abaixo do logo */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    order: 3;
    /* Coloca abaixo do logo e ícones */
  }

  .menu-toggle {
    display: block !important;
  }

  /* ÍCONES SOCIAIS: Move para o lado direito da barra principal */
  .social-icons {
    display: none;
    /* Ocultamos os ícones para dar espaço, você pode movê-los para dentro do menu se preferir. */
  }



  /* ESTADO ABERTO (Adicione a classe 'active' ao .nav-links com JS)
       Como não usamos JS, esta é a solução simplificada para o menu: */
  /* Se a tag body/header tiver a classe 'nav-open', abre o menu */
  .nav-open .nav-links {
    max-height: 500px;
    /* Altura suficiente para mostrar todos os links */
    padding-bottom: 10px;
  }

  .main-menu {
    flex-direction: column;
    /* Links um abaixo do outro */
    gap: 10px;
    padding: 10px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 10px;
  }

  .main-menu a {
    font-size: 16px;
    display: block;
    padding: 5px 0;
  }

  /* HERO: Responsividade da Seção Principal */
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 40px 5%;
  }

  .hero-text,
  .hero-image {
    max-width: 100%;
  }

  .hero-image img {
    width: 90%;
    margin-top: 20px;
  }

  .footer-cols {
    justify-content: flex-start;
  }

  .footer-col {
    min-width: 45%;
  }
}

@media (max-width: 480px) {
  .footer-col {
    min-width: 100%;
  }

  .footer-logo-col {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}

/**/
.corte-section {
  background-color: #E83131;
  padding: 80px 20px;
}

.corte-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.corte-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.corte-text {
  max-width: 600px;
}

.corte-text .highlight {
  color: white;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 14px;
}

.corte-text h2 {
  font-size: 42px;
  font-weight: bold;
  color: white;
  margin: 10px 0;
  line-height: 1.3;
}

.corte-text p {
  font-size: 13px;
  color: white;
  margin-bottom: 20px;
}

.checklist {
  list-style: none;
  padding: 0;
  font-size: 16px;
  color: white;
}

.checklist li {
  margin-bottom: 12px;
  color: #fff;
}

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

/*/ ========================================================= */
.section-sale-type {
  padding: 80px 5%;
  /* Ajuste o padding para ser responsivo */
  background-color: #fff;
}

.container-sale-type {
  display: flex;
  /* 🚀 CORREÇÃO PARA INVERTER A ORDEM: Texto (Esquerda), Imagem (Direita) */
  flex-direction: row-reverse;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

/* --- ESTILOS DA IMAGEM --- */

.image-sale-type {
  flex: 1;
  /* Permite que a imagem cresça */
  min-width: 300px;
  /* Garante que a imagem tenha um tamanho mínimo */
  text-align: center;
}

.image-sale-type img {
  max-width: 500px;
  width: 100%;
  height: auto;
  border-radius: 8px;
  /* Adiciona um leve arredondamento */
}

/* --- ESTILOS DO TEXTO --- */

.text-sale-type {
  flex: 1;
  /* Permite que o texto cresça */
  max-width: 600px;
  min-width: 300px;
}

.text-sale-type .highlight {
  color: #E83131;
  /* Vermelho KaruGO */
  text-transform: uppercase;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 1px;
}

.text-sale-type h2 {
  font-size: 40px;
  /* Aumenta um pouco para destaque */
  font-weight: 800;
  /* Mais negrito */
  color: #2b2442;
  /* Cor padrão escura para melhor legibilidade */
  margin: 10px 0 20px 0;
  line-height: 1.2;
}

.text-sale-type hr {
  /* Mudei para Vermelho e mais visível */
  width: 60px;
  border: none;
  height: 4px;
  background-color: #E83131;
  margin: 0 0 25px 0;
}

.text-sale-type p {
  font-size: 18px;
  color: #555;
  /* Cor escura/cinza para legibilidade */
  margin-bottom: 25px;
}

/* --- LISTA DE RECURSOS --- */

.features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 30px;
  padding: 0;
  list-style: none;
  margin-top: 30px;
}

.features-list li {
  font-size: 16px;
  color: #2b2442;
  /* Cor escura para legibilidade */
  display: flex;
  align-items: center;
  /* Remove o ✅ do HTML e usa um ícone de bolinha */
  /* text-indent: -1.5em; */
  /* padding-left: 1.5em; */
}


/* ========================================================= */
/* --- MEDIA QUERIES (Responsividade) --- */
/* ========================================================= */

@media (max-width: 992px) {
  .text-sale-type h2 {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .container-sale-type {
    /* Remove o row-reverse para que o conteúdo empilhe na ordem do HTML: Imagem, depois Texto. */
    flex-direction: column;
    text-align: center;
  }

  .image-sale-type,
  .text-sale-type {
    min-width: 100%;
    max-width: 100%;
  }

  .features-list {
    grid-template-columns: 1fr;
    /* Centraliza a lista quando a seção está centralizada */
    text-align: left;
    margin: 30px auto 0;
    max-width: 400px;
  }

  .text-sale-type hr {
    /* Centraliza o HR quando o texto está centralizado */
    margin: 0 auto 25px auto;
  }

  .features-list li {
    /* Garante que o ícone ✅ fique à esquerda */
    justify-content: flex-start;
  }
}

.inventory-control {
  background-color: #E83131;
  /* 🚀 COR VERMELHA KARUGO */
  padding: 80px 20px;
}

.inventory-container {
  display: flex;
  flex-wrap: wrap;
  /* ⚠️ Pelo seu HTML, mantenha o Imagem/Texto (que resulta em Imagem Esquerda/Texto Direita) */
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.inventory-image img {
  width: 100%;
  max-width: 500px;
  /* Estilos do .corte-image */
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.inventory-text {
  max-width: 600px;
}

/* 🚀 TEXTOS HARMONIZADOS (Cor Branca) */

.inventory-text .highlight-orange {
  color: white;
  /* Cor Branca como o .corte-text .highlight */
  text-transform: uppercase;
  font-weight: bold;
  font-size: 14px;
}

.inventory-text h2 {
  font-size: 42px;
  /* Harmonizado com o .corte-text h2 */
  font-weight: bold;
  color: white;
  margin: 10px 0;
  line-height: 1.3;
}

.inventory-text p {
  font-size: 18px;
  /* Mantive 18px para melhor legibilidade, mas se quiser IGUAL ao corte: use 13px */
  color: white;
  margin-bottom: 20px;
}

/* 🚀 ESTILOS DA LISTA (CHECKLIST) */

.inventory-list {
  /* Removemos o display: flex aqui, pois não precisamos de duas colunas, apenas da lista */
  margin-top: 30px;
}

.checklist-inventory {
  /* ⚠️ Classe nova para o <ul> */
  list-style: none;
  padding: 0;
  font-size: 16px;
  color: white;
}

.checklist-inventory li {
  margin-bottom: 12px;
  color: #fff;
}

/* ========================================================= */
/* --- MEDIA QUERIES (Responsividade) --- */
/* ========================================================= */

@media (max-width: 768px) {
  .inventory-container {
    /* Padrão do .corte-container: Empilha */
    flex-direction: column;
    text-align: center;
  }

  .inventory-list {
    /* Centraliza a lista no mobile */
    width: 100%;
    max-width: 300px;
    /* Limita a largura da lista para não ficar muito esticada */
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }
}

/* ========================================================= */
/* --- SEÇÃO MONITOR DE PRODUÇÃO (ALL-IN-ONE) --- */
/* (Padrão: Fundo Branco, Texto Escuro) */
/* ========================================================= */

.section-allinone {
  padding: 80px 5%;
  /* Padding responsivo */
  background-color: white;
}

.container-allinone {
  display: flex;
  /* ⚠️ Se o Texto for o 2º elemento, ele fica à direita. 
       Para ter TEXTO (Esquerda) e IMAGEM (Direita),
       mantenha o HTML: Texto 1º, Imagem 2º, ou use flex-direction: row-reverse.
       Assumindo que você quer Texto Esquerda / Imagem Direita: */
  flex-direction: row-reverse;
  /* Inverte a ordem do HTML para Texto E / Imagem D */
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

/* --- ESTILOS DA IMAGEM --- */

.image-allinone {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.image-allinone img {
  max-width: 500px;
  width: 100%;
  /* Estilos padronizados */
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* --- ESTILOS DO TEXTO --- */

.text-allinone {
  flex: 1;
  max-width: 600px;
  min-width: 300px;
}

.highlight-red {
  /* Usando 'highlight-red' para evitar conflito com 'highlight' */
  color: #E83131;
  /* Vermelho KaruGO */
  text-transform: uppercase;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 1px;
}

.text-allinone h2 {
  /* Padronizado para H2 */
  font-size: 42px;
  font-weight: 800;
  color: #2b2442;
  /* Cor padrão escura para contraste em fundo branco */
  margin: 10px 0 20px 0;
  line-height: 1.2;
}

.allinone-divider {
  /* Nova classe para o separador */
  width: 60px;
  border: none;
  height: 4px;
  background-color: #E83131;
  margin: 0 0 25px 0;
}

.text-allinone p {
  font-size: 18px;
  color: #555;
  /* Cinza escuro para o corpo do texto */
  margin-bottom: 25px;
}

/* --- LISTA DE RECURSOS --- */

.checklist-allinone {
  /* Classe padronizada */
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.checklist-allinone li {
  font-size: 16px;
  color: #2b2442;
  /* Cor padrão escura */
  margin-bottom: 12px;
}


/* ========================================================= */
/* --- MEDIA QUERIES (Responsividade) --- */
/* ========================================================= */

@media (max-width: 768px) {
  .container-allinone {
    /* Reverte para empilhar: Imagem (Topo), Texto (Abaixo) */
    flex-direction: column;
    text-align: center;
  }

  .allinone-divider {
    /* Centraliza o HR no mobile */
    margin: 0 auto 25px auto;
  }

  .checklist-allinone {
    /* Centraliza o bloco da lista no mobile */
    text-align: left;
    margin: 30px auto 0;
    max-width: 400px;
  }
}

/* ========================================================= */
/* --- SEÇÃO FATURAMENTO (Padrão: Fundo Vermelho/Texto Branco) --- */
/* ========================================================= */

.inventory-control {
  background-color: #E83131;
  /* Vermelho KaruGO */
  padding: 80px 5%;
  /* Use % para melhor responsividade */
}

.inventory-container {
  display: flex;
  flex-wrap: wrap;
  /* Mantendo a ordem do HTML: Imagem (Esquerda), Texto (Direita) */
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* --- IMAGEM --- */

.inventory-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.inventory-image img {
  max-width: 500px;
  width: 100%;
  /* Estilos padronizados */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

/* --- TEXTO --- */

.inventory-text {
  flex: 1;
  max-width: 600px;
  min-width: 300px;
}

.inventory-text .highlight-orange {
  color: white;
  font-weight: bold;
  font-size: 14px;
  text-transform: uppercase;
}

.inventory-text h2 {
  font-size: 42px;
  /* Padronizado para título grande */
  font-weight: 800;
  color: white;
  margin: 10px 0 20px 0;
  line-height: 1.2;
}

.inventory-divider {
  /* Estilo para o <hr> */
  width: 60px;
  border: none;
  height: 4px;
  background-color: white;
  /* Linha branca em fundo vermelho */
  margin: 0 0 25px 0;
}

.inventory-text p {
  font-size: 18px;
  color: white;
  margin-bottom: 30px;
}

/* --- LISTA (DUAS COLUNAS) --- */

.inventory-list-columns {
  /* NOVO CONTAINER FLEX para as duas ULs */
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.inventory-list-columns ul {
  list-style: none;
  padding: 0;
  font-size: 16px;
  color: white;
  /* Faz a UL ocupar metade do espaço disponível */
  flex: 1;
  min-width: 180px;
}

.inventory-list-columns li {
  margin-bottom: 12px;
}

/* ========================================================= */
/* --- MEDIA QUERIES (Responsividade) --- */
/* ========================================================= */

@media (max-width: 768px) {
  .inventory-container {
    /* Empilha (Imagem/Texto) */
    flex-direction: column;
    text-align: center;
  }

  .inventory-divider {
    /* Centraliza o HR */
    margin: 0 auto 25px auto;
  }

  .inventory-list-columns {
    /* No mobile, as colunas devem empilhar (ou permanecer lado a lado se houver espaço) */
    flex-direction: column;
    gap: 20px;
    /* Centraliza o bloco da lista e alinha os itens à esquerda */
    margin: 0 auto;
    max-width: 400px;
  }

  .inventory-list-columns ul {
    min-width: 100%;
    text-align: left;
  }
}

/* ========================================================= */
/* --- SEÇÃO SEGURANÇA (Padrão: Fundo Vermelho/Texto Branco) --- */
/* ========================================================= */

.security-section {
  background-color: #E83131;
  /* Vermelho KaruGO */
  padding: 80px 5%;
  /* Use % para melhor responsividade */
}

.security-container {
  display: flex;
  flex-wrap: wrap;
  /* Mantendo a ordem do HTML: Imagem (Esquerda), Texto (Direita) */
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* --- IMAGEM --- */

.security-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.security-image img {
  width: 100%;
  max-width: 500px;
  /* Estilos padronizados */
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* --- TEXTO --- */

.security-text {
  flex: 1;
  max-width: 600px;
  min-width: 300px;
}

.security-text .highlight {
  color: white;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 1px;
}

.security-text h2 {
  font-size: 42px;
  /* Padronizado para título grande */
  font-weight: 800;
  color: white;
  margin: 10px 0 20px 0;
  line-height: 1.2;
}

.security-divider {
  /* Estilo para o <hr> */
  width: 60px;
  border: none;
  height: 4px;
  background-color: white;
  /* Linha branca em fundo vermelho */
  margin: 0 0 25px 0;
}

.security-text p {
  font-size: 18px;
  color: white;
  margin-bottom: 30px;
}

/* --- LISTA --- */

.checklist-security {
  /* Classe de lista atualizada */
  list-style: none;
  padding: 0;
  font-size: 16px;
  color: white;
  /* Não aplicamos flexbox aqui, pois é uma lista de uma coluna */
  margin-top: 20px;
}

.checklist-security li {
  margin-bottom: 12px;
}

/* ⚠️ Removendo regras que não se aplicam: 
   O seletor '.inventory-list ul' no seu CSS antigo não se aplica ao seu HTML de segurança. */

/* ========================================================= */
/* --- MEDIA QUERIES (Responsividade) --- */
/* ========================================================= */

@media (max-width: 768px) {
  .security-container {
    /* Empilha (Imagem/Texto) */
    flex-direction: column;
    text-align: center;
  }

  .security-divider {
    /* Centraliza o HR */
    margin: 0 auto 25px auto;
  }

  .checklist-security {
    /* Centraliza o bloco da lista e alinha os itens à esquerda */
    margin: 20px auto 0;
    max-width: 400px;
    text-align: left;
  }
}

/* ========================================================= */
/* --- SEÇÃO ANALYTICS (Padrão: Fundo Branco/Texto Escuro) --- */
/* ========================================================= */

.analytics-section {
  padding: 80px 5%;
  background-color: white;
}

.analytics-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  /* 🚀 INVERSÃO: Faz o 2º elemento (Texto) ir para a esquerda e a 1ª (Imagem) para a direita */
  flex-direction: row-reverse;
}

/* --- IMAGEM --- */

.analytics-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.analytics-image img {
  max-width: 500px;
  /* Padronizado para 500px */
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* --- TEXTO --- */

.analytics-text {
  flex: 1;
  max-width: 600px;
  min-width: 300px;
}

.analytics-text .highlight-red {
  /* Classe para o destaque */
  color: #E83131;
  /* Vermelho KaruGO */
  font-weight: bold;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
}

.analytics-text h2 {
  font-size: 42px;
  /* Padronizado para título grande */
  font-weight: 800;
  color: #2b2442;
  /* Cor principal escura */
  margin: 10px 0 20px 0;
  line-height: 1.2;
}

.analytics-divider {
  /* Estilo para o <hr> */
  width: 60px;
  border: none;
  height: 4px;
  background-color: #E83131;
  /* Linha vermelha em fundo branco */
  margin: 0 0 25px 0;
}

.analytics-text p {
  font-size: 18px;
  color: #555;
  /* Cinza escuro para o corpo do texto */
  margin-bottom: 30px;
}

/* --- LISTA --- */

.checklist-analytics {
  /* Nova classe de lista */
  list-style: none;
  padding: 0;
  font-size: 16px;
  color: #2b2442;
  /* Cor da lista escura */
  margin-bottom: 30px;
}

.checklist-analytics li {
  margin-bottom: 12px;
}

/* --- LINKS DE APLICATIVO --- */

.app-links p {
  font-size: 16px;
  /* Padronizado para 16px */
  color: #2b2442;
  margin-bottom: 15px;
}

.app-links strong {
  font-weight: bold;
}

.app-links .note {
  color: #555;
  font-style: italic;
  font-size: 14px;
}

.store-icons {
  display: flex;
  align-items: center;
}

.store-icons img {
  height: 40px;
  width: auto;
  margin-right: 15px;
  transition: opacity 0.3s;
}

/* ========================================================= */
/* --- MEDIA QUERIES (Responsividade) --- */
/* ========================================================= */

@media (max-width: 768px) {
  .analytics-container {
    /* Reverte a inversão para o empilhamento padrão: Imagem (Topo), Texto (Abaixo) */
    flex-direction: column;
    text-align: center;
  }

  .analytics-divider {
    /* Centraliza o HR */
    margin: 0 auto 25px auto;
  }

  .checklist-analytics {
    /* Centraliza o bloco da lista e alinha os itens à esquerda */
    margin: 30px auto 0;
    max-width: 400px;
    text-align: left;
  }

  .app-links {
    text-align: center;
  }

  .store-icons {
    justify-content: center;
  }
}

/* ========================================================= */
/* --- ESTILO DO BOTÃO DE CONTATO NA SEÇÃO SUPORTE --- */
/* ========================================================= */

.btn-sales-contact {
  /* Aparência */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  margin-top: 30px;
  /* Espaço após a lista/texto */
  background-color: #E83131;
  /* Vermelho KaruGO */
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  border-radius: 50px;
  /* Botão arredondado */
  text-transform: uppercase;
  letter-spacing: 1px;

  /* Efeito */
  transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 5px 15px rgba(223, 32, 32, 0.4);
}

.btn-sales-contact i {
  font-size: 22px;
  margin-right: 10px;
}

.btn-sales-contact:hover {
  background-color: #c91c1c;
  /* Vermelho mais escuro no hover */
  transform: translateY(-2px);
  /* Efeito sutil de levantar */
  box-shadow: 0 8px 20px rgba(223, 32, 32, 0.6);
}

/* Ajuste para mobile (se a seção estiver centralizada) */
@media (max-width: 768px) {
  .support-text {
    text-align: center;
    /* Se o texto estiver centralizado */
  }

  .btn-sales-contact {
    /* Garante que o botão fique no centro */
    margin-left: auto;
    margin-right: auto;
  }
}

/* ========================================================= */
/* --- SEÇÃO INSTALAÇÃO E SUPORTE (COM CURVA CÔNCAVA) --- */
/* ========================================================= */

.support-section {
  /* Mantenha a seção sem overflow:hidden para debug. */
  padding: 10px 5% 100px;
  background-color: white;
  position: relative;
  /* z-index: 10; */
  /* Remova z-index alto da seção principal. */
}



.support-container {
  position: relative;
  z-index: 12;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  flex-direction: row;
}

/* --- IMAGEM --- */

.support-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.support-image img {
  width: 100%;
  max-width: 500px;
  /* Estilos padronizados */
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* --- TEXTO --- */

.support-text {
  flex: 1;
  max-width: 600px;
  min-width: 300px;
}

.support-text .highlight-red {
  /* Classe de destaque com cor definida */
  color: #E83131;
  /* Vermelho KaruGO */
  text-transform: uppercase;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 1px;
}

.support-text h2 {
  font-size: 42px;
  /* Padronizado para título grande */
  font-weight: 800;
  color: #2b2442;
  /* Cor principal escura */
  margin: 10px 0 20px 0;
  line-height: 1.2;
}

.support-divider {
  /* Estilo para o <hr> */
  width: 60px;
  border: none;
  height: 4px;
  background-color: #E83131;
  /* Linha vermelha em fundo branco */
  margin: 0 0 25px 0;
}

.support-text p {
  font-size: 18px;
  color: #555;
  /* Cinza escuro para o corpo do texto */
  margin-bottom: 30px;
}

/* --- LISTA --- */

.checklist-support {
  /* Classe de lista padronizada */
  list-style: none;
  padding: 0;
  font-size: 16px;
  color: #2b2442;
  /* Cor da lista escura */
  margin-top: 20px;
}

.checklist-support li {
  margin-bottom: 12px;
}

/* ========================================================= */
/* --- MEDIA QUERIES (Responsividade) --- */
/* ========================================================= */

@media (max-width: 768px) {
  .support-container {
    /* Empilha (Imagem/Texto) */
    flex-direction: column;
    text-align: center;
  }

  .support-divider {
    /* Centraliza o HR */
    margin: 0 auto 25px auto;
  }

  .checklist-support {
    /* Centraliza o bloco da lista e alinha os itens à esquerda */
    margin: 20px auto 0;
    max-width: 400px;
    text-align: left;
  }
}

/* ========================================================= */
/* --- SEÇÃO DE PLANOS (PRICING) --- */
/* ========================================================= */

.pricing-section {
  background-color: #f7f7f7;
  /* Fundo cinza claro */
  padding: 80px 5% 100px;
  text-align: center;
}

.pricing-card .price-quote {
  /* Novo estilo para "Solicita una cotización" */
  font-size: 20px;
  font-weight: bold;
  color: #2b2442;
  /* Cor escura do texto principal */
  margin-bottom: 20px;
  margin-top: 10px;
  /* Adiciona um pequeno espaço */
}

.pricing-header {
  margin-bottom: 50px;
}

.pricing-header p.highlight-red {
  color: #E83131;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.pricing-header h2 {
  font-size: 42px;
  font-weight: 800;
  color: #2b2442;
}

.pricing-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

/* --- Cartão de Preço Individual --- */

.pricing-card {
  background-color: white;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  flex: 1;
  max-width: 350px;
  min-width: 280px;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  border: 1px solid #eee;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.pricing-card h3 {
  font-size: 24px;
  color: #2b2442;
  margin-bottom: 10px;
}

.pricing-card .price {
  font-size: 48px;
  font-weight: 800;
  color: #E83131;
  margin-bottom: 20px;
}

.pricing-card .price .period {
  font-size: 16px;
  font-weight: normal;
  color: #555;
}

.card-divider {
  width: 50px;
  height: 3px;
  background-color: #E83131;
  border: none;
  margin: 20px auto;
}

/* --- Lista de Recursos (Features) --- */

.features-list-pricing {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  text-align: left;
  font-size: 16px;
}

.features-list-pricing li {
  margin-bottom: 10px;
  color: #555;
  /* Estilo para itens não incluídos (X) */
  /* Se a feature for "❌", aplique um estilo cinza e tachado */
}

/* --- Destaque do Plano Recomendado --- */

.pricing-card.recommended {
  transform: scale(1.05);
  /* Levemente maior */
  box-shadow: 0 15px 35px rgba(223, 32, 32, 0.3);
  border: 3px solid #E83131;
  /* Borda Vermelha Forte */
  padding-top: 60px;
  /* Mais espaço para a tag */
}

.pricing-card.recommended:hover {
  transform: scale(1.08);
}

.tag-recommended {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #E83131;
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 1px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* --- Botão CTA do Plano --- */

.btn-pricing {
  display: block;
  padding: 12px 25px;
  background-color: #E83131;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 50px;
  transition: background-color 0.3s, transform 0.3s;
  margin-top: 20px;
}

.btn-pricing:hover {
  background-color: #c91c1c;
  transform: translateY(-1px);
}

/* ========================================================= */
/* --- support.html: ESTILOS DA PÁGINA DE SUPORTE --- */
/* ========================================================= */

/* --- HERO DE SUPORTE --- */
.support-hero {
  background-color: #422424;
  /* Cor escura do texto principal */
  color: white;
  padding: 100px 5% 80px;
  text-align: center;
  margin-top: 5px;
  /* Compensa o cabeçalho fixo */
}

.support-hero h1 {
  font-size: 52px;
  font-weight: 900;
  margin-bottom: 10px;
}

.support-hero p {
  font-size: 20px;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.85);
}

.contact-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  padding: 15px 35px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 50px;
  font-size: 16px;
  transition: background-color 0.3s, transform 0.3s;
}

.contact-link i {
  margin-right: 10px;
  font-size: 20px;
}

.contact-link.whatsapp {
  background-color: #25d366;
  /* Verde WhatsApp */
  color: white;
}

.contact-link.whatsapp:hover {
  background-color: #128c7e;
  transform: translateY(-2px);
}

.contact-link.email {
  background-color: white;
  color: #2b2442;
  border: 2px solid #2b2442;
}

.contact-link.email:hover {
  background-color: #f7f7f7;
  transform: translateY(-2px);
}


/* --- OPÇÕES DE SUPORTE (CARDS) --- */
.support-options {
  padding: 60px 5%;
  background-color: white;
}

.options-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.option-card {
  flex: 1;
  max-width: 350px;
  padding: 30px;
  border: 1px solid #eee;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}

.option-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.option-card .icon-red {
  font-size: 48px;
  color: #E83131;
  margin-bottom: 15px;
}

.option-card h3 {
  font-size: 22px;
  color: #2b2442;
  margin-bottom: 10px;
}

.btn-support-card {
  display: inline-block;
  padding: 10px 20px;
  margin-top: 15px;
  background-color: #E83131;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 50px;
  transition: background-color 0.3s;
}

.btn-support-card.secondary {
  background-color: #422424;
}

.btn-support-card:hover {
  background-color: #c91c1c;
}

.btn-support-card.secondary:hover {
  background-color: #563939;
}


/* --- FAQ / PERGUNTAS FREQUENTES --- */
.faq-section {
  background-color: #f7f7f7;
  padding: 80px 5%;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-section h2 {
  font-size: 36px;
  font-weight: 800;
  color: #422424;
  text-align: center;
  margin-bottom: 40px;
}

.faq-item {
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 15px;
  text-align: left;
  overflow: hidden;
}

.faq-question {
  padding: 15px 20px;
  margin: 0;
  font-size: 18px;
  color: #422424;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}

.faq-question i {
  transition: transform 0.3s;
}

.faq-answer {
  padding: 0 20px 20px 20px;
  margin: 0;
  font-size: 16px;
  color: #555;
  /* Estilos para Acordeão (Escondido por padrão, mas precisa de JS para animar) */
  max-height: 0;
  transition: max-height 0.3s ease-in-out, padding 0.3s;
  overflow: hidden;
}


.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 20px 20px 20px;
}
.faq-item.active .faq-question i {
    transform: rotate(180deg);
}
/* ========================================================= */
/* --- SEÇÃO COM DUPLO EFEITO DE ONDA (BOLA) --- */
/* ========================================================= */

.double-wave-section {
    background-color: #f7f7f7; /* Cor de fundo da seção de destaque */
    position: relative;
    padding: 0;
}

/* --- ESTILO GERAL DAS ONDAS --- */
.double-wave-section .wave-top,
.double-wave-section .wave-bottom {
    position: relative;
    width: 100%;
    height: 100px; /* Altura da onda */
    overflow: hidden;
}

/* 1. ONDA SUPERIOR (Invertida) */
.double-wave-section .wave-top {
    /* Cor da seção ANTERIOR (a seção de suporte/texto, que era branca) */
    background-color: #E83131; 
    margin-bottom: -1px; /* Remove gaps */
}

.double-wave-section .wave-top::before {
    content: '';
    position: absolute;
    bottom: 0; /* Coloca a base da forma na parte inferior */
    left: 0;
    width: 100%;
    height: 100%;
    
    /* Cor da seção ATUAL (que é #f7f7f7) */
    background-color: #f7f7f7; 
    
    /* 🌊 CLIP-PATH INVERTIDO (a onda "cresce" para cima) */
    clip-path: ellipse(50% 100% at 50% 100%); 
    -webkit-clip-path: ellipse(50% 100% at 50% 100%);
}

/* 3. ONDA INFERIOR (Normal/Padrão) */
.double-wave-section .wave-bottom {
    /* Cor da seção DE DESTAQUE (que é #f7f7f7) */
    background-color: #E83131; 
    margin-top: -1px; /* Remove gaps */
}

.double-wave-section .wave-bottom::before {
    content: '';
    position: absolute;
    top: 0; /* Coloca a base da forma na parte superior */
    left: 0;
    width: 100%;
    height: 100%;
    
    /* Cor da seção SEGUINTE (a seção de planos, que é branca) */
    background-color: white; 
    
    /* 🌊 CLIP-PATH NORMAL (a onda "cresce" para baixo) */
    clip-path: ellipse(50% 100% at 50% 0%);
    -webkit-clip-path: ellipse(50% 100% at 50% 0%);
}

/* --- CONTEÚDO DE DESTAQUE --- */
.wave-content {
    text-align: center;
    padding: 60px 5% 60px; /* Espaçamento interno */
    max-width: 800px;
    margin: 0 auto;
}

.wave-content h3 {
    font-size: 32px;
    color: #E83131; /* Vermelho KaruGO */
    font-weight: 800;
    margin-bottom: 15px;
}

.wave-content p {
    font-size: 18px;
    color: #2b2442;
    margin-bottom: 30px;
}

.btn-demo-request {
    display: inline-block;
    padding: 15px 35px;
    background-color: #2b2442; /* Azul escuro */
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    text-transform: uppercase;
    transition: background-color 0.3s, transform 0.3s;
}

.btn-demo-request:hover {
    background-color: #E83131; /* Muda para vermelho no hover */
    transform: translateY(-2px);
}
/* ========================================================= */
/* --- SEÇÃO DE MÓDULOS (COMANDA MÓVIL) - FUNDO VERMELHO --- */
/* ========================================================= */

.modules-section {
    background-color: #E83131; /* Fundo Vermelho KaruGO */
    padding: 80px 5%;
    color: white; /* Cor do texto padrão da seção é branco */
}

.modules-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 50px;
    flex-direction: row; 
}

.modules-image {
    flex: 1;
    max-width: 50%;
    text-align: right; 
}

.modules-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    /* Aumenta a sombra para contrastar com o fundo vermelho */
    /*box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3); */
}

.modules-text {
    flex: 1;
    max-width: 50%;
    text-align: left;
}

/* Títulos e Destaques */
.modules-text .highlight-red {
    color: white; /* Muda o destaque para branco no fundo vermelho */
}

.modules-text h2 {
    font-size: 40px;
    font-weight: 800;
    color: white; /* O título H2 usa a cor escura (Azul KaruGO) para contraste */
}

/* Divisória */
.modules-divider {
    width: 60px;
    height: 4px;
    background-color: white; /* Linha divisória branca para contraste */
    border: none;
    margin: 15px 0 25px;
    text-align: left;
}

.modules-text p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9); /* Texto levemente transparente para suavizar */
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Lista de Recursos (Checklist) */
.checklist-modules {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.checklist-modules li {
    font-size: 16px;
    color: white; /* Texto da lista branco */
    margin-bottom: 10px;
    font-weight: 500;
}

/* Botão CTA */
.btn-module-cta {
    /* O botão deve ter um alto contraste, então usamos a cor escura */
    display: inline-flex;
    align-items: center;
    padding: 15px 30px;
    background-color: white; /* Azul Escuro (Alto Contraste) */
    color: black;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    border-radius: 50px;
    transition: background-color 0.3s, transform 0.3s;
}

.btn-module-cta i {
    font-size: 22px;
    margin-right: 10px;
}

.btn-module-cta:hover {
    background-color: black; /* Muda para branco no hover */
    color: #E83131; /* Texto do botão volta para vermelho */
    transform: translateY(-2px);
}


/* --- Responsividade (Mantida) --- */
@media (max-width: 992px) {
    .modules-container {
        flex-direction: column-reverse;
        text-align: center;
    }
    .modules-image,
    .modules-text {
        max-width: 100%;
        text-align: center;
    }
    .modules-image {
        margin-bottom: 30px;
    }
    .modules-divider {
        margin: 15px auto 25px;
    }
    .checklist-modules {
        text-align: left;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}