html{
  scroll-behavior: smooth;
  
}
.wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem;
    gap: 0;
  }
  .card {
    flex: 1;
    min-width: 0;
    padding: 1rem;
    height: 52px;
    border-radius: 1rem;
    justify-content: center;
    display: flex;
    align-items: center;
    text-align: center;
    background-color: #e2dfea;

  }
  .dots {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0 14px;
    flex-shrink: 0;
  }
  .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ef8943;
    flex-shrink: 0;
    opacity: 0.2;
    animation: flow 1.4s ease-in-out infinite;
  }
  .dot:nth-child(1) { animation-delay: 0s; }
  .dot:nth-child(2) { animation-delay: 0.15s; }
  .dot:nth-child(3) { animation-delay: 0.30s; }
  .dot:nth-child(4) { animation-delay: 0.45s; }
  .dot:nth-child(5) { animation-delay: 0.60s; }
  .dot:nth-child(6) { animation-delay: 0.75s; }
  .dot:nth-child(7) { animation-delay: 0.90s; }

  @keyframes flow {
    0%   { opacity: 0.15; transform: scale(0.7); }
    50%  { opacity: 1;    transform: scale(1.2); }
    100% { opacity: 0.15; transform: scale(0.7); }
  }
    .right{
      background-color: rgba(23, 57, 47, 0.85);
      color: #ffffff;
      
    }

  @media (max-width: 480px) {
    .wrapper {
      flex-direction: column;
    }
    .card {
      width: 100%;
    }
    .dots {
      padding: 10px 0;
    }
  }
  
  .btn_retail {
    background-color: #ee8744;
    color: #ffffff;
    padding: 20px 24px;
    border-radius: 0.8rem;
    min-width: 250px;
    max-width: 500px;
    height: 50px;
    text-align: center;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    
    }

    .btn_retail:hover {
    background-color: #b16533;
    color: #ffffff;
    cursor: pointer;
    }

/* Caixas */
 
     .tag {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #ef8943;
      margin-bottom: 0.75rem;
    }
    .tag::before, .tag::after {
      content: '';
      display: block;
      width: 16px;
      height: 1.5px;
      background: #ef8943;
    }
 
    .title {
      font-size: clamp(1.4rem, 3.5vw, 1.9rem);
      color: #121212;
      margin-bottom: 2rem;
    }
    .title em { font-style: italic; color: #ef8943; }
 
    .grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      width: 100%;
    }
 
    .block {
      background: #fdfdfd;
      box-shadow: #78787a 0px 2px 5px;
      border-radius: 14px;
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
      gap: 10px;
      opacity: 0;
      animation: fadeUp 0.5s ease forwards;
      transition: border-color 0.25s ease, background 0.25s ease;
      position: relative;
      overflow: hidden;
    }
    
    .block:hover {
      transition: border-color 0.25s ease, background 0.25s ease;
      border-color: #ef8943;
      background: #f0f0f0;
    }

  
    .block::before {
      content: '';
      position: absolute;
      left: 0; top: 0; bottom: 0;
      width: 3px;
      border-radius: 14px 0 0 14px;
    }
 
    .b1::before { background: #ef8943; }
    .b2::before { background: #006241; }
    .b3::before { background: #17392f; }
    .b4::before { background: #00754a; }
    .b5::before { background: #EF9F27; }
 
    .b1 { animation-delay: 0.05s; }
    .b2 { animation-delay: 0.15s; }
    .b3 { animation-delay: 0.25s; }
    .b4 { animation-delay: 0.35s; }
    .b5 { animation-delay: 0.45s; }
 
    .wide { grid-column: 1 / -1; }
 
    .block-number {
      font-size: 2.8rem;
      font-weight: 400;
    }
    .b1 .block-number { color: #ef8943; }
    .b2 .block-number { color: #006241; }
    .b3 .block-number { color: #006241; }
    .b4 .block-number { color: #00754a; }
    .b5 .block-number { color: #ef8943; }
 
    .wide .block-number { font-size: 2.2rem; }
 
    .block-text {
      font-size: 13px;
      font-weight: 300;
      line-height: 1.65;
      color: #17392f;
      flex: 1;
    }
 
    .block-badge {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 4px 10px;
      border-radius: 10px;
      width: fit-content;
    }
    .b1 .block-badge { background: #ef8943; color: #ffffff; }
    .b2 .block-badge { background: #006241; color: #ffffff; }
    .b3 .block-badge { background: #006241; color: #ffffff; }
    .b4 .block-badge { background: #006241; color: #ffffff; }
    .b5 .block-badge { background: #ef8943; color: #ffffff; }
 
    .wide-inner {
      display: flex;
      align-items: center;
      gap: 1.5rem;
    }
    .wide-inner .block-number { flex-shrink: 0; }
    .wide-inner .block-right { display: flex; flex-direction: column; gap: 10px; }
 
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(16px); }
      to   { opacity: 1; transform: translateY(0); }
    }
 
    @media (max-width: 480px) {
      body { align-items: flex-start; padding: 2rem 1rem; }
      .grid { grid-template-columns: 1fr; }
      .wide { grid-column: auto; }
      .wide-inner { flex-direction: column; gap: 0.75rem; }
    }

/* Testemunho */

 .testimonial-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 24px;
      max-width: 1000px;
      margin: 0 auto;
    }
 
    /* ── Card ── */
    .tc-card {
      background: #ffffff;
      border-radius: 12px;
      padding: 2rem;
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      box-shadow: 0 2px 8px rgba(0,0,0,0.07), 0 0 1px rgba(0,0,0,0.08);
      transition: box-shadow 0.25s ease, transform 0.25s ease;
    }
 
    .tc-card:hover {
      box-shadow: 0 6px 24px rgba(0,0,0,0.10), 0 0 1px rgba(0,0,0,0.08);
      transform: translateY(-2px);
    }
 
    /* ── Logo da empresa ── */
    .tc-logo-wrap {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 12px 20px;
      border: 1px solid #e8e8e8;
      border-radius: 8px;
      width: fit-content;
      max-width: 160px;
    }
 
    .tc-logo-wrap img {
      height: 40px;
      width: auto;
      max-width: 120px;
      object-fit: contain;
      display: block;
    }
 
    /* ── Citação ── */
    .tc-quote {
      font-size: 15px;
      line-height: 1.75;
      color: #2c2c2a;
      flex: 1;
    }
 
    /* ── Rodapé: foto + info ── */
    .tc-footer {
      display: flex;
      align-items: center;
      gap: 14px;
      padding-top: 1.25rem;
      border-top: 1px solid #f0f0f0;
    }
 
    .tc-avatar {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      object-fit: cover;
      flex-shrink: 0;
      border: 2px solid #e8e8e8;
    }
 
    /* Fallback caso não haja foto */
    .tc-avatar-placeholder {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: #e8e8e8;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      font-weight: 500;
      color: #888;
    }
 
    .tc-author-name {
      font-size: 15px;
      font-weight: 600;
      color: #1a1a18;
      margin-bottom: 2px;
    }
 
    .tc-author-company {
      font-size: 13px;
      color: #888780;
    }
 
    /* ── Responsivo ── */
    @media (max-width: 640px) {
      body { padding: 1.5rem 1rem; }
 
      .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 16px;
      }
 
      .tc-card { padding: 1.5rem; }
    }

    /* Logo em carrossel */
.logos-section { width: 100%; text-align: center; }
 
    .logos-title {
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #888780;
      margin-bottom: 2rem;
    }
 
    .logos-track-wrap {
      overflow: hidden;
      width: 100%;
      -webkit-mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
      mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
    }
 
    .logos-track {
      display: flex;
      align-items: center;
      width: max-content;
      animation: scroll-logos 22s linear infinite;
    }
 
    .logos-track:hover { animation-play-state: paused; }
 
    .logo-item {
      width: 160px;
      height: 72px;
      flex-shrink: 0;
      margin: 0 32px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
 
    .logo-item img {
      width: 160px;
      height: 56px;
      object-fit: contain;
      filter: grayscale(100%);
      opacity: 0.5;
      transition: filter 0.3s ease, opacity 0.3s ease;
      display: block;
    }
 
    .logo-item img:hover {
      filter: grayscale(0%);
      opacity: 1;
    }
 
    @keyframes scroll-logos {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
 
    @media (max-width: 640px) {
      .logo-item { width: 110px; height: 56px; margin: 0 20px; }
      .logo-item img { width: 110px; height: 40px; }
    }

  .sol-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 72px 32px;
  }
 
  .sol-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #00764b;
    margin-bottom: 12px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  .sol-label::before,
  .sol-label::after {
    content: '';
    display: block;
    width: 20px;
    height: 1.5px;
    background: #00764b;
  }
 
  .sol-title {
    font-size: clamp(1.4rem, 3.5vw, 2rem);
    font-weight: 700;
    color: #0d1f1a;
    text-align: center;
    line-height: 1.25;
    margin-bottom: 56px;
  }
  .sol-title em {
    font-style: italic;
    color: #00764b;
  }
 
  /* Desktop: 3 top + 2 centralizados embaixo */
  .sol-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
  }
  .sol-grid .sol-card             { grid-column: span 2; }
  .sol-grid .sol-card:nth-child(4){ grid-column: 2 / 4; }
  .sol-grid .sol-card:nth-child(5){ grid-column: 4 / 6; }
 
  /* Tablet */
  @media (max-width: 900px) {
    .sol-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    .sol-grid .sol-card,
    .sol-grid .sol-card:nth-child(4),
    .sol-grid .sol-card:nth-child(5) {
      grid-column: span 1;
      max-width: 100%;
      margin: 0;
    }
    .sol-grid .sol-card:nth-child(5) {
      grid-column: 1 / -1;
      max-width: 420px;
      margin: 0 auto;
      width: 100%;
    }
  }
 
  /* Mobile */
  @media (max-width: 560px) {
    .sol-section { padding: 48px 16px; }
    .sol-grid {
      grid-template-columns: 1fr;
    }
    .sol-grid .sol-card,
    .sol-grid .sol-card:nth-child(4),
    .sol-grid .sol-card:nth-child(5) {
      grid-column: auto;
      max-width: 100%;
      margin: 0;
    }
  }
 
  .sol-card {
    background: #fdfdfd;
    box-shadow: #78787a 0px 2px 5px;
    border-radius: 14px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: solFadeUp 0.5s ease forwards;
    transition: border-color 0.25s ease, background 0.25s ease;
  }
 
  .sol-card:hover {
    background: #f0f0f0;
  }
 
  .sol-card::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    border-radius: 14px 0 0 14px;
    background: #00764b;
  }
 
  .sol-card:nth-child(1) { animation-delay: 0.05s; }
  .sol-card:nth-child(2) { animation-delay: 0.15s; }
  .sol-card:nth-child(3) { animation-delay: 0.25s; }
  .sol-card:nth-child(4) { animation-delay: 0.35s; }
  .sol-card:nth-child(5) { animation-delay: 0.45s; }
 
  .sol-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #e0f4ea, #c0e8d4);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
 
  .sol-icon-wrap svg {
    width: 24px;
    height: 24px;
    stroke: #00764b;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
 
  .sol-card-title {
    font-size: 15px;
    font-weight: 600;
    color: #0d1f1a;
    line-height: 1.3;
  }
 
  .sol-card-subtitle {
    font-size: 12px;
    font-weight: 400;
    color: #4a7060;
    margin-top: 2px;
  }
 
  .sol-card-desc {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.65;
    color: #17392f;
    flex: 1;
  }
 
  .sol-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 10px;
    width: fit-content;
    background: #00764b;
    color: #ffffff;
  }
 
  @keyframes solFadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
  }

.dores-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 620px;
  }
 
  .dores-item {
    display: flex;
    align-items: center;
    gap: 20px;
  }
 
  .dores-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: #f0eeee;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
 
  .dores-icon svg {
    width: 24px;
    height: 24px;
    color: #666;
  }
 
  .dores-text {
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 16px;
    color: #2c2c2a;
    line-height: 1.4;
  }
 
  @media (max-width: 480px) {
    .dores-text { font-size: 14px; }
    .dores-icon { width: 44px; height: 44px; border-radius: 10px; }
    .dores-icon svg { width: 20px; height: 20px; }
  }

.solucoes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 860px;
    margin: 0 auto;
  }
 
  /* Linha de baixo: 2 cards centralizados */
  .solucoes-row2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 572px;
    margin: 0 auto;
  }
 
  .solucao-card {
    background: #fafafa;
    border-radius: 14px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  }
 
  .solucao-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  }
 
  .solucao-icon svg {
    width: 22px;
    height: 22px;
    color: #00764B;
  }
 
  .solucao-text {
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 15px;
    font-weight: 700;
    font-style: italic;
    color: #1a1a18;
    line-height: 1.4;
    margin: 0;
  }
 
  @media (max-width: 640px) {
    .solucoes-grid { grid-template-columns: 1fr; }
    .solucoes-row2 { grid-template-columns: 1fr; max-width: 100%; }
  }

/* Case */
.cases-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
  }
 
  .cases-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid #d0d0ce;
    background: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 28px;
    line-height: 1;
    color: #444;
    transition: border-color 0.2s, background 0.2s, color 0.2s;
  }
 
  .cases-btn:hover { border-color: #00764B; background: #f0faf5; color: #00764B; }
 
  .cases-viewport {
    overflow: hidden;
    flex: 1;
  }
 
  .cases-track {
    display: flex;
    gap: 16px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
 
  /* Cada card ocupa 1/3 do viewport menos gaps */
  .case-card {
    background: #ffffff;
    border: 1.5px solid #e0e0de;
    border-radius: 14px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    flex-shrink: 0;
    /* 3 cards visíveis: (100% - 2 gaps de 16px) / 3 */
    width: calc((100% - 32px) / 3);
    box-sizing: border-box;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: border-color 0.3s, box-shadow 0.3s;
  }
 
  .case-card.active {
    border-color: #00764B;
    box-shadow: 0 4px 20px rgba(0,118,75,0.15);
  }
 
  .case-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #e0e0de;
  }
 
  .case-name {
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 15px;
    font-weight: 700;
    font-style: italic;
    color: #1a1a18;
    margin: 0;
  }
 
  .case-role {
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 12px;
    color: #888780;
    line-height: 1.4;
    margin: 0;
  }
 
  .case-divider {
    width: 100%;
    height: 1px;
    background: #e8e8e6;
  }
 
  .case-quote {
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 13px;
    color: #2c2c2a;
    line-height: 1.7;
    margin: 0;
    text-align: left;
  }
 
  .cases-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
  }
 
  .cases-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d0d0ce;
    cursor: pointer;
    border: none;
    padding: 0;
    transition: background 0.2s, transform 0.2s;
  }
 
  .cases-dot.active {
    background: #00764B;
    transform: scale(1.2);
  }
 
  @media (max-width: 768px) {
    .case-card { width: calc((100% - 16px) / 2); }
  }
 
  @media (max-width: 480px) {
    .case-card { width: 100%; }
    .cases-btn { width: 36px; height: 36px; }
  }
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 860px;
    margin: 0 auto;
  }
 
  .stats-row2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 572px;
    margin: 16px auto 0;
  }
 
  .stat-card {
    background: #fafafa;
    border-radius: 14px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  }
 
  .stat-number {
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #00764B;
    line-height: 1;
    margin: 0;
  }
 
  .stat-desc {
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 14px;
    color: #2c2c2a;
    line-height: 1.55;
    margin: 0;
  }
 
  @media (max-width: 640px) {
    .stats-grid { grid-template-columns: 1fr; }
    .stats-row2 { grid-template-columns: 1fr; max-width: 100%; }
    .stat-number { font-size: 40px; }
  }

      /* 1. CONTAINER PRINCIPAL */
    .custom-slider-container {
        max-width: 1200px;
        margin: 40px auto;
        padding: 0 20px;
        font-family: sans-serif;
        position: relative;
    }

    /* 2. ÁREA DO SLIDER (SCROLL NATIVO) */
    .slider-wrapper {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory; /* Faz o "imã" no slide */
        scroll-behavior: smooth;       /* Deslize suave */
        -webkit-overflow-scrolling: touch;
        gap: 20px;
        padding: 20px 0;
    }

    /* Remove barra de rolagem visual */
    .slider-wrapper::-webkit-scrollbar { display: none; }
    .slider-wrapper { -ms-overflow-style: none; scrollbar-width: none; }

    /* 3. OS CARDS (CASES) */
    .case-item {
        flex: 0 0 calc(33.333% - 14px); /* 3 itens no desktop */
        scroll-snap-align: start;
        box-sizing: border-box;
    }

    .case-content {
        background: #fff;
        border-radius: 12px;
        text-align: center;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        border: 1px solid #eee;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: 320px;
        padding: 20px;
        transition: transform 0.3s;
    }

    .case-content h2 {
        margin: 15px 0;
        color: #149c4d;
        font-size: 3rem;
    }

    .case-content img {
        width: 60%;
        max-width: 150px;
        height: auto;
    }

    .case-content p {
        font-size: 0.95rem;
        color: #666;
        height: 50px;
    }

    /* 4. BOTÕES DE NAVEGAÇÃO */
    .nav-btns {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-top: 20px;
    }

    .nav-btn {
        background: #149c4d;
        color: white;
        border: none;
        padding: 10px 20px;
        border-radius: 5px;
        cursor: pointer;
        font-weight: bold;
    }

    .nav-btn:active { opacity: 0.8; }

    /* 5. RESPONSIVIDADE (MOBILE) */
    @media (max-width: 1024px) {
        .case-item { flex: 0 0 calc(50% - 10px); } /* 2 itens */
    }

    @media (max-width: 768px) {
        .case-item { flex: 0 0 85%; } /* 1 item e meio para mostrar que tem mais */
    }

</style>