:root {
  --red: #C5291D;
  --text-light: #E3E3E3;
  --gray: #B5B5B5;
  --bg: #E3E3E3;
  --header-height: 72px;
  --promo-height: 42px;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  padding: 0;
  font-family: 'Lato', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: #111;
  background: var(--bg);
  width: 100%;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Garantir que todas as imagens sejam responsivas */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Lazy loading otimizado - removido opacity 0 para não esconder imagens */
img[loading="lazy"] {
  transition: opacity 0.3s ease;
}

/* Otimização de performance - will-change apenas onde necessário */
.ingredient-card,
.buy-button,
.quantity-btn,
.wa-widget {
  will-change: transform;
}

/* Reduzir repaints */
.hero,
.site-header,
.promo-bar {
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* Otimização de fontes */
body {
  font-display: swap;
  text-rendering: optimizeLegibility;
}

/* Scroll global mais suave e sem barra visível */
html { scroll-behavior: smooth; }
html, body { -ms-overflow-style: none; scrollbar-width: none; }
html::-webkit-scrollbar, body::-webkit-scrollbar { width: 0; height: 0; }

/* ============================================
   MOBILE-FIRST: BASE STYLES (Mobile)
   ============================================ */

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3%;
  box-sizing: border-box;
}

/* Prevenir overflow horizontal - CORRIGIDO */
html, body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

* {
  box-sizing: border-box;
}

/* Garantir que elementos não ultrapassem a tela */
body > * {
  max-width: 100%;
  overflow-x: visible;
}

/* Header - Mobile First */
.site-header {
  position: fixed;
  top: var(--promo-height);
  left: 0;
  right: 0;
  width: 100%;
  z-index: 20;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 260ms ease, background 300ms ease;
  will-change: transform;
  box-sizing: border-box;
}
.site-header.scrolled {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.site-header.is-hidden { 
  transform: translateY(calc(-100% - var(--promo-height))); 
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 3%;
  width: 100%;
  box-sizing: border-box;
  max-width: 1200px;
  margin: 0 auto;
}
.container.header-inner { 
  width: 100%; 
  margin: 0 auto; 
  padding: 8px 3%;
  max-width: 1200px;
}
.brand {
  display: flex;
  align-items: center;
  z-index: 21;
  position: relative;
}
.logo { 
  height: 36px; 
  width: auto; 
  max-width: 140px;
  display: block;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease;
}
.logo:hover {
  transform: scale(1.05);
}
.menu { 
  display: flex; 
  gap: 10px; 
  align-items: center; 
  flex-wrap: nowrap;
  z-index: 21;
  position: relative;
}
.menu a:not(.btn) { 
  color: #fff; 
  text-decoration: none; 
  font-weight: 700;
  font-size: 0.85rem;
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: 8px;
  transition: background 0.3s ease, color 0.3s ease;
}
.menu a:not(.btn):hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Botões - Mobile First */
.btn { 
  display: inline-block; 
  padding: 12px 20px; 
  border-radius: 14px;
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
  min-height: 44px; /* Tamanho mínimo para toque */
  line-height: 1.2;
}
.btn-primary { 
  background: var(--red); 
  color: var(--text-light);
  border: none;
}
.btn-primary:hover { 
  background: #a82218; 
  transform: translateY(-1px);
}

/* Hero - Mobile First */
.hero {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-height: 50vh;
  max-height: none;
  display: flex;
  align-items: center;
  background: #ffffff url('assets/image3.png') center center / cover no-repeat;
  background-attachment: scroll;
  background-size: cover;
  box-sizing: border-box;
}
.hero-overlay {
  position: absolute; 
  inset: 0; 
  background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: calc(var(--header-height) + var(--promo-height) + 20px) 3% 30px;
  box-sizing: border-box;
  max-width: 1200px;
  margin: 0 auto;
}
.headline {
  margin: 0 0 12px 0;
  display: flex; 
  flex-direction: column;
  font-family: 'Lato', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.2px;
  color: var(--text-light);
  line-height: 1.15;
  font-size: clamp(1.2rem, 4.5vw, 3.5rem);
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}

.btn-cta,
.btn-primary {
  background: var(--red);
  color: var(--text-light);
  border: none;
}

.btn-cta {
  padding: 12px 20px;
  border-radius: 16px;
  text-decoration: none;
  font-family: 'Archivo Black', Impact, sans-serif;
  font-size: clamp(0.85rem, 2vw, 1rem);
  display: inline-block;
  min-height: 44px;
  line-height: 1.2;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

/* Subtexto da hero */
.hero-subtext {
  color: var(--text-light);
  max-width: 100%;
  margin: 10px 0 16px 0;
  padding: 0;
  font-size: clamp(0.8rem, 2vw, 1.1rem);
  line-height: 1.5;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
  word-wrap: break-word;
  overflow-wrap: break-word;
  box-sizing: border-box;
}

/* Slider texto contínuo com sobras nas bordas (mask) */
.slider-main-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  background: var(--red);
  color: #fff;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.slider-carousel-container {
  display: flex;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 10px 4%;
  box-sizing: border-box;
  position: relative;
  background: var(--red);
  color: #ffffff;
  overflow: visible;
}

.slider-text-list {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: slider-infinite-scroll 25s linear infinite;
  margin: 0;
  padding: 0;
  list-style: none;
}

.slider-text-list li {
  margin: 0 12px;
  font-weight: 800;
  font-size: clamp(0.7rem, 2vw, 0.95rem);
  white-space: nowrap;
  flex-shrink: 0;
}

@keyframes slider-infinite-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* Footer removido */

/* Inicia o conteúdo abaixo da promo bar fixa (para não cobrir a imagem) */
main { padding-top: var(--promo-height); }

/* Barra de Promoção acima do header */
.promo-bar {
  position: fixed; top: 0; left: 0; right: 0; height: var(--promo-height);
  background: #000; color: #fff; z-index: 25;
  display: flex; align-items: center; justify-content: center;
  transition: transform 260ms ease;
  will-change: transform;
}
.promo-bar.is-hidden { transform: translateY(-100%); }
.promo-bar .container { display: flex; justify-content: center; }
.promo-text { font-weight: 700; letter-spacing: 0.3px; text-align: center; margin-right: 12px; }
.promo-timer { font-family: 'Archivo Black', Impact, sans-serif; background: #111; color: #fff; padding: 4px 10px; border-radius: 8px; }
.promo-timer .time { min-width: 64px; display: inline-block; text-align: center; }

/* Skip link e foco visível */
.skip-link {
  position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden;
}
.skip-link:focus {
  left: 16px; top: 12px; width: auto; height: auto; padding: 8px 12px; background: #000; color: #fff; border-radius: 8px; z-index: 30;
}

:focus-visible { outline: 3px solid var(--red); outline-offset: 2px; }

/* Reduzir movimento para quem prefere */
@media (prefers-reduced-motion: reduce) {
  .slider-text-list { animation: none !important; }
}

/* Slider pequeno de features */
/* Remove estilos antigos do ticker */

/* ============================================
   BREAKPOINT: 480px (Mobile Pequeno)
   ============================================ */
@media (max-width: 480px) {
  :root {
    --promo-height: 32px;
    --header-height: 50px;
  }

  .container {
    padding: 0 3%;
  }

  .promo-bar {
    padding: 5px 3%;
    height: var(--promo-height);
  }

  .promo-text {
    font-size: 0.7rem;
    margin-right: 6px;
  }

  .promo-timer {
    font-size: 0.75rem;
    padding: 2px 6px;
  }

  .promo-timer .time {
    min-width: 45px;
  }

  .site-header {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
  }

  .header-inner {
    padding: 6px 3%;
  }

  .container.header-inner {
    padding: 6px 3%;
  }

  .logo {
    height: 28px;
    max-width: 110px;
  }

  .menu {
    gap: 6px;
  }

  .menu a:not(.btn) {
    display: none;
  }

  .btn-primary {
    padding: 8px 14px;
    font-size: 0.75rem;
    min-height: 38px;
    border-radius: 12px;
  }

  .hero {
    min-height: 45vh;
    background-position: 60% center;
  }

  .hero-content {
    padding: calc(var(--header-height) + var(--promo-height) + 12px) 3% 24px;
  }

  .headline {
    font-size: clamp(1.1rem, 5vw, 1.6rem);
    margin-bottom: 10px;
    line-height: 1.15;
  }

  .hero-subtext {
    font-size: clamp(0.75rem, 1.8vw, 0.9rem);
    margin: 8px 0 14px 0;
    line-height: 1.4;
  }

  .btn-cta {
    padding: 10px 18px;
    font-size: 0.8rem;
    min-height: 40px;
    border-radius: 14px;
  }
}

/* ============================================
   BREAKPOINT: 768px (Tablet Vertical / Mobile Grande)
   ============================================ */
@media (min-width: 481px) and (max-width: 768px) {
  .container {
    padding: 0 5%;
  }

  .header-inner {
    padding: 10px 5%;
  }

  .logo {
    height: 36px;
  }

  .menu {
    gap: 16px;
  }

  .hero {
    min-height: 55vh;
    background-position: 65% center;
  }

  .hero-content {
    padding: calc(var(--header-height) + var(--promo-height) + 20px) 5% 35px;
  }

  .headline {
    font-size: clamp(1.6rem, 6.5vw, 2.5rem);
  }

  .hero-subtext {
    font-size: clamp(0.95rem, 2.3vw, 1.05rem);
    max-width: 90%;
  }

  .slider-text-list li {
    margin: 0 18px;
    font-size: 0.85rem;
  }

  .slider-carousel-container {
    padding: 8px 4%;
  }

  .feature-four-inner {
    padding: 60px 0;
  }

  .feature-grid {
    gap: 30px;
  }

  .iwt-inner {
    padding: 60px 0;
  }

  .iwt-grid {
    gap: 30px;
  }

  .banner-five-title {
    font-size: clamp(1.3rem, 5vw, 2rem);
    padding: 0 5%;
  }
}

@media (max-width: 480px) {
  :root {
    --promo-height: 36px;
    --header-height: 60px;
  }

  .promo-bar {
    padding: 5px 10px;
    height: var(--promo-height);
  }

  .promo-text {
    font-size: 0.75rem;
    margin-right: 8px;
  }

  .promo-timer {
    font-size: 0.8rem;
    padding: 2px 6px;
  }

  .promo-timer .time {
    min-width: 50px;
  }

  .logo {
    height: 28px;
  }

  .menu {
    gap: 8px;
  }

  .btn-primary {
    padding: 7px 12px;
    font-size: 0.8rem;
    border-radius: 12px;
  }

  .hero {
    min-height: max(280px, calc(100vw * 0.45));
    background-position: 55% center;
  }

  .hero-content {
    margin-left: 5%;
    padding-bottom: 20px;
    padding-top: calc(var(--header-height) + 6px);
  }

  .headline {
    font-size: clamp(1.3rem, 6.5vw, 1.8rem);
    margin-bottom: 12px;
    line-height: 1.1;
  }

  .hero-subtext {
    font-size: 0.85rem;
    margin-bottom: 14px;
    line-height: 1.35;
    max-width: 90%;
  }

  .btn-cta {
    padding: 11px 16px;
    font-size: 0.85rem;
    border-radius: 14px;
  }

  .container {
    width: min(1200px, 94%);
    padding: 0 3%;
  }

  .slider-text-list li {
    margin: 0 14px;
    font-size: 0.75rem;
  }

  .slider-carousel-container {
    padding: 5px 10px;
  }

  .benefits-three-inner {
    padding: 40px 0;
  }

  .benefit-item {
    padding: 12px 10px;
  }

  .benefit-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
  }

  .benefit-icon svg {
    width: 50px;
    height: 50px;
  }

  .benefit-heading {
    font-size: clamp(1rem, 3.5vw, 1.25rem);
    margin: 5px 0;
    line-height: 1.2;
  }

  .benefit-text {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .ingredients-inner {
    padding: 50px 0;
  }

  .ingredients-title {
    font-size: clamp(1.4rem, 5.5vw, 1.8rem);
    margin-bottom: 10px;
  }

  .ingredients-subtitle {
    font-size: 0.9rem;
    margin-bottom: 30px;
  }

  .ingredient-card {
    flex: 0 0 260px;
    border-radius: 14px;
  }

  .ingredient-media {
    height: 300px;
    border-radius: 14px;
  }

  .ingredient-title-top {
    font-size: 1.1rem;
    left: 14px;
    top: 12px;
    right: 14px;
  }

  .ingredients .ing-viewport {
    padding: 10px 6px;
  }

  .ing-nav {
    width: 42px;
    height: 42px;
    font-size: 20px;
  }

  .ing-prev {
    left: 2px;
  }

  .ing-next {
    right: 2px;
  }

  .feature-four-inner {
    padding: 40px 0;
  }

  .feature-grid {
    gap: 20px;
  }

  .feature-kicker {
    font-size: 0.8rem;
  }

  .feature-title {
    font-size: clamp(1.4rem, 5.5vw, 1.8rem);
    margin-bottom: 8px;
  }

  .feature-subtitle {
    font-size: 0.9rem;
    margin-bottom: 14px;
  }

  .improve-box {
    margin: 4px 0 14px 0;
  }

  .improve-title {
    font-size: 0.9rem;
    margin-bottom: 8px;
  }

  .improve-grid {
    gap: 8px;
  }

  .improve-grid div {
    font-size: 0.8rem;
    padding: 4px 7px;
  }

  .feature-bullets li {
    font-size: 0.9rem;
    padding-left: 18px;
  }

  .banner-five-title {
    font-size: clamp(1.1rem, 4.5vw, 1.6rem);
    padding: 0 5%;
  }

  .iwt-inner {
    padding: 40px 0;
  }

  .iwt-title {
    font-size: clamp(1.4rem, 5.5vw, 1.8rem);
    margin-bottom: 8px;
  }

  .iwt-text {
    font-size: 0.9rem;
    margin-bottom: 12px;
  }

  .iwt-bullets li {
    font-size: 0.85rem;
    padding-left: 18px;
  }

  .usp-inner {
    padding: 35px 0;
  }

  .usp-header {
    margin-bottom: 30px;
  }

  .usp-title {
    font-size: clamp(1.4rem, 5.5vw, 1.8rem);
  }

  .usp-subtitle {
    font-size: 0.9rem;
    margin-top: 6px;
  }

  .usp-card {
    padding: 18px 16px;
    border-radius: 24px;
  }

  .usp-icon svg {
    width: 55px;
    height: 55px;
  }

  .usp-card-title {
    font-size: 1rem;
    margin: 4px 0 8px 0;
  }

  .usp-card-text {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .feel-difference-inner {
    padding: 40px 0;
  }

  .feel-difference-title {
    font-size: clamp(1.4rem, 5.5vw, 1.8rem);
    margin-bottom: 12px;
  }

  .feel-difference-lead {
    font-size: 0.9rem;
    margin-bottom: 30px;
    padding: 0 2%;
  }

  .feel-difference-subtitle {
    font-size: 1.1rem;
    margin-bottom: 16px;
  }

  .feel-difference-list li {
    font-size: 0.85rem;
    padding-left: 22px;
    margin-bottom: 10px;
  }

  .feel-difference-offer {
    padding: 24px 18px;
    border-radius: 16px;
  }

  .offer-badge {
    top: -12px;
    padding: 5px 16px;
    font-size: 0.75rem;
  }

  .offer-title {
    font-size: 1.2rem;
    margin: 8px 0 12px 0;
  }

  .offer-text {
    font-size: 0.85rem;
    margin-bottom: 16px;
  }

  .offer-benefits li {
    font-size: 0.8rem;
    padding-left: 18px;
    margin-bottom: 8px;
  }

  .social-proof-inner {
    padding: 40px 0;
  }

  .social-title {
    font-size: clamp(1.3rem, 5.5vw, 1.7rem);
    margin-bottom: 8px;
  }

  .social-subtitle {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }

  .social-grid {
    gap: 10px;
  }

  .social-media {
    border-radius: 12px;
  }

  .wa-widget {
    right: 10px;
    bottom: 10px;
    width: 52px;
    height: 52px;
    border-width: 2px;
  }

  .wa-icon {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 360px) {
  :root {
    --promo-height: 34px;
    --header-height: 58px;
  }

  .container {
    width: min(1200px, 95%);
    padding: 0 2.5%;
  }

  .promo-text {
    font-size: 0.7rem;
  }

  .promo-timer {
    font-size: 0.75rem;
  }

  .logo {
    height: 26px;
  }

  .btn-primary {
    padding: 6px 10px;
    font-size: 0.75rem;
  }

  .headline {
    font-size: 1.2rem !important;
    margin-bottom: 10px;
  }

  .hero-subtext {
    font-size: 0.8rem;
    margin-bottom: 12px;
  }

  .btn-cta {
    padding: 10px 14px;
    font-size: 0.8rem;
  }

  .slider-text-list li {
    margin: 0 10px;
    font-size: 0.7rem;
  }

  .benefits-three-inner {
    padding: 35px 0;
  }

  .benefit-icon {
    width: 45px;
    height: 45px;
  }

  .benefit-icon svg {
    width: 45px;
    height: 45px;
  }

  .benefit-heading {
    font-size: 0.95rem !important;
  }

  .benefit-text {
    font-size: 0.8rem;
  }

  .ingredients-inner {
    padding: 40px 0;
  }

  .ingredients-title {
    font-size: 1.3rem !important;
  }

  .ingredient-card {
    flex: 0 0 240px;
  }

  .ingredient-media {
    height: 280px;
  }

  .ingredient-title-top {
    font-size: 1rem;
  }

  .feature-title {
    font-size: 1.2rem !important;
  }

  .iwt-title {
    font-size: 1.2rem !important;
  }

  .usp-title {
    font-size: 1.2rem !important;
  }

  .usp-card {
    padding: 16px 14px;
  }

  .feel-difference-title {
    font-size: 1.2rem !important;
  }

  .social-title {
    font-size: 1.2rem !important;
  }

  .wa-widget {
    width: 48px;
    height: 48px;
  }

  .wa-icon {
    width: 26px;
    height: 26px;
  }
}

/* Landscape Mobile */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: 80vh;
  }

  .hero-content {
    padding-top: 40px;
    padding-bottom: 20px;
  }

  .benefits-three-inner {
    padding: 48px 0;
  }

  .ingredients-inner {
    padding: 56px 0;
  }

  .wa-chat__body {
    max-height: 40vh;
  }
}

/* WhatsApp Floating Widget */
.wa-widget {
  position: fixed; 
  right: 12px; 
  bottom: 12px; 
  z-index: 1000;
  width: 56px; 
  height: 56px; 
  border-radius: 50%;
  display: inline-flex; 
  align-items: center; 
  justify-content: center;
  background: #25D366;
  border: 3px solid #ffffff;
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
}
.wa-widget:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 16px 38px rgba(0,0,0,0.36); }
.wa-widget:active { transform: translateY(0) scale(1.0); }
.wa-icon { 
  width: 30px; 
  height: 30px; 
  display: block;
  max-width: 100%;
}

/* Pulso suave para maior visibilidade */
.wa-widget::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45);
  animation: wa-pulse 2.2s ease-out infinite;
  pointer-events: none;
}

@keyframes wa-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45); }
  70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 900px) {
  .wa-widget { right: 12px; bottom: 12px; width: 60px; height: 60px; }
  .wa-icon { width: 32px; height: 32px; }
}

/* Respeita preferência de reduzir movimentos */
@media (prefers-reduced-motion: reduce) {
  .wa-widget { transition: none; }
  .wa-widget::after { animation: none; }
}


/* Segunda Secção: 3 pontos positivos */
.benefits-three {
  background: #16281B; /* verde solicitado */
  color: #EAF4EC;
}
.benefits-three-inner {
  padding: 40px 0;
  width: 100%;
  box-sizing: border-box;
}
.benefits-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  width: 100%;
}
.benefit-item {
  text-align: center;
  padding: 14px 12px;
}
.benefit-icon {
  width: 56px; height: 56px;
  display: inline-flex; align-items: center; justify-content: center;
  color: #EFA27A;
  margin-bottom: 10px;
}
.benefit-heading {
  margin: 6px 0 6px 0;
  color: #ffffff;
  font-family: 'Lato', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.2px;
  font-size: clamp(1rem, 3vw, 2rem);
}
.benefit-text {
  margin: 0;
  color: #EAF4EC;
  line-height: 1.5;
  font-size: clamp(0.85rem, 1.5vw, 1.05rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}

@media (min-width: 768px) and (max-width: 900px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}

@media (max-width: 767px) {
  .benefits-three-inner { padding: 35px 0; }
  .benefits-grid { grid-template-columns: 1fr; gap: 12px; }
  .benefit-item { padding: 12px 10px; }
  .benefit-icon { width: 48px; height: 48px; }
  .benefit-icon svg { width: 48px; height: 48px; }
}

@media (max-width: 480px) {
  .benefits-three-inner { padding: 30px 0; }
  .benefit-icon { width: 44px; height: 44px; }
  .benefit-icon svg { width: 44px; height: 44px; }
  .benefit-heading { font-size: clamp(0.95rem, 3.5vw, 1.2rem); }
  .benefit-text { font-size: clamp(0.8rem, 1.4vw, 0.95rem); }
}


/* Terceira Secção: Ingredientes em cards (estilo estrutura.html) */
.ingredients { background: #ffffff; color: #222; }
.ingredients-inner { 
  padding: 40px 0;
  width: 100%;
  box-sizing: border-box;
}
.ingredients-title {
  margin: -8px 0 10px 0; 
  text-align: center;
  font-family: 'Lato', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif; 
  font-weight: 700; 
  letter-spacing: 0.2px; 
  color: #111;
  font-size: clamp(1.3rem, 4vw, 2.6rem);
}
.ingredients-title span { color: var(--red); }
.ingredients-subtitle {
  text-align: center;
  margin: 0 0 35px 0;
  color: #666;
  font-size: clamp(0.85rem, 1.8vw, 1.2rem);
  line-height: 1.4;
  padding: 0 3%;
}
.ingredients .ing-viewport {
  width: 100%;
  margin: 0;
  padding: 20px 4%;
  box-sizing: border-box;
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.ingredients .ing-viewport::-webkit-scrollbar {
  display: none;
}
.ing-viewport { 
  position: relative; 
  overflow-x: auto;
  overflow-y: visible; 
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.ing-track { overflow: visible; }
.ing-track {
  display: flex; gap: 22px; list-style: none; margin: 0; padding: 0;
  will-change: transform; transition: transform 360ms ease;
}
.ingredient-card { 
  flex: 0 0 220px; 
  min-width: 220px;
  max-width: calc(100vw - 24px);
  border-radius: 16px; 
  overflow: hidden; 
  background: #f4f4f4; 
  position: relative; 
  transition: transform 220ms ease, box-shadow 220ms ease; 
  will-change: transform, box-shadow; 
  transform-origin: center center;
  box-sizing: border-box;
}
.ingredient-card, .ingredient-media, .ingredient-caption { overscroll-behavior: contain; }
.ingredient-media {
  position: relative; 
  margin: 0; 
  height: 260px; 
  min-height: 260px;
  max-height: 260px;
  border-radius: 16px; 
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}
.ingredient-title-top {
  position: absolute; 
  left: 12px; 
  top: 12px; 
  right: 12px;
  color: #fff; 
  font-weight: 900; 
  letter-spacing: 0.3px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.45);
  font-size: clamp(1rem, 3vw, 1.3rem);
  word-wrap: break-word;
  z-index: 3;
}
.ingredient-media::before {
  content: ""; position: absolute; inset: 0; background-image: var(--bg);
  background-size: cover; background-position: center; filter: saturate(1.05) contrast(1.05);
  transition: transform 400ms ease, filter 400ms ease; transform-origin: center center; will-change: transform;
}
.ingredient-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.66) 0%, rgba(0,0,0,0.05) 60%, rgba(0,0,0,0) 100%);
  pointer-events: none;
}
.ingredient-caption {
  position: absolute; left: 12px; right: 12px; bottom: 72px; padding: 14px 16px;
  color: #fff; transform: translateY(130%);
  transition: transform 380ms cubic-bezier(0.22, 1, 0.36, 1), opacity 280ms ease;
  transform-origin: bottom center;
  background: rgba(0,0,0,0.55);
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.25);
  opacity: 0; visibility: hidden; z-index: 2; will-change: transform, opacity;
  overflow: hidden; max-height: calc(100% - 96px);
  -ms-overflow-style: none; scrollbar-width: none;
}
.ingredient-caption::-webkit-scrollbar { width: 0; height: 0; }
.ingredient-name { 
  margin: 0 0 8px 0; 
  font-weight: 900; 
  font-size: clamp(1rem, 2.5vw, 1.15rem); 
  letter-spacing: 0.3px;
  word-wrap: break-word;
}
.ingredient-desc { 
  margin: 0 0 12px 0; 
  opacity: 0.95; 
  font-size: clamp(0.85rem, 2vw, 0.95rem);
  line-height: 1.5;
  word-wrap: break-word;
}
.ingredient-cta {
  position: absolute; left: 0; right: 0; bottom: 0; height: 56px;
  border: 0; border-radius: 0 0 18px 18px; padding: 0 18px;
  background: rgba(0,0,0,0.55); color: #EFA27A; font-weight: 800; text-align: left;
  display: flex; align-items: center; justify-content: space-between;
  z-index: 1;
}
.ingredient-cta::after { content: '↗'; opacity: 0.9; display: inline-block; transform: rotate(0deg); transition: transform 220ms ease; }
.ingredient-card:hover .ingredient-cta::after { transform: rotate(-45deg); }
.ingredient-cta:hover::after, .ingredient-cta:focus-visible::after { transform: rotate(-45deg); }
.ingredient-card:hover { transform: scale(1.04); box-shadow: 0 16px 38px rgba(0,0,0,0.22); z-index: 5; filter: drop-shadow(0 12px 24px rgba(0,0,0,0.18)); }
.ingredient-card:hover .ingredient-media::before { transform: none; filter: saturate(1.1) contrast(1.1); }
.ingredient-card:hover .ingredient-caption { transform: translateY(0%); opacity: 1; visibility: visible; }

/* Quarta Secção: Destaque do Suplemento */
.feature-four { background: #ffffff; color: #111; }
.feature-four-inner { 
  padding: 40px 0;
  width: 100%;
  box-sizing: border-box;
}
.feature-grid { 
  display: grid; 
  grid-template-columns: 1fr;
  gap: 24px; 
  align-items: center;
  width: 100%;
}
.feature-media { position: relative; width: 100%; aspect-ratio: 2 / 3; border-radius: 22px; overflow: hidden; box-shadow: 0 8px 24px rgba(0,0,0,0.12); justify-self: end; max-width: 100%; }
.feature-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.feature-kicker { margin: 0 0 6px 0; color: var(--red); font-weight: 700; letter-spacing: 0.3px; font-size: 0.9rem; text-transform: uppercase; }
.feature-title { 
  margin: 0 0 8px 0; 
  font-family: 'Lato', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif; 
  font-weight: 700; 
  letter-spacing: 0.2px; 
  font-size: clamp(1.3rem, 3.5vw, 2.6rem); 
  line-height: 1.15; 
}
.feature-title span { color: var(--red); }
.feature-subtitle { 
  margin: 0 0 14px 0; 
  color: #555; 
  font-size: clamp(0.85rem, 1.8vw, 1.12rem); 
  line-height: 1.4; 
  max-width: 100%;
  word-wrap: break-word;
}
.feature-bullets { list-style: none; margin: 0 0 22px 0; padding: 0; }
.feature-bullets li { margin: 0 0 8px 0; padding-left: 20px; position: relative; color: #444; }
.feature-bullets li::before { content: '✓'; position: absolute; left: 0; top: 0; color: var(--red); font-weight: 900; opacity: 0.75; }
.feature-cta { margin-top: 10px; display: inline-block; }

/* caixa de melhorias inspirada na estrutura */
.improve-box {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  margin: 6px 0 18px 0;
  color: #111;
  box-shadow: none;
}
.improve-title {
  color: var(--red);
  margin: 0 0 10px 0;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.2px;
  text-transform: uppercase;
}
.improve-grid { 
  display: grid; 
  grid-template-columns: 1fr;
  gap: 12px;
  width: 100%;
}
.improve-grid div {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.9rem; font-weight: 600;
  background: transparent;
  border: 1px solid rgba(0,0,0,0.08);
  color: #555;
  border-radius: 9999px;
  padding: 6px 10px;
}
.improve-grid div::before {
  content: '';
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--red);
  opacity: 0.4;
  display: inline-block;
}

/* ============================================
   BREAKPOINT: 1024px (Tablet Horizontal)
   ============================================ */
@media (min-width: 769px) and (max-width: 1024px) {
  .container {
    padding: 0 5%;
  }

  .header-inner {
    padding: 12px 5%;
  }

  .logo {
    height: 38px;
  }

  .hero {
    min-height: 60vh;
  }

  .hero-content {
    padding: calc(var(--header-height) + var(--promo-height) + 25px) 5% 40px;
  }

  .headline {
    font-size: clamp(2rem, 5vw, 3rem);
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .feature-four-inner {
    padding: 70px 0;
  }

  .improve-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .feature-media {
    max-width: 450px;
    margin: 0 auto;
  }

  .iwt-grid {
    gap: 35px;
  }
}

/* Desktop - mantém estilos originais com ajustes */
@media (min-width: 1025px) {
  .container {
    padding: 0 4%;
  }

  .header-inner {
    padding: 12px 5%;
  }

  .logo {
    height: 40px;
  }

  .menu {
    gap: 20px;
  }

  .hero {
    min-height: max(360px, calc(100vw * 0.390625));
    aspect-ratio: 2560 / 1000;
  }

  .hero-content {
    padding: calc(var(--header-height) + 12px) 0 32px;
    margin-left: 5%;
  }

  .headline {
    font-size: clamp(1.6rem, 5vw, 4.2rem);
  }

  .hero-subtext {
    max-width: 52ch;
  }

  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .benefits-three-inner {
    padding: 96px 0;
  }

  .ingredients-inner {
    padding: 110px 0;
  }

  .ingredient-card {
    flex: 0 0 360px;
  }

  .ingredient-media {
    height: 480px;
  }

  .feature-grid {
    grid-template-columns: 1.2fr minmax(320px, 550px);
  }

  .feature-four-inner {
    padding: 80px 0;
  }

  .iwt-grid {
    grid-template-columns: 1.1fr minmax(320px, 560px);
  }

  .iwt-inner {
    padding: 100px 0;
  }

  .usp-grid-layout {
    grid-template-columns: repeat(3, 1fr);
  }

  .usp-inner {
    padding: 52px 0;
  }

  .feel-difference-grid {
    grid-template-columns: 1fr 1fr;
  }

  .feel-difference-inner {
    padding: 90px 0;
  }

  .social-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .social-proof-inner {
    padding: 80px 0;
  }

  .products-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
  }

  .products-inner {
    padding: 100px 0;
  }

  .product-image-wrapper {
    position: sticky;
    top: 120px;
    padding: 40px;
    max-width: none;
  }

  .product-image {
    max-width: 400px;
  }

  .pricing-table-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }

  .footer-content {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    padding: 50px 0 40px;
  }
}
.ing-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 56px; height: 56px; border-radius: 50%; border: 2px solid rgba(0,0,0,0.15);
  background: rgba(255,255,255,0.92); color: #111; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease, box-shadow 160ms ease; z-index: 8;
  box-shadow: 0 8px 24px rgba(0,0,0,0.28);
  font-size: 28px; line-height: 1;
}
.ing-nav:hover { background: #ffffff; color: var(--red); border-color: var(--red); box-shadow: 0 10px 28px rgba(0,0,0,0.32); }
.ing-nav:focus-visible { outline: 3px solid var(--red); outline-offset: 2px; }
.ing-prev { left: 8px; }
.ing-next { right: 8px; }

/* Arraste (UX): cursor e transição durante drag */
.ing-viewport { cursor: grab; touch-action: pan-y; }
.ing-viewport.is-dragging { cursor: grabbing; }
.ing-track.is-dragging { transition: none !important; }

@media (max-width: 768px) {
  .ingredients-inner { padding: 50px 0; }
  .ingredient-media { 
    height: 280px; 
    min-height: 280px;
    max-height: 280px;
  }
  .ingredients .ing-viewport { padding: 16px 4%; }
  .ingredients-subtitle { margin-bottom: 30px; font-size: 0.95rem; }
  .ingredient-card { 
    flex: 0 0 220px; 
    min-width: 220px;
    max-width: calc(100vw - 32px);
  }
  .ing-nav {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  .ing-prev { left: 2px; }
  .ing-next { right: 2px; }
}

/* Quinta Secção: Banner full-bleed */
.banner-five-viewport {
  width: 100%;
  margin: 0;
  overflow: hidden;
  position: relative;
  box-sizing: border-box;
}
.banner-five-svg { position: relative; }
.banner-five-svg svg { display: block; width: 100%; height: auto; }
.banner-five-text {
  position: absolute; inset: 0; display: grid; place-items: center;
  text-align: center; padding: 0 5%;
}
.banner-five-title {
  margin: 0; color: #ffffff; 
  font-family: 'Lato', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(1.4rem, 4.2vw, 2.4rem);
  letter-spacing: 0.2px;
}
.banner-five-title span { color: var(--red); }

/* Secção Image-with-Text (inspirada em estrutura.html) */
.image-with-text { background: #ffffff; }
.iwt-inner { 
  padding: 40px 0;
  width: 100%;
  box-sizing: border-box;
}
.iwt-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
  width: 100%;
}
.iwt-media { position: relative; border-radius: 0; overflow: visible; box-shadow: none; background: transparent; max-width: 100%; }
.iwt-media img { display: block; width: 100%; height: auto; max-width: 100%; }
.iwt-content { color: #121212; }
.iwt-title {
  margin: 0 0 8px 0;
  font-family: 'Lato', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.2px;
  font-size: clamp(1.3rem, 3.5vw, 2.8rem);
  line-height: 1.1;
}
.iwt-title .primary { color: #000000; }
.iwt-title .accent { color: var(--red); }
.iwt-text { 
  margin: 0 0 14px 0; 
  color: #555; 
  font-size: clamp(0.85rem, 1.8vw, 1.12rem); 
  line-height: 1.4;
  max-width: 100%;
  word-wrap: break-word;
}
.iwt-bullets { list-style: none; margin: 0 0 18px 0; padding: 0; }
.iwt-bullets li { margin: 0 0 8px 0; padding-left: 20px; position: relative; color: #444; }
.iwt-bullets li::before { content: '✓'; position: absolute; left: 0; top: 0; color: var(--red); font-weight: 900; opacity: 0.75; }
.iwt-cta { display: inline-block; }

@media (max-width: 1000px) {
  .iwt-inner { padding: 80px 0; }
  .iwt-grid { grid-template-columns: 1fr; gap: 24px; }
  .iwt-media { order: -1; max-width: 100%; }
  .iwt-media img { width: 100%; height: auto; }
}

/* USP Grid (baseado em estrutura2.html) */
.usp-grid { background: #ffffff; }
.usp-inner { 
  padding: 40px 0;
  width: 100%;
  box-sizing: border-box;
}
.usp-header { text-align: center; margin-bottom: 30px; }
.usp-title { 
  margin: 0; 
  line-height: 1; 
  font-family: 'Lato', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif; 
  font-weight: 700; 
  letter-spacing: 0.2px; 
  font-size: clamp(1.4rem, 3.5vw, 2.6rem); 
}
.usp-title .accent { color: var(--red); }
.usp-subtitle { 
  margin: 6px 0 0 0; 
  color: #444; 
  font-size: clamp(0.85rem, 1.8vw, 1.25rem);
  padding: 0 3%;
}
.usp-grid-layout { 
  width: 100%; 
  margin: 0 auto; 
  display: grid; 
  grid-template-columns: 1fr;
  gap: 20px;
  box-sizing: border-box;
}
.usp-card { 
  background: #fff; 
  border-radius: 16px; 
  padding: 20px 16px; 
  transition: transform 0.3s ease, box-shadow 0.3s ease; 
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}
.usp-card:hover { transform: scale(1.05); box-shadow: 0 0 30px rgba(0,0,0,0.06); z-index: 1; }
.usp-card--highlight { background: #16281B; color: #fff; }
.usp-card--highlight .usp-card-title { color: #fff; }
.usp-icon { color: var(--red); margin-bottom: 10px; display: inline-block; }
.usp-icon svg { height: 64px; width: 64px; }
.usp-card-title { 
  margin: 5px 0 10px 0; 
  font-weight: bold; 
  font-size: clamp(1.1rem, 2.5vw, 1.25rem); 
  color: black;
  word-wrap: break-word;
}
.usp-card-text { 
  margin: 0; 
  color: inherit; 
  font-size: clamp(0.9rem, 2vw, 1rem);
  line-height: 1.5;
  word-wrap: break-word;
}

@media (min-width: 768px) and (max-width: 900px) {
  .usp-grid-layout { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  .usp-inner { padding: 39px 0; }
  .usp-grid-layout { grid-template-columns: 1fr; }
  .usp-card { text-align: center; border-radius: 28px; padding: 20px 24px; }
}

@media (max-width: 480px) {
  .usp-inner { padding: 32px 0; }
  .usp-title { font-size: clamp(1.6rem, 6vw, 2rem); }
  .usp-card { padding: 18px 20px; border-radius: 24px; }
  .usp-icon svg { width: 60px; height: 60px; }
}

/* Secção Sinta a Diferença */
.feel-difference { background: #ffffff; }
.feel-difference-inner { 
  padding: 40px 0;
  width: 100%;
  box-sizing: border-box;
}
.feel-difference-title { 
  margin: 0 0 12px 0; 
  text-align: center;
  font-family: 'Lato', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.2px;
  font-size: clamp(1.3rem, 3.5vw, 2.8rem);
  line-height: 1.1;
}
.feel-difference-title span { color: var(--red); }
.feel-difference-lead {
  text-align: center;
  max-width: 100%;
  margin: 0 auto 30px;
  padding: 0 3%;
  color: #555;
  font-size: clamp(0.85rem, 1.8vw, 1.15rem);
  line-height: 1.4;
  word-wrap: break-word;
  box-sizing: border-box;
}
.feel-difference-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: start;
  width: 100%;
}
.feel-difference-subtitle {
  margin: 0 0 16px 0;
  font-weight: 700;
  font-size: clamp(1.1rem, 2.2vw, 1.6rem);
  color: #111;
}
.feel-difference-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.feel-difference-list li {
  margin: 0 0 12px 0;
  padding-left: 24px;
  position: relative;
  color: #444;
  line-height: 1.5;
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-size: clamp(0.9rem, 2vw, 1rem);
  max-width: 100%;
}
.feel-difference-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--red);
  font-weight: 900;
  opacity: 0.75;
}
.feel-difference-offer {
  background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
  border: 2px solid var(--red);
  border-radius: 20px;
  padding: 28px 20px;
  position: relative;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.offer-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: #fff;
  padding: 6px 20px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.offer-title {
  margin: 10px 0 14px 0;
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  color: var(--red);
  text-align: center;
}
.offer-text {
  margin: 0 0 20px 0;
  color: #555;
  line-height: 1.6;
  text-align: center;
  word-wrap: break-word;
  font-size: clamp(0.9rem, 2vw, 1rem);
}
.offer-benefits {
  list-style: none;
  margin: 0 0 24px 0;
  padding: 0;
}
.offer-benefits li {
  margin: 0 0 10px 0;
  padding-left: 24px;
  position: relative;
  color: #444;
  font-size: 0.95rem;
}
.offer-benefits li::before {
  content: '🎁';
  position: absolute;
  left: 0;
  top: 0;
}
.offer-cta {
  display: block;
  text-align: center;
  margin-top: 10px;
}

@media (max-width: 1000px) {
  .feel-difference-inner { padding: 35px 0; }
  .feel-difference-grid { grid-template-columns: 1fr; gap: 24px; }
  .feel-difference-offer { max-width: 100%; }
}

@media (max-width: 480px) {
  .feel-difference-inner { padding: 30px 0; }
  .feel-difference-title { font-size: clamp(1.2rem, 4vw, 1.8rem); }
  .feel-difference-grid { gap: 20px; }
  .offer-benefits li { font-size: clamp(0.8rem, 1.8vw, 0.9rem); }
}

/* Secção Provas Sociais - Carrossel Automático */
.social-proof { 
  background: #ffffff; 
  overflow: hidden;
}
.social-proof-inner { 
  padding: 40px 0;
  width: 100%;
  box-sizing: border-box;
}
.social-title { 
  margin: 0 0 8px 0; 
  text-align: center; 
  font-family: 'Lato', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif; 
  font-weight: 700; 
  letter-spacing: 0.2px; 
  font-size: clamp(1.3rem, 3.5vw, 2.4rem); 
}
.social-subtitle { 
  margin: 0 0 30px 0; 
  text-align: center; 
  color: #555; 
  font-size: clamp(0.85rem, 1.8vw, 1.15rem);
  padding: 0 3%;
  word-wrap: break-word;
}

/* Container do carrossel */
.social-carousel-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 0;
  margin: 0;
}

/* Track do carrossel */
.social-carousel-track {
  display: flex;
  gap: 16px;
  animation: social-carousel-scroll 30s linear infinite;
  will-change: transform;
}

/* Item do carrossel */
.social-item {
  flex: 0 0 auto;
  width: 280px;
  min-width: 280px;
}

/* Imagem do carrossel */
.social-media { 
  margin: 0; 
  border-radius: 16px; 
  overflow: hidden; 
  position: relative; 
  background: #f4f4f4; 
  width: 100%;
  height: 280px;
  display: block;
}
.social-media img { 
  display: block; 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  transition: transform 0.3s ease;
}

.social-media:hover img {
  transform: scale(1.05);
}

/* Animação do carrossel */
@keyframes social-carousel-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 8px));
  }
}

/* Pausar animação no hover para melhor UX */
.social-carousel-wrapper:hover .social-carousel-track {
  animation-play-state: paused;
}

/* Responsividade */
@media (max-width: 900px) {
  .social-proof-inner { padding: 35px 0; }
  .social-item {
    width: 240px;
    min-width: 240px;
  }
  .social-media {
    height: 240px;
  }
  .social-carousel-track {
    gap: 12px;
  }
}

@media (max-width: 768px) {
  .social-item {
    width: 220px;
    min-width: 220px;
  }
  .social-media {
    height: 220px;
    border-radius: 12px;
  }
  .social-carousel-track {
    gap: 12px;
    animation-duration: 25s;
  }
}

@media (max-width: 480px) {
  .social-proof-inner { padding: 30px 0; }
  .social-title { font-size: clamp(1.2rem, 4vw, 1.8rem); }
  .social-subtitle {
    margin-bottom: 24px;
  }
  .social-item {
    width: 200px;
    min-width: 200px;
  }
  .social-media {
    height: 200px;
    border-radius: 12px;
  }
  .social-carousel-track {
    gap: 10px;
    animation-duration: 20s;
  }
}

/* Reduzir movimento para quem prefere */
@media (prefers-reduced-motion: reduce) {
  .social-carousel-track {
    animation: none;
  }
  .social-carousel-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }
  .social-carousel-wrapper::-webkit-scrollbar {
    height: 6px;
  }
  .social-carousel-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
  }
  .social-carousel-wrapper::-webkit-scrollbar-thumb {
    background: var(--red);
    border-radius: 10px;
  }
}

/* ===== Footer ===== */
.footer {
  background: #16281B;
  color: #fff;
  padding: 0;
  margin-top: 0;
}

/* Mini chat (não altera o widget) */
.wa-chat {
  position: fixed;
  right: 8px;
  left: 8px;
  bottom: 96px;
  width: auto;
  max-width: calc(100% - 16px);
  background: #ffffff;
  color: #111;
  border-radius: 16px;
  box-shadow: 0 18px 48px rgba(0,0,0,0.25);
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 50;
  animation: wa-slide-up 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform-origin: bottom center;
  box-sizing: border-box;
}
.wa-chat[hidden] { 
  display: none;
}
.wa-chat.closing {
  animation: wa-slide-down 0.25s ease-out forwards;
}

@keyframes wa-slide-up {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes wa-slide-down {
  0% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
}
.wa-chat__header {
  background: #16281B; /* branding verde escuro do site */
  color: #fff;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wa-chat__title { display: flex; align-items: center; gap: 10px; }
.wa-avatar { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255,255,255,.3); }
.wa-title-wrap { display: flex; flex-direction: column; line-height: 1; }
.wa-chat__title h3 { margin: 0; font-size: 1rem; font-weight: 800; letter-spacing: .3px; }
.wa-chat__title .status { font-weight: 700; color: #7AF1A0; font-size: .85rem; margin-top: 4px; }
.wa-chat__close { border: 0; background: transparent; color: #fff; font-size: 22px; line-height: 1; cursor: pointer; }
.wa-chat__body { padding: 14px; max-height: 65vh; overflow-y: auto; display: grid; gap: 12px; }
.wa-thread { display: grid; gap: 10px; }
.wa-msg { background: #f5f5f5; border-radius: 16px; padding: 10px 12px; font-size: .95rem; line-height: 1.4; max-width: 85%; }
.wa-msg--bot { background: #edf7f0; border-left: 4px solid #16281B; }
.wa-msg--user { background: #fff; border: 1px solid #e8e8e8; justify-self: end; }
.wa-quick { 
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 12px;
}
.wa-quick__btn { 
  border: 0;
  background: #e8f7ee;
  color: #0c6b3f;
  padding: 10px 12px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 700;
  font-size: .88rem;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
  text-align: left;
}
.wa-quick__btn:hover { 
  background: #d8f1e4;
  transform: translateY(-1px);
  box-shadow: 0 2px 6px rgba(12, 107, 63, 0.15);
}
.wa-quick__icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}
.wa-chat__form { display: flex; gap: 8px; padding: 12px 14px; border-top: 1px solid #eee; }
.wa-chat__input { flex: 1; border: 1px solid #ddd; border-radius: 10px; padding: 10px 12px; font-size: .95rem; }
.wa-chat__send { 
  border: 0;
  background: var(--red);
  color: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.wa-chat__send:hover { 
  background: #c41e3a;
  transform: scale(1.05);
}
.wa-chat__send svg {
  transform: rotate(-45deg);
}

/* Badge vermelho no widget */
.wa-widget.has-badge { position: fixed; right: 16px; bottom: 16px; z-index: 50; }
.wa-widget.has-badge::after {
  content: '1';
  position: absolute;
  top: -6px; right: -6px;
  background: var(--red);
  color: #fff;
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
}

/* WhatsApp Chat - Mobile Adjustments */
@media (max-width: 480px) {
  .wa-chat {
    bottom: 84px;
    width: calc(100% - 16px);
    right: 8px;
    left: 8px;
  }
  .wa-chat__body {
    max-height: 50vh;
  }
  .wa-quick {
    grid-template-columns: 1fr;
  }
  .wa-quick__btn {
    font-size: 0.85rem;
    padding: 10px;
  }
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 4%;
  width: 100%;
  box-sizing: border-box;
}

/* Newsletter Section */
.footer-newsletter {
  text-align: center;
  padding: 50px 4%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  width: 100%;
  box-sizing: border-box;
}

.newsletter-title {
  margin: 0 0 12px;
  font-family: 'Lato', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.2px;
  font-size: clamp(1.8rem, 4.5vw, 2.5rem);
  line-height: 1.2;
  color: #fff;
}

.newsletter-title .accent {
  color: var(--red);
}

.newsletter-description {
  margin: 0 auto 30px;
  max-width: 100%;
  padding: 0 4%;
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  line-height: 1.5;
  word-wrap: break-word;
  box-sizing: border-box;
}

.whatsapp-group-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  min-height: 48px;
  width: 100%;
  max-width: 320px;
  box-sizing: border-box;
  word-wrap: break-word;
}

.whatsapp-group-btn:hover {
  background: #20BA5A;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

.whatsapp-group-btn svg {
  flex-shrink: 0;
}

/* Marca sutil de que  e9 gr e1tis, embutida no texto, sem ru eddo visual */
.whatsapp-group-btn .free { text-decoration: underline; text-underline-offset: 2px; }

/* Footer Content */
.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding: 40px 0 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  width: 100%;
  box-sizing: border-box;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-brand {
  max-width: 100%;
  width: 100%;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo img {
  max-width: 190px;
  height: auto;
  display: block;
}

.footer-tagline {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(0.9rem, 2vw, 0.95rem);
  line-height: 1.6;
  word-wrap: break-word;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
  color: #fff;
}

.social-link:hover {
  background: var(--red);
  transform: translateY(-2px);
}

.social-link svg {
  fill: currentColor;
}

.footer-heading {
  margin: 0 0 20px;
  font-family: 'Lato', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links li {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--red);
}

/* Footer Bottom */
.footer-bottom {
  padding: 30px 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-payment {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.payment-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

.payment-icons .icon {
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.payment-icons .icon:hover {
  opacity: 1;
}

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

.footer-copyright p {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-disclaimer {
  font-size: 0.8rem !important;
  color: rgba(255, 255, 255, 0.5) !important;
  max-width: 800px;
  margin: 8px auto 0 !important;
}

/* Footer Responsive */
@media (max-width: 900px) {
  .footer {
    margin-top: 60px;
  }

  .footer-newsletter {
    padding: 50px 0 40px;
  }

  .newsletter-title {
    font-size: clamp(1.6rem, 5vw, 2rem);
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 40px 0 30px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .footer-newsletter {
    padding: 40px 0 30px;
  }

  .newsletter-title {
    font-size: clamp(1.4rem, 5vw, 1.8rem);
  }

  .newsletter-description {
    font-size: 0.9rem;
    margin-bottom: 24px;
  }

  .whatsapp-group-btn {
    padding: 14px 24px;
    font-size: 0.95rem;
    gap: 8px;
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .whatsapp-group-btn svg {
    width: 20px;
    height: 20px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 35px 0 25px;
  }

  .footer-brand {
    text-align: center;
    max-width: 100%;
  }

  .footer-logo {
    display: flex;
    justify-content: center;
  }

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

  .footer-social {
    justify-content: center;
  }

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

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

  .footer-links {
    align-items: center;
  }

  .footer-bottom {
    padding: 25px 0;
  }

  .payment-icons {
    gap: 8px;
  }

  .footer-copyright p {
    font-size: 0.85rem;
  }

  .footer-disclaimer {
    font-size: 0.75rem !important;
  }
}

/* ===== Seção Depoimento em Vídeo ===== */
.testimonial-video-section {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 0;
  width: 100%;
  box-sizing: border-box;
}

.testimonial-video-inner {
  padding: 40px 0;
  width: 100%;
  box-sizing: border-box;
}

.testimonial-video-header {
  text-align: center;
  margin-bottom: 30px;
}

.testimonial-video-title {
  margin: 0 0 12px 0;
  font-family: 'Lato', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.2px;
  font-size: clamp(1.5rem, 4vw, 2.8rem);
  line-height: 1.1;
  color: #111;
}

.testimonial-video-title span {
  color: var(--red);
}

.testimonial-video-subtitle {
  margin: 0;
  color: #666;
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  line-height: 1.5;
  padding: 0 3%;
  word-wrap: break-word;
}

.testimonial-video-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.testimonial-video-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  border-radius: 20px;
  overflow: visible;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  background: transparent;
  box-sizing: border-box;
}

/* Container responsivo com aspect-ratio 16:9 */
.video-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 20px;
  margin: 0 auto;
  background: #000;
  box-sizing: border-box;
}

/* Fallback para navegadores que não suportam aspect-ratio */
@supports not (aspect-ratio: 16 / 9) {
  .video-container::before {
    content: "";
    display: block;
    padding-top: 56.25%; /* 16:9 = 56.25% */
  }
  
  .video-container .testimonial-video {
    position: absolute;
    top: 0;
    left: 0;
  }
}

.testimonial-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-overlay-info {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  pointer-events: none;
}

.video-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(197, 41, 29, 0.95);
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.badge-icon {
  font-size: 1.1rem;
}

.testimonial-video-content {
  text-align: center;
}

.testimonial-highlight {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.highlight-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.highlight-number {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: var(--red);
  font-family: 'Lato', system-ui, sans-serif;
  line-height: 1;
}

.highlight-label {
  font-size: clamp(0.85rem, 1.8vw, 1rem);
  color: #666;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.testimonial-cta {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border: 2px solid var(--red);
  border-radius: 20px;
  padding: 30px 24px;
  box-shadow: 0 8px 24px rgba(197, 41, 29, 0.1);
}

.testimonial-cta-text {
  margin: 0 0 20px 0;
  color: #333;
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  line-height: 1.6;
}

.testimonial-cta-text strong {
  color: var(--red);
  font-weight: 700;
}

.testimonial-cta-btn {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

/* Responsividade - Vídeo */
@media (max-width: 768px) {
  .testimonial-video-inner {
    padding: 35px 0;
  }

  .testimonial-video-header {
    margin-bottom: 24px;
  }

  .testimonial-video-wrapper {
    gap: 24px;
    padding: 0 3%;
  }

  .testimonial-video-container {
    border-radius: 16px;
    width: 100%;
    max-width: 100%;
  }

  .video-container {
    border-radius: 16px;
  }

  .testimonial-highlight {
    gap: 18px;
    margin-bottom: 20px;
  }

  .testimonial-cta {
    padding: 20px 18px;
    border-radius: 16px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
}

@media (max-width: 480px) {
  .testimonial-video-inner {
    padding: 30px 0;
  }

  .testimonial-video-header {
    margin-bottom: 20px;
  }

  .testimonial-video-title {
    font-size: clamp(1.2rem, 4vw, 1.6rem);
    margin-bottom: 8px;
    padding: 0 3%;
  }

  .testimonial-video-subtitle {
    font-size: clamp(0.8rem, 1.8vw, 0.95rem);
    padding: 0 3%;
    line-height: 1.4;
  }

  .testimonial-video-wrapper {
    gap: 20px;
    padding: 0 3%;
  }

  .testimonial-video-container {
    border-radius: 12px;
    width: 100%;
    max-width: 100%;
  }

  .video-container {
    border-radius: 12px;
    width: 100%;
    max-width: 100%;
  }

  .video-overlay-info {
    top: 8px;
    left: 8px;
  }

  .video-badge {
    padding: 4px 10px;
    font-size: clamp(0.7rem, 1.6vw, 0.8rem);
    border-radius: 14px;
  }

  .badge-icon {
    font-size: 0.85rem;
  }

  .testimonial-highlight {
    gap: 12px;
    margin-bottom: 18px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .highlight-item {
    gap: 5px;
    flex: 0 0 auto;
  }

  .highlight-number {
    font-size: clamp(1.5rem, 4vw, 2rem);
  }

  .highlight-label {
    font-size: clamp(0.7rem, 1.6vw, 0.85rem);
  }

  .testimonial-cta {
    padding: 18px 14px;
    border-radius: 12px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .testimonial-cta-text {
    font-size: clamp(0.85rem, 2vw, 0.95rem);
    margin-bottom: 14px;
    line-height: 1.5;
    word-wrap: break-word;
  }

  .testimonial-cta-btn {
    font-size: clamp(0.85rem, 2vw, 0.95rem);
    padding: 12px 18px;
    min-height: 44px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
}

/* Fallback para navegadores antigos que não suportam aspect-ratio */
@supports not (aspect-ratio: 16 / 9) {
  .video-container {
    height: 0;
    padding-bottom: 56.25%; /* 16:9 = 56.25% */
    position: relative;
  }
  
  .video-container .testimonial-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}

@media (min-width: 1025px) {
  .testimonial-video-wrapper {
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
  }

  .testimonial-video-content {
    text-align: left;
  }

  .testimonial-highlight {
    justify-content: flex-start;
  }
}

/* ===== Seção de Produtos ===== */
.products-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}

.products-inner {
  padding: 40px 0;
  width: 100%;
  box-sizing: border-box;
}

.products-title {
  text-align: center;
  margin: 0 0 10px 0;
  font-family: 'Lato', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.2px;
  font-size: clamp(1.3rem, 4vw, 2.8rem);
  line-height: 1.1;
  color: #111;
}

.products-title span {
  color: var(--red);
}

.products-subtitle {
  text-align: center;
  margin: 0 0 28px 0;
  color: #666;
  font-size: clamp(0.85rem, 1.8vw, 1.15rem);
  padding: 0 3%;
  word-wrap: break-word;
  box-sizing: border-box;
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
  margin-bottom: 30px;
  width: 100%;
}

.product-image-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 16px;
  padding: 24px 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  position: relative;
  top: 0;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

.product-image {
  width: 100%;
  max-width: 200px;
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.15));
}

.product-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--red);
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 12px rgba(197, 41, 29, 0.3);
}

.product-purchase {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.product-benefits {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.benefits-title {
  margin: 0 0 18px 0;
  font-weight: 700;
  font-size: clamp(1.2rem, 3vw, 1.4rem);
  color: #111;
  word-wrap: break-word;
}

.benefits-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #444;
  font-size: clamp(0.9rem, 2vw, 1rem);
  line-height: 1.5;
  word-wrap: break-word;
}

.benefits-list li svg {
  flex-shrink: 0;
  color: var(--red);
  margin-top: 2px;
}

.product-pricing {
  background: #ffffff;
  border: 2px solid var(--red);
  border-radius: 20px;
  padding: 24px 20px;
  box-shadow: 0 8px 24px rgba(197, 41, 29, 0.1);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.quantity-selector {
  margin-bottom: 24px;
}

.quantity-label {
  display: block;
  margin-bottom: 12px;
  font-weight: 700;
  font-size: clamp(0.95rem, 2vw, 1rem);
  color: #111;
  word-wrap: break-word;
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.quantity-btn {
  width: 48px;
  height: 48px;
  border: 2px solid var(--red);
  background: #fff;
  color: var(--red);
  border-radius: 12px;
  font-size: 24px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  line-height: 1;
}

.quantity-btn:hover {
  background: var(--red);
  color: #fff;
  transform: scale(1.05);
}

.quantity-btn:active {
  transform: scale(0.95);
}

.quantity-input {
  width: 70px;
  min-width: 70px;
  height: 48px;
  border: 2px solid #ddd;
  border-radius: 12px;
  text-align: center;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 700;
  color: #111;
  -moz-appearance: textfield;
  appearance: textfield;
  box-sizing: border-box;
}

.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.quantity-input:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(197, 41, 29, 0.1);
}

.quantity-unit {
  font-size: 0.9rem;
  color: #666;
  font-weight: 600;
}

.price-display {
  margin-bottom: 24px;
  padding: 18px 16px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 16px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.price-info {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
}

.price-label {
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  font-weight: 600;
  color: #666;
  word-wrap: break-word;
}

.price-amount {
  font-size: clamp(1.6rem, 4vw, 2rem);
  font-weight: 700;
  color: var(--red);
  font-family: 'Lato', system-ui, sans-serif;
  word-wrap: break-word;
}

.price-per-unit {
  font-size: clamp(0.85rem, 2vw, 0.95rem);
  color: #666;
  text-align: right;
  word-wrap: break-word;
}

.price-savings {
  margin-top: 8px;
  padding: 8px 12px;
  background: #d4edda;
  color: #155724;
  border-radius: 8px;
  font-size: clamp(0.8rem, 2vw, 0.9rem);
  font-weight: 600;
  text-align: center;
  word-wrap: break-word;
}

.buy-button {
  width: 100%;
  max-width: 100%;
  padding: 16px 24px;
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  border-radius: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(197, 41, 29, 0.3);
  min-height: 52px;
  box-sizing: border-box;
  word-wrap: break-word;
}

.buy-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(197, 41, 29, 0.4);
}

.buy-button:active {
  transform: translateY(0);
}

.buy-button svg {
  transition: transform 0.3s ease;
}

.buy-button:hover svg {
  transform: translateX(4px);
}

.payment-security {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  color: #666;
  font-size: clamp(0.8rem, 2vw, 0.9rem);
  word-wrap: break-word;
  text-align: center;
}

.payment-security svg {
  color: #28a745;
}

.pricing-table {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.pricing-table-title {
  text-align: center;
  margin: 0 0 20px 0;
  font-weight: 700;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: #111;
  word-wrap: break-word;
  padding: 0 4%;
}

.pricing-table-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  width: 100%;
}

.pricing-item {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 18px 16px;
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.pricing-item:hover {
  border-color: var(--red);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.pricing-item-highlight {
  background: linear-gradient(135deg, var(--red) 0%, #d41e12 100%);
  color: #fff;
  border-color: var(--red);
}

.pricing-item-highlight .pricing-qty,
.pricing-item-highlight .pricing-price,
.pricing-item-highlight .pricing-save {
  color: #fff;
}

.pricing-qty {
  display: block;
  font-weight: 700;
  font-size: clamp(0.9rem, 2vw, 1rem);
  margin-bottom: 8px;
  color: #111;
  word-wrap: break-word;
}

.pricing-price {
  display: block;
  font-weight: 700;
  font-size: clamp(1.1rem, 3vw, 1.3rem);
  color: var(--red);
  margin-bottom: 4px;
  word-wrap: break-word;
}

.pricing-save {
  display: block;
  font-size: clamp(0.8rem, 2vw, 0.85rem);
  color: #28a745;
  font-weight: 600;
  word-wrap: break-word;
}

.pricing-item-highlight .pricing-save {
  color: rgba(255,255,255,0.9);
}

/* Responsividade - Seção de Produtos já está no mobile-first acima */

@media (max-width: 480px) {
  .products-inner {
    padding: 30px 0;
  }

  .products-title {
    font-size: clamp(1.2rem, 4vw, 1.6rem);
    margin-bottom: 8px;
  }

  .products-subtitle {
    font-size: clamp(0.8rem, 1.8vw, 0.9rem);
    margin-bottom: 24px;
    padding: 0 3%;
  }

  .products-grid {
    gap: 20px;
    margin-bottom: 24px;
  }

  .product-image-wrapper {
    padding: 18px 12px;
    border-radius: 12px;
  }

  .product-image {
    max-width: 160px;
  }

  .product-badge {
    top: 8px;
    right: 8px;
    padding: 4px 8px;
    font-size: 0.75rem;
    border-radius: 16px;
  }

  .product-benefits,
  .product-pricing {
    padding: 16px 14px;
    border-radius: 12px;
  }

  .benefits-title {
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    margin-bottom: 12px;
  }

  .benefits-list {
    gap: 10px;
  }

  .benefits-list li {
    font-size: 0.85rem;
    gap: 10px;
    line-height: 1.4;
  }

  .benefits-list li svg {
    width: 16px;
    height: 16px;
    margin-top: 1px;
  }

  .quantity-selector {
    margin-bottom: 20px;
  }

  .quantity-label {
    font-size: clamp(0.85rem, 2vw, 0.95rem);
    margin-bottom: 8px;
  }

  .quantity-controls {
    gap: 8px;
    margin-bottom: 6px;
  }

  .quantity-btn {
    width: 42px;
    height: 42px;
    font-size: 20px;
    border-radius: 10px;
    min-width: 42px;
  }

  .quantity-input {
    width: 65px;
    height: 40px;
    font-size: 1rem;
    border-radius: 10px;
  }

  .quantity-unit {
    font-size: 0.85rem;
  }

  .price-display {
    margin-bottom: 20px;
    padding: 16px;
    border-radius: 12px;
  }

  .price-info {
    margin-bottom: 6px;
  }

  .price-label {
    font-size: 1rem;
  }

  .price-amount {
    font-size: 1.5rem;
  }

  .price-per-unit {
    font-size: 0.85rem;
  }

  .price-savings {
    margin-top: 6px;
    padding: 6px 10px;
    font-size: 0.8rem;
  }

  .buy-button {
    padding: 14px 20px;
    font-size: 0.95rem;
    border-radius: 12px;
    gap: 8px;
  }

  .buy-button svg {
    width: 18px;
    height: 18px;
  }

  .payment-security {
    margin-top: 12px;
    font-size: 0.8rem;
    gap: 6px;
  }

  .payment-security svg {
    width: 14px;
    height: 14px;
  }

  .pricing-table {
    padding: 18px;
    border-radius: 14px;
  }

  .pricing-table-title {
    font-size: 1rem;
    margin-bottom: 18px;
  }

  .pricing-table-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .pricing-item {
    padding: 12px;
    border-radius: 10px;
  }

  .pricing-qty {
    font-size: 0.9rem;
    margin-bottom: 6px;
  }

  .pricing-price {
    font-size: 0.95rem;
    margin-bottom: 3px;
  }

  .pricing-save {
    font-size: 0.75rem;
  }
}

@media (max-width: 360px) {
  .products-inner {
    padding: 35px 0;
  }

  .products-title {
    font-size: 1.2rem !important;
  }

  .products-subtitle {
    font-size: 0.8rem;
  }

  .product-image {
    max-width: 160px;
  }

  .product-benefits,
  .product-pricing {
    padding: 16px;
  }

  .benefits-list li {
    font-size: 0.8rem;
  }

  .quantity-btn {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }

  .quantity-input {
    width: 60px;
    height: 38px;
    font-size: 0.95rem;
  }

  .price-amount {
    font-size: 1.4rem;
  }

  .buy-button {
    padding: 12px 18px;
    font-size: 0.9rem;
  }

  .pricing-item {
    padding: 10px;
  }
}

