
    :root {
      --primary-color: #0057a8;
      --dark-color: #0d233f;
      --accent-color: #28a745;
      --light-color: #f8f9fa;
      --white-color: #ffffff;
      --font-family: "Poppins", sans-serif;
    }
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      scroll-behavior: smooth;
    }
    body {
      font-family: var(--font-family);
      line-height: 1.7;
      color: var(--dark-color);
      background: var(--white-color);
    }
    .container {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 20px;
    }
    main {
      overflow-x: hidden;
    }
    section {
      padding: 70px 0;
    }
    h1,
    h2,
    h3 {
      font-weight: 600;
      margin-bottom: 20px;
    }
    h1 {
      font-size: clamp(2.2rem, 5vw, 2.8rem);
    }
    h2 {
      font-size: clamp(1.8rem, 4vw, 2.2rem);
      color: var(--primary-color);
      text-align: center;
    }
    p {
      margin-bottom: 15px;
      font-size: clamp(1rem, 2.5vw, 1.1rem);
      line-height: 1.6;
    }
    .cta-button {
      display: inline-block;
      background-color: var(--accent-color);
      color: var(--white-color);
      padding: 15px 35px;
      font-size: clamp(1.1rem, 2.5vw, 1.2rem);
      font-weight: 600;
      text-decoration: none;
      border-radius: 50px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
      text-align: center;
    }
    .cta-button:hover,
    .cta-button:focus {
      outline: none;
      transform: translateY(-3px);
      box-shadow: 0 6px 20px rgba(40, 167, 69, 0.6);
    }
    .cta-button svg {
      width: 24px;
      height: 24px;
      vertical-align: middle;
      margin-right: 10px;
    }
    header {
      background: var(--white-color);
      padding: 10px 0;
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    header .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .logo img {
      max-height: 130px;
      width: auto;
    }
    #hero {
      background: var(--light-color);
      padding-top: 60px;
      padding-bottom: 60px;
      text-align: center;
    }
    #hero .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 40px;
    }
    #hero .hero-text {
      flex: 1 1 500px;
      text-align: left;
    }
    #hero .hero-text h1 {
      line-height: 1.3;
      color: var(--dark-color);
    }
    #hero .hero-text .subtitle {
      font-size: 1.25rem;
      margin-bottom: 30px;
    }
    #hero .hero-image {
      flex: 1 1 300px;
    }
    #hero .hero-image img {
      width: 100%;
      max-width: 320px;
      border-radius: 50%;
      box-shadow: 0 10px 30px rgba(0, 87, 168, 0.2);
    }
    .highlight {
      color: var(--accent-color);
      font-weight: 700;
      background: rgba(40, 167, 69, 0.1);
      padding: 3px 6px;
      border-radius: 4px;
    }
    .horario-flexivel {
      font-size: 1rem;
      margin-top: 10px;
      color: var(--accent-color);
      font-weight: 600;
      background: rgba(40, 167, 69, 0.15);
      padding: 8px 12px;
      border-radius: 6px;
      max-width: 460px;
    }
    #produtos {
      background: var(--light-color);
      padding: 50px 0;
    }
    #produtos h2 {
      margin-bottom: 40px;
      font-weight: 700;
      font-size: clamp(1.8rem, 4vw, 2.4rem);
    }
    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
    }
    .feature-item {
      background: var(--white-color);
      padding: 30px;
      border-radius: 10px;
      text-align: center;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .feature-item:hover {
      transform: translateY(-6px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }
    .feature-item svg {
      width: 48px;
      height: 48px;
      color: var(--primary-color);
      margin-bottom: 15px;
    }
    #diferenciais {
      background: var(--white-color);
    }
    .features-grid.diferenciais-grid {
      margin-top: 40px;
    }
    .feature-item.diferencial-item {
      background: var(--light-color);
      padding: 30px;
      border-radius: 10px;
      text-align: center;
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .feature-item.diferencial-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    }
    .feature-item.diferencial-item svg {
      width: 50px;
      height: 50px;
      color: var(--primary-color);
      margin-bottom: 15px;
    }
    #como-funciona {
      background: var(--light-color);
    }
    .steps-container {
      display: flex;
      justify-content: space-around;
      flex-wrap: wrap;
      margin-top: 50px;
      gap: 30px;
    }
    .step {
      flex: 1;
      min-width: 280px;
      max-width: 320px;
      text-align: center;
    }
    .step .step-number {
      width: 60px;
      height: 60px;
      background: var(--primary-color);
      color: var(--white-color);
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8rem;
      font-weight: 700;
      margin-bottom: 15px;
      box-shadow: 0 4px 15px rgba(0, 87, 168, 0.3);
    }
    #faq {
      background: var(--white-color);
    }
    .faq-container {
      max-width: 800px;
      margin: 40px auto 0 auto;
    }
    .faq-item {
      border-bottom: 1px solid #ddd;
      margin-bottom: 15px;
    }
    .faq-item summary {
      font-size: 1.2rem;
      font-weight: 500;
      padding: 15px 0;
      cursor: pointer;
      position: relative;
      outline: none;
    }
    .faq-item summary::-webkit-details-marker {
      display: none;
    }
    .faq-item summary::after {
      content: '+';
      position: absolute;
      right: 0;
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--primary-color);
      transition: transform 0.3s ease;
    }
    .faq-item[open] summary::after {
      content: '-';
      transform: rotate(180deg);
    }
    .faq-item p {
      padding-bottom: 20px;
      color: #444;
    }
    footer {
      background: var(--dark-color);
      color: var(--white-color);
      padding: 25px 0;
      text-align: center;
      font-size: 0.9rem;
    }
    @media (max-width: 768px) {
      #hero .container {
        flex-direction: column;
        text-align: center;
      }
      #hero .hero-text {
        text-align: center;
      }
    }
    @media (max-width: 992px) {
      header .container {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      .cta-button {
        margin-top: 15px;
        padding: 10px 25px;
        font-size: 1rem;
      }
    }
      .container {
      max-width: 1200px;
      margin: 0 auto;
    }
    .grid-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
    }
    .card {
      background-color: white;
      border: 1px solid #ddd;
      border-radius: 10px;
      padding: 20px;
      box-shadow: 0 0 10px rgba(0,0,0,0.05);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .card h4 {
      font-size: 1.2rem;
      margin-bottom: 10px;
    }
    .card p.description {
      flex-grow: 1;
      margin-bottom: 15px;
    }
    .price-pix {
      font-size: 1.3rem;
      font-weight: bold;
      color: #25d366; /* verde Pix */
      margin-bottom: 4px;
    }
    .price-card {
      font-size: 1rem;
      color: #666;
      margin-bottom: 10px;
    }
    .btn-whatsapp {
      background-color: #25d366;
      color: white;
      text-align: center;
      padding: 10px 15px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      display: inline-block;
      transition: all 0.3s ease;
      margin-top: auto;
    }
    .btn-whatsapp:hover {
      background-color: #20b857;
      box-shadow: 0 4px 12px rgba(32, 184, 87, 0.6);
      transform: scale(1.05);
    }
  /* Estilo do selo diferencial com ícone */
  .selo-diferencial {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: #d4f0e3; /* verde claro suave */
    color: #007c47; /* verde escuro */
    font-weight: 700;
    font-size: 0.85rem;
    padding: 4px 10px;
    border-radius: 20px;
    box-shadow: 0 2px 5px rgba(0,124,71,0.2);
    user-select: none;
    margin-top: 15px;
    animation: fadeUp 0.6s ease forwards;
  }

  .selo-diferencial::before {
    content: "⚡";
    font-size: 1rem;
  }

  /* Animação sutil de entrada */
  @keyframes fadeUp {
    0% {
      opacity: 0;
      transform: translateY(10px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .info-extra {
  font-size: 0.85em;
  color: #b85600;
  background-color: #fff4e5;
  border-left: 3px solid #ffa726;
  padding: 6px 10px;
  margin-top: 8px;
  border-radius: 4px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}
.info-extra::before {
  content: "⚠️";
  font-size: 1em;
}
.faq-content {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease, background-color 0.4s ease, box-shadow 0.4s ease;
  color: #444;
  padding-bottom: 0;
  background-color: transparent;
  border-radius: 6px;
}

details[open] .faq-content {
  max-height: 1000px;
  opacity: 1;
  padding: 15px 20px 20px 20px;
  background-color: #e6f7df; /* fundo verde bem suave */
  box-shadow: 0 2px 12px rgba(40, 167, 69, 0.2);
  transition: max-height 0.6s ease, opacity 0.6s ease, background-color 0.6s ease, box-shadow 0.6s ease;
}

/*Fonte*/

/* Poppins 400 normal */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/pxiEyp8kv8JHgFVrJJfecg.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Poppins 500 normal */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/pxiByp8kv8JHgFVrLGT9Z1xlFQ.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Poppins 600 normal */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/pxiByp8kv8JHgFVrLEj6Z1xlFQ.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Poppins 700 normal */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/pxiByp8kv8JHgFVrLCz7Z1xlFQ.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Exemplo de uso da fonte */
body {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  /* outros estilos */
}

h1, h2, h3, strong {
  font-weight: 700;
}

 
