@charset "utf-8";
/* CSS Document */
:root {
  --primary-color: #1071a1;     /* Azul principal */
  --primary-hover: #0d5f84;     /* Tom mais escuro para hover */
  --accent-color: #96c322;      /* Verde para destaques */
  --accent-hover: #7aa71b;
  --gold-color: #ffd700;        /* Dourado opcional */
  --text-color: #333;           /* Cor padrão do texto */
  --text-muted: #666;           /* Texto secundário */
  --bg-light: #f9f9f9;          /* Fundo claro */
  --bg-dark: #0d2b45;           /* Fundo escuro alternativo */
  --border-color: #ddd;         /* Borda suave */
  --white: #fff;
  --black: #000;

  /* Estados */
  --success: #28a745;
  --danger: #dc3545;
  --warning: #ffc107;
  --info: #17a2b8;
}
.btn-outline-primary{color:#96c322; border:1px solid #96c322;}
.btn-outline-primary:hover{color:#fffff; background-color:#96c322; border:1px solid #96c322;}
    /* Topo com layout flexível e responsivo */
    .top-header {
      background-color: #ffffff;
      padding: 0.75rem 0;
      font-size: 0.95rem;
      color: #333;
    }

    .top-header .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 1rem;
    }

   .slogan {
  flex: 1;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease forwards;
  transition: color 0.3s ease;
}

.slogan:hover {
  color: #96c322; /* Destaque em azul ao passar o mouse */
}

/* Animação de entrada */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

    .social-icons a {
      color: #555;
      margin-left: 1rem;
      transition: color 0.3s ease;
    }

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

    /* Botão WhatsApp personalizado */
    .whatsapp-btn {
      background-color: #25d366;
      color: white;
      border-radius: 30px;
      padding: 0.5rem 1rem;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      text-decoration: none;
      font-weight: 600;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      transition: background-color 0.3s ease;
    }

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

    /* Navbar personalizada */
    .navbar-custom {
      background-color: #1071a1; /* Azul profissional */
    }

    .navbar-brand img {
      max-height: 40px;
      transition: transform 0.3s ease;
    }

    .navbar-brand img:hover {
      transform: scale(1.05);
    }

    .navbar-nav .nav-link {
      position: relative;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.75rem 1rem !important;
      color: white !important;
      transition: color 0.3s ease;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
      color: #ffd700 !important; /* Dourado como destaque */
    }

    .navbar-nav .nav-link::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      background: #ffd700;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      transition: all 0.3s ease;
    }

    .navbar-nav .nav-link:hover::after,
    .navbar-nav .nav-link.active::after {
      width: 100%;
    }
	
	 /* Banner */
  .custom-banner {
    background: linear-gradient(135deg, #ffffff, #f1f5ff);
    border-radius: 10px;
    overflow: hidden;
  }

  .banner-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a2b5c;
    line-height: 1.2;
    animation: fadeInUp 1s ease-in-out;
  }

  .banner-subtitle {
    font-size: 1.1rem;
    color: #555;
    font-weight: 500;
    animation: fadeInUp 1.2s ease-in-out;
  }

  .banner-btn {
    background-color: #96c322;
    border: none;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
  }

  .banner-btn:hover {
    background-color: #f39333;
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  }

  /* Estilo da imagem do banner */
.banner-img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: rotate(-3deg); /* Inclinação leve */
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

/* Efeito ao passar o mouse */
.banner-img:hover {
  transform: rotate(-2deg) scale(1.03); /* reduz a inclinação e aumenta levemente */
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Efeito opcional de overlay com brilho suave */
.banner-img::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
  pointer-events: none;
  opacity: 0.6;
  transition: opacity 0.4s ease;
}

.banner-img:hover::after {
  opacity: 1;
}

  /* Animação de entrada */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Responsividade */
  @media (max-width: 768px) {
    .banner-title {
      font-size: 2rem;
    }

    .banner-subtitle {
      font-size: 1rem;
    }
  }
  /* Estilo da seção */
.system-presentation {
  background-color: #ffffff;
}

.section-title {
  letter-spacing: 1px;
}

.section-subtitle {
  font-size: 1rem;
}

/* Cartões de recursos */
.feature-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
  background-color: #fff;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  transition: color 0.3s ease;
}

.feature-card:hover .feature-icon {
  color: #0b5ed7;
}

/* Botão interativo */
.hover-scale {
  transition: all 0.3s ease;
}
.hover-scale:hover {
  transform: scale(1.05);
}

/* Animação leve nos cards */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Estilo da seção */
/* Estilo da seção */
  .system-presentation {
    background-color: #ffffff;
  }

  .section-title {
    letter-spacing: 1px;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  /* Cartões de recursos */
  .feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
    background-color: #fff;
  }

  .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }

  /* Efeito nos ícones */
  .feature-icon i {
	  color:#96c322;
    transition: transform 0.3s ease, color 0.3s ease;
  }

  .feature-card:hover .feature-icon i {
    transform: rotate(10deg) scale(1.1);
    color: #0b5ed7;
  }

  /* Botão interativo */
  .hover-scale {
    transition: all 0.3s ease;
  }

  .hover-scale:hover {
    transform: scale(1.05);
  }
/* Animação leve nos cards */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Fundo com gradiente */
.highlight-section {
  background: linear-gradient(135deg, #7cc3ce, #0094ba );
  color: white;
  padding: 4rem 1rem;
  position: relative;
  overflow: hidden;
}

.section-title {
  font-size: 2rem;
  line-height: 1.5;
  text-align: center;
  color: #1a2b5c; /* Azul escuro como cor principal */
  position: relative;
  padding-bottom: 1.2rem;
  margin-bottom: 2rem;
}

/* Sublinhado na linha toda */
.section-title::before {
  content: '';
  position: absolute;
  left: 25%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px; /* Tamanho do sublinhado */
  height: 4px;
  background-color: #96c322; /* Verde vibrante como destaque */
  border-radius: 2px;
}

.section-title2 {
  font-size: 2rem;
  line-height: 1.5;
  text-align: center;
  color: #ffffff; /* Azul escuro como cor principal */
  position: relative;
  padding-bottom: 1.2rem;
  margin-bottom: 2rem;
}

/* Sublinhado na linha toda */
.section-title2::before {
  content: '';
  position: absolute;
  left: 25%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px; /* Tamanho do sublinhado */
  height: 4px;
  background-color: #96c322; /* Verde vibrante como destaque */
  border-radius: 2px;
}

/* Texto destacado */
.destaque {
	text-decoration:blink;
	text-transform:capitalize;
  font-weight: 700;
  color: #96c322; /* Cor contrastante para o destaque */
}
/* Subtítulo */
.section-subtitle {
  max-width: 700px;
  margin: 0 auto 1.5rem;
  opacity: 0.95;
}

/* Botão de chamada */
.cta-btn {
  background-color: white;
  color: #0094ba;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background-color: #f8f9fa;
  color: #007b96;
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

/* Animação nos ícones do botão */
.transition-icon {
  transition: transform 0.3s ease;
}
.cta-btn:hover .transition-icon {
  transform: translateX(5px);
}
/* Fundo e estilo geral */
footer {
  background-color: #1071a1;
}

/* Links no footer */
.hover-link:hover {
  color: #ffd700 !important;
  transition: color 0.3s ease;
}

/* Ícones interativos */
.social-icons a:hover {
  transform: translateY(-3px);
  color: #ffd700 !important;
  transition: all 0.3s ease;
}
/* Card de segmentos */
.card-segmento {
	color:#ffffff;
  background-color: rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.card-segmento:hover {
  background-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.icon {
  font-size: 1.3rem;
  transition: color 0.3s ease;
}

.card-segmento:hover .icon {
  color: var(--accent-color);
}
/* === Seção "Por que escolher o LojistaPro" - Estilo Cascata === */
/* === Seção "Por que escolher o LojistaPro" - Estilo Cascata === */

.why-lojistapro {
  background-color: #fff;
  padding-top: 3rem;
  padding-bottom: 3rem;
}


.why-lojistapro .section-subtitle {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1rem;
  color: #666;
}

.why-lojistapro .card-why {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  text-align: center;
}

.why-lojistapro .card-why:hover {
  background-color: #f1f1f1;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.why-lojistapro .card-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background-color: rgba(150, 195, 34, 0.1); /* Fundo suave do ícone */
  border-radius: 50%;
  font-size: 1.5rem;
  color: #96c322; /* Cor principal dos ícones */
  margin: 0 auto 1rem;
  transition: all 0.3s ease;
}

.why-lojistapro .card-why:hover .card-icon {
  transform: rotate(-10deg) scale(1.1);
  background-color: rgba(150, 195, 34, 0.15); /* Aprofunda fundo no hover */
  color: #8aae2b; /* Tom mais escuro para dar profundidade no hover */
}

.why-lojistapro .card-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1071a1;
  margin-bottom: 0.75rem;
}

.why-lojistapro .card-text {
  font-size: 0.9rem;
  color: #666;
}

/* Botão CTA */
.why-lojistapro .cta-btn {
  background-color: #96c322;
  color: white;
  border: none;
  font-weight: 600;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.why-lojistapro .cta-btn:hover {
  background-color: #0d5f84;
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}
.why-lojistapro .fa-lg{color:#96c322;}
/* === Seção FAQ - Estilo Cascata e Interativo === */

.faq-section {
  background-color: #fff;
}

.faq-section .section-title {
  font-size: 2rem;
  color: #1071a1;
}

.faq-section .section-subtitle {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: #666;
}

.faq-section .accordion-button {
  font-weight: 600;
  color: #1071a1;
  transition: all 0.3s ease;
}

.faq-section .accordion-button:focus {
  box-shadow: none;
  outline: 0;
}

.faq-section .accordion-button:not(.collapsed) {
  background-color: #f1f1f1;
  color: #0d5f84;
  box-shadow: none;
}

.faq-section .accordion-body {
  color: #666;
  border-top: none;
  padding: 1rem 1.5rem;
}

/* Ícones interativos */
.faq-section .icon-faq {
  color: #96c322;
  transition: transform 0.3s ease;
  font-size: 1.2rem;
}

.faq-section .accordion-button:hover .icon-faq {
  transform: rotate(-10deg);
}

/* Efeito de levitação nos cards */
.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

/* Animação nas respostas */
.accordion-collapse {
  transition: height 0.3s ease-in-out;
}
/* === Seção: Benefícios do Sistema em Nuvem (Cascata) === */

.cloud-benefits {
/*  background-color: #1071a1;*/
  background: linear-gradient(135deg, #1a2b5c, #0094ba );
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.cloud-benefits .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  line-height: 1.4;
}

.cloud-benefits .section-subtitle {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
}

.cloud-benefits .icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  background-color: white;
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin: 0 auto 1rem;
}

.cloud-benefits .icon-hover:hover .icon-box {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cloud-benefits .icon-box i {
  font-size: 2rem;
  color: #1071a1;
  transition: transform 0.3s ease;
}

.cloud-benefits .icon-hover:hover .icon-box i {
  transform: rotate(10deg);
}

.cloud-benefits .card-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.75rem;
}

.cloud-benefits .card-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}
/* === Footer - Estilo Cascata com Ícones Interativos === */

.footer {
  background-color: #1071a1;
}

.footer .hover-link {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}

.footer .hover-link:hover {
  color: #ffd700; /* Dourado como destaque */
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.4);
}

.footer .icon-link {
  color: #ffd700;
  transition: transform 0.3s ease;
}

.footer .link-hover:hover .icon-link {
  transform: translateX(5px);
}
/* === Botão WhatsApp Flutuante com Ícone Maior === */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  border-radius: 50px;
  padding: 16px 20px 16px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  z-index: 1000;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.whatsapp-float i {
  font-size: 28px; /* Aumentado de 24px para 28px */
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #128C7E;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.whatsapp-float:hover i {
  transform: rotate(12deg) scale(1.2); /* Leve aumento + rotação */
}

.whatsapp-float span {
  font-size: 15px;
  white-space: nowrap;
  color: white;
}

/* Animação leve de pulso */
@keyframes pulse {
  0% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
  100% { transform: translateY(0); }
}
/* === Seção Integração E-commerce - Cascata + Cores Aplicadas === */

.integration-section {
  background-color: #fff;
}

.integration-section .section-title {
  font-size: 2rem;
  color: #1071a1;
  font-weight: 700;
  line-height: 1.4;
}

.integration-section .section-subtitle {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1rem;
  color: #666;
}

/* Caixa dos ícones */
.integration-section .icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  transition: all 0.3s ease;
  margin: 0 auto 1rem;
  background-color: #1071a1; /* cor padrão caso algo falhe */
}

/* Cores específicas para cada etapa - Agora com especificidade maior */
.integration-section .step-1 .icon-box {
  background-color: #96c322 !important; /* Verde */
}

.integration-section .step-2 .icon-box {
  background-color: #ffd700 !important; /* Dourado */
}

.integration-section .step-3 .icon-box {
  background-color: #0d6efd !important; /* Azul claro */
}

.integration-section .step-4 .icon-box {
  background-color: #1071a1 !important; /* Azul escuro */
}

.integration-section .step-5 .icon-box {
  background-color: #0b5ed7 !important; /* Azul mais forte */
}

.integration-section .step-6 .icon-box {
  background-color: #6c757d !important; /* Cinza */
}

/* Ícone interno */
.integration-section .icon-box i {
  font-size: 2rem;
  color: #ffd700;
  transition: transform 0.3s ease;
}

/* Hover nos ícones */
.integration-section .icon-hover:hover .icon-box {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.integration-section .icon-hover:hover .icon-box i {
  transform: rotate(10deg);
}

/* Títulos e textos */
.integration-section .step-title {
  font-size: 1rem;
  font-weight: 600;
  color: #1071a1;
  margin-bottom: 0.5rem;
}

.integration-section .step-text {
  font-size: 0.9rem;
  color: #666;
}

/* === Estilização do Dropdown === */

.navbar-custom .dropdown-menu {
  min-width: 220px;
  border-radius: 8px;
}

.navbar-custom .dropdown-item {
  font-size: 0.95rem;
  transition: background-color 0.3s ease;
  color:#1071a1;
}

.navbar-custom .dropdown-item:hover,
.navbar-custom .dropdown-item:focus {
  background-color: #1071a1 !important;
  color: #ffd700;
  border-radius: 6px;
}

.navbar-custom .dropdown-item i {
  transition: transform 0.3s ease;
}

.navbar-custom .dropdown-item:hover i {
  transform: translateX(5px);
}
.btn-plano{background-color:#96c322; font-size:1.0em; font-weight:400; color:#ffffff;}
.btn-plano:hover{color:#ffffff; background-color:#f39333;}


.btn-plano {
    transition: all 0.3s ease;
}