 
.page-hero{
  padding: clamp(32px, 6vw, 72px) 0 clamp(20px, 3vw, 28px);
  padding-top: 0;
  background:#fff;
  color:var(--brand-navy);
}
.page-hero .page-title{
  margin:0;
  text-align: center;
  font-weight: 700;
  text-transform:uppercase;
  letter-spacing:.02em;
  line-height:1.15;
  justify-self: center;
  font-size: clamp(26px, 4.2vw, 38px);
  margin-top: 50px;
}

.wysiwyg{
  color: #133058;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height:1.75;
}
.wysiwyg p{ margin:0 0 1.1em; }
.wysiwyg h2, .wysiwyg h3, .wysiwyg h4{
  color:var(--brand-navy);
  font-weight:800;
  line-height:1.25;
  margin:1.2em 0 .5em;
}
.wysiwyg h2{ font-size: clamp(22px, 2.6vw, 30px); }
.wysiwyg h3{ font-size: clamp(18px, 2vw, 24px); }
.wysiwyg ul, .wysiwyg ol{ padding-left:1.1em; margin:.8em 0 1.1em; }
.wysiwyg img{ max-width:100%; height:auto; }
.wysiwyg figure{ margin:0; }

 .entry{
  padding: clamp(12px, 2vw, 20px) 0 clamp(44px, 6vw, 80px);
}
.entry-grid{
  display:grid;
  grid-template-columns: minmax(260px, 420px) 1fr;
  gap: clamp(18px, 3vw, 60px);
  align-items:start;
}
.entry-media img{
  display:block;
  width:100%;
  height:auto;
  border-radius: 4px;
  box-shadow: 0 12px 28px rgba(0,0,0,.06);
}
.entry-content{ align-self:start; }

 
@media (max-width: 900px){
  .entry-grid{
    grid-template-columns: 1fr;
  }
  .entry-media{ order:-1; }
.entry-media img{
  width:50%;
  justify-self: anchor-center;
}
}

@media (max-width: 500px){
  .entry-media img{
  width:100%;

  }
}

/* ==== HOlistic Nutritionists page   ==== */
.team-page{padding-top: 30px;background:#fff;}
.team-title{
  margin:0 0 clamp(18px,3vw,28px);
  color:#133058;
  font-weight: 700;
  text-transform:uppercase;
  letter-spacing:.02em;
  font-size: clamp(22px,3.4vw,30px);
}

.coach{ padding: clamp(18px,4vw,42px) 0; }
.coach + .coach{ border-top: 1px solid var(--border); }

.coach-photo img{
  display:block;
  margin: 0 auto;
  width: auto;
  max-width: 240px;             
  height: auto;
  border-radius: 4px;
  box-shadow: 0 10px 28px rgba(0,0,0,.06);
}

.coach-bio{
  /* max-width: 980px; */
  margin: clamp(14px,2vw,18px) auto 0;
  color: #133058;
  font-size: clamp(18px,1.1vw,20px);
  line-height: 1.8;
  text-align: center;
}
.coach-bio strong{ color:#133058 }


/* ===== Contact page ===== */
.contact-section{padding: clamp(24px,6vw,64px) 0;padding-top: 30px;background:#fff;}
.contact-grid{
  display:grid;
  grid-template-columns: 1.05fr 1.3fr;
  gap: clamp(16px,3vw,28px);
  /* align-items:start; */
}
@media (max-width: 992px){
  .contact-grid{ grid-template-columns: 1fr; }
}

 
.contact-card{
  border:1px solid var(--border);
  border-radius:8px;
  align-content: center;
  background: linear-gradient(180deg,#fff, #f8f9fb);
  padding: clamp(18px,2.8vw,26px);
  box-shadow: 0 10px 28px rgba(0,0,0,.06);
}
.contact-title{
  margin:0 0 14px;
  color:var(--brand-navy);
  font-weight: 700;
  text-transform:uppercase;
  letter-spacing:.02em;
  font-size: clamp(18px,2.2vw,28px);
}

 
.form-card{
  border:2px solid var(--brand-orange);
  border-radius:8px;
  padding: clamp(18px,2.8vw,26px);
}
.form-title{
  margin:0 0 6px;
  color:var(--brand-navy);
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.02em;
  font-size: clamp(18px,2.2vw,24px);
}
.form-note{ margin:0 0 12px; color:var(--muted); }

 



/* ===== Policies accordion ===== */
.policies{padding: clamp(24px,6vw,64px) 0;padding-top: 20px;background:#fff;}

.policy-accordion{ max-width: 980px; margin: 0 auto; }

.acc-heading{ margin:0; }
.acc-trigger{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:16px 18px;
  text-align:left;
  cursor:pointer;
  background: #f2f2f2;
  color:var(--brand-navy);
  border:1px solid var(--border);
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.02em;
  border-radius:2px;
}
.acc-item + .acc-item .acc-trigger{ margin-top:10px; }

.acc-item.is-open .acc-trigger{
  background:var(--brand-orange); border-color:var(--brand-orange); color:#fff;
}
.acc-trigger .acc-sign{ font-size:16px; min-width:16px; }

.acc-panel{
  border:1px solid var(--border); border-top:0; background:#fff;
  padding:18px; color:var(--ink); line-height:1.8;
}
.policy-date{ margin:0 0 10px; color:var(--brand-navy); font-weight:800; }

/* spacing inside panel */
.acc-panel p{ margin:0 0 12px; }

@media (max-width:640px){
  .policy-accordion{ max-width:100%; }
  .acc-trigger{ padding:14px 14px; }
  .acc-panel{ padding:14px; }
}

.tos{ padding:40px 0 70px; color:var(--brand-navy); }
      .tos-grid{
        position:relative;
        display:grid;
        grid-template-columns:1fr;
        gap:36px;
      }
      /* divisor vertical no desktop */
      @media (min-width: 980px){
        .tos-grid{ grid-template-columns:1fr 1fr; gap:64px; }
        .tos-grid::before{
          content:"";
          position:absolute; left:50%; top:0; bottom:0;
          width:3px; transform:translateX(-50%);
          background:var(--brand-orange);
          border-radius:3px;
        }
      }
      .tos h3{
        margin:0 0 10px;
        font-weight:900; text-transform:uppercase; letter-spacing:.02em;
      }
      .tos p{ margin:0 0 16px; line-height:1.7; }
      .tos strong{ font-weight:800; }

      /* === Blog index === */
    .blog-index { padding: 24px 0 70px; }
    .blog-search{ position:relative; margin:0 0 28px; }
    .blog-search input{
      width:100%; height:52px; border:1px solid var(--border); border-radius:4px;
      padding:0 56px 0 14px; font-size:16px; outline:none;
    }
    .blog-search button{
      position:absolute; right:6px; top:50%; transform:translateY(-50%);
      width:44px; height:44px; border:0; background:var(--brand-orange); color:#fff; border-radius:4px; cursor:pointer;
    }
    .blog-grid{
      display:grid; gap:28px;
      grid-template-columns:repeat(3, minmax(0,1fr));
    }
    @media (max-width: 980px){ .blog-grid{ grid-template-columns:repeat(2, minmax(0,1fr)); } }
    @media (max-width: 620px){ .blog-grid{ grid-template-columns:1fr; } }

    .blog-card{
      border:1px solid var(--border); border-radius:6px; background:#fff; overflow:hidden;
      display:flex; flex-direction:column;
    }
    .blog-card .card-link{ text-decoration:none; color:inherit; display:flex; flex-direction:column; height:100%; }
    .card-media img{ width:100%; height:auto; display:block; }
    .card-body{ padding:18px 18px 16px; display:flex; flex-direction:column; gap:10px; }
    .card-title{
      margin:0; font-weight:800; color:#123559; font-size:clamp(18px,2.2vw,22px); text-transform:uppercase; line-height:1.25;
    }
    .card-excerpt{ margin:0; color:#3a3a3a; }
    .card-meta{ margin-top:10px; padding-top:12px; border-top:1px solid var(--border); color:#e06b2c; font-weight:600; }

    /* ===== Blog: paginaÃƒÆ’Ã‚Â§ÃƒÆ’Ã‚Â£o ===== */
    .blog-pagination{ margin-top:28px; }
    .blog-pagination .pagination{
      display:flex; justify-content:center; align-items:center;
      gap:10px; list-style:none; margin:0; padding:0;
    }
    .blog-pagination .pagination a,
    .blog-pagination .pagination span{
      display:inline-block;
      min-width:42px; padding:8px 12px;
      border:1px solid var(--border); border-radius:4px;
      text-align:center; line-height:1; font-weight:600;
      color:#123559; text-decoration:none; background:#fff;
    }
    .blog-pagination .pagination a:hover{
      border-color:var(--brand-orange); color:var(--brand-orange);
    }
    .blog-pagination .pagination .is-current span{
      background:#f3f4f6; border-color:#e2e8f0; color:#111;
    }
    .blog-pagination .pagination .is-dots span{
      background:#fff; border-color:#eee; color:#666; min-width:auto; padding:8px 10px;
    }
    @media (max-width:520px){
      .blog-pagination .pagination a,
      .blog-pagination .pagination span{ min-width:36px; padding:8px 10px; }
    }

/* ===== Single Post ===== */
.single-wrap{ padding:40px 0 64px; }
.post-outer{ border:1px solid var(--border); background:#fff; }
.post-hero{
  padding:22px; border-bottom:1px solid var(--border);
}
.post-hero figure{ margin:0; }
.post-hero img{ display:block; width:100%; height:auto; border-radius:2px; }

.post-body{ padding:26px 22px 34px; }
.post-title{
  margin:0 0 10px;
  color:var(--brand-navy);
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.01em;
  line-height:1.15;
  font-size:clamp(26px,4.2vw,44px);
}
.post-meta{
  margin:0 0 22px;
  font-weight:600;
  color:#143058;
  display:flex; flex-wrap:wrap; gap:8px;
}
.post-meta .sep{ color:#c7d1dc; margin:0 6px; }
.post-meta a{ color:var(--brand-orange); text-decoration:none; }
.post-meta a:hover{ text-decoration:underline; }

.post-content{ color:#133058; font-size:18px; line-height:1.7; }
.post-content h2, .post-content h3{ color:#123559; margin-top:1.6em; }
.post-content img{ max-width:100%; height:auto; border-radius:4px; }
.post-content p{ margin:0 0 1.1em; }

@media (max-width:640px){
  .single-wrap{ padding:24px 0 48px; }
  .post-hero{ padding:14px; }
  .post-body{ padding:18px 14px 26px; }
}
/* ===== NavegaÃƒÆ’Ã‚Â§ÃƒÆ’Ã‚Â£o entre posts ===== */
.post-nav{
  margin:26px 0 0;
  padding:18px 0 0;
  /* border-top:1px solid var(--border); */
  display:flex;
  justify-self: anchor-center;
  /* justify-content:space-between; */
  gap: 220px;
  align-items: center;
  white-space: nowrap;
}
.post-nav__col{flex:1 1 0;max-width:50%;}

.post-nav a{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:var(--brand-orange);
  text-decoration:none;
  font-weight:700;
  line-height:1.35;
  font-size:18px;
}
.post-nav a:hover{ color:#133158; text-decoration:underline; }

.post-nav__col.next{ text-align:right; }
.post-nav__col.next a{justify-content:flex-end;}
.post-nav .arr{ font-weight:900; }

@media (max-width:640px){
  .post-nav{/* flex-direction:column; */gap: 50px;}
  .post-nav__col{ max-width:100%; }
  .post-nav a{ font-size:16px; }
  .post-nav__col.next{ text-align:left; }
  .post-nav__col.next a{ justify-content:flex-start; }
}


/* ===== SHOP ARCHIVE (estÃƒÆ’Ã‚Â¡tico) ===== */
.shop-hero {
  display: grid;
  margin-top: 100px;
  grid-template-columns: 1.3fr 0.7fr;
  gap: clamp(16px, 3vw, 40px);
  align-items: start;
  border-bottom: 1px solid #E0E0E0;
  padding-bottom: 50px;
  margin-bottom: clamp(16px, 3vw, 28px);
}
.shop-hero-left .breadcrumb {
  margin-bottom: 10px;
  font-size: 0.9rem;
}
.breadcrumb-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex; 
  flex-wrap: wrap;
  gap: 8px;
}
.breadcrumb-list li {
  color: #E06B2C;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 29.7px; /* 165% */
}
.breadcrumb-list li+li::before {
  content: "»";
  margin: 0 6px 0 2px;
  color: #333;
}
.breadcrumb-list a {text-decoration: none;color: #1f2a37;color: #E06B2C;font-family: Montserrat;font-size: 18px;font-style: normal;font-weight: 400;line-height: 29.7px; /* 165% */}
.breadcrumb-list a:hover { text-decoration: underline; }

.shop-title {
  /* font-size: clamp(24px, 3.2vw, 36px); */
  margin: 6px 0 0;
  letter-spacing: .02em;
  color: #143058;
  font-family: Montserrat;
  font-size: 43px;
  font-style: normal;
  line-height: 1px;
  font-weight: 700;
  line-height: 40px; /* 69.767% */
  text-transform: uppercase;
}

.shop-hero-right p {
  margin: 0;
  color: #49525c;
  line-height: 1.6;
  color: #333;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px; /* 100% */
}

/* GRID DE PRODUTOS */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.2vw, 28px);
  margin-top: clamp(20px, 3vw, 36px);
}
@media (max-width: 980px) {
  .shop-hero { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .products-grid { grid-template-columns: 1fr; }
}

/* CARD */
.product-card {
  background: #F9F9F9;
  border: 1px solid #e7eaee;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.product-card:hover { 
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(18, 24, 40, .08);
}

.product-media {
  display: block;
  background: #f6f7f9;
  /* aspect-ratio: 4 / 3; */           /* garante consistÃƒÆ’Ã‚Âªncia visual das imagens */
  overflow: hidden;
  margin: 20px;
}
.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;              /* usa a mesma imagem em corte agradÃƒÆ’Ã‚Â¡vel */
  display: block;
}

.product-body {
  padding: 16px 16px 18px;
  display: grid;
  gap: 10px;
  align-self: anchor-center;
  /* align-self: center; */
}
.product-title {
  font-size: 1rem;
  margin: 0;
  justify-self: center;
  line-height: 1.35;
}
.product-title a {
  text-decoration: none;
  color: #143058;
  text-align: center;
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 21.6px; /* 108% */
  text-transform: uppercase;
}
.product-title a:hover { text-decoration: underline; }

.product-price {
  color: #143058;
  text-align: center;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 25.45px; /* 141.389% */
  margin-bottom: 25px;
}
.product-price small {
  font-weight: 400;
  color: #6b7280;
  color: #143058;
  text-align: center;
  font-family: Montserrat;
  font-size: 15.3px;
  font-style: normal;
  font-weight: 400;
  line-height: 20.36px; /* 165.528% */
}

/* ===== TOOLBAR SIMPLES ===== */
.shop-tools { margin-top: 10px; margin-bottom: 18px; }

.shop-toolbar {
  display: grid;
  grid-template-columns: 2fr  1fr;
  gap: clamp(12px, 2vw, 20px);
  align-items: center;
}
@media (max-width: 900px) {
  .shop-toolbar { grid-template-columns: 1fr; }
}

.shop-results {color: #333;text-align: left;font-family: Montserrat;font-size: 18px;font-style: normal;font-weight: 400;line-height: 18px; /* 100% */}

 
 

/* SORTING */
.shop-sorting select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #fff;
  font-size: 0.95rem;
}

/* Acessibilidade */
.sr-only{
  position: absolute!important; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0;
}

/* BTN usa classe global existente */
.product-card .btn-layout {
  justify-self: center;
  text-decoration: none;
}

/* ===== PAGINAÃƒâ€¡ÃƒÆ’O ===== */
.shop-pagination {
  margin-top: clamp(20px, 4vw, 40px);
  display: flex;
  justify-content: center;
}
.shop-pagination .pagination {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 8px;
}
.shop-pagination .page a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 0.9rem;
  color: #FFF;
  text-align: center;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 29.7px; /* 165% */
  text-transform: uppercase;
  color: #e76c3c;                   
  border: 1px solid #e76c3c;
  border-radius: 2px;
  align-content: center;
  text-decoration: none;
  transition: all .2s ease;
}
.shop-pagination .page a:hover {
  background: #e76c3c;
  color: #fff;
}
.shop-pagination .page.is-current a {
  background: #e76c3c;
  color: #fff;
  font-weight: 600;
  align-content: center;
}

/* ===== CATEGORY DESCRIPTION ===== */
.category-description {
  margin-top: clamp(40px, 6vw, 70px);
  margin-bottom: clamp(40px, 6vw, 70px);
}
.cat-title {
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 700;
  margin-bottom: 14px;
  color: #0f172a;
  color: #143058;
  font-family: Montserrat;
  font-style: normal;
  font-weight: 700;
  line-height: 36px; /* 120% */
  text-transform: uppercase;
}
h2.cat-title.blogProd {
    text-align: left;
}
.cat-intro {
  /* max-width: 800px; */
  margin-bottom: 25px;
  color: #333;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px; /* 100% */
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 32px);
}
@media (max-width: 980px) {
  .cat-grid { grid-template-columns: 1fr; }
}

.cat-box {
  background: #fff;
  /* border: 1px solid #e7eaee; */
  border-radius: 8px;
  padding: clamp(16px, 2vw, 24px);
}
.cat-media {
  margin: 0 0 14px;
}
.cat-media img {
  width: 100%;
  border-radius: 6px;
  display: block;
  object-fit: cover;
  max-height: 275px;
}
.cat-subtitle {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #1f2937;
}
.cat-box p {margin-bottom: 20px;color: #333;font-family: Montserrat;font-size: 18px;font-style: normal;font-weight: 400;line-height: 18px; /* 100% */}
.cat-box ul {margin: 0;padding-left: 18px;color: #333;font-family: Montserrat;font-size: 18px;font-style: normal;font-weight: 400;line-height: 18px; /* 100% */}
.cat-box ul li { margin-bottom: 6px; }

section.section-white.latest-blogs.interior .lb-grid {
    grid-template-columns: repeat(3, 1fr);
}

/* ===== RELATED PRODUCTS ===== */
.related-products {padding: clamp(32px, 6vw, 64px) 0;padding-top: 0;}
.related-title {
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 800;
  color: #0b2544;
  margin: 0 0 18px;
  letter-spacing: .02em;
}
.latest-blogs .section-head.center{border-top: none;}

 .pd-summary {
    border-bottom: 0.8px solid #E5E5E5;
}
.related-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 24px);
}
@media (max-width: 1024px){ .related-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px){  .related-grid{ grid-template-columns: 1fr; }
section.section-white.latest-blogs.interior .lb-grid {
    grid-template-columns: repeat(1, 1fr);
} }

.rp-card.product-card{
  border: none;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #fff;
  transition: transform .2s ease, box-shadow .2s ease;
}
.rp-card .product-media{
  display:block;
  margin: 0;
  /* background:#f6f7f9; */
  /* aspect-ratio: 4/3; */
  overflow:hidden;
}
.rp-card .product-media img{ width:100%; height:100%; object-fit:cover; display:block; }

.rp-card .product-body{
  padding: 16px 14px 18px;
  display: grid;
  gap: 10px;
  text-align: center;
}
.rp-card .product-title{
  margin:0; line-height:1.35; text-transform: uppercase;
  font-size: .98rem; letter-spacing: .01em;
}
.rp-card .product-title a{/* color:#0f172a; *//* text-decoration:none; */}
.rp-card .product-title a:hover{ text-decoration:underline; }

.rp-card .product-price{
  /* color:#0b1f3a; */
  /* font-weight:600; */
}
.rp-card .product-price small{/* color:#6b7280; *//* font-weight:400; */}

/* botÃƒÂ£o herdando .btn-layout global */
.rp-card .btn-layout{/* justify-self:start; */}

/* ===== FAQ ===== */
.category-faqs {padding: clamp(32px, 6vw, 64px) 0;padding-top: 0;}
.faq-title{
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 800;
  color:#0b2544;
  margin: 0 0 16px;
  letter-spacing:.02em;
}

.faq-accordion { border-top: 1px solid #e9edf2; }
.faq-item { border-bottom: 1px solid #e9edf2; }

.faq-question { margin: 0; }
.faq-toggle{
  width: 100%;
  text-align: left;
  padding: 16px 40px 16px 0;
  background: none;
  border: 0;
  font: inherit;
  cursor: pointer;
  position: relative;
  line-height: 1.4;
  color: #333;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px; /* 100% */
}
.faq-toggle:focus-visible{
  outline: 2px solid #1e73be;
  outline-offset: 2px;
}

/* chevron */
.faq-toggle::after{
  content: "";
  position: absolute;
  right: 0;
  top: 42%;
  width: 10px;
  height: 10px;
  border-right: 2px solid #e76c3c;
  border-bottom: 2px solid #e76c3c;
  transform: translateY(-50%) rotate(45deg);
  transition: transform .2s ease;
}
.faq-toggle[aria-expanded="true"]::after{
  transform: translateY(-50%) rotate(-135deg);
}

.faq-panel{
  padding: 0 0 16px;
  color:#4b5563;
  line-height: 1.65;
}
.faq-panel p{ margin: 0; }

 .faq-panel[hidden]{
  display: block;          
  max-height: 0;
  overflow: hidden;
  padding-bottom: 0;
}
.faq-panel:not([hidden]){
  max-height: 600px;       
  transition: max-height .25s ease;
}
/* ===== Layout duas colunas ===== */
.product-details {padding: clamp(24px, 4vw, 48px) 0;}
.pd-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(20px, 3vw, 40px);
  align-items: start;
}
@media (max-width: 980px){ .pd-grid{ grid-template-columns: 1fr; } 
}

/* ===== Galeria (Fancyapps) ===== */
#pdCarousel{
  --f-arrow-pos: 10px;
  --f-arrow-width: 38px;
  --f-arrow-height: 38px;
  --f-arrow-svg-width: 16px;
  --f-arrow-svg-height: 16px;
  --f-arrow-svg-stroke-width: 2.5;
  --f-arrow-color: #475569;
  --f-arrow-bg: #fff;
  --f-arrow-hover-bg: #f9f9f9;
  --f-arrow-active-bg: #f0f0f0;
  /* border: 1px solid #e7eaee; */
  border-radius: 10px;
  overflow: hidden;
}
#pdCarousel .f-carousel__slide{
  display:flex;
  align-items:center;
  justify-content:center;
  cursor: zoom-in;
  background:#fff;
}
#pdCarousel .f-carousel__slide img{
  max-width:100%;
  height:auto;
  display:block;
  object-fit: cover;
}
#pdCarousel .f-thumbs{ margin-top:10px; }
#pdCarousel .is-nav-selected{ outline:2px solid #e76c3c; }

/* ===== Coluna de texto ===== */
.pd-breadcrumb ol{
  list-style:none; padding:0; margin:0 0 8px; display:flex; flex-wrap:wrap; gap:8px; color:#6b7280;
}
.pd-breadcrumb li+li::before{ content:"â€º"; margin:0 6px 0 2px; color:#cbd5e1; }
.pd-breadcrumb a{ color:#1f2937; text-decoration:none; }
.pd-title{margin: 4px 0 30px;font-size: clamp(22px, 3vw, 25px);font-weight:800;letter-spacing:.02em;color: #143058;font-family: Montserrat;font-style: normal;font-weight: 700;line-height: 30px; /* 120% */text-transform: uppercase;}
.pd-intro{margin: 0 0 20px;color: #333;font-family: Montserrat;font-size: 18px;font-style: normal;font-weight: 400;line-height: 18px; /* 100% */}
.pd-rating{color:#ef7d2d;font-weight:600;margin: 18px 0;}
.pd-rating a{color: #ef7d2d;text-decoration:none;}
.pd-price{margin: 20px 0;color: #143058;font-family: Montserrat;font-size: 22.5px;font-style: normal;font-weight: 400;line-height: 37.13px; /* 165.022% */}
.pd-price small{color: #143058;font-family: Montserrat;font-size: 18px;font-style: normal;font-weight: 400;line-height: 29.7px; /* 165% */}

small {}
.pd-stock{color:#0b7a4b;margin-bottom: 18px;color: #143058;font-family: Montserrat;font-size: 16.6px;font-style: normal;font-weight: 400;line-height: 27.32px; /* 164.578% */}

.pd-subscribe p{margin:10px 0 6px;color: #143058;font-family: Montserrat;font-size: 18px;font-style: normal;font-weight: 400;line-height: 29.7px; /* 165% */}
.pd-subscribe label{display:block;margin-bottom: 6px!important;color: #143058!important;font-family: Montserrat;font-size: 18px!important;font-style: normal;font-weight: 400!important;line-height: 29.7px; /* 165% */}

.pd-actions{
 display:flex;
 gap:10px;
 align-items:center;
 margin: 12px 0 80px;
 /* border-top: 0.8px solid #E5E5E5; */
 }
.pd-qty{
  width:64px; padding:8px 10px;
  border:1px solid #e2e8f0; border-radius:8px; font-size:0.95rem;
}

.pd-summary .breadcrumb {
    margin-bottom: 20px;
}

.btn-layout{ text-decoration:none; } 



/* ===== Product Info (componente universal) ===== */
.pi-block{
  padding: clamp(18px, 2.8vw, 40px);
  border-top: 1px solid #eceff3;
  background: #F7F7F7;
}
.pi-block:first-of-type{ border-top: 0; }

.pi-title{
  margin: 0 0 4px;
  font-size: clamp(22px, 2.6vw, 30px);
  letter-spacing: .02em;
  color: #143058!important; /* navy PPV */
  text-transform: uppercase;
  font-family: Montserrat;
  font-style: normal;
  font-weight: 700;
  line-height: 36px; /* 120% */
  text-transform: uppercase;
}
.pi-sub{
  margin: 0 0 12px;
  color: #000;
  font-family: Montserrat;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px; /* 118.182% */
}
.pi-content{
  font-size: 16px;
  color: #767676;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 29.7px; /* 165% */
}
.pi-content p{ margin: 0 0 12px; }
.pi-content strong{color: #767676;font-family: Montserrat;font-size: 18px;font-style: normal;font-weight: 700;line-height: 29.7px; /* 165% */}

.product-info section.category-faqs.section-white {
    padding: 0px 36px 20px;
}

.pi-disclaimer{
  color: #767676;
  font-family: Montserrat;
  font-size: 17.859px;
  font-style: normal;
  font-weight: 400;
  line-height: 29.7px; /* 166.299% */
}

 
.pi-block.is-alt{
  background: #FFF;
  border: 1px solid #FFF;
  border-radius: 12px;
  padding: clamp(18px, 2.8vw, 28px);
  margin-top: clamp(18px, 3vw, 24px);
}

@media (max-width: 980px){ 
.product-info section.category-faqs.section-white {
    padding: 0px 0px;
}

}

/* ===== CUSTOMER REVIEWS ===== */
.product-reviews{padding: clamp(24px, 5vw, 48px) 0;padding-bottom: 20px;}
.pr-header{margin-bottom: 14px;}
.pr-title{
  margin: 0;
  font-weight: 800;
  font-size: clamp(18px, 2.2vw, 22px);
  color: #0b2544;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.pr-sub{margin: -11px 0 25px;color:#1f2937;font-weight:600;color: #000;font-family: Montserrat;font-size: 22px;font-style: normal;font-weight: 400;line-height: 26px; /* 118.182% */text-align: left;}
header.pr-header .cat-title {
    margin-bottom: 2px;
}
/* Lista */
.pr-list{ display: grid; gap: 14px; margin: 14px 0 20px; }
.pr-item{
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 12px;
  align-items: start;
  background: #f6f7f9;
  border: 1px solid #eef1f4;
  border-radius: 10px;
  padding: 40px;
}
.pr-avatar{
  width: 56px; height: 56px; border-radius: 50%;
  background: #e9edf2; display:grid; place-items:center;
  color:#94a3b8; font-weight:700;
}
.pr-avatar-initial{ font-size: 20px; }
.pr-body{ min-width: 0; }
.pr-head{
  display: flex;
  justify-content: space-between;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
}
.pr-author{ /* 165% */color: #767676;font-family: Montserrat;font-size: 18px;font-style: normal;font-weight: 400;line-height: 29.7px; /* 165% */}
.pr-date{color: #767676;font-family: Montserrat;font-size: 18px;font-style: normal;font-weight: 400;line-height: 29.7px; /* 165% */}

.pr-stars{color:#ef7d2d;font-size: 14px;display:flex;gap: 2px;display: flex;}
.pr-text{ margin: 6px 0 0; color:#4b5563; line-height: 1.55; }

/* Formulário */
.pr-form{
  border: 1px solid #dfe3e8;
  border-radius: 10px;
  padding: 50px;
}
.pr-form fieldset{ border:0; margin:0; padding:0; }
.pr-form legend{
  margin-bottom: 4px;
  color: #767676;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 29.7px; /* 165% */
}
.pr-note{margin: 0 0 12px;color: #767676;font-family: Montserrat;font-size: 18px;font-style: normal;font-weight: 400;line-height: 29.7px; /* 165% */}

.pr-field{ margin-bottom: 12px; }
.pr-label{display:block;color: #767676!important;font-family: Montserrat;font-size: 18px!important;font-style: normal;font-weight: 400!important;line-height: 29.7px; /* 165% */}
.req{ color:#ef4444; margin-left: 2px; }

.pr-form input[type="text"],
.pr-form input[type="email"],
.pr-form textarea{
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ced8e3;
  border-radius: 10px;
  font-size: 0.95rem;
  color: #0f172a;
  outline: none;
  background: #FFF;
}
.pr-form textarea{ resize: vertical; min-height: 110px; }
.pr-form input:focus,
.pr-form textarea:focus{ border-color: #1e73be; box-shadow: 0 0 0 2px rgba(30,115,190,.08); }

.pr-check{ display:flex; align-items: center; gap: 8px; margin: 8px 0 14px; }
.pr-check input{ width:16px; height:16px; }

/* Rating (radios em forma de estrelas) */
.pr-rating{
  --star-size: 18px;
  display:flex;
  gap: 4px;
  /* direction: rtl; */ /* permite clicar da direita p/ esquerda */
}
.pr-rating input{ display:none; }
.pr-rating label{
  width: var(--star-size); height: var(--star-size);
  color:#cbd5e1; cursor:pointer; display:grid; place-items:center;
}
.pr-rating label i{ pointer-events: none; }
.pr-rating input:checked ~ label,
.pr-rating label:hover,
.pr-rating label:hover ~ label{ color:#ef7d2d; }

/* Botão usa .btn-layout global */
.pr-form .btn-layout{ padding: 10px 16px; text-decoration: none; }

.pr-head .left {
    display: flex;
    gap: 10px;
}

@media (max-width: 665px) {
.pr-head .left {
   flex-flow:column;
}
  .pr-card{
    padding: 16px;
    border-radius: 14px;
  }

  .pr-head{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;                  
    position: relative;
  }


.pr-form{
padding:20px;
}
  
}

/* ===== Why Hotze ===== */
.why-hotze {padding: clamp(24px, 5vw, 48px) 0;padding-top: 0;}
.whyhz-head h2{
  margin: 0 0 4px;
  font-size: clamp(22px, 2.4vw, 30px);
   /* navy do site */
  letter-spacing: .3px;
  color: #143058;
  font-family: Montserrat;
  font-style: normal;
  font-weight: 700;
  line-height: 36px; /* 120% */
  text-transform: uppercase;
  /* background: #F9F9F9; */
}
.whyhz-sub{
  margin: 0 0 18px;
  font-size: clamp(14px, 1.8vw, 22px);
  color: #000;
  font-family: Montserrat;
  font-style: normal;
  font-weight: 400;
  line-height: 26px; /* 118.182% */
}

.whyhz-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2.5vw, 24px);
  background: #F9F9F9;
}

.whyhz-card{
  /* background: #fff; */
  border-radius: 14px;
  /* box-shadow: 0 6px 24px rgba(0,0,0,.06); */
  padding: 0 0 16px;
  overflow: hidden;
  /* border: 1px solid rgba(18,53,89,.08); */
}

.whyhz-media{
  margin: 0;
  overflow: hidden;
  /* border-radius: 12px; */
  /* margem interna para “respiro” como no print */
  /* padding: 12px 12px 0; */
}
.whyhz-media img{
  width: 100%;
  height: clamp(160px, 18vw, 310px);
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.whyhz-title{
  margin: 25px 14px 6px;
  font-size: clamp(14px, 1.6vw, 15px);
  letter-spacing: .4px;
   /* 131.024% */
  color: #143058;
  font-family: Montserrat;
  font-style: normal;
  font-weight: 700;
  line-height: 20.8px; /* 131.024% */
  text-transform: uppercase;
}

.whyhz-text{
  margin: 0 14px;
  color: rgba(18,53,89,.75);
  font-size: clamp(13px, 1.6vw, 15px);
  line-height: 1.55;
}


 .grey {
    padding: 40px 40px;
    background: #F9F9F9;
}
/* ===== Responsivo ===== */
@media (max-width: 991px){
  .whyhz-grid{ grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 665px){
  .whyhz-grid{ grid-template-columns: 1fr; }
  .whyhz-media img{ height: 200px; }
 .grey {
    padding: 20px 20px;
    background: #F9F9F9;
}
}

