:root {
  --primary-color: #1ec28b;
  --primary-dark: #0f9b68;
  --secondary-color: #141b2b;
  --accent-color: #ff5c8d;
  --accent-secondary: #ffb347;
  --text-muted: #7f8ba4;
  --bg-light: #f3f6fb;
  --surface-color: #ffffff;
  --surface-glow: linear-gradient(135deg, rgba(30,194,139,0.08), rgba(255,92,141,0.08));
  --white: #ffffff;
  --border-color: rgba(20,27,43,0.08);
  --shadow-light: 0 12px 30px rgba(17, 23, 34, 0.08);
  --shadow-medium: 0 20px 45px rgba(17, 23, 34, 0.15);
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  line-height: 1.6;
  color: var(--secondary-color);
  font-family: var(--font-body);
  background: radial-gradient(circle at 20% 20%, rgba(121, 196, 255, 0.18), transparent 45%), linear-gradient(180deg, #f3f6fb 0%, #e5eefb 40%, #dce8f5 100%);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  min-height: clamp(420px, 56vw, 90vh);
  display: flex;
  flex-direction: column;
  background: radial-gradient(circle at top left, rgba(103,255,196,0.12), transparent 40%), radial-gradient(circle at bottom right, rgba(121,196,255,0.18), transparent 55%), #f1f6fb;
  color: #1a2a35;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: min(100% - 32px, 1200px);
  margin-inline: auto;
}

.btn {
  padding: 0.9rem 1.8rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  font-family: var(--font-body);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn--primary {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: var(--white);
  box-shadow: 0 10px 25px rgba(30, 194, 139, 0.25);
}

.btn--outline {
  background: transparent;
  border: 2px solid rgba(30,194,139,0.6);
  color: var(--primary-dark);
}

.btn--ghost {
  background: transparent;
  border: 2px solid var(--border-color);
  color: var(--secondary-color);
}
.cart__footer #btnAddMore {
  background: linear-gradient(120deg, rgba(103,255,196,0.85), rgba(0,162,255,0.8));
  border: none;
  color: #03231c;
  box-shadow: 0 15px 35px rgba(4, 65, 58, 0.25);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 10px;
}
.cart__footer #btnAddMore:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 18px 40px rgba(4, 65, 58, 0.35);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.price {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--primary-color);
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.muted {
  color: var(--text-muted);
}

/* ================== Hero ================== */
.hero {
  padding: clamp(40px, 6vw, 80px) 0;
  color: var(--secondary-color);
}
.hero--split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(24px, 4vw, 60px);
  align-items: stretch;
  position: relative;
  padding-inline: clamp(24px, 5vw, 64px);
}
.hero__media {
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  background: linear-gradient(140deg, rgba(30,194,139,0.65), rgba(255,214,129,0.5));
  border: 1px solid rgba(255,255,255,0.45);
  min-height: clamp(360px, 55vw, 560px);
  aspect-ratio: 3 / 4;
  display: flex;
}
 .hero__media::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 28px;
  border: 1px dashed rgba(255,255,255,0.5);
  pointer-events: none;
  mix-blend-mode: screen;
}
.hero__badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.hero__carousel {
  position: relative;
  flex: 1;
  display: flex;
  width: 100%;
  height: 100%;
  min-height: inherit;
  overflow: hidden;
}
.hero__slides {
  display: flex;
  width: 100%;
  height: 100%;
  min-height: inherit;
  transition: transform 0.8s ease;
  position: relative;
}
.hero__slide {
  margin: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  opacity: 0;
  transform: scale(0.97);
  transition: opacity 0.6s ease, transform 0.6s ease;
  border-radius: inherit;
  overflow: hidden;
  pointer-events: none;
}
.hero__slide.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  position: absolute;
}
.hero__slide::before,
.hero__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
}
.hero__slide::before {
  background: repeating-linear-gradient(135deg, rgba(255,255,255,0.5) 0 14px, transparent 14px 28px);
  background-size: 160% 160%;
  mix-blend-mode: screen;
}
.hero__slide::after {
  background: radial-gradient(circle at top, rgba(255,255,255,0.45), transparent 60%),
              radial-gradient(circle at bottom, rgba(3,23,20,0.35), transparent 65%);
  mix-blend-mode: overlay;
}
.hero__slide.is-entering::before {
  animation: heroShardIn 0.45s ease forwards;
}
.hero__slide.is-leaving::before {
  animation: heroShardOut 0.35s ease forwards;
}
.hero__slide.is-entering::after {
  animation: heroGlowIn 0.45s ease forwards;
}
.hero__slide.is-leaving::after {
  animation: heroGlowOut 0.35s ease forwards;
}
@keyframes heroShardIn {
  0% { opacity: 0; clip-path: polygon(0 0, 100% 0, 75% 45%, 0 60%); transform: translateY(-4%) scale(1.04); background-position: 30% 30%; }
  35% { opacity: 0.5; clip-path: polygon(0 0, 100% 0, 95% 55%, 0 80%); }
  70% { opacity: 0.15; clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%); }
  100% { opacity: 0; clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); transform: translateY(0) scale(1); background-position: 55% 55%; }
}
@keyframes heroShardOut {
  0% { opacity: 0.35; clip-path: polygon(0 0, 100% 0, 100% 40%, 0 55%); transform: translateY(0) scale(1); }
  100% { opacity: 0; clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); transform: translateY(3%) scale(1.03); }
}
@keyframes heroGlowIn {
  0% { opacity: 0; transform: scale(1.03); }
  40% { opacity: 0.35; }
  100% { opacity: 0; transform: scale(1); }
}
@keyframes heroGlowOut {
  0% { opacity: 0.2; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.03); }
}
.hero__slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
  filter: contrast(1.08) saturate(1.05);
}
.hero__carousel::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 -120px 120px -120px rgba(0,0,0,0.35);
  pointer-events: none;
}
.hero__badge.is-hidden {
  opacity: 0;
  pointer-events: none;
}
.hero__newsletter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.hero__newsletter input {
  flex: 1 1 180px;
  border-radius: 999px;
  border: 1px solid rgba(233,255,245,0.3);
  padding: 12px 16px;
  background: rgba(3,23,20,0.3);
  color: #fff;
}
.hero__newsletter select {
  flex: 1 1 220px;
  border-radius: 999px;
  border: 1px solid rgba(233,255,245,0.3);
  padding: 12px 16px;
  background: rgba(3,23,20,0.3);
  color: #fff;
  font-size: 1rem;
  min-width: 220px;
  appearance: none;
}
.hero__newsletter select option {
  color: #031714;
  background: #fff;
}
.hero__newsletterNote {
  color: rgba(233,255,245,0.7);
  font-size: 0.78rem;
}
.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 0.78rem;
  color: #1ec28b;
  margin-bottom: 10px;
  display: inline-block;
}
.social-proof {
  padding: clamp(24px, 5vw, 50px) 0;
  background: #fdfefe;
}
.social-proof h3 {
  margin: 0 0 18px;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}
.social-proof__slider {
  position: relative;
  overflow: hidden;
  min-height: 220px;
}
.social-proof__slider article {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  border: 1px solid rgba(11,31,42,0.06);
  box-shadow: 0 18px 30px rgba(5,20,34,0.08);
  position: absolute;
  inset: 0;
}
.social-proof__slider article.is-active {
  opacity: 1;
  transform: translateY(0);
  position: relative;
}
.social-proof__stars {
  color: #ffb347;
  letter-spacing: 0.25em;
  font-size: 0.85rem;
}
.social-proof__grid{
  display:flex;
  gap:16px;
  overflow-x:auto;
  padding-bottom:6px;
  scroll-snap-type:x mandatory;
  scrollbar-width:none;
}
.social-proof__tip{
  width:100%;
  margin:0 0 12px;
  font-size:0.75rem;
  text-transform:uppercase;
  letter-spacing:0.3em;
  color:rgba(20,27,43,0.6);
}
.social-proof__grid::-webkit-scrollbar{
  display:none;
}
.social-proof__grid article{
  flex:0 0 calc((100% - 64px)/5);
  min-width:220px;
  scroll-snap-align:start;
  position:relative;
  background:linear-gradient(145deg,rgba(6,14,26,0.95),rgba(16,43,55,0.9));
  border-radius:20px;
  padding:20px 18px 18px;
  border:1px solid rgba(255,255,255,0.08);
  box-shadow:0 25px 50px rgba(3,10,20,0.45);
  color:#e5f5fb;
  border-left:5px solid var(--primary-color);
  overflow:hidden;
  transform:translateY(0);
  transition:transform 0.3s ease, box-shadow 0.3s ease;
}
.social-proof__grid article:hover{
  transform:translateY(-6px);
  box-shadow:0 30px 60px rgba(0,0,0,0.35);
}
.social-proof__grid article::after{
  content:"“";
  position:absolute;
  top:-60px;
  right:10px;
  font-size:140px;
  color:rgba(255,255,255,0.05);
  font-family:var(--font-heading);
  pointer-events:none;
}
.social-proof__grid article p{
  margin:0 0 14px;
  font-size:0.9rem;
  line-height:1.5;
}
.social-proof__grid article strong{
  font-size:0.95rem;
  letter-spacing:0.05em;
}
.social-proof__grid article small{
  display:block;
  margin-top:4px;
  font-size:0.75rem;
  color:rgba(229,245,251,0.75);
  letter-spacing:0.08em;
  text-transform:uppercase;
}
@media (max-width: 1200px){
  .social-proof__grid article{
    flex:0 0 calc((100% - 32px)/3);
  }
}
@media (max-width: 768px){
  .social-proof__grid article{
    flex:0 0 80%;
  }
}
.trust-block {
  padding: clamp(24px, 6vw, 60px) 0;
  background: linear-gradient(135deg, rgba(103,255,196,0.18), rgba(0,162,255,0.08));
}
.trust-block__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.trust-block__grid article {
  background: rgba(255,255,255,0.92);
  border-radius: 22px;
  padding: 22px;
  border: 1px solid rgba(15,45,46,0.12);
  box-shadow: 0 18px 35px rgba(5,20,34,0.12);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.trust-block details {
  margin-bottom: 10px;
}
.trust-block summary {
  font-weight: 600;
  cursor: pointer;
}
.trust-block .btn {
  align-self: flex-start;
}
.trust-card{
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.trust-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(circle at top right, rgba(30,194,139,0.18), transparent 60%);
  opacity:0;
  transition:opacity 0.3s ease;
  pointer-events:none;
}
.trust-card:hover{
  transform: translateY(-5px);
  box-shadow: 0 25px 45px rgba(5,20,34,0.2);
}
.trust-card:hover::before{
  opacity:1;
}
.trust-card details{
  background: rgba(255,255,255,0.6);
  border-radius: 16px;
  padding: 12px 14px;
  margin-bottom: 10px;
  border: 1px solid rgba(15,45,46,0.08);
}
.trust-card summary{
  font-weight: 600;
}
.trust-card--actions{
  display:flex;
  flex-direction:column;
  gap:12px;
}
.policy-links{
  display:flex;
  gap:10px;
}
.policy-link{
  flex:1;
  display:inline-flex;
  justify-content:center;
  align-items:center;
  padding:12px 0;
  border-radius:999px;
  text-decoration:none;
  font-weight:600;
  letter-spacing:0.15em;
  text-transform:uppercase;
  background: linear-gradient(135deg, rgba(30,194,139,0.85), rgba(11,118,229,0.85));
  color:#05161d;
  box-shadow:0 15px 30px rgba(11,118,229,0.25);
}
.policy-link:last-child{
  background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(200,214,230,0.8));
  color:#0b2230;
  box-shadow:0 10px 20px rgba(5,20,34,0.15);
}
.blog-preview {
  padding: clamp(24px, 6vw, 60px) 0;
}
.blog-preview__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.blog-preview__grid article {
  background: linear-gradient(135deg, rgba(6,14,26,0.95), rgba(16,60,78,0.88));
  border-radius: 26px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 25px 45px rgba(3,10,18,0.25);
  color: #e7f5ff;
  position: relative;
  overflow: hidden;
}
.blog-preview__grid article h4 {
  margin: 0 0 10px;
  font-size: 1.25rem;
  color: #fff;
}
.blog-preview__grid article p {
  margin: 0;
  color: rgba(231,245,255,0.8);
}
.social-feed {
  padding: clamp(24px, 5vw, 50px) 0;
  background: #0a1a21;
  color: #fff;
}
.social-feed__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}
.social-feed__grid img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 18px;
  border: 2px solid rgba(255,255,255,0.15);
}
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(3,23,20,0.95);
  color: #e9fff5;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  z-index: 50;
  flex-wrap: wrap;
}
.cookie-banner a {
  color: #5bf7c8;
}
.cookie-banner--hide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.hero__content {
  padding: clamp(20px, 3vw, 36px);
  border-radius: 32px;
  border: 1px solid rgba(103,255,196,0.4);
  background: linear-gradient(145deg, rgba(3,23,20,0.95), rgba(9,63,47,0.92), rgba(21,102,77,0.9));
  box-shadow: 0 30px 55px rgba(3,23,20,0.55);
  color: #e7fff4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: clamp(360px, 55vw, 560px);
  animation: heroRise 0.8s ease-out both;
}
.hero__micro {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #aefce4;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 12px;
  min-height: 1.5em;
}
.hero__micro::before {
  content: "";
  width: 32px;
  height: 2px;
  background: #aefce4;
  border-radius: 999px;
}
.hero__micro span {
  display: inline-block;
  animation: heroMicroFade 0.6s ease;
}
.hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.78rem;
  color: rgba(111,255,210,0.9);
  margin-bottom: 14px;
  font-weight: 600;
}
.hero__content h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  margin: 0 0 18px;
  font-family: var(--font-heading);
  color: #9ffff1;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.hero__content p {
  margin: 0 0 24px;
  color: rgba(233,255,245,0.78);
  font-size: 1rem;
  line-height: 1.5;
}
.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 8px 0 24px;
}
.hero__btn-collections {
  display: none;
}
.hero__actions .btn--primary {
  background: linear-gradient(120deg, #67ffc4, #1ec28b);
  color: #05251c;
  border: none;
  font-weight: 700;
  box-shadow: 0 20px 40px rgba(6,40,32,0.45);
}
.hero__actions .btn--ghost {
  border: 1px solid rgba(233,255,245,0.25);
  color: #e9fff5;
  background: transparent;
}
@keyframes heroRise {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroMicroFade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero__stats {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
  padding: 0;
  margin: 0;
}
.hero__stats li {
  background: rgba(255,255,255,0.8);
  border-radius: 18px;
  padding: 14px 16px;
  box-shadow: var(--shadow-light);
}
.hero__stats strong {
  display: block;
  font-size: 1.4rem;
  color: var(--primary-dark);
}
.hero__stats span {
  font-size: 0.85rem;
  color: var(--text-muted);
}
@media (max-width: 900px) {
  .hero--split {
    grid-template-columns: 1fr;
    padding-inline: clamp(16px, 6vw, 24px);
    gap: 20px;
  }
  .hero__media,
  .hero__content {
    min-height: auto;
  }
  .hero__content {
    order: 2;
  }
}

/* ================== Benefits ================== */
.benefits {
  padding: 30px 0 10px;
}
.benefits__wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.benefits__wrap article {
  background: linear-gradient(145deg, #041a16, #082d25 50%, #0f4135);
  border-radius: 26px;
  padding: 24px;
  border: 1px solid rgba(103,255,196,0.18);
  box-shadow: 0 25px 45px rgba(3,23,20,0.35);
  color: #e6fff4;
}
.benefits__icon {
  width: 48px;
  height: 48px;
  border-radius: 18px;
  background: rgba(103,255,196,0.18);
  color: #67ffc4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.benefits__wrap h4 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: var(--font-heading);
  color: #9fffe5;
}
.benefits__wrap p {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(233,255,245,0.75);
  line-height: 1.5;
}

/* ================== Collections ================== */
.collections {
  padding: 20px 0 10px;
}
.collections__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}
.collection-card {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  min-height: 280px;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-medium);
  isolation: isolate;
}
.collection-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,27,43,0.1), rgba(20,27,43,0.75));
  z-index: 0;
}
.collection-card__content {
  position: absolute;
  inset: 0;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #e7fef1;
  z-index: 1;
  border: none;
  background: transparent;
  width: 100%;
  text-align: left;
  cursor: pointer;
}
.collection-card__content p {
  margin: 0;
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #a8ffe6;
}
.collection-card__content h3 {
  margin: 4px 0 12px;
  font-size: 1.8rem;
  color: #ffffff;
}
.collection-card__link {
  color: #fff;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-decoration: none;
  position: relative;
}
.collection-card__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 60px;
  height: 2px;
  background: #fff;
}

/* ================== Header ================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(120deg, rgba(3, 23, 20, 0.98), rgba(10, 53, 41, 0.98) 55%, rgba(21, 100, 74, 0.95));
  border-bottom: 1px solid rgba(91, 247, 200, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  padding: 0.4rem 0;
  backdrop-filter: blur(8px);
}
.header__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1.25rem;
  min-height: 72px;
  gap: 16px;
}
.logo {
  flex-grow: 1;
  text-align: center;
  line-height: 1.1;
  order: 2;
}
.logo a {
  font-size: 1.65rem;
  font-weight: 800;
  color: #8ef1ce;
  text-decoration: none;
  font-family: var(--font-heading);
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.logo a span {
  font-size: 0.78em;
  font-weight: 600;
  margin-top: -0.1em;
  letter-spacing: 0.3em;
  color: rgba(233, 255, 245, 0.8);
}

.btn-menu {
  order: 1; /* Força o ícone do menu a ser o primeiro */
}

.nav {
  order: 3; /* Força o ícone do carrinho a ser o último */
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav__link {
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(233,255,245,0.85);
  font-weight: 600;
  transition: color 0.2s ease;
}
.nav__link:hover {
  color: #67ffc4;
}

.btn-search {
  /* Oculta a lupa no mobile */
  display: none;
}

.btn-icon {
  background: rgba(91,247,200,0.12);
  border: 1px solid transparent;
  font-size: 1.3rem;
  color: #dfffee;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  padding: 0.55rem;
  border-radius: 18px;
}
.btn-icon:hover {
  background: rgba(91,247,200,0.2);
  border-color: rgba(111,255,210,0.35);
  color: #5bf7c8;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.25);
}
.btn-icon:active {
  transform: scale(0.95);
  box-shadow: none;
}

.badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #5bf7c8;
  color: #031714;
  border-radius: 50%;
  font-size: 0.7rem;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}

/* Media Query para desktop (reverte o comportamento) */
@media (min-width: 768px) {
  .header {
    padding: 0.8rem 0;
  }

  .header__wrap {
    padding: 0 2rem;
  }

  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    flex-grow: 0;
    order: unset;
  }
  
  .logo a {
    font-size: 1.9rem;
    flex-direction: row;
    gap: 0.6rem;
    letter-spacing: 0.18em;
  }

  .logo a span {
    font-size: 0.8em;
    margin-top: 0;
    margin-left: 0;
    letter-spacing: 0.4em;
  }

  .btn-menu {
    order: unset; /* Remove a ordem no desktop */
  }

  .btn-search {
    display: inline-block; /* Volta a exibir a lupa no desktop */
    margin-right: auto;
    order: unset; /* Remove a ordem no desktop */
  }

  .nav {
    order: unset; /* Remove a ordem no desktop */
  }
}

/* ===== Hero com vídeo único e efeito de encolher no scroll ===== */

/* vídeo mantém a proporção original SEM esticar */
.hero-video {
  height: clamp(420px, 56vw, 90vh);               /* prioridade: caber na altura da janela */
  width: auto;                 /* largura ajusta sozinha */
  max-width: 100vw;            /* não passa da largura da tela */
  object-fit: contain;         /* sem cortes, sem distorção */
  transform-origin: top center;
  transform: scale(var(--video-scale));
  border-radius: var(--video-radius);
  transition: border-radius 0.2s linear;
}

/* o wrapper centraliza o vídeo sem esticar */
.video-wrap {
  position: sticky;
  top: 0;
  height: clamp(420px, 56vw, 90vh);
  display: flex;               /* <- mudou de grid pra flex */
  align-items: center;
  justify-content: center;
  z-index: 1;
  overflow: hidden;
  background: #000;            /* letterbox elegante */
}

:root {
  --video-aspect: 1.7778; /* fallback 16:9 */
}

.hero-video {
  /* calcula largura/altura ideais com base na proporção real */
  width: min(100vw, calc(100vh * var(--video-aspect)));
  height: min(100vh, calc(100vw / var(--video-aspect)));
  object-fit: contain;
  transform-origin: top center;
  transform: scale(var(--video-scale));
  border-radius: var(--video-radius);
  transition: border-radius 0.2s linear;
}

/* opcional: em celulares muito “altos”, reduz a altura pra não ficar gigante */
@media (max-aspect-ratio: 9/16) {
  .hero-video {
    height: 85vh;
  }
}

/* Mantém o header acima do vídeo quando necessário */
.header {
  z-index: 10;
}

/* (Opcional) Remova estilos do antigo carousel se quiser enxugar:
   .carousel, .carousel__track, .carousel__btn, .carousel__dots { display: none !important; } 
*/



/* ================== Toolbar ================== */
.toolbar {
  background: transparent;
  padding: 0.5rem 0;
  box-shadow: none;
  margin-bottom: 16px;
}

.toolbar__filterBtn {
  display: none !important;
}

.toolbar__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.toolbar__right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.toolbar__count {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.toolbar__sort select {
  border: 1px solid var(--border-color);
  padding: 10px 12px;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.9rem;
  background: transparent;
  color: var(--secondary-color);
}

/* ================== Catálogo ================== */
.layout {
  display: block;
  padding-bottom: 50px;
}
.filters-cards {
  background: transparent;
  margin-bottom: 32px;
  text-align: center;
}
.filters-cards h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--secondary-color);
}
.filters-cards p {
  margin: 6px 0 20px;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.filters-cards__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}
.filters-cards__grid .collection-card {
  cursor: pointer;
  min-height: 400px;
  border-radius: 26px;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-medium);
}
.filters-cards__grid .collection-card .collection-card__content {
  background: transparent;
  color: #fff;
  text-shadow: 0 8px 20px rgba(0,0,0,0.35);
}
.filters-cards__grid .collection-card .collection-card__content h3,
.filters-cards__grid .collection-card .collection-card__content p,
.filters-cards__grid .collection-card .collection-card__content span,
.filters-cards__grid .collection-card .collection-card__content .collection-card__link {
  color: #fff;
}
.collection-card__content--active::after {
  width: 80px;
}

.floating-toggle-group {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}
.floating-toggle {
  background: linear-gradient(130deg, #5bf7c8, #1ec28b);
  color: #03231c;
  border: none;
  border-radius: 999px;
  padding: 14px 22px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 12px 30px rgba(8,79,63,0.3);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.floating-toggle i {
  font-size: 0.95rem;
}
.floating-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(8,79,63,0.35);
}
.floating-toggle--whats {
  background: linear-gradient(130deg, #25D366, #00a884);
  color: #03231c;
}
.floating-toggle--whats:hover {
  box-shadow: 0 18px 40px rgba(0,168,132,0.35);
}

/* Sidebar de filtros */
.sidebar {
  background: var(--surface-color);
  padding: 30px;
  border-radius: 24px;
  box-shadow: var(--shadow-light);
  border: 1px solid rgba(20,27,43,0.06);
  position: relative;
}
.sidebar::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--surface-glow);
  opacity: 0.6;
  z-index: -1;
}

.sidebar__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.sidebar__close {
  background: transparent;
  border: none;
  font-size: 1.8rem;
  color: var(--text-muted);
  cursor: pointer;
  display: none;
}

.filters__wrap .btn {
  margin-bottom: 12px;
  width: 100%;
  text-align: left;
}

@media (max-width: 767px) {
  .sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 300px;
    transform: translateX(-100%);
    transition: transform 0.4s ease-in-out;
    z-index: 110;
  }
  .sidebar.show {
    transform: translateX(0);
  }
  .sidebar__close {
    display: block;
  }
}

/* Grid de produtos */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}
.grid--highlight {
  animation: gridPulse 1.2s ease;
}
@keyframes gridPulse {
  0% { box-shadow: 0 0 0 rgba(30,194,139,0.0); }
  30% { box-shadow: 0 0 30px rgba(30,194,139,0.35); }
  60% { box-shadow: 0 0 15px rgba(30,194,139,0.2); }
  100% { box-shadow: 0 0 0 rgba(30,194,139,0); }
}

/* ================== Cartão de Produto (Card) ================== */
.product-card {
  background: var(--surface-color);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-light);
  border: 1px solid rgba(20,27,43,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  flex: 1 1 auto;
  min-height: 480px;
}
.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--surface-glow);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
}
.product-card:hover::before {
  opacity: 1;
}

.product-card__link {
  text-decoration: none;
  color: inherit;
  display: block;
  flex-grow: 1;
  position: relative;
  z-index: 1;
}

.product-card__media {
  width: 100%;
  aspect-ratio: 3 / 4;
  min-height: 320px;
  position: relative;
  background: linear-gradient(145deg, rgba(255,255,255,0.9), rgba(232,240,238,0.82));
  display: block;
  overflow: hidden;
  margin: 0;
  border-radius: 26px 26px 0 0;
}

.product-card__media::after {
  content: "↺ clique para trocar";
  position: absolute;
  bottom: 18px;
  right: 18px;
  background: linear-gradient(135deg, rgba(30,194,139,0.95), rgba(0,162,255,0.9));
  color: #03121a;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  padding: 6px 18px;
  border-radius: 999px;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  box-shadow: 0 12px 20px rgba(0,0,0,0.25);
  z-index: 3;
}
.product-card__media::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.35);
  pointer-events: none;
  z-index: 2;
}
.product-card__media:hover::after {
  opacity: 1;
  transform: translateY(-2px);
}

.product-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
  transition: filter 0.3s ease, transform 0.3s ease;
  z-index: 1;
  box-shadow: inset 0 0 0 1.5px rgba(24,34,49,0.08);
}

.product-card:hover .product-card__media img {
  filter: brightness(1.03);
  transform: scale(1.02);
}

.product-card__info {
  padding: 16px 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex-grow: 1;
  min-height: auto;
}

.product-card__name {
  font-size: 1.1rem;
  margin: 0 0 4px;
  font-weight: 700;
  font-family: var(--font-heading);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-card__desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card__price {
  font-weight: 700;
  margin-top: auto;
  font-size: 1.3rem;
  color: var(--primary-color);
}

.product-card__price .original-price {
  font-size: 1rem;
  color: var(--text-muted);
  margin-right: 8px;
  text-decoration: line-through;
}

.product-card__btn-add {
  background: #00c98f;
  color: #0b1c17;
  border-radius: 0 0 20px 20px;
  width: 100%;
  padding: 0.95rem;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  box-shadow: 0 12px 26px rgba(0, 201, 143, 0.35);
  border: none;
  position: relative;
  z-index: 2;
  pointer-events: auto;
}

.product-card__btn-add:hover {
  filter: brightness(0.95);
}

.product-card__options {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.product-card__colors,
.product-card__sizes {
    flex: 1;
}

.product-card__legend {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

/* Ajustes para o layout do card */
.product-card__info .swatches {
    gap: 8px;
}

.product-card__info .swatch,
.product-card__info .size {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
    border: 1px solid var(--border-color);
}

.product-card__info .swatch[data-selected="true"],
.product-card__info .size[data-selected="true"] {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px var(--primary-color);
}

/* ================== Modal ================== */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  padding: 20px;
  background: transparent;
  border: none;
}

.modal.show {
  display: flex;
}

.modal::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(4, 9, 16, 0.7);
  backdrop-filter: blur(4px);
}

.modal__content {
  position: relative;
  z-index: 1;
  width: min(94vw, 960px);
  max-height: calc(100vh - 40px);
  margin: 12px;
  background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(226,255,246,0.92));
  color: var(--secondary-color);
  border-radius: 26px;
  box-shadow: 0 30px 50px rgba(4,9,16,0.25);
  display: grid;
  grid-template-columns: minmax(0,1.15fr) minmax(0,0.85fr);
  gap: clamp(18px, 3vw, 32px);
  padding: clamp(18px, 3vw, 32px);
  animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal__header {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  padding: 12px 20px;
  pointer-events: none;
  z-index: 15;
}

.modal__close {
  position: relative;
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  pointer-events: auto;
}

.modal__mediaWrap{
  display:flex;
  flex-direction:column;
  gap:16px;
  align-items:center;
  background: inherit;
  border-radius: 26px;
  box-shadow: none;
  padding: clamp(18px, 3vw, 28px);
}
.modal__media {
  width: 100%;
  max-height: clamp(320px, 65vh, 560px);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-light);
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.modal__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

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

.modal__cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.modal__cta .btn {
  background: #00c98f;
  color: #0b1c17;
  border: none;
  border-radius: 999px;
  padding: 0.9rem 2rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  box-shadow: 0 15px 30px rgba(0,201,143,0.35);
  width: auto;
  min-width: 230px;
}
.modal__cta .btn:hover {
  filter: brightness(0.95);
}

.modal__info h2 {
  margin: 0;
  font-size: 1.65rem;
  font-family: var(--font-heading);
  line-height: 1.2;
}

.modal__info p.muted {
  margin: 0;
  line-height: 1.5;
}

.modal__options {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 6px;
}

.modal__colors, .modal__sizes {
  flex: 1 1 45%;
}

legend {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 8px;
}

.swatches, .sizes__wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.swatch, .size {
  width: 40px;
  height: 40px;
  border: 2px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  background: var(--bg-light);
  padding: 0;
}

.swatch img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.swatch[data-selected="true"], .size[data-selected="true"] {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px var(--primary-color);
}

.size {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--secondary-color);
  min-width: 40px;
}

/* Layout mais moderno para os botões */

@media (max-width: 768px) {
  .modal__content {
    grid-template-columns: 1fr;
    margin: 12px;
    padding: 18px;
  }
  .modal__mediaWrap{
    order: -1;
  }
  .modal__media{
    max-height: 320px;
  }
  .modal__info h2{
    font-size: 1.4rem;
  }
}

/* ================== Carrinho (Drawer) ================== */
/* Fundo escuro ao abrir o carrinho */
.backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.backdrop.show {
    opacity: 1;
    visibility: visible;
}

/* Container principal do carrinho */
.btn--whats {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #0ce38d, #0b76ff);
    color: #03121a;
    text-decoration: none;
    text-align: center;
    padding: 16px 32px;
    border-radius: 30px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: none;
    box-shadow: 0 18px 30px rgba(0,162,255,0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    overflow: hidden;
    white-space: normal;
}

.btn--whats:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 36px rgba(0,162,255,0.45);
}

/* Estado de carrinho vazio */
.cart__empty-state {
    font-style: italic;
    color: rgba(30,30,30,0.6);
    text-align: center;
    padding: 40px 0;
    font-size: 1rem;
}

/* ================== Footer ================== */
.footer {
  margin-top: auto;
  background: linear-gradient(135deg, #031714, #0a2a22 55%, #124332 100%);
  color: #e9fff5;
  padding: clamp(48px, 8vw, 80px) 0 36px;
  font-size: 0.95rem;
}
.footer a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease, opacity 0.3s ease;
}
.footer a:hover {
  color: #5bf7c8;
  opacity: 0.9;
}
.footer__grid {
  display: grid;
  gap: clamp(24px, 4vw, 48px);
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  align-items: flex-start;
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer__logo {
  max-width: 180px;
  filter: brightness(0) invert(1);
}
.footer__tagline {
  margin: 0;
  color: rgba(233, 255, 245, 0.75);
  line-height: 1.5;
}
.footer__block {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer__title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: #67ffc4;
}
.footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__list li {
  color: #e9fff5;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer__list span {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(233, 255, 245, 0.55);
}
.footer__list p {
  margin: 0;
}
.footer__bottom {
  margin-top: clamp(32px, 6vw, 56px);
  padding-top: 24px;
  border-top: 1px solid rgba(233, 255, 245, 0.12);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer__socials {
  display: flex;
  gap: 14px;
}
.footer__socials a {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, background 0.3s ease;
}
.footer__socials a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(103,255,196,0.25), rgba(0,162,255,0.25));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.footer__socials a i {
  position: relative;
  z-index: 1;
  transition: transform 0.25s ease;
}
.footer__socials a:hover {
  background: transparent;
  color: #05251c;
  transform: translateY(-4px) scale(1.05);
}
.footer__socials a:hover::before {
  opacity: 1;
}
.footer__socials a:hover i {
  transform: scale(1.2);
}
.footer__socials a[data-network="facebook"]::before { background: linear-gradient(135deg,#1877f2,#3b5998); }
.footer__socials a[data-network="instagram"]::before { background: linear-gradient(135deg,#f09433,#bc1888); }
.footer__socials a[data-network="whatsapp"]::before { background: linear-gradient(135deg,#25D366,#128C7E); }
.footer__socials a[data-network="admin"]::before { background: linear-gradient(135deg,#1d4ed8,#0f172a); }
.footer__copyright {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(233,255,245,0.75);
}
.policy {
  background: linear-gradient(180deg, #f4f7fb 0%, #e7f1ff 40%, #fdfefe 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.page-hero {
  padding: clamp(48px, 8vw, 96px) 0 clamp(24px, 4vw, 48px);
  text-align: center;
  color: #0b1f2a;
}
.page-hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.4em;
  font-size: 0.8rem;
  color: #1ec28b;
  margin-bottom: 10px;
  display: inline-block;
}
.page-hero h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 12px;
}
.page-hero p {
  max-width: 840px;
  margin: 0 auto;
  color: #4a5966;
  line-height: 1.6;
}
.policy__grid {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 8px;
  margin-bottom: clamp(40px, 6vw, 72px);
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.policy__grid::-webkit-scrollbar {
  display: none;
}
.policy-card {
  flex: 0 0 calc((100% - 72px) / 4);
  min-width: 240px;
  scroll-snap-align: start;
  padding: 24px;
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(255,255,255,0.98), rgba(245,255,252,0.95));
  border: 1px solid rgba(30,194,139,0.2);
  box-shadow: 0 20px 45px rgba(7,20,36,0.12);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.policy-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(circle at top right, rgba(30,194,139,0.15), transparent 55%);
  opacity:0;
  transition:opacity 0.3s ease;
  pointer-events:none;
}
.policy-card:hover{
  transform: translateY(-6px);
  box-shadow:0 30px 60px rgba(5,17,30,0.2);
}
.policy-card:hover::before{
  opacity:1;
}
.policy-card h3 {
  margin-top: 0;
  font-size: 1.1rem;
  color: #0b1f2a;
  letter-spacing:0.05em;
}
.policy-card p {
  margin: 0 0 10px;
  color: #4f6070;
}
.policy-card ul {
  margin: 0;
  padding-left: 18px;
  color: #4f6070;
  line-height: 1.5;
}
.policy-card ol {
  margin: 0;
  padding-left: 18px;
  color: #4f6070;
  line-height: 1.5;
}
.policy-card li + li {
  margin-top: 4px;
}
.policy-card a{
  color: var(--primary-color);
  font-weight:600;
  text-decoration:none;
}
@media (max-width: 1200px){
  .policy-card {
    flex: 0 0 calc((100% - 36px) / 2);
  }
}
@media (max-width: 768px){
  .policy-card {
    flex: 0 0 85%;
  }
}
.policy-cta {
  padding: clamp(32px, 6vw, 60px) 0 clamp(48px, 8vw, 80px);
}
.policy-cta__wrap {
  background: linear-gradient(135deg, rgba(30,194,139,0.15), rgba(0,162,255,0.12));
  border-radius: 32px;
  padding: clamp(28px, 5vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  border: 1px solid rgba(30,194,139,0.3);
  box-shadow: 0 30px 60px rgba(3,23,20,0.15);
}
.policy-cta__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 0.75rem;
  color: #0f5c45;
  margin: 0 0 6px;
}
.policy-cta h3 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: #031915;
}
.policy-cta p {
  margin: 8px 0 0;
  color: #063428;
}
.policy-cta .btn {
  align-self: flex-start;
}
.policy-cta .btn--whats{
  font-size:0.95rem;
  padding:14px 40px;
  min-width:230px;
  letter-spacing:0.08em;
}
.buy-cta {
  padding: 8px 0 28px;
}
.buy-cta__wrap {
  background: linear-gradient(135deg, rgba(0,162,255,0.14), rgba(30,194,139,0.12));
  border-radius: 24px;
  padding: clamp(20px, 4vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  border: 1px solid rgba(12,84,122,0.2);
  box-shadow: 0 24px 48px rgba(5,17,30,0.12);
}
.buy-cta__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.7rem;
  color: #0a4a6b;
  margin: 0 0 6px;
}
.buy-cta h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  color: #05121b;
}
.buy-cta p {
  margin: 6px 0 0;
  color: #2c3d4b;
}
.buy-cta__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .buy-cta__wrap {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .buy-cta__actions {
    justify-content: flex-end;
  }
}
@media (min-width: 768px) {
  .policy-cta__wrap {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .policy-cta .btn {
    margin-left: 40px;
  }
}
@media (max-width: 640px) {
  .footer,
  .footer__grid,
  .footer__block,
  .footer__brand {
    text-align: center;
    align-items: center;
  }
  .footer__list li {
    align-items: center;
  }
  .footer__list span {
    letter-spacing: 0.15em;
  }
  .footer__bottom {
    justify-content: center;
  }
}


/* Animação para o ícone do carrinho */
@keyframes shakeCart {
  0% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  50% { transform: translateX(5px); }
  75% { transform: translateX(-5px); }
  100% { transform: translateX(0); }
}

.cart-icon--animated {
  animation: shakeCart 0.5s ease-in-out;
}

/* Animação de 'voo' para o carrinho */
@keyframes flyToCart {
  to {
    transform: translate(-50%, -100vh); /* Move para fora da tela, em direção ao topo */
    opacity: 0;
    width: 20px;
    height: 20px;
  }
}

/* Animação para o 'voo' da imagem ao adicionar no carrinho */
.fly-to-cart {
    position: fixed;
    z-index: 9999;
    transition: transform 0.8s ease-in-out, opacity 0.8s ease-in-out;
    border-radius: 50%; /* Opcional: para que a imagem "voe" como um círculo */
    object-fit: cover;
}

/* ================== Media Queries (Responsividade) ================== */

/* Mobile / Desktop visibility */
.hide-mobile { display: block; }
.hide-desktop { display: none; }

@media screen and (max-width: 768px) {
  .hide-mobile { display: none !important; }
  .hide-desktop { display: block !important; }
}

/* Desktop: mostrar botão filtros */
#openFilters {
    display: inline-block;
}

/* Mobile: esconder botão filtros, mostrar hambúrguer */
@media (max-width: 768px) {
    #openFilters {
        display: none;
    }
    #openMobileMenu {
        display: inline-block;
    }
}

/* === CARROSSEL NO PRÓPRIO #grid (sem reparent) === */
.grid.carousel-active{
  display: flex;
  flex-wrap: nowrap;
  gap: 30px;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-snap-type: x mandatory;
}
.grid.carousel-active::-webkit-scrollbar{ height: 4px; }
.grid.carousel-active > .product-card{
  flex: 0 0 calc((100% - 60px)/3);
  min-width: 260px;
  scroll-snap-align: start;
}
@media (max-width: 1100px){
  .grid.carousel-active > .product-card{
    flex: 0 0 calc((100% - 30px)/2);
  }
}
@media (max-width: 700px){
  .grid.carousel-active > .product-card{
    flex: 0 0 95%;
  }
}

/* controles no topo direito (fora dos cards) */
/* controles no topo direito (remove, usaremos estilo global abaixo) */

/* === Botões do menu lateral (Macacão, etc.) === */
.sidebar .filters__wrap .btn {
  border-radius: 10px;           /* cantos levemente arredondados */
  padding: 12px 14px;            /* um pouquinho menos “pílula” */
}

/* versão outline no menu lateral */
.sidebar .filters__wrap .btn.btn--outline {
  border-width: 1.5px;
}

/* hover: preto com texto branco (para ambos: filled e outline) */
.sidebar .filters__wrap .btn:hover,
.sidebar .filters__wrap .btn.btn--outline:hover {
  background: #255F38;
  color: #fff;
  border-color: #000;
  transform: none;               /* evita “saltar” no hover se quiser */
  box-shadow: none;
}

/* estado “selecionado” (quando não é outline) continua com hover preto */
.sidebar .filters__wrap .btn:not(.btn--outline):hover {
  background: #255F38;
}

/* === Botões do carrossel – pequenos, juntos no topo direito, cor #255F38 === */

/* Caso do carrossel sem wrapper (overlay criado como .grid-controls) */
.grid-controls {
  position: static;
  margin-top: 18px;
  display: flex;
  gap: 6px;
  z-index: 3;
  justify-content: flex-end;
}
.grid-controls button {
  width: 28px;
  height: 28px;
  border: none;
  background: var(--accent-color);
  color: #fff;
  border-radius: 6px;     /* levemente arredondado */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,.15);
  transition: background 0.3s ease, transform 0.2s ease;
}
.grid-controls button i {
  font-size: 12px;        /* ícone menor */
  line-height: 1;
}
.grid-controls button:hover {
  background: var(--accent-secondary);
  transform: translateY(-1px);
}

/* Caso do carrossel COM wrapper (botões .lemoov-carousel-btn) */
.lemoov-carousel-btn {
  width: 28px !important;
  height: 28px !important;
  background: #255F38 !important;
  color: #fff !important;
  border-radius: 6px !important;
  box-shadow: 0 2px 6px rgba(0,0,0,.15);
  top: 8px !important;          /* fixa no topo */
  right: 8px !important;        /* encosta no lado direito */
  transform: none !important;   /* remove centralização vertical */
  z-index: 3;
}
.lemoov-carousel-btn i { font-size: 12px; line-height: 1; }
.lemoov-carousel-btn:hover { filter: brightness(0.95); }

/* posiciona o botão da esquerda logo ao lado do da direita */
.lemoov-carousel-btn.lemoov-carousel-btn--left {
  right: 44px !important; /* 28px largura + 8px gap + margem */
  left: auto !important;
}

/* ===== Menu lateral (filtros) – fundo DCD7C9 ===== */
.sidebar {
  background: 697565 !important;
}

/* Botões do menu lateral: cantos levemente arredondados + hover preto */
.sidebar .btn {
  border-radius: 8px;              /* levemente arredondado */
}

.sidebar .btn.btn--outline {
  border-color: #333;
  color: #333;
  background: transparent;
}

.sidebar .btn.btn--outline:hover,
.sidebar .btn:hover {
  background: #000;                /* hover preto */
  color: #fff;
  border-color: #000;
}

/* Só o ícone do carrinho destacado */
#openCart i,
#cartIcon {
  color: #5bf7c8 !important;
}

/* --- Sidebar: dá mais área útil aos botões sem mudar a coluna do grid --- */
@media (min-width: 768px){
  .sidebar{
    padding: 18px 16px !important;   /* antes 30px → mais largura útil interna */
  }
  .sidebar .filters__wrap .btn{
    white-space: nowrap;             /* mantém em uma linha */
    overflow: visible;               /* não corta texto */
    text-overflow: clip;             /* remove "..." */
    font-size: 1rem;                 /* um tiquinho maior */
    letter-spacing: 0;               /* compacta sutilmente */
    padding-inline: 18px;            /* respiro sem desperdiçar largura */
    width: 100%;                     /* aproveita toda a largura disponível */
  }
}

/* (opcional) se ainda faltar ~1cm, avance levemente 12px sobre o "gap" do grid */
@media (min-width: 768px){
  .sidebar .filters__wrap .btn {
    margin-right: -12px;             /* usa parte do gap (visual), não altera layout */
  }
}

/* Tamanhos indisponíveis: borrado, sem clique */
.size[aria-disabled="true"]{
  filter: blur(0.8px) grayscale(80%);
  opacity: 0.45;
  pointer-events: none;
  cursor: not-allowed;
  border-color: #ddd !important;
  box-shadow: none !important;
}

/* Estado visual de erro/indisponível no botão principal */
.btn[disabled],
.btn[disabled]:hover{
  opacity: .6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.badge-off {
  display: inline-block;
  font-size: 0.75rem;
  line-height: 1;
  padding: 6px 8px;
  border-radius: 8px;
  background: #ff3b30;
  color: #fff;
  font-weight: 700;
  letter-spacing: .2px;
}

.product-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
}
.cart {
    background: linear-gradient(135deg, #fefefe, #f4f8ff 65%);
    color: #0d1f2a;
    display: flex;
    flex-direction: column;
}

.cart__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    color: #0b1f2a;
    padding: 26px 34px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}
.cart__header h3 {
    margin: 0;
}
.cart__close {
    background: transparent;
    border: none;
    font-size: 1.6rem;
    color: #0b1f2a;
    cursor: pointer;
    transition: transform 0.2s ease;
}
.cart__close:hover { transform: rotate(90deg); }

.cart__list {
    list-style: none;
    padding: 0 32px;
    margin: 0;
    overflow-y: auto;
    flex: 1 1 auto;
}
.cart__item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transition: background-color 0.2s ease;
}
.cart__item:last-child { border-bottom: none; }
.cart__item:hover { background-color: rgba(0,0,0,0.03); }
.cart__item-media {
    width: 74px;
    height: 74px;
    min-width: 74px;
    border-radius: 14px;
    overflow: hidden;
    background: #f1f5f8;
    box-shadow: 0 15px 30px rgba(9,22,35,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
}
.cart__item-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
}
.cart__item-info {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}
.cart__item-name {
    font-weight: 700;
    font-size: 1rem;
    margin: 0 0 4px;
    color: #0b1f2a;
}
.cart__item-details {
    font-size: 0.85rem;
    color: #000000;
}
.cart__item-desc {
    font-size: 0.82rem;
    color: #000000;
    margin-bottom: 2px;
    display: block;
}
.cart__item-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    text-align: right;
}
.cart__item-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #06c98e;
}
.cart__remove-btn {
    background: #ffffff;
    border: 1px solid rgba(7,24,32,0.12);
    border-radius: 999px;
    padding: 6px 16px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #0b1c1f;
    cursor: pointer;
    transition: all 0.2s ease;
}
.cart__remove-btn:hover {
    border-color: rgba(7,24,32,0.4);
    box-shadow: 0 10px 18px rgba(7,24,32,0.15);
}

.cart__footer {
    border-top: 1px solid rgba(0,0,0,0.05);
    background: #ffffff;
    padding: 28px 34px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.cart__total {
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
    font-weight: 700;
    color: #0b1f2a;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}
.frete__ui {
    background: #f5f8fc;
    border: 1px solid rgba(7,24,32,0.12);
    border-radius: 18px;
    padding: 14px 18px;
    color: #0b1f2a;
}
.frete__ui select,
.frete__ui input {
    background: #ffffff;
    color: #0d1f2a;
    border: 1px solid rgba(7,24,32,0.15) !important;
    border-radius: 12px !important;
    padding: 10px 12px !important;
    font-weight: 600;
}
.frete__ui select::placeholder,
.frete__ui input::placeholder {
    color: rgba(15,45,46,0.4);
}
.frete__ui button {
    background: linear-gradient(120deg, #0ce38d, #00a2ff) !important;
    color: #03121a !important;
    border: none !important;
    border-radius: 14px !important;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}
.frete__ui .muted,
.frete__ui #freteMsg {
    color: rgba(27,34,45,0.8) !important;
}
.frete__ui #pesoWrap {
    background: rgba(9,22,35,0.04);
    border-radius: 12px;
    padding: 10px 12px;
    margin-top: 10px !important;
}
.btn--pulse{
  position: relative;
  overflow: hidden;
}
.btn--pulse::after{
  content:"";
  position:absolute;
  width:120%;
  height:120%;
  top:-10%;
  left:-10%;
  background:radial-gradient(circle, rgba(255,255,255,0.4), transparent 60%);
  opacity:0;
  transition:opacity 0.3s ease;
}
.btn--pulse:hover::after{
  opacity:1;
}
.product-card__hint{
  font-size:0.72rem;
  color:var(--text-muted);
  margin:6px 0 0;
}
