/* =========================================================
   Power Cell Celulares — estilos globais
   Paleta tirada da logo: vermelho da seta + azul do "POWER"
   ========================================================= */
:root {
  --vermelho: #E3202A;
  --vermelho-escuro: #B5141C;
  --azul: #27328F;
  --azul-noite: #131B52;
  --gelo: #F3F4F8;
  --branco: #FFFFFF;
  --texto: #1B2150;
  --texto-suave: #5A6088;
  --linha: #DDE0EC;
  --verde-whats: #1FA855;

  --fonte-titulo: "Anton", Impact, "Arial Narrow", sans-serif;
  --fonte: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --raio: 18px;
  --sombra: 0 18px 40px -22px rgba(19, 27, 82, .45);
  --largura: 1200px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--fonte);
  color: var(--texto);
  background: var(--branco);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; }
:focus-visible { outline: 3px solid var(--vermelho); outline-offset: 3px; border-radius: 6px; }

.container { width: min(100% - 40px, var(--largura)); margin-inline: auto; }
[data-texto][hidden] { display: none; }   /* texto apagado no painel */

/* ---------- Topo (páginas de catálogo) ---------- */
.topo {
  position: absolute; inset: 0 0 auto 0; z-index: 10;
  padding: 16px 0;
}
.topo .container { display: flex; align-items: center; justify-content: flex-start; gap: 16px; }   /* logo no canto esquerdo */
.topo__logo img { width: 64px; height: 64px; filter: drop-shadow(0 6px 14px rgba(19,27,82,.25)); }

/* =========================================================
   PÁGINA PRINCIPAL
   ========================================================= */
.principal {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(60% 55% at 12% 0%, rgba(39,50,143,.10), transparent 70%),
    radial-gradient(50% 60% at 95% 100%, rgba(227,32,42,.10), transparent 70%),
    var(--gelo);
  padding: 0 0 64px;
}
/* faixas diagonais que lembram a seta da logo */
.principal::before, .principal::after {
  content: ""; position: absolute; pointer-events: none;
  transform: rotate(-28deg);
}
.principal::before {
  width: 140%; height: 70px; left: -20%; bottom: 40px;
  background: var(--vermelho); opacity: .08;
}
.principal::after {
  width: 140%; height: 14px; left: -20%; bottom: 130px;
  background: var(--azul); opacity: .08;
}
.principal__texto { position: relative; z-index: 1; padding-top: 36px; text-align: center; display: flex; flex-direction: column; align-items: center; }
/* logo sobre o carrossel, no canto superior esquerdo */
.principal__topo { position: relative; }
.principal__logo {
  position: absolute; z-index: 2;
  top: clamp(8px, 2vw, 24px); left: clamp(8px, 2vw, 24px);
  width: clamp(42px, 9vw, 130px);
  height: auto; aspect-ratio: 1;
  filter: drop-shadow(0 8px 18px rgba(19,27,82,.35));
}
.principal__selo {
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 16px; padding: 7px 14px 7px 12px;
  border-radius: 999px; background: var(--branco);
  border: 1px solid var(--linha); box-shadow: 0 6px 16px -10px rgba(19,27,82,.35);
  font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--azul);
}
.principal__pulso {
  width: 8px; height: 8px; border-radius: 50%; background: var(--verde-whats);
  box-shadow: 0 0 0 0 rgba(31,168,85,.55); animation: pulso 2s infinite;
}

/* Faixa de palavras (divisória entre o hero e os atalhos) */
main { overflow-x: clip; }        /* a faixa inclinada não gera rolagem lateral */
.faixa {
  position: relative; z-index: 2; overflow: hidden;
  background: var(--vermelho); color: var(--branco);
  padding: 14px 0; margin: -18px 0 0;
  transform: rotate(-1.2deg) scale(1.03);
  box-shadow: 0 10px 0 var(--azul), 0 22px 30px -18px rgba(19,27,82,.5);
}
.faixa__trilho { display: flex; width: max-content; animation: rolar 32s linear infinite; }
.faixa:hover .faixa__trilho { animation-play-state: paused; }
.faixa__grupo { display: flex; margin: 0; padding: 0; list-style: none; }
.faixa__grupo li {
  display: flex; align-items: center; white-space: nowrap;
  font-family: var(--fonte-titulo); text-transform: uppercase;
  font-size: clamp(1.05rem, 2vw, 1.4rem); letter-spacing: .04em;
}
.faixa__grupo li::after {
  content: ""; width: 10px; height: 10px; margin: 0 26px;
  background: var(--branco); transform: rotate(45deg); opacity: .85;
}
@keyframes rolar { to { transform: translateX(-50%); } }
@keyframes pulso { 70% { box-shadow: 0 0 0 9px rgba(31,168,85,0); } 100% { box-shadow: 0 0 0 0 rgba(31,168,85,0); } }

/* Carrossel: ocupa toda a largura da tela no topo, sem bordas */
.carrossel {
  position: relative; overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;           /* mesmo formato das imagens do carrossel */
  max-height: 100svh;             /* no desktop nunca passa da altura da tela */
  background: var(--azul-noite);
}
.carrossel__faixa { display: flex; height: 100%; transition: transform .7s cubic-bezier(.65,0,.35,1); }
.carrossel__slide { flex: 0 0 100%; height: 100%; }
.carrossel__slide { display: grid; place-items: center; }
.carrossel__slide img { width: 100%; height: 100%; object-fit: cover; display: block; } /* preenche o espaço, sem faixas */
.carrossel__pontos {
  position: absolute; left: 50%; bottom: 14px; transform: translateX(-50%);
  display: flex; gap: 8px; padding: 6px 10px; border-radius: 999px;
  background: rgba(19,27,82,.45); backdrop-filter: blur(4px);
}
.carrossel__pontos button {
  width: 10px; height: 10px; padding: 0; border: 0; border-radius: 999px;
  background: rgba(255,255,255,.55); cursor: pointer; transition: width .3s, background .3s;
}
.carrossel__pontos button[aria-current="true"] { width: 26px; background: var(--branco); }
.carrossel__seta {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(255,255,255,.92); color: var(--azul);
  display: grid; place-items: center; box-shadow: 0 6px 16px rgba(19,27,82,.2);
}
.carrossel__seta--ant { left: 12px; }
.carrossel__seta--prox { right: 12px; }
.carrossel__seta svg { width: 18px; height: 18px; }
/* vídeo no lugar do carrossel (escolhido no painel) */
.carrossel__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border: 0; display: block; }
.carrossel__som {
  position: absolute; right: 14px; bottom: 14px; z-index: 1;
  width: 40px; height: 40px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(255,255,255,.92); color: var(--azul);
  display: grid; place-items: center; box-shadow: 0 6px 16px rgba(19,27,82,.2);
}
.carrossel__som svg { width: 20px; height: 20px; }

/* Botões circulares */
.atalhos { background: var(--branco); padding: 72px 0 72px; }
.atalhos__lista { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px clamp(14px, 6vw, 96px); }
.atalho {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  text-decoration: none; color: var(--azul-noite); font-weight: 700;
  font-size: clamp(1rem, 2.4vw, 1.2rem);
}
.atalho__circulo {
  position: relative;
  width: clamp(112px, 26vw, 150px); aspect-ratio: 1;
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--branco);
  background: radial-gradient(circle at 30% 25%, #3C48B5, var(--azul) 55%, var(--azul-noite));
  box-shadow: 0 16px 30px -12px rgba(19,27,82,.6);
  animation: flutuar 3.4s ease-in-out infinite;
  transition: transform .25s;
}
.atalho:nth-child(2) .atalho__circulo {
  background: radial-gradient(circle at 30% 25%, #F2525A, var(--vermelho) 55%, var(--vermelho-escuro));
  box-shadow: 0 16px 30px -12px rgba(181,20,28,.6);
  animation-delay: -1.7s;
}
.atalho__circulo::before, .atalho__circulo::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid currentColor; opacity: 0;
  animation: onda 2.6s ease-out infinite;
}
.atalho__circulo::before { color: var(--azul); }
.atalho:nth-child(2) .atalho__circulo::before,
.atalho:nth-child(2) .atalho__circulo::after { color: var(--vermelho); }
.atalho__circulo::after { color: var(--azul); animation-delay: 1.3s; }
/* Acessórios: mistura o azul e o vermelho da marca */
.atalho:nth-child(3) .atalho__circulo {
  background: radial-gradient(circle at 30% 25%, #4A56C4, var(--azul) 40%, var(--vermelho-escuro));
  box-shadow: 0 16px 30px -12px rgba(90,24,80,.55);
  animation-delay: -.85s;
}
.atalho:nth-child(3) .atalho__circulo::before { color: var(--vermelho); }
.atalho__circulo svg { width: 44%; height: 44%; }
.atalho:hover .atalho__circulo { transform: scale(1.07); animation-play-state: paused; }

@keyframes flutuar { 0%,100% { translate: 0 0; } 50% { translate: 0 -8px; } }
@keyframes onda { 0% { transform: scale(1); opacity: .55; } 100% { transform: scale(1.45); opacity: 0; } }

/* =========================================================
   PÁGINAS DE CATÁLOGO
   ========================================================= */
.hero-cat {
  position: relative;
  min-height: min(88vh, 760px);
  display: flex; flex-direction: column; justify-content: center;
  background-color: var(--gelo);
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  padding: 120px 0 40px;
}
/* Hero com foto de aparelhos (iPhones e Smartphones).
   Caminhos das imagens são relativos a este CSS (assets/css), por isso ../../img.
   --inicio: onde os aparelhos começam na foto, medido da borda direita, em múltiplos da altura.
   --prop-mobile: altura ÷ largura do recorte usado no celular. */
.hero-cat--iphones, .catalogo--iphones {
  --acento-1: #3D7BFF;
  --acento-2: var(--vermelho);
  --img: url("../../img/hero-iphone.webp");
  --img-mobile: url("../../img/hero-iphone-mobile.webp");
  --inicio: 1.02;
  --prop-mobile: .814;
}
.hero-cat--smartphones, .catalogo--smartphones {
  --acento-1: #FF7A00;
  --acento-2: var(--vermelho);
  --img: url("../../img/hero-smartphones.webp");
  --img-mobile: url("../../img/hero-smartphones-mobile.webp");
  --inicio: 1.275;
  --prop-mobile: .678;
}
.hero-cat--acessorios, .catalogo--acessorios {
  --acento-1: #3D7BFF;
  --acento-2: var(--vermelho);
  --img: url("../../img/hero-acessorios.webp");
  --img-mobile: url("../../img/hero-acessorios-mobile.webp");
  --inicio: 1.26;
  --prop-mobile: .680;
}
/* Círculo com ícone que ficava no hero de Acessórios antes da foto. Sem uso hoje. */
.hero-cat__arte { display: none; }
@media (min-width: 1200px) {
  .hero-cat__arte {
    --tam: clamp(320px, 30vw, 440px);
    position: absolute; z-index: 1;
    top: calc(50% - var(--tam) / 2); right: max(40px, calc((100vw - 1200px) / 2 + 40px));
    width: var(--tam); aspect-ratio: 1; border-radius: 50%;
    display: grid; place-items: center; color: var(--branco);
    background: radial-gradient(circle at 30% 25%, #4A56C4, var(--azul) 45%, var(--vermelho-escuro));
    box-shadow: 0 40px 80px -30px rgba(19,27,82,.6);
    animation: flutuar 4s ease-in-out infinite;
  }
  .hero-cat__arte::before, .hero-cat__arte::after {
    content: ""; position: absolute; inset: 0; border-radius: 50%;
    border: 2px solid var(--azul); opacity: 0;
    animation: onda 3.2s ease-out infinite;
  }
  .hero-cat__arte::after { border-color: var(--vermelho); animation-delay: 1.6s; }
  .hero-cat__arte svg { width: 42%; height: 42%; }
}

/* desktop: altura da seção acompanha a foto e os aparelhos ficam à direita do texto */
.hero-cat--aparelhos {
  --altura: clamp(560px, 42vw, 760px);
  min-height: var(--altura);
  background-color: var(--branco);
  background-image:
    linear-gradient(90deg, rgba(255,255,255,.85) 0%, rgba(255,255,255,0) 40%),
    var(--img);
  background-size: 100% 100%, auto max(var(--altura), 100%);
  background-position: 0 0, right bottom;
}
/* o texto ocupa só o espaço livre à esquerda dos aparelhos */
.hero-cat--aparelhos .hero-cat__texto {
  max-width: min(560px, calc(100vw - var(--altura) * var(--inicio) - max(20px, (100vw - 1200px) / 2) - 40px));
}
.hero-cat--aparelhos h1 { font-size: clamp(2rem, 3.7vw, 3.6rem); }
.hero-cat__texto { max-width: 560px; }
.hero-cat h1 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4.6vw, 3.6rem);
  line-height: 1.04; font-weight: 800; letter-spacing: -.025em;
  color: var(--azul-noite);
}
.hero-cat p { margin: 0 0 30px; font-size: clamp(1rem, 1.5vw, 1.2rem); color: var(--texto-suave); max-width: 42ch; }

/* ---------- Efeitos do hero dos catálogos ---------- */
.hero-cat--aparelhos { overflow: hidden; isolation: isolate; }
.hero-cat--aparelhos .container { position: relative; z-index: 1; }
.hero-cat--aparelhos .descer { z-index: 2; }
/* brilhos coloridos que flutuam atrás do texto */
.hero-cat--aparelhos::before {
  content: ""; position: absolute; z-index: 0; pointer-events: none;
  width: min(760px, 70vw); aspect-ratio: 1; left: -12%; top: 50%; translate: 0 -50%;
  background:
    radial-gradient(closest-side at 35% 40%, color-mix(in srgb, var(--acento-1) 22%, transparent), transparent),
    radial-gradient(closest-side at 70% 65%, color-mix(in srgb, var(--acento-2) 16%, transparent), transparent);
  filter: blur(20px);
  animation: brilho 14s ease-in-out infinite alternate;
}
/* textura de pontos sutil, só do lado do texto */
.hero-cat--aparelhos::after {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: radial-gradient(rgba(19,27,82,.13) 1px, transparent 1.4px);
  background-size: 22px 22px;
  -webkit-mask-image: linear-gradient(90deg, #000 0%, transparent 45%);
          mask-image: linear-gradient(90deg, #000 0%, transparent 45%);
}
.hero-cat__etiqueta {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 18px; padding: 7px 16px 7px 8px;
  border-radius: 999px; background: rgba(255,255,255,.85); backdrop-filter: blur(6px);
  border: 1px solid var(--linha); box-shadow: 0 8px 20px -14px rgba(19,27,82,.5);
  font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--azul);
}
.hero-cat__etiqueta::before {
  content: ""; width: 22px; height: 22px; border-radius: 50%;
  background: linear-gradient(135deg, var(--acento-1), var(--acento-2));
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--acento-1) 18%, transparent);
}
.hero-cat--aparelhos h1 { font-weight: 900; letter-spacing: -.03em; }
/* destaque: degradê animado no texto + sublinhado que se desenha */
.hero-cat__destaque {
  background-image: linear-gradient(90deg, color-mix(in srgb, var(--acento-1) 30%, transparent), color-mix(in srgb, var(--acento-2) 30%, transparent));
  background-repeat: no-repeat; background-position: 0 96%; background-size: 0% .14em;
  -webkit-box-decoration-break: clone; box-decoration-break: clone;
  animation: sublinhar .9s .7s cubic-bezier(.65,0,.35,1) forwards;
}
.hero-cat__destaque > span {
  background: linear-gradient(90deg, var(--acento-1), var(--acento-2), var(--acento-1));
  background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  -webkit-box-decoration-break: clone; box-decoration-break: clone;
  animation: correr-cor 6s linear infinite;
}
.hero-cat__selos {
  display: flex; flex-wrap: wrap; gap: 8px 18px;
  margin: 26px 0 0; padding: 0; list-style: none;
  font-size: .88rem; font-weight: 600; color: var(--azul-noite);
}
.hero-cat__selos li { display: flex; align-items: center; gap: 7px; }
.hero-cat__selos li::before {
  content: ""; width: 18px; height: 18px; border-radius: 50%; flex: none;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 12.5l4 4 8-9'/%3E%3C/svg%3E") center / 12px no-repeat,
    linear-gradient(135deg, var(--acento-1), var(--acento-2));
}
/* entrada em sequência */
.hero-cat--aparelhos .hero-cat__texto > * { animation: subir .8s cubic-bezier(.2,.7,.2,1) both; }
.hero-cat--aparelhos .hero-cat__texto > :nth-child(2) { animation-delay: .1s; }
.hero-cat--aparelhos .hero-cat__texto > :nth-child(3) { animation-delay: .2s; }
.hero-cat--aparelhos .hero-cat__texto > :nth-child(4) { animation-delay: .3s; }
.hero-cat--aparelhos .hero-cat__texto > :nth-child(5) { animation-delay: .4s; }

/* Linha divisória colorida abaixo do hero */
.divisor-cores {
  position: relative; z-index: 2; height: 6px;
  background: linear-gradient(90deg, var(--vermelho), #FF7A00, #3D7BFF, var(--azul), var(--vermelho));
  background-size: 200% 100%;
  animation: correr-cor 8s linear infinite;
}
.divisor-cores::after {              /* reflexo desfocado da mesma cor */
  content: ""; position: absolute; inset: -4px 0; z-index: -1;
  background: inherit; filter: blur(12px); opacity: .7;
}
.divisor-cores::before {             /* brilho que atravessa a linha */
  content: ""; position: absolute; inset: 0; width: 22%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.85), transparent);
  animation: varrer 3.6s ease-in-out infinite;
}

@keyframes correr-cor { to { background-position: -200% 0; } }
@keyframes sublinhar { to { background-size: 100% .14em; } }
@keyframes subir { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes brilho { from { transform: translate(0, 0) scale(1); } to { transform: translate(8%, -6%) scale(1.12); } }
@keyframes varrer { from { left: -22%; } to { left: 100%; } }
.botao {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 26px; border-radius: 999px; border: 0; cursor: pointer;
  font-weight: 700; text-decoration: none;
  background: var(--vermelho); color: var(--branco);
  box-shadow: 0 12px 24px -12px rgba(227,32,42,.8);
  transition: background .2s, transform .2s;
}
.botao:hover { background: var(--vermelho-escuro); transform: translateY(-2px); }

.descer {
  position: absolute; left: 50%; bottom: 26px; translate: -50% 0;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  text-decoration: none; font-size: .85rem; font-weight: 600; color: var(--azul);
}
.descer__icone {
  width: 48px; height: 48px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--vermelho); color: var(--branco);
  box-shadow: 0 10px 22px -8px rgba(227,32,42,.8);
  animation: quicar 1.6s ease-in-out infinite;
}
.descer__icone svg { width: 22px; height: 22px; }
@keyframes quicar { 0%,100% { transform: translateY(0); } 50% { transform: translateY(9px); } }

/* Barra de busca do catálogo */
[hidden] { display: none !important; }
.so-leitor {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip-path: inset(50%); white-space: nowrap;
}
.busca {
  display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap;
  margin: 0 auto 26px;
}
.busca__campo {
  display: flex; align-items: center; gap: 10px; flex: 1 1 320px;
  max-width: 460px; padding: 12px 18px;
  background: var(--branco); border: 1px solid var(--linha); border-radius: 999px;
  box-shadow: 0 10px 24px -18px rgba(19,27,82,.6);
  transition: border-color .2s, box-shadow .2s;
}
.busca__campo:focus-within {
  border-color: var(--azul);
  box-shadow: 0 0 0 4px rgba(39,50,143,.12);
}
.busca__lupa { display: grid; place-items: center; color: var(--azul); flex: none; }
.busca__lupa svg { width: 19px; height: 19px; }
.busca__campo input {
  flex: 1; min-width: 0; border: 0; background: none; padding: 0;
  font: inherit; color: var(--texto);
}
.busca__campo input:focus { outline: none; }
.busca__campo input::-webkit-search-cancel-button { -webkit-appearance: none; }
.busca__limpar {
  border: 1px solid var(--linha); background: var(--branco); color: var(--azul);
  padding: 11px 20px; border-radius: 999px; cursor: pointer; font-weight: 600;
  transition: background .2s, color .2s;
}
.busca__limpar:hover { background: var(--azul); color: var(--branco); border-color: var(--azul); }
.busca__aviso { margin: -12px 0 24px; text-align: center; color: var(--texto-suave); font-weight: 600; }

/* Catálogo */
.catalogo {
  position: relative; overflow: hidden; isolation: isolate;
  padding: 88px 0 100px;
  background:
    radial-gradient(50% 40% at 0% 0%, color-mix(in srgb, var(--acento-1, var(--azul)) 10%, transparent), transparent 70%),
    radial-gradient(45% 40% at 100% 100%, color-mix(in srgb, var(--acento-2, var(--vermelho)) 9%, transparent), transparent 70%),
    var(--gelo);
}
/* textura de pontos bem suave no fundo */
.catalogo::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background-image: radial-gradient(rgba(19,27,82,.09) 1px, transparent 1.4px);
  background-size: 24px 24px;
  -webkit-mask-image: linear-gradient(180deg, #000, transparent 45%);
          mask-image: linear-gradient(180deg, #000, transparent 45%);
}
.catalogo__titulo {
  margin: 0 auto 12px; text-align: center;
  font-size: clamp(1.8rem, 3.6vw, 2.8rem); font-weight: 900; letter-spacing: -.03em;
  line-height: 1.1; color: var(--azul-noite);
}
/* traço colorido abaixo do título */
.catalogo__titulo::after {
  content: ""; display: block; width: 72px; height: 5px; margin: 16px auto 0; border-radius: 999px;
  background: linear-gradient(90deg, var(--acento-1, var(--azul)), var(--acento-2, var(--vermelho)));
}
.catalogo__desc { margin: 0 auto 48px; max-width: 52ch; text-align: center; color: var(--texto-suave); font-size: 1.02rem; }
.grade {
  display: grid; gap: 28px;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
}
.aviso {
  grid-column: 1 / -1; text-align: center; padding: 48px 20px;
  background: var(--branco); border-radius: var(--raio); color: var(--texto-suave);
  border: 1px dashed var(--linha);
}

.produto {
  position: relative;
  display: flex; flex-direction: column;
  background: var(--branco); border-radius: 26px; overflow: hidden;
  border: 1px solid rgba(221,224,236,.8);
  box-shadow: 0 1px 2px rgba(19,27,82,.04), 0 18px 40px -26px rgba(19,27,82,.35);
  transition: translate .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s;
  animation: subir .7s cubic-bezier(.2,.7,.2,1) both;
  animation-delay: calc(var(--i, 0) * 70ms);
}
/* filete colorido no topo do card, aparece ao passar o mouse */
.produto::before {
  content: ""; position: absolute; inset: 0 0 auto; height: 4px; z-index: 2;
  background: linear-gradient(90deg, var(--acento-1, var(--azul)), var(--acento-2, var(--vermelho)));
  transform: scaleX(0); transform-origin: left; transition: transform .45s cubic-bezier(.2,.7,.2,1);
}
.produto:hover { translate: 0 -6px; box-shadow: 0 1px 2px rgba(19,27,82,.04), 0 30px 60px -30px rgba(19,27,82,.5); }
.produto:hover::before { transform: scaleX(1); }
.produto__foto {
  position: relative; aspect-ratio: 1; padding: 28px;
  background:
    radial-gradient(60% 55% at 50% 58%, color-mix(in srgb, var(--acento-1, var(--azul)) 16%, transparent), transparent 72%),
    linear-gradient(165deg, #FFFFFF 0%, #EEF0F8 100%);
}
.produto__foto img {
  width: 100%; height: 100%; object-fit: contain;
  filter: drop-shadow(0 18px 22px rgba(19,27,82,.18));
  transition: opacity .25s, transform .5s cubic-bezier(.2,.7,.2,1);
}
.produto:hover .produto__foto img { transform: scale(1.05); }
.produto__corpo { display: flex; flex-direction: column; gap: 16px; padding: 22px 24px 26px; flex: 1; }
.produto h3 { margin: 0; font-size: 1.22rem; font-weight: 800; color: var(--azul-noite); line-height: 1.2; letter-spacing: -.01em; }
.produto__descricao { margin: 6px 0 0; font-size: .92rem; color: var(--texto-suave); white-space: pre-line; }
/* preço sempre em azul */
.produto__preco {
  padding-top: 14px; border-top: 1px solid var(--linha);
  font-size: 1.8rem; font-weight: 900; letter-spacing: -.02em; color: var(--azul); line-height: 1;
}
.produto__preco small { display: block; margin-top: 7px; font-size: .8rem; font-weight: 600; letter-spacing: 0; color: var(--texto-suave); }

.escolha { border: 0; margin: 0; padding: 0; }
.escolha legend { padding: 0; margin-bottom: 8px; font-size: .85rem; font-weight: 700; color: var(--azul-noite); }
.opcoes { display: flex; flex-wrap: wrap; gap: 8px; }
.opcao { position: relative; }
.opcao input { position: absolute; opacity: 0; inset: 0; margin: 0; cursor: pointer; }
.opcao span {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 13px; border-radius: 999px;
  border: 1.5px solid var(--linha); background: var(--branco);
  font-size: .85rem; font-weight: 600; color: var(--texto);
  transition: border-color .15s, background .15s, color .15s;
  cursor: pointer;
}
.opcao .bolinha { width: 14px; height: 14px; border-radius: 50%; border: 1px solid rgba(0,0,0,.18); }
.opcao input:checked + span { border-color: var(--azul); background: var(--azul); color: var(--branco); }
.opcao input:focus-visible + span { outline: 3px solid var(--vermelho); outline-offset: 2px; }

.comprar {
  margin-top: auto;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 15px; border: 0; border-radius: 14px; cursor: pointer;
  background: var(--verde-whats); color: var(--branco); font-weight: 700; font-size: 1rem;
  transition: filter .2s;
}
.comprar:hover { filter: brightness(.93); }
.comprar { box-shadow: 0 12px 24px -12px rgba(31,168,85,.8); }
.comprar svg { width: 20px; height: 20px; }
.produto__erro { margin: -6px 0 0; font-size: .82rem; font-weight: 600; color: var(--vermelho); min-height: 1.2em; }

/* ---------- Rodapé ---------- */
.rodape { background: var(--azul-noite); color: #D8DBF0; padding: 56px 0 28px; }
.rodape__grade { display: grid; grid-template-columns: 1fr 1fr 1.6fr; gap: 40px; align-items: start; }
.rodape__grade > * { min-width: 0; }
.rodape__sobre { font-size: .92rem; line-height: 1.6; overflow-wrap: break-word; }
.rodape__sobre p { margin: 0 0 12px; }
.rodape__sobre .rodape__assinatura { color: var(--branco); margin-bottom: 0; }
.rodape h2 { margin: 0 0 14px; font-size: 1.05rem; color: var(--branco); }
.rodape ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; font-size: .92rem; }
.rodape strong { color: var(--branco); }
.rodape__dia { color: #FF6E74; font-weight: 700; }
.rodape__whats {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 16px;
  color: var(--branco); font-weight: 700; text-decoration: none;
}
.rodape__whats svg { width: 20px; height: 20px; }
.rodape__base { margin-top: 36px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); font-size: .8rem; text-align: center; opacity: .7; }

/* Botão flutuante WhatsApp */
.whats-flutuante {
  position: fixed; right: 18px; bottom: 18px; z-index: 50;
  width: 58px; height: 58px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--verde-whats); color: var(--branco);
  box-shadow: 0 12px 26px -10px rgba(0,0,0,.45);
}
.whats-flutuante svg { width: 30px; height: 30px; }

/* =========================================================
   RESPONSIVO
   ========================================================= */
@media (max-width: 900px) {
  .principal { padding: 0 0 52px; }
  .principal__texto { padding-top: 28px; }
  .rodape__grade { grid-template-columns: 1fr 1fr; }
  .rodape__grade > :last-child { grid-column: 1 / -1; }
}

@media (max-width: 1199px) {
  /* aparelhos no topo, centralizados, com degradê embaixo; texto logo abaixo */
  .hero-cat--aparelhos {
    --largura-img: min(100vw, 560px);
    --altura-img: calc(var(--largura-img) * var(--prop-mobile));
    min-height: auto;
    justify-content: flex-start;
    padding: calc(84px + var(--altura-img) - 10px) 0 110px;
    background-image:
      linear-gradient(180deg, rgba(255,255,255,0) 55%, rgba(255,255,255,.85) 84%, #FFFFFF 96%),
      var(--img-mobile);
    background-position: center 84px;
    background-size: var(--largura-img) calc(var(--altura-img) + 2px), var(--largura-img) auto;
  }
  .hero-cat--aparelhos .hero-cat__texto { max-width: 560px; margin-inline: auto; text-align: center; position: relative; }
  .hero-cat--aparelhos h1 { font-size: clamp(2rem, 6.4vw, 3rem); }
  .hero-cat--aparelhos p { margin-inline: auto; }
  .hero-cat__selos { justify-content: center; }
  .hero-cat--aparelhos::before { left: 50%; top: auto; bottom: -10%; translate: -50% 0; width: 120vw; max-width: 900px; }
  .hero-cat--aparelhos::after { -webkit-mask-image: linear-gradient(0deg, #000 0%, transparent 55%); mask-image: linear-gradient(0deg, #000 0%, transparent 55%); }
}
/* tablet: a imagem não ocupa a largura toda, então as laterais também esmaecem */
@media (min-width: 561px) and (max-width: 1199px) {
  .hero-cat--aparelhos {
    background-image:
      linear-gradient(90deg, #FFFFFF 0%, rgba(255,255,255,0) 14%, rgba(255,255,255,0) 86%, #FFFFFF 100%),
      linear-gradient(180deg, rgba(255,255,255,0) 55%, rgba(255,255,255,.85) 84%, #FFFFFF 96%),
      var(--img-mobile);
    background-size: var(--largura-img) calc(var(--altura-img) + 2px), var(--largura-img) calc(var(--altura-img) + 2px), var(--largura-img) auto;
  }
}

@media (max-width: 700px) {
  .topo__logo img { width: 52px; height: 52px; }
  .catalogo { padding: 56px 0 72px; }
  .grade { grid-template-columns: 1fr; }
  .rodape__grade { grid-template-columns: 1fr; gap: 30px; }
  .carrossel__seta { width: 32px; height: 32px; }
  .carrossel__som { width: 34px; height: 34px; right: 10px; bottom: 10px; }
  /* três botões lado a lado no celular */
  .atalho { font-size: .9rem; gap: 10px; }
  .atalho__circulo { width: clamp(84px, 24vw, 112px); }
  .carrossel__seta--ant { left: 8px; }
  .carrossel__seta--prox { right: 8px; }
  .carrossel__pontos { bottom: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
