 
    /* ===== RESET ===== */
    body {
      margin: 0;
      background: #000;
    }

    .footer-divider {
        border: none;
        height: 2px;
        background: #7B61FF;
        width: 100%;
        margin: 32px 0 24px;
    }

    /* ===== NAVBAR ===== */
    .navbar {
      height: 72px;
      background: #111;
      border-bottom: 1px solid #7b61ff46;  
      position: relative;
      z-index: 9999;
    }

    .navbar-brand {
      font-weight: 700;
      color: #fff !important;
    }

    .nav-link {
      color: #fff !important;
      margin: 0 10px;
    }

    .nav-link:hover{
      border-bottom:2px solid #7B61FF;
      color:#ffffffb2 !important;
    }

    .btn-menu {
      border: 1px solid #fff;
      color: #fff;
      border-radius: 30px;
      padding: 6px 16px;
    }

    .btn-menu:hover{
        background-color: #7B61FF;
        color: #ffffff;
    }

    .btn-cta {
      border-radius: 30px;
      padding: 6px 18px;
      font-weight: 500;
    }


    /* ===== BANNER ===== */
    .banner-wrapper {
      width: 100%;
      height: 420px;
      position: relative;
      overflow: hidden;
      z-index: 1;
    }

    .banner-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: opacity 1.2s ease-in-out;
      opacity: 1;
    }

    .banner-wrapper img.fade-out {
      opacity: 0;
    }

    .banner-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to right,
        rgba(0,0,0,0.75),
        rgba(0,0,0,0.35)
      );
      z-index: 1;
    }

    /* ===== CONTEÚDO CENTRAL ===== */
    .banner-content {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: 2;
      text-align: center;
      background: rgba(0,0,0,0.55);
      backdrop-filter: blur(6px);
      padding: 20px;
      border-radius: 12px;
      max-width: 493px;
      width: 90%;
      color: #fff;
    }

    .banner-content h1 {
      font-size: 1.5rem;
      font-weight: 700;
      line-height: 1.2;
    }

    .banner-content h1 span {
      color: #7B61FF;
    }

    .banner-content .btn {
      background: #7B61FF;
      color: #fff;
      border: none;
      border-radius: 30px;
      padding: 10px 30px;
      font-weight: 500;
    }

    .banner-content .btn:hover {
      background: #5641c0;
      color: #fff;
    }


     /* ===== TEXTO - CONTAGEM ===== */

    .counter-box {
        border: 1px solid #fff;
        padding: 22px;
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
    }

    .text-t{
        padding: 0px 10%;
        font-size: 1.1rem;
    }

    /* TEXTO BASE */
    .counter,
    .counter-label {
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    }

    /* Destaque sutil no número */
    .counter {
    font-weight: 600;
    }

    /* Texto normal */
    .counter-label {
    font-weight: 400;
    }


/* ===============================
   CARROSSEL DE CARDS (GLOBAL)
================================ */

/* BASE DO CARROSSEL */
.cards-carousel {
    position: relative;
    overflow: hidden;        /* impede rolagem horizontal */
    padding-bottom: 70px;    /* espaço para as setas embaixo */
}

/* LIBERA HOVER DOS CARDS */
.cards-carousel .carousel-inner,
.cards-carousel .carousel-item {
    overflow: visible;
}

/* ESPAÇAMENTO LATERAL ENTRE SLIDES */
.carousel-padding {
    padding: 0 40px;
}

/* ===============================
   CARD
================================ */
.product-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 0px;
    padding: 0px;
    height: 100%;
    text-decoration: none;
    text-align: center;
    color: #000;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 25px #7b61ff80;
}

/* IMAGEM */
.img-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ===============================
   TEXTOS
================================ */
.product-card h6 {
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 3px;
}

.category {
    padding: 5px;
    color: #767676;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: bold;
}

.descrp {
    font-size: 0.7rem;
    color: #111;
    line-height: 1;
    margin-bottom: 10px;
}

.old-price {
    font-size: 0.85rem;
    color: #888;
    text-decoration: line-through;
    margin: 0;
}

.old-price-2 {
    font-size: 0.85rem;
    color: #888;
    margin: 0;
}

.price {
    font-size: 1.5rem;
    font-weight: bolder;
    color: #000;
}

/* ===============================
   SETAS EMBAIXO
================================ */
.cards-carousel .custom-arrow {
    position: absolute;
    top: auto;
    width: 46px;
    height: 46px;
    background: transparent;
    color: #fff;
    border: 1px solid #7b61ff;
    border-radius: 50%;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    z-index: 10;
}

/* SETA ESQUERDA */
.cards-carousel .carousel-control-prev {
    left: 50%;
    transform: translateX(-120%);
}

/* SETA DIREITA */
.cards-carousel .carousel-control-next {
    left: 50%;
    transform: translateX(20%);
}

.cards-carousel .custom-arrow svg {
    display: block;
}

/* ===============================
   RESPONSIVO
================================ */
@media (max-width: 576px) {
    .cards-carousel {
        padding-bottom: 90px;
    }

    .cards-carousel .custom-arrow {
        width: 40px;
        height: 40px;
        font-size: 22px;
    }

    .product-card h6 {
        font-size: 18px;
    }
}



.titulo-projetos{text-align:center;margin:65px auto;font-size:2rem;font-weight:700;padding:15px 0}
.imagem-projetos{width:100%;display:flex;justify-content:center;align-items:center;flex-wrap:wrap}
.banner-projeto{max-width:360px;display:block;margin:auto}
.image{margin:2px 2px;position:relative}
.contenttt{width:100%;height:100%;top:0;left:0;position:absolute;background-color:#000000cc;display:flex;justify-content:flex-end;align-items:center;flex-direction:column;opacity:0;transition:.6s;cursor:pointer}
.contenttt:hover{opacity:1}
.contenttt h1{font-size:22px;font-weight:500;color:#fff}
.contenttt p{font-size:12px;font-weight:300;color:#fff;margin-bottom:16px}

.strategy-wrapper {
  min-height: 520px;
}

/* IMAGEM */
.strategy-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 18px;
}

.strategy-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.6s ease;
  user-select: none;
  pointer-events: auto;
}

/* TEXTO */
.strategy-title {
  line-height: 1.4;
  font-weight: 700;
}

.strategy-bar {
 width: 230px;
 height: 2px;
 background: #7b61ff;
 margin: 12px 0 18px;
}

.strategy-subtitle {
  font-weight: 500;
  margin-bottom: 16px;
}

.strategy-text {
  color: #bdbdbd;
  line-height: 1.7;
}

    .btn-strategy {
      background: #7B61FF;
      color: #fff;
      border: none;
      border-radius: 30px;
      padding: 10px 30px;
      font-weight: 500;
    }

    .btn-strategy:hover {
      background: #5641c0;
      color: #fff;
    }


    /* ===== WHATSAPP ===== */
    .whatsapp-float {
      position: fixed;
      bottom: 20px;
      right: 20px;
      width: 56px;
      height: 56px;
      background: #25d366;
      color: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 26px;
      z-index: 999;
      box-shadow: 0 4px 12px rgba(0,0,0,0.4);
      text-decoration: none;
    }

    .whatsapp-float:hover {
      background: #1ebe5d;
      color: #fff;
    }

    .footer-custom {
    background-color: #0c0c0c;
    border-top: 1px solid #7b61ff52;
    }
    footer a:hover {
    text-decoration: underline;
    }

    footer i {
    transition: color 0.2s ease;
    }

    footer i:hover {
    color: #7B61FF
    }

    .ft-border:hover{
        border-bottom: 1px solid #7B61FF;
    }

    .f-color{
        color: #c9beff;
    }

    /* ===== RESPONSIVO ===== */
    @media (max-width: 991px) {
      .banner-wrapper {
        height: 300px;
      }

      .banner-content h1 {
        font-size: 1.8rem;
      }

      .footer-mobile{
        text-align: center;
      }

      .footer-icon{
        display: flex !important;
        justify-content: center !important;
      }
    }

    
    /* MOBILE */
    @media (max-width: 991px) {
      .strategy-image-mob {
        width: 45%;
        margin: 0 auto;   /* centraliza horizontalmente */
        border-radius: 20px;
      }

      .idv-mobile{
        text-align: center;
      }

      .strategy-bar {
        width: 100%;
      }

      .product-card h6{
        padding: 0px 22px 0px 22px;
        font-size: 15px;
      }

      .padding-extra{
        padding: 0px 27px 0px 27px;
      }

      .category {
          font-size: 8px;
      }

      .descrp {
          font-size: 0.6rem;
          margin-bottom: 8px;
          padding: 0px 10px;
      }

      .old-price .old-price-2 {
          font-size: 0.65rem;
      }

      .price {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
      }

      .navbar-collapse {
        background: #111;
        padding: 20px;
        border-radius: 12px;
        z-index: 9999;
        position: absolute;
        top: 72px;
        left: 0;
        width: 100%;
      }

      .navbar-collapse {
        text-align: center;
      }

      .navbar-nav {
        align-items: center;
      }

      .nav-item {
        width: 100%;
      }

      .nav-link {
        display: inline-block;
      }

      .d-flex.gap-2 {
        justify-content: center;
        margin-top: 15px;
      }

    }

