@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --ink: #202124;
  --muted: #5f6368;
  --line: #dadce0;
  --google-blue: #17211d;
  --google-blue-hover: #2c3a34;
  --google-blue-bg: #dfe8e2;
  --google-blue-text: #17211d;
  --radius: 28px;
  --radius-sm: 16px;
  --shadow: 0 12px 32px rgba(0, 0, 0, .08);
  --container: min(1280px, calc(100vw - 48px));
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: var(--bg);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  font-family: "Manrope", sans-serif;
  -webkit-tap-highlight-color: transparent !important;
}

a,
button,
input,
select,
textarea,
summary,
[role="button"] {
  -webkit-tap-highlight-color: transparent !important;
  -webkit-touch-callout: none;
}

button:focus,
a:focus,
button:active,
a:active {
  outline: none !important;
}

body {
  font-family: "Manrope", sans-serif;
}

button,
input,
select,
textarea {
  font-family: "Manrope", sans-serif;
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip
}

body.menu-open {
  overflow: hidden
}

a {
  color: inherit;
  text-decoration: none
}

button,
input {
  font: inherit
}

button {
  color: inherit
}

img,
svg {
  display: block;
  max-width: 100%
}

.container {
  width: var(--container);
  margin-inline: auto
}

/* TYPOGRAPHY */
.eyebrow {
  font: 700 11px/1.2 "Manrope", sans-serif;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted)
}

.section-title {
  font: 600 clamp(28px, 3.8vw, 48px)/1.08 "Manrope", sans-serif;
  letter-spacing: -.03em;
  margin: 0
}

.body-lg {
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.5;
  color: var(--muted)
}

.body {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted)
}

.small {
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted)
}

/* GLOBAL HEADER (GOOGLE STORE STYLE — REFERENCE ACCURATE) */
.global-header {
  height: 56px;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #e8eaed;
}

.global-header .inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
}

/* Brand block */
.brand-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-right: 24px;
  border-right: none;
  flex-shrink: 0;
}

.brand-g {
  display: block;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.brand-name {
  font: 600 18px/1 "Manrope", sans-serif;
  letter-spacing: -.02em;
  color: #202124;
}

.brand-dot {
  color: var(--google-blue)
}

/* Nav centered desktop */
.desktop-cat-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.desktop-cat-nav a {
  font-size: 13px;
  font-weight: 500;
  color: #3c4043;
  padding: 6px 10px;
  border-radius: 4px;
  transition: .15s color, .15s background;
  white-space: nowrap;
}

.desktop-cat-nav a:hover {
  color: #202124;
  background: #f1f3f4;
}

/* Right actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.icon-btn {
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #5f6368;
  position: relative;
  transition: .15s background;
  margin: 0;
  flex-shrink: 0;
}

.icon-btn:hover {
  background: #f1f3f4;
}

.icon {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-sm {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.avatar-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 0;
  overflow: hidden;
  background: #e8f0fe;
  color: var(--google-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin: 0;
  flex-shrink: 0;
  text-decoration: none;
}

.btn-signin {
  background: #17211d;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  height: 36px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  transition: .15s background;
  margin: 0;
  white-space: nowrap;
  text-decoration: none;
  flex-shrink: 0;
}

@media (min-width: 901px) {
  .avatar-btn {
    display: none !important;
  }

  .btn-signin {
    display: inline-flex !important;
  }
}

.btn-signin:hover {
  background: var(--google-blue-hover)
}

.mobile-menu-circle-btn {
  display: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--google-blue);
  color: #fff;
  border: 0;
  place-items: center;
  cursor: pointer;
}

.mobile-menu-circle-btn .icon {
  stroke: #fff
}

.mobile-drawer {
  position: fixed;
  inset: 64px 0 0;
  background: #fff;
  z-index: 99;
  padding: 24px 20px;
  display: none;
}

.mobile-drawer.open {
  display: block
}

.mobile-drawer a {
  display: block;
  font: 500 22px/1.2 "Manrope";
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  color: #202124;
}


.product-sticky-nav {
  position: sticky;
  top: 72px;
  z-index: 91;
  width: calc(100% - 32px);
  max-width: 1400px;
  margin-inline: auto;
  margin-top: 12px;
  margin-bottom: 12px;
  padding: 4px 8px 4px 24px;
  border-radius: 100px;
  background: transparent;
  box-shadow: none;
  border: 1px solid transparent;
  transition: background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.product-sticky-nav .inner {
  width: 100%;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.product-title-group {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
}

/* Produto nome — referência Google Home Speaker: 20px 500 weight */
.product-name {
  font: 500 20px/1.2 "Manrope", sans-serif;
  color: #191c1d;
  white-space: nowrap;
  letter-spacing: -0.01em;
  margin-right: 8px;
}

/* PILL TABS — Tonal Choice Chips idênticos à referência do Google */
.pill-tabs-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border-radius: 100px;
  background: transparent;
}

.pill-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  height: 36px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: #3c4043;
  background: #f8f9fa;
  white-space: nowrap;
  transition: background .15s ease, color .15s ease;
  line-height: 1;
  text-decoration: none;
}

.pill-tab:hover {
  background: rgba(60, 64, 67, 0.08);
  color: #191c1d;
}

/* Tab ativa — fundo #e8f0fe / #d3e3fd, texto #1967d2 / #0b57d0 */
.pill-tab.active {
  background: #e8f0fe;
  color: #1967d2;
  font-weight: 500;
}

.pill-tab.active:hover {
  background: rgba(25, 103, 210, 0.16);
  color: #0b57d0;
}

.product-price-action {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.sticky-price-block {
  text-align: right;
}

.sticky-price {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #191c1d;
  line-height: 1.2;
}

.sticky-installment {
  display: block;
  font-size: 11px;
  color: #5f6368;
  line-height: 1.2;
  margin-top: 2px;
}

.btn-buy-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0b57d0;
  color: #ffffff;
  font-weight: 500;
  font-size: 14px;
  padding: 0 24px;
  height: 40px;
  border-radius: 100px;
  transition: background .15s ease;
  white-space: nowrap;
  letter-spacing: 0;
  border: 0;
  cursor: pointer;
}

.btn-buy-primary:hover {
  background: #0842a0;
}

/* QUANDO SCROLLED -> Floating Pill Capsule exata da referência Google Store */
.product-sticky-nav.is-scrolled {
  background: #ffffff;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, .15);
  border-color: transparent;
  padding: 4px 8px 4px 24px;
}

/* HERO SECTION / FIRST FOLD */
.hero-section {
  padding: 12px 0 40px;
}

.google-hero-card {
  border-radius: 28px;
  height: 540px;
  min-height: 540px;
  max-height: 540px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
  transition: background .4s ease;
}

.hero-left-content {
  padding: clamp(36px, 4.5vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  z-index: 2;
}

.hero-eyebrow {
  font: 700 12px/1.2 "Manrope", sans-serif;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #5f6368;
  margin-bottom: 12px;
}

.hero-display-title {
  font: 600 clamp(36px, 4.5vw, 68px)/1.04 "Manrope", sans-serif;
  letter-spacing: -.04em;
  margin: 0 0 16px;
  color: #202124;
}

.hero-subtitle {
  font-size: 16px;
  line-height: 1.5;
  color: #4a4d51;
  max-width: 32rem;
  margin: 0 0 24px;
}

.hero-pricing-block {
  margin-bottom: 20px;
}

.hero-main-price {
  display: block;
  font: 700 28px/1 "Manrope", sans-serif;
  color: #202124;
}

.hero-sub-price {
  display: block;
  font-size: 13px;
  color: #5f6368;
  margin-top: 4px;
}

.hero-cta-row {
  margin-bottom: 32px;
}

.btn-buy-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--google-blue);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 32px;
  border-radius: 999px;
  transition: .2s background, .2s transform;
}

.btn-buy-hero:hover {
  background: var(--google-blue-hover);
  transform: translateY(-1px);
}

/* COLOR SWATCH SELECTOR */
.hero-color-selector {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

.swatch-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
  display: grid;
  place-items: center;
  transition: .2s transform;
}

.swatch-circle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: block;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .15);
}

.swatch-btn.active {
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--google-blue);
}

.swatch-label {
  font-size: 13px;
  color: #3c4043;
}

.swatch-label strong {
  font-weight: 600;
  color: #202124;
}

/* RIGHT VISUAL / CAROUSEL */
.hero-right-visual {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: transparent;
}

.hero-image-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
}

.hero-product-img {
  position: absolute;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  transition: opacity .25s ease, transform .4s ease;
  filter: none;
}

@media (min-width: 901px) {
  .google-hero-card.is-full-hero .hero-right-visual,
  .google-hero-card:has(.hero-product-img[src*="hero.webp"]) .hero-right-visual {
    width: 100%;
    left: 0;
  }

  .google-hero-card:not(.is-full-hero) .hero-right-visual,
  .google-hero-card:not(:has(.hero-product-img[src*="hero.webp"])) .hero-right-visual {
    background: #ffffff;
  }

  .google-hero-card:not(.is-full-hero) .hero-product-img,
  .google-hero-card:not(:has(.hero-product-img[src*="hero.webp"])) .hero-product-img {
    position: absolute;
    max-width: 85%;
    max-height: 85%;
    width: auto;
    height: auto;
    object-fit: contain;
  }

  .google-hero-card:not(.is-full-hero),
  .google-hero-card:not(:has(.hero-product-img[src*="hero.webp"])) {
    background: #ffffff !important;
  }
}

/* EXCLUSIVELY FOR campaign/hero.webp FULL CARD BACKGROUND FILL (DESKTOP ONLY) */
@media (min-width: 901px) {

  .google-hero-card:has(.hero-product-img[src*="hero.webp"]),
  .google-hero-card.is-full-hero {
    position: relative;
  }

  .google-hero-card:has(.hero-product-img[src*="hero.webp"])::before,
  .google-hero-card.is-full-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(238, 241, 238, 0.94) 0%, rgba(238, 241, 238, 0.78) 45%, rgba(238, 241, 238, 0) 75%);
    z-index: 2;
    pointer-events: none;
    border-radius: 28px;
  }

  .google-hero-card:has(.hero-product-img[src*="hero.webp"]) .hero-left-content,
  .google-hero-card.is-full-hero .hero-left-content {
    position: relative;
    z-index: 3;
  }

  .google-hero-card:has(.hero-product-img[src*="hero.webp"]) .hero-right-visual,
  .google-hero-card.is-full-hero .hero-right-visual {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }

  .google-hero-card:has(.hero-product-img[src*="hero.webp"]) .hero-image-wrapper,
  .google-hero-card.is-full-hero .hero-image-wrapper {
    padding: 0;
    width: 100%;
    height: 100%;
  }

  .google-hero-card:has(.hero-product-img[src*="hero.webp"]) .hero-product-img,
  .google-hero-card.is-full-hero .hero-product-img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    filter: none;
  }
}

.hero-carousel-pill,
.mobile-dots-pill {
  z-index: 4;
}

/* CAROUSEL PILL CONTROL (DESKTOP) */
.hero-carousel-pill {
  position: absolute;
  right: 28px;
  bottom: 28px;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: 999px;
  padding: 6px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .06);
}

.carousel-arrow-btn {
  background: none;
  border: 0;
  padding: 4px;
  cursor: pointer;
  display: grid;
  place-items: center;
  color: #3c4043;
  border-radius: 50%;
  transition: .2s background;
}

.carousel-arrow-btn:hover {
  background: rgba(0, 0, 0, .06)
}

.carousel-counter {
  font-size: 12px;
  font-weight: 600;
  color: #3c4043;
  min-width: 24px;
  text-align: center;
}

.mobile-dots-pill {
  display: none;
}

.mobile-bottom-sticky-bar {
  display: none !important;
}

/* PROMO STRIP BELOW HERO */
.promo-strip-card {
  margin-top: 16px;
  background: #f8f9fa;
  border-radius: 20px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid #f1f3f4;
}

.promo-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.promo-badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #fff;
  display: grid;
  place-items: center;
  color: var(--google-blue);
  box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
}

.promo-text {
  display: flex;
  flex-direction: column;
  font-size: 13px;
  line-height: 1.4;
}

.promo-text strong {
  color: #202124;
  font-weight: 600;
}

.promo-text span {
  color: #5f6368;
}

.promo-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--google-blue);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.promo-link:hover {
  text-decoration: underline
}

/* OTHER SECTIONS */
.intro {
  padding: 80px 0
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 80px;
  align-items: start
}

.feature-list {
  display: grid;
  gap: 22px
}

.feature-line {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  align-items: start
}

.feature-line .num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 700
}

.feature-line b {
  display: block;
  margin-bottom: 4px
}

.feature-line span {
  font-size: 14px;
  color: var(--muted)
}

.center-intro {
  text-align: center;
  padding: 70px 0 40px
}

.center-intro .section-title {
  max-width: 16ch;
  margin: 10px auto 16px
}

.center-intro .body {
  max-width: 620px;
  margin: 0 auto
}

.spark {
  width: 34px;
  height: 34px;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  color: var(--google-blue)
}

.feature-media {
  border-radius: 28px;
  min-height: 560px;
  position: relative;
  overflow: hidden;
  background: #e8f0fe;
}

.feature-media .product-giant,
.feature-media .campaign-cover,
.feature-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  object-fit: cover;
  filter: none;
  border-radius: 28px;
  z-index: 1;
}

.feature-media .giant-copy {
  position: absolute;
  left: 6%;
  bottom: 8%;
  top: auto;
  font: 600 clamp(30px, 4.8vw, 66px)/1 "Manrope", sans-serif;
  letter-spacing: -.04em;
  color: #ffffff;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
  max-width: 14ch;
  z-index: 2;
}

.feature-media .play {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
  cursor: pointer;
  z-index: 3;
}

.caption {
  margin-top: 18px;
  max-width: 580px
}

.caption b {
  display: block;
  margin-bottom: 6px
}

.card-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin-top: 44px
}

.story-card {
  min-height: 480px;
  height: 480px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  background: #111;
  box-shadow: none;
  cursor: pointer;
}

/* Image fills ENTIRE card 100% */
.story-card img {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: cover !important;
  object-position: center top !important;
  border-radius: 24px !important;
  z-index: 1 !important;
  transition: transform .6s cubic-bezier(0.25, 0, 0.25, 1);
}

.story-card:hover img {
  transform: scale(1.04);
}

/* Degradê de Glassmorfismo apenas nos 30% inferiores */
.story-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to top,
      rgba(10, 10, 12, 0.85) 0%,
      rgba(10, 10, 12, 0.60) 20%,
      rgba(10, 10, 12, 0.15) 35%,
      transparent 50%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  mask-image: linear-gradient(to top,
      rgba(0, 0, 0, 1) 0%,
      rgba(0, 0, 0, 1) 20%,
      rgba(0, 0, 0, 0.6) 35%,
      rgba(0, 0, 0, 0) 50%);
  -webkit-mask-image: linear-gradient(to top,
      rgba(0, 0, 0, 1) 0%,
      rgba(0, 0, 0, 1) 20%,
      rgba(0, 0, 0, 0.6) 35%,
      rgba(0, 0, 0, 0) 50%);
  pointer-events: none;
}

/* Content container floating over the glassmorphism gradient */
.story-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 28px 24px;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 0;
}

.story-card h3 {
  font: 700 22px/1.25 "Manrope", sans-serif;
  letter-spacing: -.01em;
  color: #ffffff;
  margin: 0 0 6px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.story-card p {
  font-size: 14px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

.section-space {
  padding: 90px 0
}

.command-stage {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  min-height: 500px;
  border-radius: 28px;
  overflow: hidden;
  background: #e8f0fe
}

.command-copy {
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center
}

.quote {
  font: 500 clamp(32px, 4vw, 56px)/1 "Manrope";
  letter-spacing: -.04em;
  color: var(--google-blue-text)
}

.command-scene {
  background: linear-gradient(140deg, #e8ecef, #d2d9de);
  position: relative;
  overflow: hidden
}

.command-scene .scene-glasses {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: cover !important;
  transform: none !important;
  filter: none !important;
  left: 0 !important;
  top: 0 !important;
}

.dots {
  display: flex;
  gap: 7px;
  justify-content: center;
  margin-top: 22px
}

.dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d3d5d1
}

.dots .active {
  width: 24px;
  border-radius: 6px;
  background: var(--google-blue)
}

.handsfree {
  text-align: center;
  padding: 80px 0 0
}

.handsfree-stage {
  height: 540px;
  margin-top: 40px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(#fff, #f3f6f0)
}

.handsfree-stage .product-giant {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: cover !important;
  left: 0 !important;
  bottom: 0 !important;
  filter: none !important;
}

.voice-phrase {
  position: absolute;
  font: 500 clamp(18px, 2vw, 28px)/1.2 "Manrope";
  letter-spacing: -.03em;
  color: #ffffff;
  max-width: 220px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 8px 12px;
}


.voice-phrase.p1 {
  left: 4%;
  top: 28%
}

.voice-phrase.p2 {
  left: 43%;
  top: 10%;
  color: var(--google-blue)
}

.voice-phrase.p3 {
  right: 4%;
  top: 28%;
  text-align: right
}

.feature-four {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 34px;
  text-align: left
}

.dark-feature {
  background: #17191c;
  color: #fff;
  padding: 100px 0
}

.dark-feature .center-intro {
  padding: 0 0 44px
}

.dark-feature .body,
.dark-feature .small {
  color: #9aa0a6
}

.dark-stage {
  background: linear-gradient(145deg, #202429, #111315);
  border-radius: 28px;
  min-height: 500px;
  position: relative;
  overflow: hidden
}

.dark-stage .product {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.dark-stage .camera-ring {
  position: absolute;
  right: 8%;
  top: 10%;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  font-size: 12px;
  color: #bdc1c6
}

.dark-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 20px
}

.metric {
  padding: 24px;
  border-radius: 18px;
  background: #202428
}

.metric strong {
  font: 600 28px/1 "Manrope";
  display: block;
  margin-bottom: 8px
}

.metric span {
  font-size: 13px;
  color: #9aa0a6
}

.details-grid {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 60px;
  align-items: start
}

@media (min-width: 901px) {
  .details-copy {
    position: sticky;
    top: 140px;
  }
}

.details-list {
  border-top: 1px solid var(--line)
}

.detail-item {
  border-bottom: 1px solid var(--line)
}

.detail-item button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border: 0;
  background: none;
  text-align: left;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  color: #202124
}

.detail-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease
}

.detail-item.open .detail-content {
  max-height: 240px
}

.detail-content p {
  padding: 0 0 20px;
  margin: 0;
  color: var(--muted);
  line-height: 1.6
}

.detail-plus {
  font-size: 22px;
  transition: .25s transform
}

.detail-item.open .detail-plus {
  transform: rotate(45deg)
}

.faq {
  padding: 80px 0
}

.faq-grid {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 60px
}

.faq-list {
  border-top: 1px solid var(--line)
}

.footer {
  background: #fff;
  padding: 64px 0 30px;
  border-top: 1px solid #f1f3f4;
  margin-bottom: 60px
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(4, 1fr);
  gap: 40px
}

.footer h4 {
  font-size: 13px;
  margin: 0 0 18px;
  color: #202124
}

.footer a {
  display: block;
  font-size: 12px;
  color: #5f6368;
  margin: 12px 0
}

.footer-bottom {
  border-top: 1px solid var(--line);
  margin-top: 50px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--muted)
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease
}

.reveal.visible {
  opacity: 1;
  transform: none
}

/* SELECT & CHECKOUT */
.select-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 64px;
  background: #fff;
  border-bottom: 1px solid var(--line)
}

.select-header .inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between
}

.select-header .progress {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: var(--muted);
}

.select-header .progress b {
  color: var(--ink);
  font-weight: 600;
}

.select-main {
  padding: 34px 0 90px
}

.select-layout {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 60px;
  align-items: start
}

.select-gallery {
  position: sticky;
  top: 98px
}

.main-shot {
  height: min(580px, 64vh);
  border-radius: 28px;
  background: #ffffff;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.main-shot img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  filter: none !important;
  border-radius: 0 !important;
}

#continue,
.btn-continue-blue {
  background: #0b57d0 !important;
  color: #ffffff !important;
  font-weight: 600 !important;
  font-size: 16px !important;
  height: 52px !important;
  min-height: 52px !important;
  border-radius: 999px !important;
  border: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  padding: 0 24px !important;
  cursor: pointer !important;
  transition: background .2s ease !important;
  line-height: normal !important;
}

#continue:hover,
.btn-continue-blue:hover {
  background: #0842a0 !important;
}

.thumb-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 12px
}

.thumb {
  height: 90px;
  border-radius: 14px;
  border: 2px solid transparent;
  background: #f1f3f4;
  display: grid;
  place-items: center;
  cursor: pointer;
  overflow: hidden
}

.thumb.active {
  border-color: var(--google-blue)
}

.thumb img {
  width: 90%;
  height: 90%;
  object-fit: contain
}

.config-panel {
  padding: 18px 0
}

.back-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--google-blue);
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 32px
}

.config-panel .headline {
  font-size: clamp(40px, 5vw, 64px);
  font-family: "Manrope"
}

.price-block {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px
}

.price-main {
  font: 600 28px/1 "Manrope"
}

.config-section {
  padding: 20px 0;
  border-bottom: 1px solid var(--line)
}

.choice-grid {
  display: grid;
  gap: 10px
}

.choice {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  cursor: pointer;
  background: #fff
}

.choice.selected {
  border: 2px solid var(--google-blue)
}

.config-summary {
  background: #f8f9fa;
  border-radius: 18px;
  padding: 20px;
  margin: 24px 0
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 6px 0;
  font-size: 13px
}

.summary-row.total {
  border-top: 1px solid #e8eaed;
  margin-top: 8px;
  padding-top: 14px;
  font-size: 15px;
  font-weight: 700
}

.btn.full {
  width: 100%;
  background: var(--google-blue);
  color: #fff;
  border-radius: 999px;
  min-height: 48px;
  font-weight: 600;
  border: 0;
  cursor: pointer
}

.checkout-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px
}

.checkout-card {
  width: min(600px, 100%);
  background: #fff;
  border-radius: 28px;
  padding: 48px;
  text-align: center;
  box-shadow: var(--shadow)
}

.checkmark {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #e8f0fe;
  color: var(--google-blue);
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
  font-size: 28px
}



@media(max-width:980px) {
  :root {
    --container: calc(100% - 32px)
  }

  .desktop-cat-nav {
    display: none
  }

  .mobile-menu-circle-btn {
    display: grid
  }

  .btn-signin {
    display: none;
  }

  .stores-btn {
    display: inline-flex;
  }

  .avatar-btn {
    display: inline-flex;
  }

  /* Reduzir gap de header-left no mobile */
  .header-left {
    gap: 0;
  }

  .brand-link {
    padding-right: 16px;
  }

  /* MOBILE PDP BAR INITIAL STATE (INLINE TABS) */
  .product-sticky-nav {
    position: sticky;
    top: 68px;
    width: fit-content;
    max-width: calc(100vw - 32px);
    margin-inline: auto;
    margin-top: 8px;
    margin-bottom: 12px;
    padding: 0;
    border-radius: 999px;
    box-shadow: none;
    border: 1px solid transparent;
    background: transparent;
  }

  .product-sticky-nav .inner {
    height: 38px;
    justify-content: center;
    gap: 0;
  }

  .product-title-group {
    justify-content: center;
    gap: 0;
  }

  .product-title-group .product-name {
    display: none;
  }

  .product-price-action {
    display: none;
  }

  /* MOBILE FLOATING CAPSULE BAR WHEN SCROLLED */
  .product-sticky-nav.is-scrolled {
    padding: 4px 8px;
    background: #ffffff;
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, .15);
    border-color: transparent;
  }

  .google-hero-card,
  .google-hero-card.is-full-hero,
  .google-hero-card:has(.hero-product-img[src*="hero.webp"]) {
    display: flex !important;
    flex-direction: column !important;
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
    border-radius: 24px !important;
    overflow: hidden !important;
    position: relative !important;
    background: #f8f9fa !important;
  }

  .google-hero-card::before,
  .google-hero-card.is-full-hero::before {
    display: none !important;
  }

  /* ORDER ON MOBILE MATCHING REFERENCES */
  .hero-right-visual,
  .google-hero-card.is-full-hero .hero-right-visual,
  .google-hero-card:has(.hero-product-img[src*="hero.webp"]) .hero-right-visual {
    order: 1 !important;
    position: relative !important;
    inset: auto !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: 100% !important;
    height: 280px !important;
    min-height: 280px !important;
    max-height: 280px !important;
    padding: 0 !important;
    background: #ffffff !important;
    overflow: hidden !important;
    border-radius: 24px 24px 0 0 !important;
  }

  .hero-image-wrapper,
  .google-hero-card.is-full-hero .hero-image-wrapper {
    position: relative !important;
    inset: auto !important;
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .hero-product-img {
    position: relative !important;
    max-width: 85% !important;
    max-height: 85% !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
  }

  .google-hero-card.is-full-hero .hero-product-img,
  .google-hero-card:has(.hero-product-img[src*="hero.webp"]) .hero-product-img {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: cover !important;
  }

  .hero-left-content,
  .google-hero-card.is-full-hero .hero-left-content {
    order: 2 !important;
    position: relative !important;
    z-index: 2 !important;
    padding: 24px 20px 28px !important;
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
    background: transparent !important;
  }

  .hero-color-selector {
    order: 1;
    margin-bottom: 20px;
    align-items: center;
  }

  .hero-eyebrow {
    order: 2;
    margin-bottom: 8px;
  }

  .hero-display-title {
    order: 3;
    font-size: 36px;
    margin-bottom: 12px;
  }

  .hero-subtitle {
    order: 4;
    max-width: 100%;
    font-size: 15px;
    margin-bottom: 16px;
  }

  .hero-pricing-block {
    order: 5;
    margin-bottom: 16px;
  }

  .hero-cta-row {
    order: 6;
    margin-bottom: 0;
    width: 100%;
  }

  .hero-image-wrapper {
    padding: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
  }

  .hero-product-img {
    width: 100%;
    height: 100%;
    max-height: 100%;
    object-fit: cover;
    filter: none;
    border-radius: 24px 24px 0 0;
  }

  .hero-carousel-pill {
    display: none;
  }

  .mobile-dots-pill {
    display: flex;
    align-items: center;
    gap: 6px;
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, .9);
    backdrop-filter: blur(8px);
    padding: 6px 12px;
    border-radius: 999px;
  }

  .mobile-dots-pill .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #bdc1c6;
    transition: .2s background;
  }

  .mobile-dots-pill .dot.active {
    background: var(--google-blue);
    width: 10px;
    height: 10px;
  }

  /* SELECT PAGE MOBILE RESPONSIVE UI/UX */
  .select-header .inner {
    padding: 0 20px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .select-header .progress {
    gap: 8px;
    font-size: 11px;
  }

  .select-main {
    padding: 16px 0 60px;
  }

  .select-layout {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    padding: 0 20px !important;
    box-sizing: border-box !important;
    gap: 24px !important;
  }

  .select-gallery {
    position: relative !important;
    top: 0 !important;
    width: 100% !important;
  }

  .main-shot {
    height: 320px !important;
    width: 100% !important;
    background: #ffffff !important;
    padding: 12px !important;
  }

  .config-panel {
    width: 100% !important;
    padding: 0 !important;
  }

  .intro-grid,
  .details-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .details-copy {
    position: static !important;
    top: auto !important;
    margin-bottom: 20px;
  }

  .card-row {
    grid-template-columns: repeat(3, 82vw);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .card-row::-webkit-scrollbar {
    display: none;
  }

  .command-stage {
    display: flex;
    flex-direction: column;
    height: 520px;
    min-height: 520px;
    border-radius: 28px;
    overflow: hidden;
    background: #e8f0fe;
  }

  .command-copy {
    height: 40%;
    flex: 0 0 40%;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .command-scene {
    height: 60%;
    flex: 0 0 60%;
    position: relative;
    overflow: hidden;
    width: 100%;
  }

  .command-scene .scene-glasses {
    position: absolute;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    transform: none !important;
    filter: none !important;
  }

  .feature-four,
  .dark-metrics {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:640px) {
  :root {
    --container: calc(100% - 24px)
  }

  .global-header {
    height: 56px
  }

  .hero-section {
    padding: 12px 0 32px
  }

  .google-hero-card {
    border-radius: 20px;
  }

  .hero-left-content {
    padding: 16px 16px 28px;
  }

  .btn-buy-hero {
    width: 100%;
  }

  .promo-strip-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
  }

  /* MOBILE BOTTOM STICKY FLOATING BUY BAR */
  .mobile-bottom-sticky-bar {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(16px);
    border-top: 1px solid #dadce0;
    padding: 12px 18px calc(12px + env(safe-area-inset-bottom));
    box-shadow: 0 -6px 20px rgba(0, 0, 0, .1);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  }

  .sticky-bar-info {
    display: flex;
    flex-direction: column;
  }

  .sticky-bar-title {
    font: 600 15px/1.2 "Manrope";
    color: #202124;
  }

  .sticky-bar-price {
    font-size: 13px;
    font-weight: 700;
    color: var(--google-blue);
  }

  .sticky-bar-price small {
    font-weight: 400;
    color: #5f6368;
    margin-left: 4px;
  }

  .btn-buy-mobile-sticky {
    background: #0b57d0 !important;
    color: #ffffff !important;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 24px;
    border-radius: 999px;
    transition: background .2s ease;
  }

  .btn-buy-mobile-sticky:hover {
    background: #0842a0 !important;
  }

  .card-row {
    grid-template-columns: repeat(3, 82vw);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .card-row::-webkit-scrollbar {
    display: none;
  }

  .story-card {
    scroll-snap-align: start
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr
  }
}

/* MEET OCULLA GLASS MEDIA CARD */
.meet-card {
  background: #f8f9fa;
  border-radius: 28px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
}

.meet-content {
  padding: clamp(32px, 5vw, 64px);
}

.meet-title {
  font: 500 clamp(32px, 4vw, 56px)/1.08 "Manrope", sans-serif;
  color: #191c1d;
  margin: 12px 0 16px;
  letter-spacing: -0.02em;
}

.meet-media {
  position: relative;
  height: 100%;
  min-height: 380px;
  background: linear-gradient(135deg, #e8f0fe 0%, #d3e3fd 100%);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.meet-media img {
  width: 80%;
  object-fit: contain;
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, .12));
}

.play-overlay-btn {
  position: absolute;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #ffffff;
  color: #0b57d0;
  border: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .16);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}

.play-overlay-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(0, 0, 0, .22);
}

/* VALUE PROPOSITION GRID (WHY BUY FROM OCULLA STORE) */
.value-props-section {
  background: #ffffff;
  padding: 40px 0;
}

.value-props-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.prop-card {
  background: #f8f9fa;
  border-radius: 24px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform .2s ease, box-shadow .2s ease;
}

.prop-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .06);
}

.prop-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: #e8f0fe;
  color: #0b57d0;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}

.prop-card h3 {
  font: 500 20px/1.3 "Manrope", sans-serif;
  color: #191c1d;
  margin: 0 0 10px;
}

.prop-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #5f6368;
  margin: 0;
}

@media(max-width: 980px) {
  .meet-card {
    grid-template-columns: 1fr;
  }

  .meet-media {
    min-height: 260px;
  }

  .value-props-grid {
    grid-template-columns: 1fr;
  }
}

/* ALL THE RIGHT DETAILS SECTION (GOOGLE STORE REFERENCE) */
.details-gallery-section {
  padding: 60px 0;
}

.sustainable-banner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 60px;
}

.sustainable-text {
  max-width: 460px;
}

.sustainable-text strong {
  display: block;
  font: 500 18px/1.3 "Manrope", sans-serif;
  color: #191c1d;
  margin-bottom: 8px;
}

.sustainable-text p {
  font-size: 14px;
  line-height: 1.5;
  color: #5f6368;
  margin: 0;
}

.sustainable-visual {
  width: 100%;
  height: 480px;
  border-radius: 28px;
  background: #f8f9fa;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.sustainable-visual img {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: cover !important;
  border-radius: 28px;
  filter: none !important;
}

/* STAGGERED 2-COLUMN GRID (DESKTOP & MOBILE) */
.staggered-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 40px;
}

.staggered-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.staggered-card.card-right {
  margin-top: 80px;
  /* Deslocamento vertical característico da referência Google */
}

.staggered-img-box {
  width: 100%;
  border-radius: 24px;
  background: #f8f9fa;
  padding: 0;
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.staggered-img-box img {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: cover !important;
  border-radius: 24px;
  filter: none !important;
}

.staggered-caption strong {
  display: block;
  font: 500 16px/1.3 "Manrope", sans-serif;
  color: #191c1d;
  margin-bottom: 6px;
}

.staggered-caption p {
  font-size: 14px;
  line-height: 1.5;
  color: #5f6368;
  margin: 0;
}

/* VIDEO BANNER ("Meet the Google Home Speaker" EQUIVALENT) */
.google-video-banner {
  width: 100%;
  border-radius: 28px;
  overflow: hidden;
  background: #f8f9fa;
  position: relative;
}

.video-media-wrapper {
  position: relative;
  width: 100%;
  height: min(520px, 65vh);
  background: linear-gradient(135deg, #e8e6df 0%, #d8e2dc 100%);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.video-media-wrapper img {
  width: 70%;
  object-fit: contain;
  filter: drop-shadow(0 24px 36px rgba(0, 0, 0, .14));
}

.video-g-logo {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 2;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #ffffff;
  color: #0b57d0;
  border: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .18);
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 2;
  transition: transform .2s ease;
}

.video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.video-title-box {
  position: absolute;
  bottom: 28px;
  left: 28px;
  background: #ffffff;
  padding: 18px 28px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .1);
  z-index: 2;
}

.video-title-box span {
  font: 700 clamp(24px, 3.5vw, 40px)/1.08 "Manrope", sans-serif;
  color: #191c1d;
  letter-spacing: -0.02em;
}

@media(max-width: 980px) {
  .staggered-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .staggered-card.card-right {
    margin-top: 0;
  }

  .sustainable-visual {
    padding: 28px 16px;
  }

  .sustainable-visual img {
    max-width: 90%;
  }

  .video-title-box {
    bottom: 16px;
    left: 16px;
    padding: 12px 20px;
  }

  .video-title-box span {
    font-size: 20px;
  }
}

.footer-grid>div:first-child {
  grid-column: 1/-1
}

.footer-bottom {
  flex-direction: column;
  gap: 8px
}
}

.oculla-mark {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #17211d;
  display: grid;
  place-items: center;
  position: relative;
  flex: none
}

.oculla-mark:before,
.oculla-mark:after,
.oculla-mark span {
  content: "";
  position: absolute;
  border: 2px solid #fff;
  border-radius: 50%
}

.oculla-mark:before {
  width: 11px;
  height: 11px
}

.oculla-mark:after {
  width: 3px;
  height: 3px;
  background: #fff;
  right: 4px;
  top: 4px
}

.oculla-mark span {
  width: 17px;
  height: 7px;
  border-top: 0;
  bottom: 3px
}

.pack-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px
}

.pack-choice {
  position: relative;
  min-height: 138px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  padding: 20px 14px;
  text-align: left;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 7px
}

.pack-choice.selected {
  border: 2px solid #17211d;
  background: #f1f5f2;
  padding: 19px 13px
}

.pack-choice em {
  font-style: normal;
  font-size: 10px;
  font-weight: 700;
  background: #17211d;
  color: white;
  border-radius: 999px;
  padding: 5px 8px;
  align-self: flex-start
}

.pack-choice strong {
  font-size: 15px
}

.pack-choice span {
  font-size: 20px;
  font-weight: 700
}

.pack-choice small {
  color: var(--muted)
}

.saving-note {
  color: #18794e;
  font-weight: 700;
  margin: 10px 0 0
}

.secure-note {
  text-align: center;
  margin-top: 12px
}

.portal-page {
  min-height: 75vh;
  background: #f5f6f4;
  padding: 72px 24px
}

.portal-shell {
  max-width: 1000px;
  margin: auto
}

.portal-shell>h1 {
  font: 600 clamp(34px, 5vw, 64px)/1.05 "Space Grotesk";
  letter-spacing: -.04em
}

.portal-card {
  background: #fff;
  border: 1px solid #e2e4e0;
  border-radius: 26px;
  padding: 32px;
  box-shadow: 0 18px 55px rgba(21, 28, 24, .06)
}

.portal-user {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding-bottom: 20px
}

.portal-user span {
  display: block;
  color: var(--muted);
  font-size: 13px
}

.orders-list {
  display: grid;
  gap: 12px;
  margin-top: 22px
}

.order-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px
}

.order-card>span {
  float: right;
  padding: 5px 9px;
  background: #eef3ef;
  border-radius: 999px;
  font-size: 12px
}

.admin-page {
  min-height: 100vh;
  background: #f5f6f4;
  display: grid;
  grid-template-columns: 240px 1fr
}

.admin-side {
  background: #151c18;
  color: #fff;
  padding: 30px 22px;
  position: sticky;
  top: 0;
  height: 100vh
}

.admin-side .brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  font-size: 20px
}

.admin-side nav {
  display: grid;
  gap: 6px;
  margin-top: 54px
}

.admin-side nav a {
  padding: 13px 14px;
  color: #aebbb4;
  border-radius: 12px
}

.admin-side nav a.active,
.admin-side nav a:hover {
  color: #fff;
  background: #26312b
}

.admin-main {
  padding: 38px
}

.admin-top {
  display: flex;
  justify-content: space-between;
  align-items: end
}

.admin-top h1 {
  font: 600 46px/1 "Space Grotesk";
  margin: 8px 0
}

.admin-content {
  margin-top: 30px
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px
}

.metric-grid article {
  background: #fff;
  border: 1px solid #e1e4df;
  border-radius: 20px;
  padding: 22px
}

.metric-grid span,
.metric-grid small {
  display: block;
  color: var(--muted)
}

.metric-grid strong {
  display: block;
  font: 600 34px/1.2 "Space Grotesk";
  margin: 16px 0 6px
}

.admin-table-card {
  background: #fff;
  border: 1px solid #e1e4df;
  border-radius: 22px;
  padding: 24px;
  margin-top: 18px;
  overflow: auto
}

.admin-table-card table {
  width: 100%;
  border-collapse: collapse
}

.admin-table-card th,
.admin-table-card td {
  text-align: left;
  padding: 14px;
  border-bottom: 1px solid #eceeeb;
  font-size: 13px
}

@media(max-width:760px) {
  .pack-grid {
    grid-template-columns: 1fr
  }

  .pack-choice {
    min-height: auto
  }

  .admin-page {
    display: block
  }

  .admin-side {
    position: static;
    height: auto
  }

  .admin-side nav {
    display: none
  }

  .admin-main {
    padding: 24px 16px
  }

  .metric-grid {
    grid-template-columns: 1fr 1fr
  }

  .admin-top h1 {
    font-size: 34px
  }

  .portal-page {
    padding: 42px 16px
  }

  .portal-card {
    padding: 22px
  }
}


/* Language switcher */
.language-switcher {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 36px;
}

.language-trigger {
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  height: 36px;
  width: auto;
  min-width: 54px;
  padding: 0 10px;
  gap: 6px;
  border-radius: 999px;
  font-size: 12px;
  line-height: 1;
}

.language-trigger .icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.language-code {
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .04em;
}

.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 190px;
  padding: 8px;
  background: #fff;
  border: 1px solid #e5e7e5;
  border-radius: 16px;
  box-shadow: 0 16px 44px rgba(24, 32, 28, .15);
  display: none;
  z-index: 140
}

.language-menu.open {
  display: grid
}

.language-menu button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border: 0;
  background: transparent;
  border-radius: 10px;
  padding: 11px 12px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer
}

.language-menu button span {
  font-weight: 500;
  color: var(--muted)
}

.language-menu button:hover,
.language-menu button.active {
  background: #eef3ef
}

/* Campaign imagery */
.campaign-cover {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.feature-media .campaign-cover,
.handsfree-stage .campaign-cover {
  inset: 0;
  position: absolute;
  max-width: none;
  object-fit: cover;
  opacity: 1
}

.feature-media .giant-copy,
.handsfree-stage .voice-phrase,
.feature-media .play {
  z-index: 2
}

.feature-media:after,
.handsfree-stage:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .18), transparent 52%);
  pointer-events: none
}

.feature-media .giant-copy {
  color: #fff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, .3)
}

.command-scene {
  overflow: hidden
}

.command-scene .campaign-cover {
  width: 100%;
  height: 100%;
  object-fit: cover
}



.sustainable-visual img,
.staggered-img-box img,
.video-media-wrapper>img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.campaign-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 44px
}

/* ===== CAMPAIGN GRID BENTO CARDS com Glassmorfismo ===== */
.campaign-card {
  border-radius: 24px;
  overflow: hidden;
  background: #111;
  box-shadow: none;
  position: relative;
  min-height: 420px;
  cursor: pointer;
}

.campaign-card.wide {
  grid-column: 1/-1;
  min-height: 460px;
}

/* Imagem preenche 100% do card */
.campaign-card img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  border-radius: 24px !important;
  z-index: 1 !important;
  transition: transform .6s cubic-bezier(0.25, 0, 0.25, 1);
}

.campaign-card:hover img {
  transform: scale(1.04);
}

/* Gradiente glassmorfismo apenas nos 30% inferiores */
.campaign-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to top,
      rgba(10, 10, 12, 0.85) 0%,
      rgba(10, 10, 12, 0.60) 20%,
      rgba(10, 10, 12, 0.15) 35%,
      transparent 50%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  mask-image: linear-gradient(to top,
      rgba(0, 0, 0, 1) 0%,
      rgba(0, 0, 0, 1) 20%,
      rgba(0, 0, 0, 0.6) 35%,
      rgba(0, 0, 0, 0) 50%);
  -webkit-mask-image: linear-gradient(to top,
      rgba(0, 0, 0, 1) 0%,
      rgba(0, 0, 0, 1) 20%,
      rgba(0, 0, 0, 0.6) 35%,
      rgba(0, 0, 0, 0) 50%);
  pointer-events: none;
}

/* Texto flutuando sobre o glassmorfismo */
.campaign-card>div {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 28px 28px 30px;
  background: transparent;
}

.campaign-card h3 {
  font-size: 22px;
  line-height: 1.2;
  margin: 0 0 8px;
  color: #ffffff;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.campaign-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
  font-size: 14px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
}

.campaign-card.wide>div {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.box-content {
  background: #f6f4ef
}

.box-content-grid {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 64px;
  align-items: center
}

.box-content-grid img {
  width: 100%;
  max-height: 720px;
  object-fit: contain;
  border-radius: 30px;
  background: #fff
}

.select-gallery .main-shot img,
.thumb img {
  object-fit: contain
}

@media(max-width:760px) {
  .language-trigger {
    min-width: 48px;
    padding: 0 7px
  }

  .language-trigger .icon {
    width: 17px
  }

  .campaign-grid {
    grid-template-columns: 1fr;
    gap: 16px
  }

  .campaign-card.wide {
    grid-column: auto;
    min-height: 380px;
  }

  .campaign-card {
    min-height: 320px;
  }

  .campaign-card>div {
    padding: 22px
  }

  .box-content-grid {
    grid-template-columns: 1fr;
    gap: 28px
  }



  .feature-media .campaign-cover,
  .handsfree-stage .campaign-cover {
    object-position: center
  }

  .language-menu {
    position: fixed;
    top: 62px;
    right: 14px
  }
}