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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
    background-color: #ffffff;
    color: #1f2933;
}

a {
    text-decoration: none;
}

/* TOPO AZUL COM LOGO */
.top-bar {
    width: 100%;
    background-image: url('./../images/background00.jpg');
    background-size: cover;
    background-position: center;
    padding: 12px 0;
}

.top-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-menu ul {
    list-style: none;
    display: flex;
    gap: 28px;
}

.main-menu ul li a {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: opacity .2s ease;
}

.main-menu ul li a:hover {
    opacity: .7;
}

/* USER AREA */
.user-area {
    display: flex;
    align-items: center;
    gap: 16px;
}

.user-name {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
}

/* LOGIN BUTTON */
.btn-login {
    padding: 8px 18px;
    border-radius: 20px;
    background: #ffffff;
    color: #4c1d95;
    font-weight: 600;
    text-decoration: none;
    transition: all .2s ease;
}

.btn-login:hover {
    background: #e5e5e5;
}

.right-area {
    display: flex;
    align-items: center;
    gap: 32px;
}

/* LOGOUT BUTTON */
.btn-logout {
    padding: 8px 16px;
    border-radius: 20px;
    background: #4c1d95;
    color: #ffffff;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background .2s ease;
}

.btn-logout:hover {
    background: #3a0f7a;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 52px;
    width: auto;
}

.cart-box {
    padding: 10px 18px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: #ffffff;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.25);
}

.cart-icon {
    font-size: 1rem;
}

/* SEÇÃO HERO */
.hero {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 0 16px 40px;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 24px;
    align-items: center;
}

.hero-title {
    font-size: clamp(2.2rem, 3.4vw, 3rem);
    line-height: 1.1;
    font-weight: 800;
    color: #2d3a8c; /* azul forte */
    margin-bottom: 18px;
}

.hero-title span.highlight {
    background: linear-gradient(90deg, #7c3aed, #a855f7, #ec4899);
    -webkit-background-clip: text;
    color: transparent;
}

.hero-subtitle {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 28px;
    max-width: 480px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 32px;
}

.btn-primary,
.btn-secondary {
    border-radius: 999px;
    padding: 12px 22px;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: #4f46e5;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #4338ca;
}

.btn-secondary {
    background-color: #6c3ff0;
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: #5a32d1;
}

.hero-footnote {
    font-style: italic;
    font-size: 1rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    margin-top: 16px;
    line-height: 1.5;
    color: #3f4b6e;
}

.hero-image {
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 2px;
}

/* === SESSÃO VEJA COMO É SIMPLES === */

.steps-section {
    margin-top: 32px;
    background-color: #f7f2ff; /* lilás clarinho */
    padding: 40px 0 50px;
}

.steps-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    text-align: center;
}

.steps-title {
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 8px;
    color: #2d3a8c;
}

.steps-title span.highlight {
    background: linear-gradient(90deg, #7c3aed, #a855f7, #ec4899);
    -webkit-background-clip: text;
    color: transparent;
}

.steps-subtitle {
    font-size: 1rem;
    margin-bottom: 32px;
    color: #111827;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 28px;
}

.step-card {
    background-color: #fdfbff;
    border-radius: 24px;
    border: 2px solid #d1b3ff;
    padding: 28px 18px 22px;
    box-shadow: 0 0 0 4px rgba(209, 179, 255, 0.25);
}

.step-icon-circle {
    width: 90px;
    height: 90px;
    margin: 0 auto 16px;
    border-radius: 999px;
    border: 3px solid #c084fc;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, #fdfbff 40%, #f5e1ff);
    box-shadow: 0 0 18px rgba(192, 132, 252, 0.7);
    color: #7c3aed;
    font-size: 2rem;
}

.step-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2d3a8c;
}

.step-text {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.4;
}

.steps-note {
    font-style: italic;
    font-size: 1rem;
    margin-top: 8px;
    margin-bottom: 24px;
    color: #3f4b6e;
}

.steps-cta {
    display: inline-block;
}

/* SEÇÃO ESTILOS */
.styles-section {
    background: linear-gradient(135deg, #7c3aed, #6366f1);
    color: #ffffff;
    padding: 50px 0 40px;
}

.styles-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    text-align: center;
}

.styles-title {
    font-size: clamp(2rem, 3vw, 2.6rem);
    font-weight: 800;
    margin-bottom: 10px;
}

.styles-subtitle {
    font-size: 1rem;
    margin-bottom: 32px;
}

.styles-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 22px;
}

.style-card {
background: #ffffff;
color: #111827;
border-radius: 24px;
padding: 22px 18px;
text-align: left;
display: flex;
gap: 14px;
align-items: flex-start;
}

.style-icon {
width: 46px;
height: 46px;
border-radius: 16px;
background: #f4e9ff;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.6rem;
color: #a855f7;
flex-shrink: 0;
}

.style-title {
font-size: 1.05rem;
font-weight: 700;
margin-bottom: 6px;
}

.style-text {
font-size: 0.95rem;
color: #6b7280;
line-height: 1.4;
}

.styles-footnote {
font-style: italic;
font-size: 0.95rem;
margin-top: 12px;
}
.results-section {
    border-top: 6px solid #a855f7; /* faixa roxa no topo */
    padding: 40px 0 50px;
    background-color: #ffffff;
}

.results-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    text-align: center;
}

.results-title {
    font-size: clamp(2rem, 3vw, 2.6rem);
    font-weight: 800;
    margin-bottom: 10px;
    color: #2d3a8c;
}

.results-title span.highlight {
    background: linear-gradient(90deg, #7c3aed, #a855f7, #ec4899);
    -webkit-background-clip: text;
    color: transparent;
}

.results-subtitle {
    font-size: 1rem;
    margin-bottom: 32px;
    color: #4b5563;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
    margin-bottom: 28px;
}

.result-item img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 10px;
}

.result-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.result-tag {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6b7280;
}

.results-note {
    font-style: italic;
    font-size: 0.95rem;
    color: #374151;
    max-width: 800px;
    margin: 0 auto 24px;
    line-height: 1.5;
}

.btn-primary {
    display: inline-block;
    border-radius: 999px;
    padding: 12px 26px;
    font-size: 0.98rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    background-color: #4f46e5;
    color: #ffffff;
    box-shadow: 0 6px 18px rgba(79, 70, 229, 0.5);
}

.btn-primary:hover {
    background-color: #4338ca;
}

/* SEÇÃO POR QUE ESCOLHER */
    .why-section {
        background-color: #f7f2ff;
        padding: 50px 0;
        text-align: center;
    }

    .why-inner {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 16px;
    }

    .why-title {
        font-size: clamp(2rem, 3vw, 2.6rem);
        font-weight: 800;
        color: #2d3a8c;
        margin-bottom: 8px;
    }

    .why-title span {
        background: linear-gradient(90deg, #7c3aed, #a855f7, #ec4899);
        -webkit-background-clip: text;
        color: transparent;
    }

    .why-subtitle {
        font-size: 1.1rem;
        color: #4b5563;
        margin-bottom: 40px;
    }

    .why-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 30px;
    }

    .why-card {
        background: #ffffff;
        border-radius: 22px;
        padding: 26px 22px;
        text-align: left;
        display: flex;
        gap: 16px;
        align-items: flex-start;
        border: 1px solid #e6d7ff;
        box-shadow: 0 4px 16px rgba(0,0,0,0.05);
    }

    .why-icon {
        width: 48px;
        height: 48px;
        border-radius: 14px;
        background-color: #e8d8ff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.6rem;
        color: #7c3aed;
        flex-shrink: 0;
    }

    .why-card-title {
        font-size: 1.1rem;
        font-weight: 700;
        margin-bottom: 6px;
        color: #1f2937;
    }

    .why-card-text {
        font-size: 0.92rem;
        color: #6b7280;
        line-height: 1.4;
    }

    .why-footnote {
        font-size: 0.85rem;
        font-style: italic;
        margin-top: 32px;
        color: #4b5563;
    }

     .gallery-section {
      padding: 40px 0 50px;
      background-color: #ffffff;
      text-align: center;
    }

    .gallery-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 16px;
    }

    .gallery-title {
      font-size: clamp(2rem, 3vw, 2.6rem);
      font-weight: 800;
      color: #2d3a8c;
      margin-bottom: 10px;
    }

    .gallery-title span.highlight {
      background: linear-gradient(90deg, #7c3aed, #a855f7, #ec4899);
      -webkit-background-clip: text;
      color: transparent;
    }

    .gallery-subtitle {
      font-size: 1rem;
      color: #4b5563;
      margin-bottom: 24px;
    }

    /* GRID DE IMAGENS */
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 10px;
      margin-bottom: 24px;
    }

    .gallery-item {
      position: relative;
      overflow: hidden;
      cursor: pointer;
    }

    .gallery-item img {
      display: block;
      width: 100%;
      height: auto;
      object-fit: cover;

      /* efeito de 0 -> 100 na entrada */
      opacity: 0;
      transform: scale(0.85);
      transition:
        opacity 0.6s ease-out,
        transform 0.6s ease-out;
    }

    .gallery-item.visible img {
      opacity: 1;
      transform: scale(1);
    }

    /* LEGENDAS / TEXTO */
    .gallery-note {
      font-style: italic;
      font-size: 0.95rem;
      color: #374151;
      max-width: 800px;
      margin: 0 auto 24px;
      line-height: 1.5;
    }

    .btn-primary {
      display: inline-block;
      border-radius: 999px;
      padding: 12px 26px;
      font-size: 0.98rem;
      font-weight: 600;
      border: none;
      cursor: pointer;
      background-color: #4f46e5;
      color: #ffffff;
      box-shadow: 0 6px 18px rgba(79, 70, 229, 0.5);
    }

    .btn-primary:hover {
      background-color: #4338ca;
    }

    @media (max-width: 900px) {
      .gallery-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }
    }

    @media (max-width: 640px) {
      .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    /* ==============================
       LIGHTBOX / MODAL
    =============================== */

    .lightbox-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.8);
      display: none;               /* escondido por padrão */
      align-items: center;
      justify-content: center;
      z-index: 9999;
      padding: 16px;
    }

    .lightbox-overlay.is-visible {
      display: flex;
    }

    .lightbox-content {
      position: relative;
      max-width: 90vw;
      max-height: 90vh;
    }

    .lightbox-img {
      max-width: 100%;
      max-height: 100%;
      display: block;
      border-radius: 6px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.7);
    }

    .lightbox-close {
      position: absolute;
      top: -12px;
      right: -12px;
      background: #ffffff;
      border-radius: 999px;
      width: 28px;
      height: 28px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      font-weight: bold;
      color: #111827;
      cursor: pointer;
      box-shadow: 0 4px 12px rgba(0,0,0,0.6);
    }
/* SEÇÃO DEPOIMENTOS */
    .testimonials-section {
      background-color: #f7f2ff;
      padding: 50px 0 60px;
    }

    .testimonials-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 16px;
      text-align: center;
    }

    .testimonials-title {
      font-size: clamp(2rem, 3vw, 2.6rem);
      font-weight: 800;
      margin-bottom: 8px;
      color: #2d3a8c;
    }

    .testimonials-title span {
      background: linear-gradient(90deg, #7c3aed, #a855f7, #ec4899);
      -webkit-background-clip: text;
      color: transparent;
    }

    .testimonials-subtitle {
      font-size: 1.05rem;
      color: #4b5563;
      margin-bottom: 32px;
    }

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 24px;
      text-align: left;
    }

    .testimonial-card {
      background-color: #ffffff;
      border-radius: 6px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .testimonial-card img {
        width: 100%;
        height: 340px;      /* altura fixa */
        object-fit: cover;  /* corta sem distorcer */
        display: block;
    }

    .testimonial-body {
      position: relative;
      padding: 20px 18px 18px;
      font-size: 0.95rem;
      color: #4b5563;
      line-height: 1.5;
      flex: 1;
    }

    /* triângulo branco apontando para a imagem */
    .testimonial-body::before {
      content: "";
      position: absolute;
      top: -12px;
      left: 50%;
      transform: translateX(-50%);
      border-left: 10px solid transparent;
      border-right: 10px solid transparent;
      border-bottom: 12px solid #ffffff;
    }

    .testimonial-footer {
      padding: 0 18px 18px;
      font-size: 0.9rem;
    }

    .testimonial-name {
      font-weight: 700;
      margin-bottom: 2px;
      color: #111827;
    }

    .testimonial-role {
      font-size: 0.85rem;
      color: #6b7280;
      margin-bottom: 8px;
    }

    .testimonial-stars {
      color: #f59e0b;
      font-size: 0.95rem;
    }

    /* CTA */
  .cta-section {
    background: linear-gradient(90deg, #8b2be2, #6a3bea, #9d6df0);
    padding: 90px 20px;
    text-align: center;
    color: #ffffff;
  }

  .cta-inner {
    max-width: 900px;
    margin: 0 auto;
  }

  .cta-section h2 {
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 14px;
  }

  .cta-section p {
    font-size: 1.15rem;
    margin-bottom: 32px;
  }

  .cta-btn {
    display: inline-block;
    background: #ffffff;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #4f46e5;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
    text-decoration: none;
    transition: 0.2s ease-in-out;
  }

  .cta-btn:hover {
    background: #f3f3f3;
  }

  /* FOOTER */
  .site-footer {
    background-color: #f8fafc;
    padding: 40px 20px 32px;
  }

  .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 32px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
    color: #111827;
  }

  .footer-logo {
    max-width: 190px;
    height: auto;
    margin-bottom: 10px;
  }

  .footer-brand-title {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 4px;
  }

  .footer-brand-text {
    font-size: 0.9rem;
    color: #4b5563;
  }

  .footer-column h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #111827;
  }

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

  .footer-column li {
    margin-bottom: 6px;
  }

  .footer-column a {
    font-size: 0.9rem;
    color: #1d4ed8;
    text-decoration: none;
  }

  .footer-column a:hover {
    text-decoration: underline;
  }

  .faq-section {
    padding: 60px 16px 70px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  }

  .faq-inner {
    max-width: 900px;
    margin: 0 auto;
  }

  .faq-title {
    text-align: center;
    font-size: clamp(2rem, 3vw, 2.6rem);
    font-weight: 800;
    color: #2d3a8c;
    margin-bottom: 8px;
  }

  .faq-title span {
    background: linear-gradient(90deg, #7c3aed, #a855f7, #ec4899);
    -webkit-background-clip: text;
    color: transparent;
  }

  .faq-subtitle {
    text-align: center;
    font-size: 1.05rem;
    color: #4b5563;
    margin-bottom: 32px;
  }

  .faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .faq-item {
    background-color: #ffffff;
    border-radius: 22px;
    border: 2px solid #e3cffd;
    overflow: hidden;
  }

  .faq-question {
    width: 100%;
    padding: 18px 22px;
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
  }

  .faq-icon {
    font-size: 1.1rem;
    transition: transform 0.2s ease;
  }

  .faq-item.is-open .faq-icon {
    transform: rotate(180deg);
  }

.faq-answer-wrapper {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease; /* mais suave */
}

  .faq-answer {
    padding: 0 22px 18px 22px;
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.5;
  }

  .products-section {
    padding: 40px 16px 60px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
    background-color: #ffffff;
    color: #111827;
  }

  .products-inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  .products-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #111827;
  }

  .products-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr)); /* 4 por linha */
    gap: 24px;
  }

  .product-card {
    display: flex;
    flex-direction: column;
  }

  .product-img-wrapper {
    border-radius: 26px;
    overflow: hidden;
    margin-bottom: 12px;
  }

  .product-img-wrapper img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
  }

  .product-name {
    font-size: 0.98rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #0f172a;
  }

  .product-price {
    font-size: 1rem;
    font-weight: 700;
    color: #1d4ed8;
    margin-bottom: 12px;
  }

  .product-btn {
    margin-top: auto;
    border: none;
    border-radius: 999px;
    background-color: #0246d3;
    color: #ffffff;
    padding: 10px 14px;
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(2, 70, 211, 0.4);
    transition: background 0.15s ease, transform 0.08s ease;
  }

  .product-btn:hover {
    background-color: #0037aa;
    transform: translateY(-1px);
  }

  .product-page {
      padding: 32px 16px 60px;
    }

    .product-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
      gap: 32px;
    }

    /* GALERIA */
    .product-gallery {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .product-main {
      position: relative;
      border-radius: 4px;
      overflow: hidden;
      border: 1px solid #e5e7eb;
      cursor: zoom-in;
      background-color: #f3f4f6;
    }

    .product-main img {
      display: block;
      width: 100%;
      height: auto;
      transition: transform 0.15s ease-out;
      transform-origin: center center;
    }

    .product-thumbs {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 8px;
    }

    .product-thumb-btn {
      padding: 0;
      border-radius: 4px;
      overflow: hidden;
      border: 2px solid transparent;
      cursor: pointer;
      background: none;
    }

    .product-thumb-btn img {
      display: block;
      width: 100%;
      height: 70px;
      object-fit: cover;
    }

    .product-thumb-btn.is-active {
      border-color: #6366f1;
    }

    /* MODAL / LIGHTBOX */
    .lightbox-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.85);
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 9999;
      padding: 16px;
    }

    .lightbox-overlay.is-visible {
      display: flex;
    }

    .lightbox-content {
      position: relative;
      max-width: 90vw;
      max-height: 90vh;
    }

    .lightbox-img {
      max-width: 100%;
      max-height: 100%;
      display: block;
      border-radius: 4px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.6);
    }

    .lightbox-close {
      position: absolute;
      top: -12px;
      right: -12px;
      width: 28px;
      height: 28px;
      border-radius: 999px;
      background: #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      font-weight: bold;
      cursor: pointer;
      box-shadow: 0 4px 12px rgba(0,0,0,0.6);
    }

    /* DETALHES DO PRODUTO (lado direito) */
    .product-details h1 {
      font-size: 1.9rem;
      font-weight: 700;
      margin-bottom: 10px;
      color: #111827;
    }

    .product-price {
      font-size: 1.4rem;
      font-weight: 700;
      color: #16a34a;
      margin: 10px 0 16px;
    }

    .product-description {
      font-size: 0.98rem;
      color: #374151;
      line-height: 1.6;
      margin-bottom: 20px;
    }

    .product-description strong {
      font-weight: 700;
    }

    .product-buy-row {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 16px;
    }

    .product-qty {
      width: 60px;
      padding: 8px;
      border-radius: 4px;
      border: 1px solid #d1d5db;
      font-size: 0.96rem;
    }

    .btn-primary {
      border-radius: 4px;
      border: none;
      padding: 10px 18px;
      font-size: 0.95rem;
      font-weight: 600;
      color: #ffffff;
      background-color: #7c3aed;
      cursor: pointer;
      transition: background 0.15s ease;
    }

    .btn-primary:hover {
      background-color: #6d28d9;
    }

    .product-meta {
      font-size: 0.9rem;
      color: #6b7280;
      margin-top: 10px;
    }

.btn-link {
    color: #ffffff;
    font-weight: 500;
    text-decoration: none;
    padding: 8px 0;
    opacity: 0.9;
    transition: .2s;
}

.btn-link:hover {
    opacity: 1;
}

.orders-page {
    padding: 32px 16px 60px;
    background-color: #ffffff;
}

.orders-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.orders-title {
    font-size: 2.1rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #111827;
}

/* Estado vazio */
.orders-empty {
    background-color: #f9fafb;
    border-radius: 16px;
    border: 1px dashed #cbd5f5;
    padding: 24px 20px;
    text-align: center;
    color: #4b5563;
    font-size: 0.96rem;
}

.orders-empty-btn {
    display: inline-block;
    margin-top: 12px;
    padding: 10px 20px;
    border-radius: 999px;
    background: linear-gradient(90deg, #4f46e5, #7c3aed);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: 0 8px 18px rgba(79, 70, 229, 0.5);
}

.orders-empty-btn:hover {
    opacity: 0.95;
}

/* Lista */
.orders-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Card do pedido */
.order-card {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    background-color: #ffffff;
    border-radius: 18px;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.12);
    padding: 16px 18px;
}

.order-left {
    display: flex;
    gap: 14px;
    align-items: center;
    flex: 1;
}

.order-thumb img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    object-fit: cover;
}

.order-main-info {
    flex: 1;
}

.order-product-name {
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 4px;
}

.order-id,
.order-date,
.order-payment {
    font-size: 0.88rem;
    color: #6b7280;
    margin-bottom: 2px;
}

/* Lado direito */
.order-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    min-width: 160px;
}

.order-total {
    text-align: right;
    font-size: 0.9rem;
}

.order-total span {
    display: block;
    color: #6b7280;
    font-size: 0.8rem;
}

.order-total strong {
    color: #111827;
    font-size: 1rem;
}

/* Badges de status */
.badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
}

.badge-success {
    background-color: #dcfce7;
    color: #15803d;
}

.badge-warning {
    background-color: #fef3c7;
    color: #b45309;
}

.badge-danger {
    background-color: #fee2e2;
    color: #b91c1c;
}

.badge-neutral {
    background-color: #e5e7eb;
    color: #374151;
}

/* Botão detalhes */
.order-details-btn {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    background-color: #4f46e5;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.5);
}

.order-details-btn:hover {
    background-color: #4338ca;
}


.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(2px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.loading-overlay.d-none {
    display: none;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 6px solid #ffffff;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.loading-text {
    margin-top: 14px;
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}


/* Responsivo */
@media (max-width: 768px) {
    .order-card {
        flex-direction: column;
        align-items: stretch;
    }

    .order-right {
        align-items: flex-start;
    }
}


    @media (max-width: 960px) {
      .product-inner {
        grid-template-columns: minmax(0, 1fr);
      }
    }

  @media (max-width: 1024px) {
    .products-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }

  @media (max-width: 640px) {
    .products-grid {
      grid-template-columns: minmax(0, 1fr);
    }
  }

  @media (max-width: 640px) {
    .faq-section {
      padding-inline: 14px;
    }
  }

  @media (max-width: 900px) {
    .footer-inner {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }

  @media (max-width: 640px) {
    .footer-inner {
      grid-template-columns: minmax(0, 1fr);
    }
  }

    @media (max-width: 960px) {
      .testimonials-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 640px) {
      .testimonials-grid {
        grid-template-columns: minmax(0, 1fr);
      }
    }

@media (max-width: 900px) {
    .why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .why-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 900px) {
    .results-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .results-grid {
    grid-template-columns: minmax(0, 1fr);
    }
}
@media (max-width: 900px) {
.styles-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
}

@media (max-width: 640px) {
.styles-grid {
    grid-template-columns: minmax(0, 1fr);
}
}

@media (max-width: 900px) {
    .hero {
        grid-template-columns: minmax(0, 1fr);
        text-align: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .steps-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}
