/* ====================================
   HERO BANNER UNIFIED - CSS EXCLUSIVO
   Sistema completo e organizado do hero
   ==================================== */

/* ====================================
   VARIÁVEIS CSS - DESIGN SYSTEM
   ==================================== */
:root {
  /* Cores Principais */
  --hero-brand: #27c3d8;          /* ciano limpeza */
  --hero-brand-2: #7df5d2;        /* menta */
  --hero-ink: #0b1220;            /* azul profundo */
  --hero-paper: #f8fafc;          /* quase branco */
  --hero-glass: rgba(255,255,255,.2);
  --hero-shadow: 0 10px 30px rgba(0,0,0,.25);
  --hero-radius: 24px;
  --hero-spacing: clamp(16px,2vw,28px);
  --hero-ease: cubic-bezier(.22,1,.36,1);

  /* Dimensões Otimizadas (REDUZIDAS) */
  --hero-height-desktop: min(55vh, 500px);
  --hero-height-tablet: 65vh;
  --hero-height-mobile: 70vh;
  --hero-height-small: 60vh;
  --hero-height-tiny: 50vh;
}

/* ====================================
   HERO WRAPPER - CONTAINER PRINCIPAL
   ==================================== */
.hero {
  position: relative;
  isolation: isolate;
  height: var(--hero-height-desktop);
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: clamp(16px,3vw,40px);
  background:
    radial-gradient(1200px 800px at 10% 10%, #10223d 0%, #0b1428 40%, #0b1220 70%),
    linear-gradient(180deg,#0b1220 0%, #08101e 100%);
}

/* ====================================
   EFEITOS VISUAIS - AURORA & BUBBLES
   ==================================== */

/* Aurora / Glow Layers */
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: -10%;
  z-index: -2;
  filter: blur(60px) saturate(120%);
  background:
    radial-gradient(600px 400px at 20% 80%, rgba(39,195,216,.20), transparent 60%),
    radial-gradient(700px 500px at 80% 20%, rgba(125,245,210,.18), transparent 60%),
    radial-gradient(900px 700px at 50% 50%, rgba(39,195,216,.12), transparent 70%);
  animation: aurora 14s linear infinite alternate;
}

.hero::after {
  animation-duration: 18s;
  animation-direction: alternate-reverse;
}

@keyframes aurora {
  to {
    transform: translate3d(0,-2%,0) scale(1.02);
  }
}

/* Floating Bubbles */
.bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%,
    rgba(255,255,255,.9),
    rgba(255,255,255,.35) 40%,
    rgba(255,255,255,.16) 60%,
    rgba(255,255,255,0) 70%);
  box-shadow: inset 0 1px 4px rgba(255,255,255,.35);
  filter: blur(.2px);
  animation: rise var(--dur) linear infinite;
  opacity: .25;
}

@keyframes rise {
  from { transform: translateY(5%); }
  to { transform: translateY(-110%); }
}

/* ====================================
   SLIDER - SISTEMA DE SLIDES
   ==================================== */
.slides {
  position: relative;
  width: 100%;
  max-width: 1200px;
  height: 100%;
  display: grid;
  align-content: center;
  z-index: 1;
}

.slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(20px, 3vw, 40px);
  align-items: center;
  padding: clamp(16px, 3vw, 40px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px) scale(.98);
  transition: all .9s var(--hero-ease);
  z-index: 1;
  pointer-events: none;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  z-index: 2;
}

/* ====================================
   CARD CONTENT - TEXTO E BOTÕES
   ==================================== */
.card {
  background: linear-gradient(180deg, rgba(255,255,255,.22), rgba(255,255,255,.08));
  border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(14px) saturate(140%);
  border-radius: var(--hero-radius);
  box-shadow: var(--hero-shadow);
  padding: clamp(18px, 3.2vw, 38px);
  color: #fff;
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-grid;
  grid-auto-flow: column;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .78rem;
  color: #e6fffb;
}

.eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: conic-gradient(from 180deg, var(--hero-brand), var(--hero-brand-2));
  box-shadow: 0 0 0 6px rgba(39,195,216,.12);
}

.hero h1 {
  font-size: clamp(30px, 5.2vw, 64px);
  line-height: 1.05;
  margin: .45em 0 .35em;
  color: #fff;
  text-shadow: 0 6px 18px rgba(0,0,0,.3);
}

.lead {
  font-size: clamp(15px, 1.4vw, 18px);
  color: #e8fbff;
  opacity: .96;
}

.bullets {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px 18px;
  margin: 20px 0 28px;
}

.bullets li {
  display: grid;
  grid-auto-flow: column;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: #eafcff;
}

.check {
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  border-radius: 6px;
  background: linear-gradient(145deg, var(--hero-brand), var(--hero-brand-2));
  box-shadow: 0 6px 16px rgba(39,195,216,.5);
}

.check svg {
  width: 12px;
  height: 12px;
  fill: #05222a;
}

/* ====================================
   BOTÕES CTA
   ==================================== */
.cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  --pad: clamp(12px, 1.2vw, 14px) clamp(18px,2vw,22px);
  position: relative;
  border: none;
  border-radius: 14px;
  padding: var(--pad);
  font-weight: 700;
  letter-spacing: .02em;
  cursor: pointer;
  transition: transform .2s var(--hero-ease), box-shadow .2s var(--hero-ease);
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
}

.btn.primary {
  background: linear-gradient(135deg, var(--hero-brand), var(--hero-brand-2));
  color: #042329;
}

.btn.ghost {
  background: rgba(255,255,255,.08);
  color: #e9feff;
  border: 1px solid rgba(255,255,255,.25);
}

.btn:where(:hover,:focus-visible) {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(39,195,216,.35);
}

/* Sparkle Effect */
.btn .sparkles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
  pointer-events: none;
}

.btn .sparkles i {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #fff, rgba(255,255,255,.2));
  filter: blur(.3px);
  opacity: 0;
  transform: scale(.6);
}

.btn:hover .sparkles i {
  animation: sparkle .8s ease-out forwards;
}

@keyframes sparkle {
  30% { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: translateY(-16px) scale(0.2); }
}

/* ====================================
   PRODUCT FIGURE - LADO DIREITO
   ==================================== */
.figure {
  position: relative;
  height: 100%;
  display: grid;
  place-items: center;
  padding: clamp(8px,2vw,20px);
  overflow: visible;
  z-index: 3;
}

.product-card {
  position: relative;
  aspect-ratio: 5/6;
  width: min(380px, 75%);
  max-height: min(420px, 60vh);
  border-radius: calc(var(--hero-radius) + 8px);
  background:
    linear-gradient(145deg, rgba(255,255,255,.35), rgba(255,255,255,.08)),
    radial-gradient(circle at 30% 20%, rgba(39,195,216,.3), transparent 60%),
    radial-gradient(circle at 70% 80%, rgba(125,245,210,.25), transparent 65%),
    radial-gradient(ellipse at 50% 50%, rgba(39,195,216,.15), transparent 70%);
  border: 2px solid rgba(255,255,255,.4);
  backdrop-filter: blur(20px) saturate(150%);
  box-shadow:
    0 25px 50px rgba(0,0,0,.25),
    0 10px 20px rgba(39,195,216,.15),
    inset 0 1px 0 rgba(255,255,255,.5);
  overflow: hidden;
  display: grid;
  align-content: end;
  padding: clamp(16px, 2.5vw, 24px);
  transform: perspective(1200px) rotateY(-8deg) rotateX(3deg);
  transform-style: preserve-3d;
  transition: all .9s var(--hero-ease);
  contain: layout style;
  z-index: 1;
  isolation: isolate;
}

.figure:hover .product-card {
  transform: perspective(1200px) rotateY(-2deg) rotateX(1deg) scale(1.02);
  box-shadow:
    0 35px 70px rgba(0,0,0,.3),
    0 15px 30px rgba(39,195,216,.25),
    inset 0 1px 0 rgba(255,255,255,.6);
}

/* ====================================
   PRODUCT ELEMENTS
   ==================================== */
.badge {
  position: absolute;
  top: 18px;
  left: 18px;
  display: inline-grid;
  grid-auto-flow: column;
  gap: 8px;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #042329;
  background:
    linear-gradient(135deg, var(--hero-brand-2) 0%, var(--hero-brand) 100%),
    linear-gradient(145deg, rgba(255,255,255,.9), rgba(255,255,255,.6));
  background-blend-mode: overlay;
  border: 1px solid rgba(255,255,255,.6);
  box-shadow:
    0 12px 24px rgba(39,195,216,.4),
    0 4px 8px rgba(0,0,0,.1),
    inset 0 1px 0 rgba(255,255,255,.8);
  backdrop-filter: blur(10px);
  transform: translateZ(20px);
  transition: all .3s var(--hero-ease);
}

.badge:hover {
  transform: translateZ(25px) scale(1.05);
}

.bottle {
  position: absolute;
  inset: auto 8% 18% 8%;
  margin: auto;
  width: 68%;
  max-width: 300px;
  height: auto;
  max-height: 65%;
  transform: translateZ(50px) rotate(-4deg);
  filter:
    drop-shadow(0 20px 30px rgba(0,0,0,.25))
    drop-shadow(0 8px 16px rgba(39,195,216,.2));
  object-fit: contain;
  transition: transform .6s var(--hero-ease);
}

.figure:hover .bottle {
  transform: translateZ(60px) rotate(-2deg) scale(1.02);
}

.foam {
  position: absolute;
  inset: auto 2% -6% 2%;
  height: 38%;
  max-height: 130px;
  background:
    radial-gradient(120px 60px at 18% 35%, rgba(255,255,255,.9), transparent 60%),
    radial-gradient(150px 75px at 45% 55%, rgba(255,255,255,.95), transparent 60%),
    radial-gradient(130px 65px at 70% 45%, rgba(255,255,255,1), transparent 60%),
    radial-gradient(160px 80px at 88% 65%, rgba(255,255,255,.85), transparent 60%),
    radial-gradient(100px 50px at 25% 70%, rgba(125,245,210,.3), transparent 50%);
  opacity: .9;
  filter: blur(2px);
  animation: foam 8s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 2;
}

@keyframes foam {
  0% { transform: translateY(0) scale(1); opacity: .9; }
  50% { transform: translateY(6px) scale(1.02); opacity: .95; }
  100% { transform: translateY(12px) scale(1.01); opacity: .85; }
}

.labels {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  z-index: 3;
  position: relative;
}

.tag {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #0a2328;
  padding: 8px 14px;
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.95), rgba(255,255,255,.8)),
    radial-gradient(circle at 30% 30%, rgba(125,245,210,.2), transparent 60%);
  border: 1px solid rgba(255,255,255,.9);
  box-shadow:
    0 8px 16px rgba(0,0,0,.15),
    0 2px 4px rgba(39,195,216,.1),
    inset 0 1px 0 rgba(255,255,255,1);
  backdrop-filter: blur(8px);
  transform: translateZ(10px);
  transition: all .3s var(--hero-ease);
}

.tag:hover {
  transform: translateZ(15px) scale(1.05);
}

/* ====================================
   TRANSITION EFFECTS
   ==================================== */
.wipe {
  position: absolute;
  inset: -2px;
  background: linear-gradient(120deg,
    rgba(39,195,216,1) 0%,
    rgba(125,245,210,1) 50%,
    rgba(39,195,216,1) 100%);
  transform-origin: left center;
  transform: scaleX(0);
  z-index: 3;
  box-shadow: 0 0 0 1px rgba(255,255,255,.35) inset;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.wipe.animate {
  animation: squeegee 900ms var(--hero-ease) forwards;
}

@keyframes squeegee {
  0% { transform: scaleX(0); }
  50% { transform: scaleX(1); }
  100% { transform: scaleX(0); transform-origin: right center; }
}

/* ====================================
   RESPONSIVO - DESKTOP FORÇA HERO CONTENT
   ==================================== */
@media screen and (min-width: 641px) {
  /* LAYOUT DESKTOP HERO BANNER */
  .slides {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
  }

  .slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    max-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease, transform 0.8s ease;
    transform: translateY(20px);
    z-index: 1;
    padding: 0;
    text-align: center;
    flex-direction: column;
    pointer-events: none;
    overflow: hidden;
    box-sizing: border-box;
  }

  .slide.active {
    display: flex;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    z-index: 2;
    pointer-events: auto;
  }

  .slide:not(.active) {
    display: flex;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  /* CARD CONTIDO DENTRO DO HERO BANNER */
  .slide .card {
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    max-width: calc(100% - 40px);
    max-height: calc(100% - 40px);
    background: none;
    backdrop-filter: none;
    border-radius: 0;
    padding: 20px;
    margin: 20px;
    border: none;
    box-shadow: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    color: #fff;
    overflow: hidden;
    box-sizing: border-box;
    min-height: 0;
  }

  /* CONTEÚDO AUTO-AJUSTÁVEL DO HERO BANNER */
  .slide .card h1,
  .hero h1 {
    color: white;
    margin: 0 0 15px 0;
    font-size: clamp(24px, 5vw, 48px);
    line-height: 1.1;
    font-weight: 800;
    text-shadow: 0 8px 24px rgba(0,0,0,.8), 0 4px 12px rgba(0,0,0,.6);
    flex: 0 0 auto;
    max-width: 90%;
  }

  .slide .card .eyebrow {
    margin: 0 0 10px 0;
    font-size: clamp(12px, 2vw, 16px);
    flex: 0 0 auto;
    color: var(--hero-brand-2);
    text-shadow: 0 2px 8px rgba(0,0,0,.6);
  }

  .slide .card p,
  .slide .card .lead {
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 15px 0;
    font-size: clamp(14px, 2.2vw, 20px);
    line-height: 1.3;
    opacity: 1;
    flex: 0 0 auto;
    max-width: 85%;
    text-shadow: 0 4px 16px rgba(0,0,0,.7);
  }

  .slide .card ul,
  .slide .card .bullets {
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 20px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    list-style: none;
    padding: 0;
    flex: 1 1 auto;
    max-width: 75%;
    overflow-y: auto;
    max-height: 30%;
  }

  .slide .card .bullets li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: #eafcff;
    font-size: clamp(12px, 1.8vw, 16px);
    flex: 0 0 auto;
    text-shadow: 0 2px 10px rgba(0,0,0,.7);
  }

  .slide .card .cta {
    margin: 0;
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    flex: 0 0 auto;
  }

  .slide .card .btn {
    padding: clamp(10px, 1.5vw, 14px) clamp(16px, 2.5vw, 20px);
    font-size: clamp(12px, 1.6vw, 16px);
    font-weight: 700;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--hero-ease);
    letter-spacing: .02em;
    text-transform: none;
    box-shadow: 0 6px 18px rgba(0,0,0,.4);
  }

  .slide .card .btn.primary {
    background: linear-gradient(135deg, var(--hero-brand), var(--hero-brand-2));
    color: #042329;
    box-shadow: 0 8px 24px rgba(39,195,216,.4);
  }

  .slide .card .btn.ghost {
    background: rgba(255,255,255,.08);
    color: #e9feff;
    border: 1px solid rgba(255,255,255,.25);
    box-shadow: 0 8px 24px rgba(0,0,0,.25);
  }

  .slide .card .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(39,195,216,.35);
  }

  /* OCULTAR ELEMENTOS VISUAIS NO DESKTOP */
  .slide .figure,
  .slide .product-card,
  .slide .bottle,
  .slide .foam,
  .slide .labels,
  .slide .badge {
    display: none;
    visibility: hidden;
    opacity: 0;
  }
}

/* ====================================
   RESPONSIVO - DESKTOP GRANDE
   ==================================== */
@media (min-width: 1200px) {
  .hero {
    height: min(60vh, 550px);
    padding: clamp(20px, 3vw, 40px);
  }

  .slides {
    max-width: 1400px;
  }

  /* OTIMIZAÇÕES ESPECÍFICAS DESKTOP GRANDE (REDUZIDAS) */
  .slide .card {
    max-width: 800px;
    padding: clamp(25px, 4vw, 40px);
  }

  .slide .card h1,
  .hero h1 {
    font-size: clamp(28px, 5vw, 48px);
    margin: clamp(15px, 2.5vw, 22px) 0;
  }

  .slide .card p,
  .slide .card .lead {
    font-size: clamp(16px, 2vw, 20px);
    margin: clamp(12px, 2vw, 18px) 0;
  }

  .slide .card .bullets li {
    font-size: clamp(14px, 1.7vw, 18px);
  }

  .slide .card .btn {
    padding: clamp(12px, 2vw, 16px) clamp(20px, 3vw, 28px);
    font-size: clamp(13px, 1.7vw, 17px);
  }
}

/* ====================================
   RESPONSIVO - DESKTOP PADRÃO (OTIMIZAÇÕES)
   ==================================== */
@media (min-width: 981px) and (max-width: 1199px) {
  .hero {
    height: var(--hero-height-desktop);
    padding: clamp(20px, 4vw, 50px);
  }

  .slide .card {
    max-width: 750px;
    padding: clamp(22px, 3.5vw, 35px);
  }

  .slide .card h1,
  .hero h1 {
    font-size: clamp(26px, 4.5vw, 44px);
    margin: clamp(14px, 2.5vw, 20px) 0;
  }

  .slide .card p,
  .slide .card .lead {
    font-size: clamp(15px, 2vw, 19px);
    margin: clamp(11px, 2vw, 17px) 0;
  }

  .slide .card .bullets li {
    font-size: clamp(13px, 1.6vw, 17px);
  }

  .slide .card .btn {
    padding: clamp(11px, 1.8vw, 15px) clamp(20px, 2.8vw, 26px);
    font-size: clamp(12px, 1.6vw, 16px);
  }
}

/* ====================================
   RESPONSIVO - DESKTOP ULTRAWIDE (OTIMIZAÇÕES)
   ==================================== */
@media (min-width: 1600px) {
  .hero {
    height: min(65vh, 650px);
    padding: clamp(25px, 4vw, 60px);
  }

  .slides {
    max-width: 1600px;
  }

  .slide .card {
    max-width: 900px;
    padding: clamp(30px, 5vw, 50px);
  }

  .slide .card h1,
  .hero h1 {
    font-size: clamp(32px, 6vw, 56px);
    margin: clamp(18px, 3.5vw, 26px) 0;
  }

  .slide .card p,
  .slide .card .lead {
    font-size: clamp(17px, 2.3vw, 22px);
    margin: clamp(14px, 2.5vw, 20px) 0;
  }

  .slide .card .bullets li {
    font-size: clamp(15px, 1.9vw, 19px);
  }

  .slide .card .btn {
    padding: clamp(14px, 2.3vw, 18px) clamp(24px, 3.5vw, 30px);
    font-size: clamp(14px, 1.9vw, 18px);
  }
}

/* ====================================
   RESPONSIVO - TABLET
   ==================================== */
@media (max-width: 980px) {
  .hero {
    height: auto;
    min-height: var(--hero-height-tablet);
    padding: clamp(20px, 4vw, 40px) clamp(16px, 3vw, 32px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .slides {
    position: static;
    height: auto;
    width: 100%;
    max-width: none;
    display: block;
  }

  .slide {
    position: static;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: clamp(24px, 5vw, 40px);
    padding: clamp(20px, 3vw, 32px);
    opacity: 1;
    transform: none;
    transition: none;
    min-height: auto;
  }

  .slide:not(.active) {
    display: none;
  }

  .card {
    text-align: center;
    width: 100%;
    max-width: 600px;
    margin: 0 auto clamp(20px, 4vw, 32px);
    order: 2;
  }

  .figure {
    width: 100%;
    max-width: 500px;
    height: auto;
    order: 1;
    min-height: 320px;
    max-height: 450px;
  }

  .product-card {
    width: min(420px, 90%);
    max-height: 400px;
    aspect-ratio: 4/5;
    transform: perspective(800px) rotateY(-4deg) rotateX(2deg);
  }

  .bullets {
    grid-template-columns: 1fr;
    gap: 10px;
    justify-items: center;
  }
}

/* ====================================
   RESPONSIVO - MOBILE
   ==================================== */
@media (max-width: 640px) {
  .hero {
    padding: clamp(16px, 4vw, 24px) clamp(12px, 3vw, 20px);
    min-height: var(--hero-height-mobile);
  }

  .slide {
    padding: clamp(16px, 3vw, 24px);
    gap: clamp(20px, 5vw, 32px);
  }

  .hero h1 {
    font-size: clamp(24px, 6vw, 48px);
    line-height: 1.1;
    margin: 0.3em 0 0.25em;
  }

  .lead {
    font-size: clamp(14px, 3.5vw, 16px);
    line-height: 1.4;
  }

  .bullets {
    grid-template-columns: 1fr;
    gap: 8px;
    margin: 16px 0 20px;
  }

  .bullets li {
    font-size: clamp(13px, 3vw, 14px);
    gap: 8px;
  }

  .check {
    width: 16px;
    height: 16px;
  }

  .cta {
    gap: 10px;
    flex-direction: column;
  }

  .btn {
    --pad: clamp(14px, 3vw, 16px) clamp(20px, 4vw, 24px);
    font-size: clamp(14px, 3.5vw, 16px);
    width: 100%;
    text-align: center;
  }

  .figure {
    min-height: 280px;
    max-height: 350px;
    max-width: 400px;
  }

  .product-card {
    width: min(360px, 95%);
    max-height: 340px;
    aspect-ratio: 3/4;
    transform: perspective(600px) rotateY(-3deg) rotateX(1deg);
  }
}

/* ====================================
   RESPONSIVO - MOBILE PEQUENO
   ==================================== */
@media (max-width: 480px) {
  .hero {
    min-height: var(--hero-height-small);
    padding: clamp(12px, 3vw, 16px);
  }

  .figure {
    min-height: 220px;
    max-height: 280px;
    max-width: 300px;
  }

  .product-card {
    width: min(280px, 90%);
    max-height: 240px;
  }

  .hero h1 {
    font-size: clamp(20px, 5vw, 26px);
  }

  .lead {
    font-size: clamp(12px, 3vw, 14px);
  }
}

/* ====================================
   RESPONSIVO - MOBILE EXTRA PEQUENO
   ==================================== */
@media (max-width: 360px) {
  .hero {
    min-height: var(--hero-height-tiny);
    padding: clamp(10px, 2.5vw, 12px);
  }

  .figure {
    min-height: 180px;
    max-height: 220px;
    max-width: 260px;
  }

  .product-card {
    width: min(240px, 95%);
    max-height: 200px;
  }

  .hero h1 {
    font-size: clamp(18px, 4.5vw, 22px);
  }

  .lead {
    font-size: clamp(11px, 2.5vw, 12px);
  }

  .btn {
    font-size: clamp(10px, 2.5vw, 11px);
  }
}

/* ====================================
   LANDSCAPE ADJUSTMENTS
   ==================================== */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding: clamp(8px, 2vw, 12px);
  }

  .slide {
    padding: clamp(8px, 2vw, 12px);
    gap: clamp(10px, 2.5vw, 14px);
  }

  .figure {
    min-height: 180px;
    max-height: 220px;
  }

  .product-card {
    max-height: 180px;
  }

  .hero h1 {
    font-size: clamp(16px, 4vw, 22px);
  }
}

/* ====================================
   ACESSIBILIDADE
   ==================================== */
@media (prefers-reduced-motion: reduce) {
  .hero::before,
  .hero::after,
  .foam,
  .bubble {
    animation: none;
  }

  .slide,
  .product-card,
  .btn,
  .tag,
  .badge {
    transition: none;
  }
}