@charset "utf-8";
/* CSS Document */

:root {
  --gi-font: 'Open Sans', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --gi-cor-primaria: #eb6a1d;
  --gi-cor-secundaria: #2c3e50;
  --gi-cor-escura: #1a252f;
  --gi-cor-texto: #6c757d;
  --gi-cor-fundo: #f9f9f9;
  --gi-link-hover: #c85a18;
  /* Substitui o azul padrão do Bootstrap em links de conteúdo */
  --bs-link-color: var(--gi-cor-primaria);
  --bs-link-color-rgb: 235, 106, 29;
  --bs-link-hover-color: var(--gi-link-hover);
  --bs-link-hover-color-rgb: 200, 90, 24;
  --bs-link-decoration: underline;
  --bs-link-hover-decoration: underline;
}

body {
  font-family: var(--gi-font);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--gi-font);
  line-height: 1.25;
}

/* Links de conteúdo — laranja GestãoIND (não azul Bootstrap) */
.faq-home__accordion .accordion-body a,
.accordion-body a,
.texto_seo a,
.solutions-section a:not([class*="btn"]),
.migration-section a:not([class*="btn"]),
.integration-section a:not([class*="btn"]),
.pcp-section a:not([class*="btn"]),
.production-section a:not([class*="btn"]),
.external-service-section a:not([class*="btn"]),
.features-section a:not([class*="btn"]),
.pricing-section a:not([class*="btn"]),
article a:not([class*="btn"]),
.card a:not([class*="btn"]),
main p a:not([class*="btn"]),
.container > p a:not([class*="btn"]) {
  color: var(--gi-cor-primaria);
  text-decoration: underline;
  text-underline-offset: 0.12em;
  font-weight: 600;
  transition: color 0.2s ease;
}

.faq-home__accordion .accordion-body a:hover,
.faq-home__accordion .accordion-body a:focus-visible,
.accordion-body a:hover,
.accordion-body a:focus-visible,
.texto_seo a:hover,
.texto_seo a:focus-visible,
.solutions-section a:not([class*="btn"]):hover,
.solutions-section a:not([class*="btn"]):focus-visible,
.migration-section a:not([class*="btn"]):hover,
.migration-section a:not([class*="btn"]):focus-visible,
.integration-section a:not([class*="btn"]):hover,
.integration-section a:not([class*="btn"]):focus-visible,
.pcp-section a:not([class*="btn"]):hover,
.pcp-section a:not([class*="btn"]):focus-visible,
.production-section a:not([class*="btn"]):hover,
.production-section a:not([class*="btn"]):focus-visible,
.external-service-section a:not([class*="btn"]):hover,
.external-service-section a:not([class*="btn"]):focus-visible,
.features-section a:not([class*="btn"]):hover,
.features-section a:not([class*="btn"]):focus-visible,
.pricing-section a:not([class*="btn"]):hover,
.pricing-section a:not([class*="btn"]):focus-visible,
article a:not([class*="btn"]):hover,
article a:not([class*="btn"]):focus-visible,
.card a:not([class*="btn"]):hover,
.card a:not([class*="btn"]):focus-visible,
main p a:not([class*="btn"]):hover,
main p a:not([class*="btn"]):focus-visible,
.container > p a:not([class*="btn"]):hover,
.container > p a:not([class*="btn"]):focus-visible {
  color: var(--gi-link-hover);
}

.faq-home__accordion .accordion-body a:focus-visible,
.accordion-body a:focus-visible {
  outline: 2px solid rgba(235, 106, 29, 0.45);
  outline-offset: 2px;
  border-radius: 2px;
}

 /* Estilo para o topo com informações de contato */
    .top-bar {
      background-color: #2c3e50;
      color: #ffffff;
      padding: 10px 0;
      font-size: 0.9rem;
    }
    .top-bar a {
      color: #ffffff;
      text-decoration: none;
    }
    .top-bar a:hover {
      text-decoration: underline;
    }

    /* Estilo para o navbar */
    .navbar-custom {
      background-color: rgba(255, 255, 255, 0.98);
      box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
      padding-top: 0.6rem;
      padding-bottom: 0.6rem;
      z-index: 1030;
    }

    .navbar-custom .navbar-brand {
      padding-top: 0;
      padding-bottom: 0;
    }

    .navbar-brand img {
      max-height: 44px;
      width: auto;
    }

    .navbar-custom .navbar-toggler {
      border-color: rgba(44, 62, 80, 0.2);
      padding: 0.35rem 0.6rem;
    }

    .navbar-custom .navbar-toggler:focus {
      box-shadow: 0 0 0 0.2rem rgba(235, 106, 29, 0.25);
    }

    .navbar-custom .nav-link {
      color: var(--gi-cor-secundaria);
      font-weight: 600;
      font-size: 0.95rem;
      padding: 0.5rem 0.85rem;
      border-radius: 6px;
      transition: color 0.2s ease, background-color 0.2s ease;
    }

    .navbar-custom .nav-link:hover,
    .navbar-custom .nav-link:focus {
      color: var(--gi-cor-primaria);
      background-color: rgba(235, 106, 29, 0.08);
    }

    .navbar-custom .nav-link.active {
      color: var(--gi-cor-primaria);
      background-color: rgba(235, 106, 29, 0.12);
    }

    .navbar-custom .nav-item-cta {
      margin-top: 0;
    }

    /* Estilo para a chamada principal */
    .hero-section {
      background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://gestao.ind.br/img/sistema-erp-pcp-producao-gestaoind.webp') no-repeat center center/cover;
      color: #ffffff;
      padding: 100px 0;
      text-align: center;
	  border-bottom:1px solid #eb6a1d;
      /* Sobrescreve variáveis do Bootstrap para links e breadcrumb no hero escuro */
      --bs-body-color: #ffffff;
      --bs-link-color: #ffe8d6;
      --bs-link-hover-color: #ffffff;
      --bs-link-decoration: underline;
      --bs-breadcrumb-divider-color: rgba(255, 255, 255, 0.6);
      --bs-breadcrumb-item-active-color: rgba(255, 255, 255, 0.92);
    }
    .hero-section h1 {
      font-size: clamp(1.75rem, 4vw + 1rem, 3rem);
      font-weight: 700;
      margin-bottom: 20px;
      color: #ffffff;
    }
    .hero-section p {
      font-size: clamp(1rem, 2vw + 0.5rem, 1.5rem);
      margin-bottom: 40px;
      color: rgba(255, 255, 255, 0.95);
    }
    .hero-section .lead {
      color: rgba(255, 255, 255, 0.95) !important;
    }
    .hero-section a:not(.btn):not(.btn-custom) {
      color: #ffe8d6 !important;
      text-decoration: underline;
      text-underline-offset: 0.15em;
    }
    .hero-section a:not(.btn):not(.btn-custom):hover,
    .hero-section a:not(.btn):not(.btn-custom):focus {
      color: #ffffff !important;
    }
    .hero-section nav[aria-label="breadcrumb"] .breadcrumb {
      justify-content: center;
      margin-bottom: 0;
    }
    .hero-section .breadcrumb,
    .hero-section .breadcrumb-item,
    .hero-section .breadcrumb-item a,
    .hero-section .breadcrumb-item.active {
      color: rgba(255, 255, 255, 0.92) !important;
    }
    .hero-section .breadcrumb-item a {
      text-decoration: none;
    }
    .hero-section .breadcrumb-item a:hover,
    .hero-section .breadcrumb-item a:focus {
      color: #ffffff !important;
      text-decoration: underline;
    }
    .hero-section .breadcrumb-item + .breadcrumb-item::before {
      color: rgba(255, 255, 255, 0.6) !important;
    }
    .hero-section .breadcrumb-item.active {
      color: rgba(255, 255, 255, 0.88) !important;
    }
    .btn-custom,
    .btn-custom-outline,
    .btn-custom-secondary,
    .btn-custom-invert,
    .btn-nav-cta {
      display: inline-block;
      font-weight: 700;
      font-size: 1rem;
      line-height: 1.4;
      padding: 0.6rem 1.5rem;
      border-radius: 50px;
      text-decoration: none;
      text-align: center;
      border: 2px solid transparent;
      transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
    }

    .btn-custom.btn-lg,
    .btn-custom-outline.btn-lg,
    .btn-custom-secondary.btn-lg,
    .btn-custom-invert.btn-lg {
      font-size: 1.05rem;
      padding: 0.75rem 1.75rem;
    }

    .btn-custom.btn-sm,
    .btn-custom-outline.btn-sm,
    .btn-custom-secondary.btn-sm,
    .btn-custom-invert.btn-sm {
      font-size: 0.875rem;
      padding: 0.45rem 1.1rem;
    }

    /* Primário — fundo laranja */
    .btn-custom {
      background-color: var(--gi-cor-primaria);
      border-color: var(--gi-cor-primaria);
      color: #ffffff;
    }

    .btn-custom:hover,
    .btn-custom:focus {
      background-color: #d85e18;
      border-color: #d85e18;
      color: #ffffff;
      transform: translateY(-1px);
    }

    /* Outline — fundos escuros ou laranja (hero, CTA) */
    .btn-custom-outline {
      background-color: transparent;
      border-color: #ffffff;
      color: #ffffff;
    }

    .btn-custom-outline:hover,
    .btn-custom-outline:focus {
      background-color: rgba(255, 255, 255, 0.12);
      border-color: #ffffff;
      color: #ffffff;
      transform: translateY(-1px);
    }

    /* Secundário — fundos claros */
    .btn-custom-secondary {
      background-color: transparent;
      border-color: var(--gi-cor-secundaria);
      color: var(--gi-cor-secundaria);
    }

    .btn-custom-secondary:hover,
    .btn-custom-secondary:focus {
      background-color: rgba(235, 106, 29, 0.08);
      border-color: var(--gi-cor-primaria);
      color: var(--gi-cor-primaria);
      transform: translateY(-1px);
    }

    /* Invertido — sobre fundo laranja */
    .btn-custom-invert {
      background-color: #ffffff;
      border-color: #ffffff;
      color: var(--gi-cor-primaria);
    }

    .btn-custom-invert:hover,
    .btn-custom-invert:focus {
      background-color: #f9f9f9;
      border-color: #f9f9f9;
      color: var(--gi-cor-primaria);
      transform: translateY(-1px);
    }

    .btn-nav-cta {
      background-color: var(--gi-cor-primaria);
      border-color: var(--gi-cor-primaria);
      color: #ffffff;
      font-size: 0.9rem;
      padding: 0.45rem 1.15rem;
      white-space: nowrap;
    }

    .btn-nav-cta:hover,
    .btn-nav-cta:focus {
      background-color: #d85e18;
      border-color: #d85e18;
      color: #ffffff;
      transform: translateY(-1px);
    }

    /* Hero da home — layout em 2 colunas */
    .hero-section.hero-home {
      position: relative;
      overflow: hidden;
      background: linear-gradient(145deg, #0f1923 0%, #1a252f 35%, #243447 70%, #2c3e50 100%);
      text-align: left;
      padding: clamp(3.5rem, 8vw, 6rem) 0;
      border-bottom: none;
    }

    .hero-home__bg {
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 0;
    }

    .hero-home__orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(60px);
      opacity: 0.45;
      animation: heroOrbFloat 12s ease-in-out infinite;
    }

    .hero-home__orb--1 {
      width: 320px;
      height: 320px;
      background: rgba(235, 106, 29, 0.35);
      top: -8%;
      right: 5%;
    }

    .hero-home__orb--2 {
      width: 260px;
      height: 260px;
      background: rgba(52, 152, 219, 0.2);
      bottom: 10%;
      left: -5%;
      animation-delay: -4s;
    }

    .hero-home__orb--3 {
      width: 180px;
      height: 180px;
      background: rgba(235, 106, 29, 0.25);
      bottom: 25%;
      right: 30%;
      animation-delay: -8s;
    }

    .hero-home__grid {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
      background-size: 48px 48px;
      mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 20%, transparent 75%);
    }

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

    @keyframes heroOrbFloat {
      0%, 100% { transform: translate(0, 0) scale(1); }
      50% { transform: translate(12px, -18px) scale(1.05); }
    }

    @keyframes heroReveal {
      from {
        opacity: 0;
        transform: translateY(22px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes heroFloatCard {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-8px); }
    }

    @keyframes heroMockupFloat {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }

    .hero-home__reveal {
      opacity: 0;
      animation: heroReveal 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    }

    .hero-home__content .hero-home__eyebrow { animation-delay: 0.05s; }
    .hero-home__content h1 { animation-delay: 0.12s; }
    .hero-home__subtitle { animation-delay: 0.2s; }
    .hero-home__stats { animation-delay: 0.28s; }
    .hero-home__bullets { animation-delay: 0.36s; }
    .hero-home__ctas { animation-delay: 0.44s; }
    .hero-home__cta-note { animation-delay: 0.5s; }
    .hero-home__trust { animation-delay: 0.58s; }
    .hero-home__reveal--delay { animation-delay: 0.35s; }

    .hero-home__highlight {
      color: #ffb07a;
      position: relative;
      white-space: nowrap;
    }

    .hero-home__eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      font-size: 0.78rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: #ffb07a;
      background: rgba(235, 106, 29, 0.15);
      border: 1px solid rgba(235, 106, 29, 0.35);
      padding: 0.4rem 0.9rem;
      border-radius: 50px;
      margin-bottom: 1.15rem;
    }

    .hero-home__eyebrow::before {
      content: '';
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--gi-cor-primaria);
      box-shadow: 0 0 10px var(--gi-cor-primaria);
      animation: heroPulseDot 2s ease-in-out infinite;
    }

    @keyframes heroPulseDot {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.6; transform: scale(0.85); }
    }

    .hero-home__subtitle {
      margin-bottom: 1.35rem !important;
      max-width: 36rem;
      color: rgba(255, 255, 255, 0.88) !important;
      font-size: clamp(1.02rem, 1.8vw + 0.4rem, 1.2rem);
    }

    .hero-home__stats {
      display: flex;
      flex-wrap: wrap;
      gap: 0.6rem;
      margin-bottom: 1.35rem;
    }

    .hero-stat {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      font-size: 0.82rem;
      color: rgba(255, 255, 255, 0.9);
      background: rgba(255, 255, 255, 0.07);
      border: 1px solid rgba(255, 255, 255, 0.12);
      backdrop-filter: blur(8px);
      padding: 0.45rem 0.85rem;
      border-radius: 50px;
      transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    }

    .hero-stat i {
      color: var(--gi-cor-primaria);
      font-size: 1rem;
    }

    .hero-stat strong {
      color: #ffffff;
      font-weight: 700;
    }

    @media (hover: hover) and (pointer: fine) {
      .hero-stat:hover {
        background: rgba(255, 255, 255, 0.11);
        border-color: rgba(235, 106, 29, 0.45);
        transform: translateY(-2px);
      }
    }

    .hero-home__bullets {
      margin-bottom: 1.5rem;
    }

    .hero-home__bullets li {
      display: flex;
      align-items: flex-start;
      gap: 0.55rem;
      margin-bottom: 0.6rem;
      font-size: clamp(0.9rem, 1.5vw + 0.4rem, 1.02rem);
      color: rgba(255, 255, 255, 0.9);
    }

    .hero-home__bullets li i {
      color: var(--gi-cor-primaria);
      font-size: 1.1rem;
      flex-shrink: 0;
      margin-top: 0.15rem;
    }

    .hero-home__ctas {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      margin-bottom: 0.5rem;
    }

    .hero-home__ctas .btn i {
      margin-right: 0.35rem;
    }

    .hero-home__cta-primary {
      box-shadow: 0 4px 20px rgba(235, 106, 29, 0.45);
    }

    .hero-home__cta-primary:hover {
      box-shadow: 0 6px 28px rgba(235, 106, 29, 0.55);
    }

    .hero-home__cta-note {
      font-size: 0.82rem;
      color: rgba(255, 255, 255, 0.65);
      margin-bottom: 1.5rem;
    }

    .hero-home__trust {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 0.75rem;
      margin-top: 0;
      padding-top: 1.35rem;
      border-top: 1px solid rgba(255, 255, 255, 0.12);
    }

    .hero-trust-item {
      display: flex;
      align-items: flex-start;
      gap: 0.65rem;
      font-size: 0.78rem;
      line-height: 1.4;
      color: rgba(255, 255, 255, 0.75);
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 10px;
      padding: 0.75rem;
      backdrop-filter: blur(6px);
      transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
    }

    @media (hover: hover) and (pointer: fine) {
      .hero-trust-item:hover {
        background: rgba(255, 255, 255, 0.09);
        border-color: rgba(235, 106, 29, 0.35);
        transform: translateY(-3px);
      }
    }

    .hero-trust-item i {
      color: var(--gi-cor-primaria);
      font-size: 1.25rem;
      flex-shrink: 0;
      margin-top: 0.1rem;
    }

    .hero-trust-item strong {
      display: block;
      color: #ffffff;
      font-size: 0.85rem;
      font-weight: 600;
      margin-bottom: 0.1rem;
    }

    .hero-home__visual {
      perspective: 1200px;
    }

    .hero-home__mockup-wrap {
      position: relative;
      --hero-tilt-x: 0deg;
      --hero-tilt-y: 0deg;
      transform: rotateX(var(--hero-tilt-x)) rotateY(var(--hero-tilt-y));
      transition: transform 0.15s ease-out;
      animation: heroMockupFloat 6s ease-in-out infinite;
    }

    .hero-home__float-card {
      position: absolute;
      z-index: 3;
      display: flex;
      align-items: center;
      gap: 0.6rem;
      background: rgba(255, 255, 255, 0.96);
      color: var(--gi-cor-secundaria);
      border-radius: 12px;
      padding: 0.65rem 0.9rem;
      box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
      font-size: 0.75rem;
      line-height: 1.3;
      animation: heroFloatCard 5s ease-in-out infinite;
    }

    .hero-home__float-card i {
      font-size: 1.35rem;
      color: var(--gi-cor-primaria);
      flex-shrink: 0;
    }

    .hero-home__float-card strong {
      display: block;
      font-size: 0.82rem;
      color: var(--gi-cor-secundaria);
    }

    .hero-home__float-card span {
      color: #6c757d;
    }

    .hero-home__float-card--1 {
      top: 8%;
      left: -4%;
      animation-delay: 0s;
    }

    .hero-home__float-card--2 {
      bottom: 12%;
      right: -2%;
      animation-delay: -2.5s;
    }

    .hero-home__mockup {
      position: relative;
      border-radius: 14px;
      overflow: hidden;
      box-shadow:
        0 32px 64px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
      background: #1a252f;
    }

    .hero-home__mockup-bar {
      display: flex;
      align-items: center;
      gap: 6px;
      height: 2rem;
      padding: 0 0.85rem;
      background: linear-gradient(180deg, #2a3a4d, #1e2a38);
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .hero-home__mockup-bar span {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: #4a5568;
    }

    .hero-home__mockup-bar span:nth-child(1) { background: #ff5f57; }
    .hero-home__mockup-bar span:nth-child(2) { background: #febc2e; }
    .hero-home__mockup-bar span:nth-child(3) { background: #28c840; }

    .hero-home__mockup img {
      display: block;
      width: 100%;
      height: auto;
    }

@media (min-width: 1200px) {
  .hero-home__trust {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 991.98px) {
  .hero-home__float-card--1 {
    left: 0;
    top: 4%;
  }

  .hero-home__float-card--2 {
    right: 0;
    bottom: 6%;
  }

  .hero-home__mockup-wrap {
    animation: none;
  }
}

@media (max-width: 575.98px) {
  .hero-home__float-card {
    display: none;
  }

  .hero-home__stats {
    gap: 0.45rem;
  }

  .hero-stat {
    font-size: 0.76rem;
    padding: 0.4rem 0.7rem;
  }

  .hero-home__highlight {
    white-space: normal;
  }
}

	/* Estilo geral do footer */
    .footer {
      position: relative;
      overflow: hidden;
      background: linear-gradient(165deg, #1e2d3d 0%, #2c3e50 48%, #1a252f 100%);
      color: rgba(255, 255, 255, 0.9);
      padding: clamp(3rem, 6vw, 4.5rem) 0 clamp(2rem, 4vw, 3rem);
      font-family: var(--gi-font);
    }

    .footer-logo img {
      max-height: 52px;
      width: auto;
      transition: opacity 0.25s ease;
    }

    @media (hover: hover) and (pointer: fine) {
      .footer-logo:hover img {
        opacity: 0.88;
      }
    }

    .footer h5 {
      font-size: 0.78rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 1.1rem;
      position: relative;
      display: block;
      color: #ffffff;
    }

    .footer h5::after {
      content: '';
      display: block;
      width: 2rem;
      height: 2px;
      background-color: var(--gi-cor-primaria);
      margin-top: 0.45rem;
      border-radius: 2px;
    }

    .footer a {
      color: rgba(255, 255, 255, 0.88);
      text-decoration: none;
      transition: color 0.2s ease;
    }

    .footer a:hover {
      color: #ffb07a;
    }

    .footer-address {
      font-size: 0.88rem;
      line-height: 1.65;
      color: rgba(255, 255, 255, 0.7);
      font-style: normal;
    }

    .footer-address i {
      margin-right: 0.35rem;
      color: var(--gi-cor-primaria);
    }

    .footer .col-md-3 {
      margin-bottom: 1.75rem;
    }

    .contact-info p {
      margin-bottom: 0.65rem;
      font-size: 0.92rem;
    }

    .contact-info i {
      margin-right: 0.5rem;
      font-size: 1rem;
      color: var(--gi-cor-primaria);
      vertical-align: -0.1em;
    }

    .important-links ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .important-links li {
      margin-bottom: 0.55rem;
    }

    .important-links a {
      font-size: 0.92rem;
    }

    .social-links a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 2.35rem;
      height: 2.35rem;
      margin-right: 0.5rem;
      font-size: 1.05rem;
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 50%;
      transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
    }

    @media (hover: hover) and (pointer: fine) {
      .social-links a:hover {
        background-color: var(--gi-cor-primaria);
        border-color: var(--gi-cor-primaria);
        color: #ffffff;
        transform: translateY(-2px);
      }
    }

    .social-links a:focus-visible {
      outline: 2px solid #ffb07a;
      outline-offset: 3px;
    }

    /* Footer moderno — home */
    .footer-site__bg {
      position: absolute;
      inset: 0;
      pointer-events: none;
    }

    .footer-site__orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(70px);
      opacity: 0.35;
    }

    .footer-site__orb--1 {
      width: 280px;
      height: 280px;
      background: rgba(235, 106, 29, 0.4);
      top: -10%;
      right: -5%;
    }

    .footer-site__orb--2 {
      width: 200px;
      height: 200px;
      background: rgba(46, 204, 113, 0.12);
      bottom: 5%;
      left: -3%;
    }

    .footer-site__grid {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
      background-size: 40px 40px;
      mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, black 15%, transparent 80%);
    }

    .footer-site__tagline {
      font-size: 0.92rem;
      line-height: 1.65;
      color: rgba(255, 255, 255, 0.72);
      margin: 1.1rem 0 1.35rem;
      max-width: 22rem;
    }

    .footer-site__heading {
      font-size: 0.78rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: #ffffff;
      margin-bottom: 1rem;
    }

    .footer-site__heading::after {
      content: '';
      display: block;
      width: 1.75rem;
      height: 2px;
      background: var(--gi-cor-primaria);
      margin-top: 0.45rem;
      border-radius: 2px;
    }

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

    .footer-site__links li {
      margin-bottom: 0.5rem;
    }

    .footer-site__links a {
      font-size: 0.9rem;
      color: rgba(255, 255, 255, 0.78);
      transition: color 0.2s ease, padding-left 0.2s ease;
    }

    @media (hover: hover) and (pointer: fine) {
      .footer-site__links a:hover {
        color: #ffb07a;
        padding-left: 0.2rem;
      }
    }

    .footer-site__social {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
    }

    .footer-site__social-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 2.5rem;
      height: 2.5rem;
      border: 1px solid rgba(255, 255, 255, 0.18);
      border-radius: 12px;
      color: rgba(255, 255, 255, 0.9);
      font-size: 1.1rem;
      background: rgba(255, 255, 255, 0.04);
      transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
    }

    @media (hover: hover) and (pointer: fine) {
      .footer-site__social-btn:hover {
        background: var(--gi-cor-primaria);
        border-color: var(--gi-cor-primaria);
        color: #ffffff;
        transform: translateY(-2px);
      }
    }

    .footer-site__social-btn:focus-visible {
      outline: 2px solid #ffb07a;
      outline-offset: 3px;
    }

    .footer-site__contact {
      list-style: none;
      padding: 0;
      margin: 0 0 1rem;
    }

    .footer-site__contact li {
      margin-bottom: 0.55rem;
    }

    .footer-site__contact a {
      display: flex;
      align-items: center;
      gap: 0.65rem;
      font-size: 0.9rem;
      color: rgba(255, 255, 255, 0.88);
    }

    .footer-site__contact-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      width: 2rem;
      height: 2rem;
      border-radius: 10px;
      background: rgba(235, 106, 29, 0.15);
      color: #ffb07a;
      font-size: 0.95rem;
      transition: background-color 0.2s ease, color 0.2s ease;
    }

    @media (hover: hover) and (pointer: fine) {
      .footer-site__contact a:hover .footer-site__contact-icon {
        background: var(--gi-cor-primaria);
        color: #ffffff;
      }
    }

    .footer-site__address {
      font-size: 0.85rem;
      line-height: 1.6;
      color: rgba(255, 255, 255, 0.62);
      font-style: normal;
      margin: 0;
      padding-left: 0;
    }

    .footer-site__address i {
      color: var(--gi-cor-primaria);
      margin-right: 0.3rem;
    }

    .footer-site__bar {
      background: #141c24;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      padding: 1rem 0;
    }

    .footer-site__bar-inner {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 0.5rem 1rem;
    }

    .footer-site__copy,
    .footer-site__bar-meta {
      font-size: 0.82rem;
      color: rgba(255, 255, 255, 0.5);
    }

    .footer-site__bar-meta {
      letter-spacing: 0.02em;
    }

    /* Copyright (legado + barra moderna) */
    .copyright {
      background-color: #141c24;
      color: rgba(255, 255, 255, 0.5);
      text-align: center;
      padding: 1rem 0;
      font-size: 0.85rem;
    }

    .copyright.footer-site__bar {
      text-align: left;
    }

    /* Links úteis / parceiros — blog */
    .footer-partners {
      background: #0f1419;
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      padding: 1.75rem 0 2rem;
      font-size: 0.78rem;
    }

    .footer-partners__heading {
      font-size: 0.72rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.07em;
      color: rgba(255, 255, 255, 0.45);
      margin-bottom: 0.75rem;
    }

    .footer-partners__list {
      list-style: none;
      padding: 0;
      margin: 0;
      columns: 1;
    }

    @media (min-width: 576px) {
      .footer-partners__list {
        columns: 2;
        column-gap: 1.25rem;
      }
    }

    .footer-partners__list li {
      break-inside: avoid;
      margin-bottom: 0.35rem;
    }

    .footer-partners__list a {
      color: rgba(255, 255, 255, 0.42);
      text-decoration: none;
      transition: color 0.2s ease;
    }

    .footer-partners__list a:hover {
      color: rgba(255, 176, 122, 0.9);
    }

    .footer-partners__col {
      margin-bottom: 1rem;
    }

	/* Estilo geral do botão flutuante */
    .whatsapp-float {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      align-items: center;
      background-color: #25D366;
      color: #ffffff;
      padding: 10px 15px;
      border-radius: 30px;
      text-decoration: none;
      font-size: 1rem;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
      z-index: 1000;
    }

    .whatsapp-float:hover {
      transform: scale(1.05); /* Efeito de aumento ao passar o mouse */
      box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15); /* Sombra mais pronunciada */
    }

    /* Ícone do WhatsApp */
    .whatsapp-float i {
      font-size: 1.5rem;
      margin-right: 10px;
    }

    /* Texto ao lado do ícone */
    .whatsapp-float span {
      font-weight: bold;
      font-size: 0.9rem;
    }

    /* Animação de aparecimento suave */
    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .whatsapp-float {
      animation: fadeIn 0.5s ease-in-out;
    }
	/* Seção de apresentação */
    .apresentacao {
      position: relative;
      overflow: hidden;
      background: linear-gradient(180deg, #ffffff 0%, #f4f6f8 55%, #ffffff 100%);
      padding: clamp(3.5rem, 7vw, 5.5rem) 0;
    }

    .apresentacao__bg {
      position: absolute;
      inset: 0;
      pointer-events: none;
      background:
        radial-gradient(ellipse 50% 40% at 10% 20%, rgba(235, 106, 29, 0.06), transparent 70%),
        radial-gradient(ellipse 40% 35% at 90% 80%, rgba(44, 62, 80, 0.05), transparent 70%);
    }

    .apresentacao__reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
      transition-delay: var(--reveal-delay, 0s);
    }

    .apresentacao__reveal.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    .apresentacao__eyebrow {
      display: inline-block;
      font-size: 0.78rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--gi-cor-primaria);
      margin-bottom: 0.75rem;
    }

    .apresentacao h2 {
      font-size: clamp(1.6rem, 3vw + 0.75rem, 2.35rem);
      font-weight: 700;
      color: var(--gi-cor-secundaria);
      margin-bottom: 1rem;
      line-height: 1.2;
    }

    .apresentacao p.lead {
      font-size: clamp(1rem, 1.5vw + 0.5rem, 1.15rem);
      color: #5c6b7a;
      line-height: 1.75;
      margin-bottom: 1.5rem;
    }

    /* Visual — moldura e badges */
    .apresentacao__frame {
      position: relative;
      max-width: 520px;
      margin: 0 auto;
    }

    .apresentacao__img {
      display: block;
      width: 100%;
      height: auto;
      border-radius: 16px;
      box-shadow:
        0 24px 48px rgba(26, 37, 47, 0.14),
        0 0 0 1px rgba(44, 62, 80, 0.08);
      transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
    }

    @media (hover: hover) and (pointer: fine) {
      .apresentacao__frame:hover .apresentacao__img {
        transform: translateY(-6px) scale(1.01);
        box-shadow:
          0 32px 56px rgba(26, 37, 47, 0.18),
          0 0 0 1px rgba(235, 106, 29, 0.2);
      }

      .apresentacao__frame:hover .apresentacao__badge {
        transform: translateY(-2px);
      }
    }

    .apresentacao__badge {
      position: absolute;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: #ffffff;
      color: var(--gi-cor-secundaria);
      font-size: 0.8rem;
      font-weight: 600;
      padding: 0.55rem 0.9rem;
      border-radius: 50px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
      border: 1px solid rgba(44, 62, 80, 0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      z-index: 2;
    }

    .apresentacao__badge i {
      color: var(--gi-cor-primaria);
      font-size: 1.1rem;
    }

    .apresentacao__badge--top {
      top: -12px;
      left: -8px;
    }

    .apresentacao__badge--bottom {
      bottom: -14px;
      right: -4px;
    }

    /* Cards interativos */
    .apresentacao__cards {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 0.85rem;
      margin-bottom: 1.5rem;
    }

    .apresentacao-card {
      background: #ffffff;
      border: 1px solid #e8ecef;
      border-radius: 14px;
      padding: 1.1rem 1rem;
      transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
      cursor: default;
    }

    @media (hover: hover) and (pointer: fine) {
      .apresentacao-card:hover,
      .apresentacao-card:focus-within {
        border-color: rgba(235, 106, 29, 0.45);
        box-shadow: 0 12px 28px rgba(235, 106, 29, 0.12);
        transform: translateY(-4px);
      }

      .apresentacao-card:hover .apresentacao-card__icon {
        background: var(--gi-cor-primaria);
        color: #ffffff;
      }
    }

    .apresentacao-card__icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 2.5rem;
      height: 2.5rem;
      border-radius: 10px;
      background: rgba(235, 106, 29, 0.12);
      color: var(--gi-cor-primaria);
      font-size: 1.2rem;
      margin-bottom: 0.65rem;
      transition: background-color 0.25s ease, color 0.25s ease;
    }

    .apresentacao-card h3 {
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--gi-cor-secundaria);
      margin-bottom: 0.35rem;
      line-height: 1.3;
    }

    .apresentacao-card p {
      font-size: 0.82rem;
      color: #6c757d;
      line-height: 1.5;
      margin-bottom: 0;
    }

    /* Passos */
    .apresentacao__steps {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      list-style: none;
      padding: 0;
      margin: 0 0 1.5rem;
    }

    .apresentacao-step {
      display: flex;
      align-items: center;
      gap: 0.65rem;
      flex: 1 1 140px;
      background: rgba(44, 62, 80, 0.04);
      border: 1px solid #e8ecef;
      border-radius: 12px;
      padding: 0.65rem 0.85rem;
      transition: border-color 0.2s ease, background-color 0.2s ease;
    }

    @media (hover: hover) and (pointer: fine) {
      .apresentacao-step:hover {
        border-color: rgba(235, 106, 29, 0.35);
        background: rgba(235, 106, 29, 0.05);
      }
    }

    .apresentacao-step__num {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 1.75rem;
      height: 1.75rem;
      border-radius: 50%;
      background: var(--gi-cor-primaria);
      color: #ffffff;
      font-size: 0.8rem;
      font-weight: 700;
      flex-shrink: 0;
    }

    .apresentacao-step strong {
      display: block;
      font-size: 0.82rem;
      color: var(--gi-cor-secundaria);
      line-height: 1.2;
    }

    .apresentacao-step span {
      font-size: 0.72rem;
      color: #6c757d;
    }

    .apresentacao__ctas {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      margin-top: 0;
    }

    .apresentacao__ctas .btn i {
      margin-right: 0.35rem;
    }

    .apresentacao__link {
      margin-top: 1rem;
      margin-bottom: 0;
    }

    .apresentacao__link a {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--gi-cor-primaria);
      text-decoration: none;
      transition: gap 0.2s ease, color 0.2s ease;
    }

    .apresentacao__link a:hover {
      color: #d85e18;
      gap: 0.55rem;
    }

    @media (max-width: 575.98px) {
      .apresentacao__cards {
        grid-template-columns: 1fr;
      }

      .apresentacao__badge--top {
        left: 0;
        top: -10px;
      }

      .apresentacao__badge--bottom {
        right: 0;
        bottom: -10px;
      }

      .apresentacao__steps {
        flex-direction: column;
      }

      .apresentacao-step {
        flex: 1 1 auto;
      }
    }
/* Estilo geral da seção */
    .features-section {
      background-color: #f9f9f9;
      padding: 60px 0;
    }

    /* Título principal */
    .features-section h2 {
      font-size: clamp(1.5rem, 3vw + 0.75rem, 2.8rem);
      font-weight: 700;
      color: #2c3e50;
      text-align: center;
      margin-bottom: 40px;
    }

    /* Subtítulo */
    .features-section p.lead {
      font-size: clamp(1rem, 1.5vw + 0.5rem, 1.2rem);
      color: #6c757d;
      text-align: center;
      margin-bottom: 50px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .features-tabs .nav-link {
      color: var(--gi-cor-secundaria);
      font-weight: 600;
      font-size: 0.95rem;
      background-color: #ffffff;
      border: 1px solid #dee2e6;
      border-radius: 50px;
      padding: 0.55rem 1.15rem;
      transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    }

    .features-tabs .nav-link:hover,
    .features-tabs .nav-link:focus {
      color: var(--gi-cor-primaria);
      border-color: var(--gi-cor-primaria);
      background-color: #fff8f3;
    }

    .features-tabs .nav-link.active,
    .features-tabs .show > .nav-link {
      background-color: var(--gi-cor-primaria);
      border-color: var(--gi-cor-primaria);
      color: #ffffff;
    }

    .features-section .tab-content {
      padding-top: 0.5rem;
    }

    .features-section .btn-custom .bi {
      transition: transform 0.2s ease;
    }

    .features-section .btn-custom:hover .bi {
      transform: translateX(3px);
    }

    /* Cartões de recursos — base compartilhada */
    .feature-card {
      border-radius: 15px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      padding: 30px;
      text-align: center;
      height: 100%;
    }

    .features-section .feature-card {
      background-color: #ffffff;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .features-section .feature-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    }

    .features-section .feature-card i {
      font-size: 3rem;
      color: var(--gi-cor-primaria);
      margin-bottom: 20px;
    }

    .features-section .feature-card h5 {
      font-weight: 700;
      color: #2c3e50;
      margin-bottom: 15px;
    }

    .features-section .feature-card p {
      font-size: 1rem;
      color: #6c757d;
      line-height: 1.6;
      margin-bottom: 0;
    }

    /* Módulos — home (index) */
    .modulos-section {
      position: relative;
      overflow: hidden;
      background: linear-gradient(180deg, #f4f6f8 0%, #ffffff 40%, #f8f9fa 100%);
      padding: clamp(3.5rem, 7vw, 5.5rem) 0;
    }

    .modulos-section__bg {
      position: absolute;
      inset: 0;
      pointer-events: none;
      background:
        radial-gradient(ellipse 45% 35% at 85% 15%, rgba(235, 106, 29, 0.07), transparent 70%),
        radial-gradient(ellipse 40% 30% at 10% 85%, rgba(44, 62, 80, 0.05), transparent 70%);
    }

    .modulos-reveal {
      opacity: 0;
      transform: translateY(26px);
      transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
      transition-delay: var(--reveal-delay, 0s);
    }

    .modulos-reveal.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    .modulos-section__header {
      max-width: 40rem;
      margin: 0 auto 2rem;
    }

    .modulos-section__eyebrow {
      display: inline-block;
      font-size: 0.78rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--gi-cor-primaria);
      margin-bottom: 0.75rem;
    }

    .modulos-section h2 {
      font-size: clamp(1.55rem, 3vw + 0.75rem, 2.25rem);
      font-weight: 700;
      color: var(--gi-cor-secundaria);
      margin-bottom: 1rem;
      line-height: 1.2;
    }

    .modulos-section .lead {
      color: #5c6b7a;
      font-size: clamp(1rem, 1.5vw + 0.5rem, 1.12rem);
      margin-bottom: 0;
      line-height: 1.7;
    }

    .modulos-panel {
      background: #ffffff;
      border: 1px solid #e8ecef;
      border-radius: 20px;
      padding: clamp(1.25rem, 3vw, 1.75rem);
      box-shadow: 0 16px 48px rgba(26, 37, 47, 0.08);
    }

    .modulos-tabs .nav-link {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      color: var(--gi-cor-secundaria);
      font-weight: 600;
      font-size: 0.9rem;
      background-color: #f8f9fa;
      border: 1px solid #e8ecef;
      border-radius: 50px;
      padding: 0.55rem 1.1rem;
      transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    }

    .modulos-tabs .nav-link i {
      font-size: 1.05rem;
      color: var(--gi-cor-primaria);
      transition: color 0.2s ease;
    }

    .modulos-tabs .nav-link:hover,
    .modulos-tabs .nav-link:focus {
      color: var(--gi-cor-primaria);
      border-color: rgba(235, 106, 29, 0.45);
      background-color: #fff8f3;
    }

    .modulos-tabs .nav-link.active,
    .modulos-tabs .show > .nav-link {
      background-color: var(--gi-cor-primaria);
      border-color: var(--gi-cor-primaria);
      color: #ffffff;
      box-shadow: 0 4px 14px rgba(235, 106, 29, 0.35);
    }

    .modulos-tabs .nav-link.active i,
    .modulos-tabs .show > .nav-link i {
      color: #ffffff;
    }

    .modulos-tab-content {
      padding-top: 1.25rem;
    }

    .modulos-tab-intro {
      text-align: center;
      font-size: 0.92rem;
      color: #6c757d;
      margin-bottom: 1.25rem;
      max-width: 36rem;
      margin-left: auto;
      margin-right: auto;
    }

    .modulos-tab-intro a {
      color: var(--gi-cor-primaria);
      font-weight: 600;
      text-decoration: none;
    }

    .modulos-tab-intro a:hover {
      text-decoration: underline;
    }

    .modulo-card {
      display: flex;
      flex-direction: column;
      height: 100%;
      background: #f8f9fa;
      border: 1px solid #e9ecef;
      border-radius: 14px;
      padding: 1.15rem 1.1rem;
      text-align: left;
      color: inherit;
      text-decoration: none;
      transform: translateY(10px);
      transition: border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease, transform 0.35s ease;
      transition-delay: var(--card-delay, 0s);
    }

    .modulo-card--in {
      transform: translateY(0);
    }

    @media (hover: hover) and (pointer: fine) {
      .modulo-card:hover,
      .modulo-card:focus-visible {
        background: #ffffff;
        border-color: rgba(235, 106, 29, 0.4);
        box-shadow: 0 12px 28px rgba(235, 106, 29, 0.1);
        transform: translateY(-4px);
        color: inherit;
      }

      .modulo-card:hover .modulo-card__icon,
      .modulo-card:focus-visible .modulo-card__icon {
        background: var(--gi-cor-primaria);
        color: #ffffff;
      }

      .modulo-card--link:hover .modulo-card__more,
      .modulo-card--link:focus-visible .modulo-card__more {
        gap: 0.5rem;
        color: #d85e18;
      }
    }

    .modulo-card__icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 2.5rem;
      height: 2.5rem;
      border-radius: 10px;
      background: rgba(235, 106, 29, 0.12);
      color: var(--gi-cor-primaria);
      font-size: 1.2rem;
      margin-bottom: 0.75rem;
      transition: background-color 0.25s ease, color 0.25s ease;
    }

    .modulo-card h3 {
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--gi-cor-secundaria);
      margin-bottom: 0.4rem;
      line-height: 1.3;
    }

    .modulo-card p {
      font-size: 0.82rem;
      color: #6c757d;
      line-height: 1.55;
      margin-bottom: 0;
      flex-grow: 1;
    }

    .modulo-card__more {
      display: inline-flex;
      align-items: center;
      gap: 0.3rem;
      margin-top: 0.75rem;
      font-size: 0.8rem;
      font-weight: 700;
      color: var(--gi-cor-primaria);
      transition: gap 0.2s ease, color 0.2s ease;
    }

    .modulo-card--featured {
      padding: 1.5rem 1.35rem;
    }

    .modulo-card--featured p {
      font-size: 0.9rem;
    }

    .modulos-section__footer {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 0.75rem;
      margin-top: 2rem;
    }

    .modulos-section__footer .btn i {
      margin-right: 0.35rem;
    }

    .modulos-section__footer .btn-custom .bi-arrow-right {
      margin-right: 0;
      margin-left: 0.35rem;
      transition: transform 0.2s ease;
    }

    .modulos-section__footer .btn-custom:hover .bi-arrow-right {
      transform: translateX(3px);
    }

    @media (max-width: 575.98px) {
      .modulos-tabs .nav-link span {
        font-size: 0.82rem;
      }

      .modulos-tabs .nav-link {
        padding: 0.5rem 0.85rem;
      }

      .modulos-section__footer {
        flex-direction: column;
        align-items: stretch;
      }

      .modulos-section__footer .btn {
        width: 100%;
        max-width: none;
      }
    }

/* Estilo geral da seção */
    .blue-section {
      background-color: #2c3e50;
      color: #ffffff;
      padding: 60px 0;
    }

    /* Título principal */
    .blue-section h2 {
      font-size: clamp(1.5rem, 3vw + 0.75rem, 2.8rem);
      font-weight: 700;
      text-align: center;
      margin-bottom: 40px;
	  color:#ffffff;
    }

    /* Subtítulo */
    .blue-section p.lead {
		color:#ffffff;
      font-size: clamp(1rem, 1.5vw + 0.5rem, 1.2rem);
      text-align: center;
      margin-bottom: 50px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .blue-section p {
      color: #ffffff;
    }

    .blue-section .feature-card {
      background-color: rgba(255, 255, 255, 0.1);
      color: #ffffff;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .blue-section .feature-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    }

    .blue-section .feature-card i {
      font-size: 3rem;
      color: var(--gi-cor-primaria);
      margin-bottom: 20px;
    }

    .blue-section .feature-card h5 {
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 15px;
    }

    .blue-section .feature-card p {
      font-size: 1rem;
      color: rgba(255, 255, 255, 0.88);
      line-height: 1.6;
      margin-bottom: 0;
    }

    /* Segmentos — home (index) */
    .segmentos-section {
      position: relative;
      overflow: hidden;
      background: linear-gradient(155deg, #1a252f 0%, #243447 45%, #2c3e50 100%);
      padding: clamp(3.5rem, 7vw, 5.5rem) 0;
    }

    .segmentos-section__bg {
      position: absolute;
      inset: 0;
      pointer-events: none;
    }

    .segmentos-section__orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(70px);
      opacity: 0.35;
    }

    .segmentos-section__orb--1 {
      width: 280px;
      height: 280px;
      background: rgba(235, 106, 29, 0.4);
      top: -5%;
      left: -5%;
    }

    .segmentos-section__orb--2 {
      width: 220px;
      height: 220px;
      background: rgba(52, 152, 219, 0.25);
      bottom: -5%;
      right: -3%;
    }

    .segmentos-section__grid {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
      background-size: 40px 40px;
      mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 15%, transparent 80%);
    }

    .segmentos-reveal {
      opacity: 0;
      transform: translateY(26px);
      transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
      transition-delay: var(--reveal-delay, 0s);
    }

    .segmentos-reveal.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    .segmentos-section__header {
      max-width: 42rem;
      margin: 0 auto 2.5rem;
    }

    .segmentos-section__eyebrow {
      display: inline-block;
      font-size: 0.78rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: #ffb07a;
      margin-bottom: 0.75rem;
    }

    .segmentos-section h2 {
      font-size: clamp(1.55rem, 3vw + 0.75rem, 2.35rem);
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 1rem;
      line-height: 1.2;
    }

    .segmentos-section .lead {
      color: rgba(255, 255, 255, 0.85) !important;
      font-size: clamp(1rem, 1.5vw + 0.5rem, 1.12rem);
      margin-bottom: 0;
      line-height: 1.7;
    }

    .segmento-card {
      display: flex;
      flex-direction: column;
      height: 100%;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 16px;
      padding: 1.5rem 1.35rem;
      color: #ffffff;
      text-decoration: none;
      backdrop-filter: blur(8px);
      transition: border-color 0.3s ease, background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    }

    @media (hover: hover) and (pointer: fine) {
      .segmento-card:hover,
      .segmento-card:focus-visible {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(235, 106, 29, 0.55);
        transform: translateY(-6px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
        color: #ffffff;
      }

      .segmento-card:hover .segmento-card__icon {
        background: var(--gi-cor-primaria);
        color: #ffffff;
        transform: scale(1.05);
      }

      .segmento-card:hover .segmento-card__cta {
        gap: 0.55rem;
        color: #ffb07a;
      }
    }

    .segmento-card__icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 3rem;
      height: 3rem;
      border-radius: 12px;
      background: rgba(235, 106, 29, 0.2);
      color: var(--gi-cor-primaria);
      font-size: 1.5rem;
      margin-bottom: 1rem;
      transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    }

    .segmento-card h3 {
      font-size: 1.15rem;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 0.6rem;
      line-height: 1.3;
    }

    .segmento-card p {
      font-size: 0.9rem;
      color: rgba(255, 255, 255, 0.78);
      line-height: 1.6;
      margin-bottom: 1rem;
      flex-grow: 1;
    }

    .segmento-card__tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.4rem;
      list-style: none;
      padding: 0;
      margin: 0 0 1.1rem;
    }

    .segmento-card__tags li {
      font-size: 0.72rem;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.9);
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.12);
      padding: 0.25rem 0.6rem;
      border-radius: 50px;
    }

    .segmento-card__cta {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      font-size: 0.88rem;
      font-weight: 700;
      color: var(--gi-cor-primaria);
      margin-top: auto;
      transition: gap 0.2s ease, color 0.2s ease;
    }

    .segmentos-section__footer {
      text-align: center;
      margin-top: 2.25rem;
    }

    .segmentos-section__footer .btn i {
      margin-left: 0.35rem;
    }

    /* Customização PCP — home */
    .customizacao-section {
      position: relative;
      overflow: hidden;
      background: linear-gradient(160deg, #1a252f 0%, #2c3e50 50%, #1e2d3d 100%);
      padding: clamp(3.5rem, 7vw, 5.5rem) 0;
    }

    .customizacao-section__bg {
      position: absolute;
      inset: 0;
      pointer-events: none;
    }

    .customizacao-section__orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(65px);
      opacity: 0.38;
    }

    .customizacao-section__orb--1 {
      width: 300px;
      height: 300px;
      background: rgba(235, 106, 29, 0.45);
      top: 5%;
      right: -8%;
    }

    .customizacao-section__orb--2 {
      width: 240px;
      height: 240px;
      background: rgba(46, 204, 113, 0.15);
      bottom: 0;
      left: 5%;
    }

    .customizacao-section__grid {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
      background-size: 44px 44px;
      mask-image: radial-gradient(ellipse 75% 65% at 50% 45%, black 10%, transparent 78%);
    }

    .customizacao-reveal {
      opacity: 0;
      transform: translateY(26px);
      transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
      transition-delay: var(--reveal-delay, 0s);
    }

    .customizacao-reveal.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    .customizacao-section__header {
      max-width: 42rem;
      margin: 0 auto 1.75rem;
    }

    .customizacao-section__eyebrow {
      display: inline-block;
      font-size: 0.78rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: #ffb07a;
      margin-bottom: 0.75rem;
    }

    .customizacao-section h2 {
      font-size: clamp(1.55rem, 3vw + 0.75rem, 2.3rem);
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 1rem;
      line-height: 1.2;
    }

    .customizacao-section .lead {
      color: rgba(255, 255, 255, 0.85) !important;
      font-size: clamp(1rem, 1.5vw + 0.5rem, 1.12rem);
      margin-bottom: 0;
      line-height: 1.7;
    }

    .customizacao-banner {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      background: rgba(255, 255, 255, 0.07);
      border: 1px solid rgba(255, 255, 255, 0.14);
      border-radius: 14px;
      padding: 1rem 1.25rem;
      margin-bottom: 2rem;
      backdrop-filter: blur(8px);
      transition: border-color 0.25s ease, background-color 0.25s ease;
    }

    @media (hover: hover) and (pointer: fine) {
      .customizacao-banner:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(235, 106, 29, 0.35);
      }
    }

    .customizacao-banner__text strong {
      display: block;
      color: #ffffff;
      font-size: 0.95rem;
      margin-bottom: 0.2rem;
    }

    .customizacao-banner__text span {
      font-size: 0.85rem;
      color: rgba(255, 255, 255, 0.75);
      line-height: 1.5;
    }

    .customizacao-banner__link {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      font-size: 0.88rem;
      font-weight: 700;
      color: #ffb07a;
      text-decoration: none;
      white-space: nowrap;
      transition: gap 0.2s ease, color 0.2s ease;
    }

    .customizacao-banner__link:hover {
      color: #ffffff;
      gap: 0.55rem;
    }

    .customizacao-card {
      position: relative;
      padding-top: 1.75rem;
    }

    .customizacao-card__step {
      position: absolute;
      top: 1rem;
      right: 1.1rem;
      font-size: 0.72rem;
      font-weight: 800;
      color: rgba(255, 255, 255, 0.25);
      letter-spacing: 0.05em;
    }

    @media (hover: hover) and (pointer: fine) {
      .customizacao-card:hover .customizacao-card__step {
        color: rgba(235, 106, 29, 0.6);
      }
    }

    .customizacao-section__footer {
      text-align: center;
      margin-top: 2.25rem;
    }

    .customizacao-section__footer .btn i {
      margin-right: 0.35rem;
    }

    /* Vantagens — home */
    .vantagens-section {
      position: relative;
      overflow: hidden;
      background: linear-gradient(180deg, #f8f9fb 0%, #ffffff 45%, #f4f6f8 100%);
      padding: clamp(3.5rem, 7vw, 5.5rem) 0;
    }

    .vantagens-section__bg {
      position: absolute;
      inset: 0;
      pointer-events: none;
    }

    .vantagens-section__dot {
      position: absolute;
      inset: 0;
      background-image: radial-gradient(rgba(44, 62, 80, 0.06) 1px, transparent 1px);
      background-size: 22px 22px;
      mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 20%, transparent 85%);
    }

    .vantagens-reveal {
      opacity: 0;
      transform: translateY(22px);
      transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
      transition-delay: var(--reveal-delay, 0s);
    }

    .vantagens-reveal.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    .seo-expand-reveal {
      opacity: 0;
      transform: translateY(22px);
      transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
      transition-delay: var(--reveal-delay, 0s);
    }

    .seo-expand-reveal.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    .vantagens-section__header {
      max-width: 40rem;
      margin: 0 auto 1.5rem;
    }

    .vantagens-section__eyebrow {
      display: inline-block;
      font-size: 0.78rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--gi-cor-primaria);
      margin-bottom: 0.75rem;
    }

    .vantagens-section h2 {
      font-size: clamp(1.55rem, 3vw + 0.75rem, 2.3rem);
      font-weight: 700;
      color: var(--gi-cor-secundaria);
      margin-bottom: 1rem;
      line-height: 1.2;
    }

    .vantagens-section .lead {
      color: #6c757d !important;
      font-size: clamp(1rem, 1.5vw + 0.5rem, 1.12rem);
      margin-bottom: 0;
      line-height: 1.7;
    }

    .vantagens-section__pills {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 0.5rem 0.75rem;
      list-style: none;
      padding: 0;
      margin: 0 auto 2rem;
      max-width: 36rem;
    }

    .vantagens-section__pills li {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--gi-cor-secundaria);
      background: #ffffff;
      border: 1px solid #e8ecef;
      border-radius: 999px;
      padding: 0.4rem 0.85rem;
      box-shadow: 0 2px 8px rgba(44, 62, 80, 0.04);
    }

    .vantagens-section__pills li i {
      color: var(--gi-cor-primaria);
      font-size: 0.95rem;
    }

    .vantagem-card {
      height: 100%;
      background: #ffffff;
      border: 1px solid #e8ecef;
      border-radius: 16px;
      padding: 1.35rem 1.25rem;
      transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
    }

    @media (hover: hover) and (pointer: fine) {
      .vantagem-card:hover {
        border-color: rgba(235, 106, 29, 0.45);
        box-shadow: 0 14px 32px rgba(235, 106, 29, 0.1);
        transform: translateY(-5px);
      }

      .vantagem-card:hover .vantagem-card__icon {
        background: var(--gi-cor-primaria);
        color: #ffffff;
        transform: scale(1.05);
      }
    }

    .vantagem-card__icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 2.75rem;
      height: 2.75rem;
      border-radius: 12px;
      background: rgba(235, 106, 29, 0.12);
      color: var(--gi-cor-primaria);
      font-size: 1.25rem;
      margin-bottom: 0.85rem;
      transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
    }

    .vantagem-card h3 {
      font-size: clamp(1rem, 1.5vw + 0.4rem, 1.15rem);
      font-weight: 700;
      color: var(--gi-cor-secundaria);
      margin-bottom: 0.45rem;
      line-height: 1.3;
    }

    .vantagem-card p {
      font-size: 0.9rem;
      color: #6c757d;
      line-height: 1.6;
      margin-bottom: 0;
    }

    /* FAQ — home */
    .faq-home-section {
      background: linear-gradient(180deg, #ffffff 0%, #f8f9fb 100%);
      padding: clamp(3.5rem, 7vw, 5.5rem) 0;
    }

    .faq-home-reveal {
      opacity: 0;
      transform: translateY(22px);
      transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
      transition-delay: var(--reveal-delay, 0s);
    }

    .faq-home-reveal.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    .faq-home__eyebrow {
      display: inline-block;
      font-size: 0.78rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--gi-cor-primaria);
      margin-bottom: 0.75rem;
    }

    .faq-home__header h2 {
      font-size: clamp(1.45rem, 3vw + 0.65rem, 2.1rem);
      font-weight: 700;
      color: var(--gi-cor-secundaria);
      margin-bottom: 0.85rem;
      line-height: 1.25;
    }

    .faq-home__header .lead {
      color: #6c757d !important;
      font-size: clamp(0.95rem, 1.5vw + 0.45rem, 1.05rem);
      line-height: 1.65;
      margin-bottom: 1.5rem;
    }

    .faq-home__cta-card {
      background: var(--gi-cor-secundaria);
      color: #ffffff;
      border-radius: 16px;
      padding: 1.35rem 1.25rem;
      box-shadow: 0 16px 40px rgba(44, 62, 80, 0.18);
    }

    .faq-home__cta-title {
      font-size: 1.05rem;
      font-weight: 700;
      margin-bottom: 0.4rem;
      color: #ffffff;
    }

    .faq-home__cta-card p {
      font-size: 0.88rem;
      color: rgba(255, 255, 255, 0.85);
      line-height: 1.55;
      margin-bottom: 1rem;
    }

    .faq-home__cta-card .btn i {
      margin-right: 0.3rem;
    }

    .faq-home__accordion .accordion-item {
      border: 1px solid #e8ecef;
      border-radius: 14px !important;
      margin-bottom: 0.65rem;
      overflow: hidden;
      background: #ffffff;
      box-shadow: 0 2px 10px rgba(44, 62, 80, 0.04);
      transition: border-color 0.25s ease, box-shadow 0.25s ease;
    }

    @media (hover: hover) and (pointer: fine) {
      .faq-home__accordion .accordion-item:hover {
        border-color: rgba(235, 106, 29, 0.35);
        box-shadow: 0 8px 24px rgba(44, 62, 80, 0.08);
        transform: none;
      }
    }

    .faq-home__accordion .accordion-button {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      width: 100%;
      font-size: clamp(0.95rem, 1.2vw + 0.4rem, 1.05rem);
      font-weight: 700;
      color: var(--gi-cor-secundaria);
      background-color: #ffffff;
      border: none;
      border-radius: 0 !important;
      padding: 1rem 1.15rem;
      box-shadow: none !important;
    }

    .faq-home__accordion .accordion-button::after {
      display: none;
    }

    .faq-home__question {
      flex: 1;
      text-align: left;
      line-height: 1.4;
    }

    .faq-home__chevron {
      flex-shrink: 0;
      font-size: 1rem;
      color: var(--gi-cor-primaria);
      transition: transform 0.3s ease;
    }

    .faq-home__accordion .accordion-button:not(.collapsed) {
      background-color: rgba(235, 106, 29, 0.08);
      color: var(--gi-cor-secundaria);
    }

    .faq-home__accordion .accordion-button:not(.collapsed) .faq-home__chevron {
      transform: rotate(180deg);
    }

    .faq-home__accordion .accordion-button:focus {
      box-shadow: inset 0 0 0 2px rgba(235, 106, 29, 0.35);
      border-color: transparent;
    }

    .faq-home__accordion .accordion-body {
      font-size: 0.92rem;
      color: #6c757d;
      line-height: 1.65;
      padding: 0 1.15rem 1.1rem;
      background-color: #ffffff;
      border-radius: 0;
    }

    @media (max-width: 991.98px) {
      .faq-home__header {
        text-align: center;
      }

      .faq-home__cta-card {
        max-width: 22rem;
        margin: 0 auto 1.5rem;
      }
    }

.destaque{color:#eb6a1d;}
/* Estilo geral da seção */
    .blog-section {
      background-color: #f9f9f9;
      padding: 60px 0;
    }

    /* Título principal */
    .blog-section h2 {
      font-size: clamp(1.5rem, 3vw + 0.75rem, 2.8rem);
      font-weight: 700;
      color: #2c3e50;
      text-align: center;
      margin-bottom: 40px;
    }

    /* Subtítulo */
    .blog-section p.lead {
      font-size: clamp(1rem, 1.5vw + 0.5rem, 1.2rem);
      color: #6c757d;
      text-align: center;
      margin-bottom: 50px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Cartões de postagens */
    .blog-card {
      background-color: #ffffff;
      border-radius: 15px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      overflow: hidden;
    }
    .blog-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    }

    /* Imagem do cartão */
    .blog-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-top-left-radius: 15px;
      border-top-right-radius: 15px;
    }

    /* Corpo do cartão */
    .blog-card-body {
      padding: 20px;
    }

    /* Título do cartão */
    .blog-card-title {
      font-size: clamp(1.1rem, 2vw + 0.5rem, 1.5rem);
      font-weight: 700;
      color: #2c3e50;
      margin-bottom: 10px;
    }

    /* Descrição do cartão */
    .blog-card-text {
      font-size: 1rem;
      color: #6c757d;
      line-height: 1.6;
      margin-bottom: 15px;
    }

    /* Botão de leitura */
    .blog-card .btn-custom {
      margin-top: 0.75rem;
    }

    .blog-card .btn-custom:hover,
    .blog-card .btn-custom:focus {
      color: #ffffff;
    }

    .blog-section__all-link {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
    }

    .blog-section__all-link .bi {
      transition: transform 0.2s ease;
    }

    .blog-section__all-link:hover .bi {
      transform: translateX(3px);
    }

    /* Skeleton de carregamento do blog */
    .blog-card--skeleton {
      pointer-events: none;
      overflow: hidden;
    }

    .blog-card--skeleton:hover {
      transform: none;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .blog-skeleton__image,
    .blog-skeleton__line,
    .blog-skeleton__btn {
      background: linear-gradient(90deg, #e9ecef 25%, #f8f9fa 50%, #e9ecef 75%);
      background-size: 200% 100%;
      animation: blog-skeleton-shimmer 1.4s ease-in-out infinite;
    }

    .blog-skeleton__image {
      width: 100%;
      height: 200px;
    }

    .blog-skeleton__line {
      height: 14px;
      border-radius: 4px;
      margin-bottom: 0.65rem;
    }

    .blog-skeleton__line--title {
      height: 22px;
      width: 85%;
      margin-bottom: 0.85rem;
    }

    .blog-skeleton__line--short {
      width: 60%;
      margin-bottom: 1rem;
    }

    .blog-skeleton__btn {
      height: 42px;
      width: 140px;
      border-radius: 6px;
      margin-top: 0.5rem;
    }

    @keyframes blog-skeleton-shimmer {
      0% {
        background-position: 200% 0;
      }
      100% {
        background-position: -200% 0;
      }
    }

/* Estilo geral da seção */
    .advantages-section {
      background-color: #f9f9f9;
      padding: 60px 0;
    }

    /* Título principal */
    .advantages-section h2 {
      font-size: clamp(1.5rem, 3vw + 0.75rem, 2.8rem);
      font-weight: 700;
      color: #2c3e50;
      text-align: center;
      margin-bottom: 40px;
    }

    /* Subtítulo */
    .advantages-section p.lead {
      font-size: clamp(1rem, 1.5vw + 0.5rem, 1.2rem);
      color: #6c757d;
      text-align: center;
      margin-bottom: 50px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Cartões de vantagens */
    .advantage-card {
      background-color: #ffffff;
      border-radius: 15px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      padding: 30px;
      text-align: center;
    }
    .advantage-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    }

    /* Ícones dos cartões */
    .advantage-card i {
      font-size: 3rem;
      color: #eb6a1d;
      margin-bottom: 20px;
    }

    /* Títulos dos cartões */
    .advantage-card h5 {
      font-size: 1.5rem;
      font-weight: bold;
      color: #2c3e50;
      margin-bottom: 15px;
    }

    /* Textos dos cartões */
    .advantage-card p {
      font-size: 1rem;
      color: #6c757d;
      line-height: 1.6;
    }
/* Estilo geral da seção */
    .faq-section {
      background-color: #f9f9f9;
      padding: 60px 0;
    }

    /* Título principal */
    .faq-section h2 {
      font-size: clamp(1.5rem, 3vw + 0.75rem, 2.8rem);
      font-weight: 700;
      color: #2c3e50;
      text-align: center;
      margin-bottom: 40px;
    }

    /* Subtítulo */
    .faq-section p.lead {
      font-size: clamp(1rem, 1.5vw + 0.5rem, 1.2rem);
      color: #6c757d;
      text-align: center;
      margin-bottom: 50px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Estilo dos itens do FAQ */
    .accordion-item {
      border: none;
      border-radius: 10px;
      margin-bottom: 15px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .accordion-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    }

    /* Cabeçalho do FAQ */
    .accordion-button {
      font-size: clamp(1rem, 1.5vw + 0.5rem, 1.2rem);
      font-weight: 700;
      color: #2c3e50;
      background-color: #ffffff;
      border: none;
      border-radius: 10px;
      padding: 15px 20px;
      transition: background-color 0.3s ease;
    }
    .accordion-button:not(.collapsed) {
      background-color: #eb6a1d;
      color: #ffffff;
    }

    /* Ícone do botão */
    .accordion-button::after {
      content: "\f107"; /* Ícone de seta para baixo */
      font-family: "Font Awesome 5 Free";
      font-weight: 900;
      float: right;
      transition: transform 0.3s ease;
    }
    .accordion-button.collapsed::after {
      content: "\f105"; /* Ícone de seta para direita */
      transform: rotate(90deg);
    }

    /* Corpo do FAQ */
    .accordion-body {
      font-size: 1rem;
      color: #6c757d;
      line-height: 1.6;
      padding: 15px 20px;
      background-color: #f9f9f9;
      border-radius: 0 0 10px 10px;
    }
    /* Animação de entrada */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .fadeInUp {
      animation: fadeInUp 0.8s ease-in-out;
    }

 /* Call to Action */
    .cta-section {
      background-color: var(--gi-cor-primaria);
      color: #ffffff;
      padding: clamp(2rem, 5vw, 3rem) clamp(1.25rem, 4vw, 2.5rem);
      text-align: center;
      border-radius: 15px;
      margin-top: 0;
    }

    .cta-section h2,
    .cta-section h3 {
      font-size: clamp(1.35rem, 3vw + 0.5rem, 2rem);
      font-weight: 700;
      margin-bottom: 1rem;
      color: #ffffff;
    }

    .cta-section p {
      font-size: clamp(1rem, 1.5vw + 0.5rem, 1.2rem);
      margin-bottom: 0;
      color: rgba(255, 255, 255, 0.95);
      max-width: 42rem;
      margin-left: auto;
      margin-right: auto;
    }

    .cta-section__actions {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 0.75rem;
      margin-top: 1.75rem;
    }

    /* Aliases legados — outras landings */
    .cta-section .cta-section__btn-primary,
    .cta-section .btn-custom-invert {
      background-color: #ffffff;
      border-color: #ffffff;
      color: var(--gi-cor-primaria);
    }

    .cta-section .cta-section__btn-outline,
    .cta-section .btn-outline-secondary {
      background-color: transparent;
      border-color: #ffffff;
      color: #ffffff;
    }

    .cta-section__contact {
      margin-top: 1.5rem;
      font-size: 0.9rem;
      color: rgba(255, 255, 255, 0.9);
    }

    .cta-section__contact a {
      color: #ffffff;
      text-decoration: underline;
      text-underline-offset: 0.15em;
    }

    .cta-section__contact a:hover {
      color: #ffffff;
      opacity: 0.9;
    }

/* --- Tipografia fluida: cards --- */
    .feature-card h5,
    .advantage-card h5 {
      font-size: clamp(1.1rem, 2vw + 0.5rem, 1.5rem);
    }

/* --- Responsividade (mobile / tablet) --- */
@media (max-width: 991.98px) {
  .navbar-custom .navbar-nav {
    padding-top: 0.75rem;
    padding-bottom: 0.5rem;
  }

  .navbar-custom .nav-link {
    padding: 0.65rem 0.5rem;
    font-size: 1rem;
  }

  .navbar-custom .nav-item-cta {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid #e9ecef;
  }

  .navbar-custom .nav-item-cta .btn-nav-cta {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.65rem 1rem;
  }

  .hero-section {
    padding: 4.5rem 0;
  }

  .hero-section.hero-home {
    padding: 3rem 0;
  }

  .hero-home__visual {
    margin-top: 0.5rem;
  }

  .features-section p.lead,
  .blue-section p.lead,
  .advantages-section p.lead,
  .blog-section p.lead,
  .faq-section p.lead {
    margin-bottom: 2rem;
  }

  .features-section h2,
  .blue-section h2,
  .advantages-section h2,
  .blog-section h2,
  .faq-section h2 {
    margin-bottom: 1.25rem;
  }

  .features-tabs .nav-link {
    font-size: 0.88rem;
    padding: 0.5rem 0.9rem;
  }
}

@media (max-width: 767.98px) {
  .top-bar {
    padding: 0.5rem 0;
    font-size: 0.85rem;
  }

  .hero-section {
    padding: 3.5rem 0;
  }

  .hero-section.hero-home {
    padding: 2.5rem 0;
  }

  .hero-home__ctas .btn {
    width: 100%;
    max-width: none;
  }

  .hero-home__ctas {
    flex-direction: column;
  }

  .apresentacao,
  .features-section,
  .blue-section,
  .advantages-section,
  .blog-section,
  .faq-section {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .footer {
    padding: 2.5rem 0 2rem;
  }

  .footer .col-md-3 {
    margin-bottom: 1.5rem;
    text-align: center;
  }

  .footer h5::after {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-site__main > [class*="col-"] {
    text-align: left;
  }

  .footer-site__bar-inner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .copyright.footer-site__bar {
    text-align: left;
  }

  .footer-site .footer-logo {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-site__tagline {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .footer-site__social {
    justify-content: center;
  }

  @media (max-width: 575.98px) {
    .footer-site__heading::after {
      margin-left: auto;
      margin-right: auto;
    }

    .footer-site__main > [class*="col-"] {
      text-align: center;
    }

    .footer-site__contact a {
      justify-content: center;
    }

    .footer-site__links a:hover {
      padding-left: 0;
    }
  }

  .feature-card,
  .advantage-card {
    padding: 1.25rem;
  }

  .feature-card i,
  .advantage-card i {
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
  }

  .blog-card img {
    height: 180px;
  }

  .blog-skeleton__image {
    height: 180px;
  }

  .blog-card-body {
    padding: 1rem;
  }

  .cta-section__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-section .btn {
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .btn-custom {
    display: block;
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .hero-section .btn-custom {
    display: inline-block;
    width: auto;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }

  .hero-home__ctas .btn-custom,
  .hero-home__ctas .btn-custom-outline,
  .apresentacao__ctas .btn {
    display: block;
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .cta-section__actions .btn {
    width: 100%;
    max-width: 320px;
  }

  body {
    padding-bottom: 5rem;
  }
}

@media (max-width: 575.98px) {
  .top-bar .container {
    flex-direction: column;
    gap: 0.35rem;
    text-align: center;
    font-size: 0.8rem;
  }

  .navbar-brand img {
    max-height: 38px;
  }

  .hero-section.hero-home {
    padding: 2rem 0;
  }

  .hero-home__trust {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .hero-section .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero-section {
    padding: 2.75rem 0;
  }

  .whatsapp-float span {
    display: none;
  }

  .whatsapp-float {
    padding: 0.75rem;
    border-radius: 50%;
    bottom: 1rem;
    right: 1rem;
  }

  .whatsapp-float i {
    margin-right: 0;
    font-size: 1.35rem;
  }

  .cta-section {
    border-radius: 12px;
    padding: 1.75rem 1rem;
  }

  .cta-section__contact {
    font-size: 0.85rem;
    line-height: 1.6;
  }

  .accordion-button {
    padding: 0.85rem 1rem;
  }

  .accordion-body {
    padding: 0.85rem 1rem;
  }

  .copyright {
    font-size: 0.8rem;
    padding: 0.75rem 0.5rem;
  }
}

@media (hover: hover) and (pointer: fine) {
  .feature-card:hover,
  .advantage-card:hover,
  .blog-card:hover,
  .accordion-item:hover {
    transform: translateY(-6px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .fadeInUp,
  .whatsapp-float {
    animation: none;
  }

  .hero-home__orb,
  .hero-home__mockup-wrap,
  .hero-home__float-card,
  .hero-home__eyebrow::before {
    animation: none;
  }

  .hero-home__reveal {
    opacity: 1;
    animation: none;
  }

  .hero-home__mockup-wrap {
    transform: none !important;
  }

  .apresentacao__reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .segmentos-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .modulos-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .customizacao-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .vantagens-reveal,
  .faq-home-reveal,
  .seo-expand-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .vantagem-card {
    transform: none;
    transition: none;
  }

  .modulo-card {
    transform: none;
    transition: none;
  }

  .blog-skeleton__image,
  .blog-skeleton__line,
  .blog-skeleton__btn {
    animation: none;
    background: #e9ecef;
  }

  .feature-card,
  .advantage-card,
  .blog-card,
  .accordion-item,
  .btn-custom,
  .btn-custom-outline,
  .btn-custom-secondary,
  .btn-custom-invert,
  .btn-nav-cta,
  .whatsapp-float,
  .apresentacao__img,
  .apresentacao-card,
  .segmento-card,
  .modulo-card {
    transition: none;
  }

  .btn-custom:hover,
  .btn-custom-outline:hover,
  .btn-custom-secondary:hover,
  .btn-custom-invert:hover,
  .btn-nav-cta:hover,
  .feature-card:hover,
  .advantage-card:hover,
  .blog-card:hover,
  .accordion-item:hover,
  .whatsapp-float:hover,
  .apresentacao__img:hover,
  .apresentacao-card:hover,
  .segmento-card:hover,
  .modulo-card:hover {
    transform: none;
  }
}