﻿* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #1a1a1a;
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* PRODUTOS SECTION */
    .section {
      padding: 14px 20px 30px;
      max-width: 1400px;
      margin: 0 auto;
    }

    /* CATEGORIAS CARROSSEL */
    .carousel-block {
      margin-bottom: 34px;
    }

    .carousel-block-title {
      max-width: 1120px;
      margin: 0 auto 14px;
      font-size: clamp(1.2rem, 2vw, 1.6rem);
      color: #1a1a1a;
      font-weight: 800;
    }

    .categorias-carousel {
      position: relative;
      max-width: 1120px;
      margin: 0 auto 44px;
      overflow: hidden;
      border-radius: 24px;
      box-shadow: 0 22px 50px rgba(0, 0, 0, 0.14);
      border: 1px solid #ececec;
      background: #fff;
    }

    .carousel-track {
      display: flex;
      transition: transform 0.6s ease;
      will-change: transform;
    }

    .carousel-slide {
      min-width: 100%;
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      background: #fff;
    }

    .carousel-image {
      position: relative;
      min-height: 420px;
      overflow: hidden;
    }

    .carousel-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .carousel-image::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(120deg, rgba(0, 0, 0, 0.1), rgba(255, 193, 7, 0.22));
    }

    .carousel-content {
      padding: 34px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      background: linear-gradient(160deg, #ffffff 0%, #f7f7f7 100%);
    }

    @media (max-width: 1024px) {
      .section {
        padding: 12px 16px 24px;
      }

      .categorias-carousel {
        border-radius: 18px;
      }

      .carousel-slide {
        grid-template-columns: 1fr;
      }

      .carousel-image {
        min-height: 300px;
      }

      .carousel-content {
        padding: 26px;
      }

      .carousel-controls {
        padding: 0 10px;
      }
    }

    .carousel-badge {
      display: inline-block;
      width: fit-content;
      background: rgba(255, 193, 7, 0.16);
      color: #9f7400;
      padding: 7px 14px;
      border-radius: 20px;
      font-size: 0.82rem;
      font-weight: 800;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      margin-bottom: 14px;
    }

    .carousel-content h3 {
      font-size: clamp(1.5rem, 2.4vw, 2rem);
      color: #1a1a1a;
      margin-bottom: 12px;
    }

    .carousel-content p {
      color: #575757;
      line-height: 1.8;
      margin-bottom: 20px;
    }

    .carousel-link {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      color: #1a1a1a;
      background: #ffc107;
      width: fit-content;
      padding: 12px 18px;
      border-radius: 10px;
      font-weight: 700;
      transition: 0.25s ease;
    }

    .carousel-link:hover {
      background: #ffcf33;
      transform: translateY(-2px);
    }

    .carousel-controls {
      position: absolute;
      top: 50%;
      left: 0;
      right: 0;
      transform: translateY(-50%);
      display: flex;
      justify-content: space-between;
      padding: 0 14px;
      pointer-events: none;
      z-index: 5;
    }

    .carousel-btn {
      pointer-events: all;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      border: none;
      background: rgba(26, 26, 26, 0.75);
      color: #fff;
      cursor: pointer;
      transition: 0.2s ease;
    }

    .carousel-btn:hover {
      background: #1a1a1a;
      transform: scale(1.05);
    }

    .carousel-dots {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 14px;
      display: flex;
      justify-content: center;
      gap: 8px;
      z-index: 5;
    }

    .carousel-dot {
      width: 10px;
      height: 10px;
      border-radius: 999px;
      border: none;
      background: rgba(255, 255, 255, 0.7);
      cursor: pointer;
      transition: 0.25s ease;
    }

    .carousel-dot.active {
      width: 28px;
      background: #ffc107;
    }


    /* DIFERENCIAIS */
    .diferenciais {
      background: linear-gradient(135deg, #ffc107 0%, #ffcf33 100%);
      padding: 80px 20px;
      margin-top: 100px;
    }

    .diferenciais-content {
      max-width: 1200px;
      margin: 0 auto;
    }

    .diferenciais-title {
      font-size: 2.5rem;
      font-weight: 800;
      color: #1a1a1a;
      margin-bottom: 60px;
      text-align: center;
    }

    .diferenciais-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 40px;
    }

    .diferencial-item {
      text-align: center;
    }

    .diferencial-icon {
      width: 80px;
      height: 80px;
      background: rgba(26, 26, 26, 0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 40px;
      margin: 0 auto 20px;
      color: #1a1a1a;
    }

    .diferencial-item h4 {
      font-size: 1.3rem;
      margin-bottom: 12px;
      color: #1a1a1a;
    }

    .diferencial-item p {
      color: rgba(26, 26, 26, 0.85);
      line-height: 1.8;
    }

    /* CTA FINAL */
    .cta-final {
      padding: 100px 20px;
      text-align: center;
      background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
      color: #fff;
    }

    .cta-final h2 {
      font-size: 2.8rem;
      font-weight: 800;
      margin-bottom: 20px;
    }

    .cta-final h2 span {
      color: #ffc107;
    }

    .cta-final p {
      font-size: 1.2rem;
      margin-bottom: 40px;
      opacity: 0.9;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    .cta-whatsapp {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: #ffc107;
      color: #1a1a1a;
      padding: 16px 40px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 700;
      font-size: 1.1rem;
      transition: all 0.3s ease;
    }

    .cta-whatsapp:hover {
      background: #ffcf33;
      transform: scale(1.05);
      box-shadow: 0 15px 40px rgba(255, 193, 7, 0.3);
    }

    /* RESPONSIVE */
    @media (max-width: 768px) {
      .section {
        padding: 10px 12px 18px;
      }

      .carousel-slide {
        grid-template-columns: 1fr;
      }

      .carousel-image {
        min-height: 220px;
      }

      .carousel-content {
        padding: 20px;
      }

      .carousel-controls {
        padding: 0 8px;
      }

      .carousel-btn {
        width: 38px;
        height: 38px;
      }

      .diferenciais-title {
        font-size: 1.8rem;
      }

      .cta-final h2 {
        font-size: 1.8rem;
      }
    }


/* classes geradas a partir de estilos inline */
.is-1 { color: #fff; }

