﻿/* ═══════════════════════════════════════════════════════════════
   Red Wave Energy Drink — Landing Page Prototype
   style.css — versão 1.0
   Plataforma de destino: WordPress + Elementor Free
   Todo este CSS pode ser aplicado via Appearance > Additional CSS
   ═══════════════════════════════════════════════════════════════ */


/* ─────────────────────────────────────────────
   1. DESIGN TOKENS (Custom Properties)
   ───────────────────────────────────────────── */
:root {
  color-scheme: only light;
  /* Vermelhos e Vinhos — identidade principal */
  --c-red-main:    #ED1C24;
  --c-red-lit:     #CF2E22;
  --c-red-brand:   #B70A14;
  --c-red-burnt:   #A92329;
  --c-wine-dark:   #920A10;
  --c-wine-mid:    #741214;
  --c-wine-deep:   #640206;

  /* Verde Melancia — destaque do lançamento */
  --c-green:       #1C7C36;
  --c-green-dark:  #0C5225;
  --c-green-mid:   #497D3F;
  --c-green-light: #779D6E;

  /* Acabamento premium */
  --c-gold:        #D3A47D;
  --c-caramel:     #C89B75;

  /* Neutras */
  --c-white:       #FFFFFF;
  --c-offwhite:    #E9E5E2;
  --c-offwhite-2:  #F5F2F0;
  --c-charcoal:    #413B39;

  /* Tipografia */
  --font-title: 'Montserrat', sans-serif;
  --font-body:  'Inter', sans-serif;

  /* Espaçamento */
  --section-py:     80px;
  --section-py-sm:  56px;
  --container-max:  1200px;
  --container-px:   24px;
  --gap-cards:      24px;

  /* Transições */
  --tr: 0.22s ease;
  --tr-slow: 0.4s ease;
}


/* ─────────────────────────────────────────────
   2. RESET & BASE
   ───────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--c-charcoal);
  background-color: var(--c-wine-deep);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* Acessibilidade: skip link */
.skip-link {
  position: absolute;
  top: -200%;
  left: 8px;
  background: var(--c-white);
  color: var(--c-wine-deep);
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: 700;
  z-index: 9999;
  font-family: var(--font-title);
}
.skip-link:focus { top: 8px; }

:focus-visible {
  outline: 2px solid var(--c-gold);
  outline-offset: 3px;
  border-radius: 2px;
}


/* ─────────────────────────────────────────────
   3. LAYOUT UTILITÁRIOS
   ───────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-px);
}

.section {
  padding-block: var(--section-py-sm);
}

@media (min-width: 900px) {
  .section { padding-block: var(--section-py); }
}

/* Cabeçalho centralizado de seção */
.section-header {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: 48px;
}
.section-header .section-title { margin-bottom: 16px; }

/* Tipografia de seção */
.section-title {
  font-family: var(--font-title);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-size: clamp(26px, 4vw, 42px);
}
.section-title--dark  { color: var(--c-charcoal); }
.section-title--light { color: var(--c-white); }

.section-text {
  font-size: clamp(15px, 1.8vw, 17px);
  line-height: 1.7;
}
.section-text--dark  { color: var(--c-charcoal); }
.section-text--light { color: rgba(255,255,255,0.82); }

.section-cta-wrap {
  text-align: center;
  margin-top: 40px;
}

/* Ocultar apenas em mobile */
@media (max-width: 899px) {
  .hide-mobile { display: none !important; }
}


/* ─────────────────────────────────────────────
   4. BOTÕES
   ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 6px;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background-color var(--tr), color var(--tr), border-color var(--tr), transform var(--tr);
  white-space: nowrap;
  min-height: 48px;
  line-height: 1;
}

.btn:active { transform: scale(0.97); }

/* Primário — vermelho sólido */
.btn-primary {
  background-color: var(--c-red-main);
  color: var(--c-white);
  border-color: var(--c-red-main);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background-color: var(--c-red-lit);
  border-color: var(--c-red-lit);
}

/* Contorno — borda dourada sobre fundo escuro */
.btn-outline {
  background-color: transparent;
  color: var(--c-white);
  border-color: var(--c-gold);
}
.btn-outline:hover, .btn-outline:focus-visible {
  background-color: var(--c-gold);
  color: var(--c-wine-deep);
}

/* Contorno claro — sobre fundo escuro */
.btn-outline-light {
  background-color: transparent;
  color: var(--c-white);
  border-color: rgba(255,255,255,0.45);
}
.btn-outline-light:hover, .btn-outline-light:focus-visible {
  background-color: rgba(255,255,255,0.1);
  border-color: var(--c-white);
}

/* Download — sobre fundo claro */
.btn-download {
  background-color: transparent;
  color: var(--c-wine-deep);
  border-color: var(--c-caramel);
  width: 100%;
  font-size: 13px;
  padding: 12px 20px;
}
.btn-download:hover, .btn-download:focus-visible {
  background-color: var(--c-wine-deep);
  color: var(--c-white);
  border-color: var(--c-wine-deep);
}

/* Download — variante verde Melancia */
.btn-download--green {
  color: var(--c-green);
  border-color: var(--c-green);
}
.btn-download--green:hover, .btn-download--green:focus-visible {
  background-color: var(--c-green);
  color: var(--c-white);
  border-color: var(--c-green);
}

/* Tamanho pequeno */
.btn-sm {
  padding: 10px 20px;
  font-size: 13px;
  min-height: 40px;
}


/* ─────────────────────────────────────────────
   5. BADGES / SELOS
   ───────────────────────────────────────────── */
.badge {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 40px;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1;
}

.badge--green {
  background-color: var(--c-green);
  color: var(--c-white);
}

.badge--sm {
  font-size: 10px;
  padding: 4px 10px;
}


/* ─────────────────────────────────────────────
   6. PLACEHOLDERS DE IMAGEM
   Indicam qual asset deve ser substituído
   ───────────────────────────────────────────── */
.img-ph {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background-color: rgba(255,255,255,0.06);
  border: 2px dashed rgba(255,255,255,0.18);
  padding: 12px;
}

.img-ph--dark {
  background-color: rgba(0,0,0,0.07);
  border-color: rgba(0,0,0,0.15);
}

.img-ph__label {
  font-size: 10px;
  font-family: monospace;
  color: rgba(255,255,255,0.35);
  text-align: center;
  word-break: break-all;
  margin-top: 6px;
  line-height: 1.4;
}

.img-ph--dark .img-ph__label { color: rgba(0,0,0,0.3); }

/* Tamanhos específicos */
.img-ph--logo       { width: 120px; height: 40px; border-radius: 4px; }
.img-ph--logo-sm    { width: 100px; height: 36px; border-radius: 4px; }
.img-ph--product-hero  { width: 240px; min-height: 360px; }
.img-ph--product-mid   { width: 220px; min-height: 300px; }
.img-ph--product-card  { width: 100%; min-height: 200px; }
.img-ph--product-campanha { width: 180px; min-height: 280px; opacity: 0.35; }

@media (min-width: 900px) {
  .img-ph--product-hero { width: 260px; min-height: 440px; }
}


/* ─────────────────────────────────────────────
   7. HEADER
   ───────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding-block: 14px;
  background-color: rgba(100, 2, 6, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background-color var(--tr-slow), box-shadow var(--tr-slow);
}

.site-header.is-scrolled {
  background-color: rgba(100, 2, 6, 0.98);
  box-shadow: 0 2px 24px rgba(0,0,0,0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.header-logo { flex-shrink: 0; }

.site-logo-img {
  display: block;
  width: 95px;
  max-width: 100%;
  height: auto;
}

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

@media (max-width: 600px) {
  .site-logo-img  { width: 82px; }
  .footer-logo-img { width: 100px; }
}


/* ─────────────────────────────────────────────
   8. HERO
   ───────────────────────────────────────────── */
.section-hero {
  background: linear-gradient(135deg,
    var(--c-wine-deep) 0%,
    var(--c-wine-dark) 55%,
    var(--c-red-brand) 100%
  );
  padding-top: 48px;
  padding-bottom: 48px;
  min-height: auto;    /* sem altura baseada em viewport — evita página em branco */
  display: flex;
  align-items: center;
}

@media (min-width: 900px) {
  .section-hero {
    padding-top: 72px;
    padding-bottom: 72px;
    min-height: 560px;  /* pixel fixo — impacto visual sem quebrar PDF */
  }
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
}

@media (min-width: 900px) {
  .hero-inner {
    flex-direction: row;
    text-align: left;
    gap: 56px;
    align-items: center;
  }
}

/* Coluna de texto */
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  flex: 0 0 auto;
}

@media (min-width: 900px) {
  .hero-content {
    flex: 0 0 54%;
    align-items: flex-start;
  }
}

.hero-title {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: clamp(38px, 6.5vw, 66px);
  line-height: 0.96;
  color: var(--c-white);
  letter-spacing: -0.03em;
  margin-top: 4px;
}

.hero-title__accent {
  display: block;
  color: var(--c-offwhite);
}

.hero-sub {
  font-size: clamp(15px, 1.8vw, 18px);
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  max-width: 460px;
}

.hero-support {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  max-width: 440px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  width: 100%;
}

@media (min-width: 900px) {
  .hero-ctas { justify-content: flex-start; }
}

/* Coluna do produto */
.hero-product-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

@media (min-width: 900px) {
  .hero-product-wrap { flex: 0 0 46%; }
}

/* Glow verde atrás do produto */
.hero-product-glow {
  position: absolute;
  width: 340px;
  height: 340px;
  background: radial-gradient(
    circle,
    rgba(28, 124, 54, 0.32) 0%,
    transparent 60%
  );
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

@media (min-width: 900px) {
  .hero-product-glow { width: 460px; height: 460px; }
}

/* Imagem do produto — rotação e sombra */
.hero-product-wrap .img-ph--product-hero {
  position: relative;
  z-index: 1;
  transform: rotate(-6deg);
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.55));
  margin-inline: auto;
}

/* Imagem real do hero — mobile-first com largura responsiva */
.hero-product-img {
  position: relative;
  z-index: 1;
  display: block;
  width: clamp(260px, 65vw, 320px);
  max-width: 100%;
  height: auto;
  object-fit: contain;
  transform: rotate(-6deg);
  filter: drop-shadow(0 28px 56px rgba(0,0,0,0.65));
  margin-inline: auto;
}

@media (min-width: 900px) {
  .hero-product-img {
    width: clamp(420px, 33vw, 500px);
  }
}


/* ─────────────────────────────────────────────
   9. LANÇAMENTO
   ───────────────────────────────────────────── */
.section-lancamento {
  background-color: var(--c-offwhite);
}

.lancamento-inner {
  max-width: 680px;
  margin-inline: auto;
}

.lancamento-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.lancamento-quote {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: clamp(17px, 2.5vw, 22px);
  color: var(--c-red-main);
  border-left: 3px solid var(--c-gold);
  padding-left: 18px;
  line-height: 1.3;
  margin-top: 8px;
}

.lancamento-microcopy {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-red-burnt);
}


/* ─────────────────────────────────────────────
   10. LINHA RED WAVE — linguagem editorial
   ───────────────────────────────────────────── */
.section-linha {
  background-color: var(--c-offwhite-2);
}

.linha-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap-cards);
}

@media (min-width: 600px) {
  .linha-cards { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 900px) {
  .linha-cards { grid-template-columns: repeat(3, 1fr); }
}

.linha-card {
  background-color: var(--c-white);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: box-shadow var(--tr), transform var(--tr);
}
.linha-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  transform: translateY(-2px);
}

.linha-card--destaque {
  border: 2px solid rgba(28, 124, 54, 0.4);
}

.linha-card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 1;
}

.linha-card__img-wrap {
  background-color: var(--c-offwhite);
  padding: 20px 16px;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 600px) {
  .linha-card__img-wrap {
    min-height: 240px;
  }
}

.linha-card__img-wrap .img-ph {
  background-color: rgba(100,2,6,0.04);
  border-color: rgba(100,2,6,0.12);
  margin-inline: auto;
}
.linha-card__img-wrap .img-ph__label { color: rgba(100,2,6,0.28); }

.linha-card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.linha-card__title {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 17px;
  color: var(--c-wine-deep);
}

.linha-card__sizes {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.size-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 0.04em;
  background-color: var(--c-wine-deep);
  color: var(--c-white);
}
.size-tag--green {
  background-color: var(--c-green);
}

.linha-card__text {
  font-size: 13px;
  color: var(--c-charcoal);
  line-height: 1.65;
  flex: 1;
}

/* Imagem composta do card Melancia (250ml + 2L na mesma arte) */
.linha-card__single-composite-img {
  display: block;
  width: min(100%, 220px);
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.18));
}

@media (max-width: 600px) {
  .linha-card__single-composite-img {
    width: min(100%, 190px);
  }
}


/* ─────────────────────────────────────────────
   13. COMERCIAL / B2B
   ───────────────────────────────────────────── */
.section-comercial {
  background-color: var(--c-wine-deep);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.comercial-inner {
  max-width: 860px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
  text-align: center;
}

.comercial-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comercial-bullets {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  text-align: left;
}

@media (min-width: 680px) {
  .comercial-bullets { grid-template-columns: repeat(3, 1fr); }
}

.comercial-bullet {
  background-color: rgba(255,255,255,0.06);
  border: 1px solid rgba(211,164,125,0.2);
  border-radius: 8px;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.comercial-bullet__title {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 14px;
  color: var(--c-gold);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 10px;
}

.comercial-bullet__title::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 2px;
  background-color: var(--c-gold);
  flex-shrink: 0;
}

.comercial-bullet__text {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

.comercial-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: center;
}

.comercial-phone {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
}


/* ─────────────────────────────────────────────
   15. DOWNLOADS — linguagem institucional
   ───────────────────────────────────────────── */
.section-downloads {
  background-color: var(--c-offwhite);
}

.download-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap-cards);
}

@media (min-width: 600px) {
  .download-cards { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 900px) {
  .download-cards { grid-template-columns: repeat(3, 1fr); }
}

.download-card {
  background-color: var(--c-white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 10px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

.download-card--destaque {
  border-color: rgba(28, 124, 54, 0.28);
}

.download-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
}

.download-card__icon {
  color: var(--c-wine-deep);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 36px;
  height: 36px;
}
.download-card__icon--green { color: var(--c-green); }

.download-card__title {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 16px;
  color: var(--c-wine-deep);
}

.download-card__text {
  font-size: 13px;
  color: var(--c-charcoal);
  line-height: 1.65;
  flex: 1;
}

.downloads-disclaimer {
  text-align: center;
  font-size: 12px;
  color: rgba(0,0,0,0.38);
  margin-top: 28px;
  font-style: italic;
}


/* ─────────────────────────────────────────────
   16. FOOTER
   ───────────────────────────────────────────── */
.site-footer {
  background-color: var(--c-wine-deep);
}

/* Bloco pré-rodapé: Instagram */
.footer-instagram {
  background: linear-gradient(135deg,
    var(--c-wine-mid) 0%,
    var(--c-wine-deep) 100%
  );
  padding-block: 64px;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-instagram__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  text-align: center;
}

@media (min-width: 900px) {
  .footer-instagram__inner {
    flex-direction: row;
    text-align: left;
    gap: 48px;
    align-items: center;
  }
  .footer-instagram__content { flex: 1; }
}

.footer-instagram__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-instagram__title {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: clamp(22px, 3.5vw, 34px);
  color: var(--c-white);
  letter-spacing: -0.02em;
}

.footer-instagram__text {
  font-size: 15px;
  color: rgba(255,255,255,0.72);
  max-width: 460px;
}

.footer-instagram__cta { align-self: center; }

@media (min-width: 900px) {
  .footer-instagram__cta { align-self: flex-start; }
}

/* Ícone Instagram decorativo */
.instagram-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.35);
  transition: color var(--tr);
  text-decoration: none;
}
.instagram-icon:hover { color: rgba(255,255,255,0.65); }

.instagram-icon__handle {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.06em;
}

/* Rodapé institucional */
.footer-main {
  padding-top: 56px;
  padding-bottom: 32px;
}

.footer-main__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .footer-main__inner {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}

@media (min-width: 1024px) {
  .footer-main__inner {
    grid-template-columns: 1.4fr 1fr 1.6fr;
  }
}

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

.footer-brand__tagline {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
}

.footer-brand__attr {
  font-size: 12px;
  color: rgba(255,255,255,0.38);
  line-height: 1.5;
}

.footer-links { }

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

.footer-links__list a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color var(--tr);
}
.footer-links__list a:hover { color: var(--c-white); }

/* Texto SEO local — discreto */
.footer-seo {
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  line-height: 1.75;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 24px;
}

.footer-copyright {
  font-size: 11px;
  color: rgba(255,255,255,0.28);
  text-align: center;
}


/* ─────────────────────────────────────────────
   17. BOTÃO FLUTUANTE WHATSAPP
   Elementor: widget HTML + CSS via Additional CSS
   ───────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  width: 56px;
  height: 56px;
  background-color: #25D366;
  color: var(--c-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  transition: transform var(--tr), box-shadow var(--tr);
}

.whatsapp-float:hover, .whatsapp-float:focus-visible {
  transform: scale(1.08);
  box-shadow: 0 8px 28px rgba(0,0,0,0.4);
}

.whatsapp-float svg { flex-shrink: 0; }


/* ─────────────────────────────────────────────
   18. ANIMAÇÕES DISCRETAS
   ───────────────────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  .linha-card,
  .btn,
  .whatsapp-float {
    will-change: transform;
  }
}


/* ─────────────────────────────────────────────
   19. PRINT / PDF
   Aplicado apenas em exportações e impressões.
   Não afeta o layout no navegador.
   ───────────────────────────────────────────── */
@media print {

  /* Header: remove sticky para não flutuar no PDF */
  .site-header {
    position: relative;
    box-shadow: none;
    background-color: #640206;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
    page-break-after: avoid;
    break-after: avoid;
  }

  /* Hero: altura automática, padding reduzido, sem quebra antes */
  .section-hero {
    min-height: auto;
    padding-top: 32px;
    padding-bottom: 32px;
    page-break-before: avoid;
    break-before: avoid;
    page-break-inside: avoid;
    break-inside: avoid;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  /* Mantém layout de 2 colunas no hero — evita empilhamento estranho */
  .hero-inner {
    flex-direction: row;
    align-items: center;
    page-break-inside: avoid;
    break-inside: avoid;
  }

  /* Impede qualquer quebra de página entre header e hero */
  .site-header + main .section-hero {
    page-break-before: avoid;
    break-before: avoid;
  }

  /* Botão flutuante WhatsApp — oculto no print */
  .whatsapp-float {
    display: none;
  }

  /* Animações e transições — desativadas no print */
  * {
    transition: none !important;
    animation: none !important;
  }
}

/* ─────────────────────────────────────────────
   20. COMPATIBILIDADE — TEMA CLARO / ANDROID
   Mantém a identidade visual em navegadores que respeitam
   color-scheme. Em aparelhos com dark mode forçado para sites,
   a renderização pode ser alterada pelo próprio navegador.
   ───────────────────────────────────────────── */

html,
body {
  color-scheme: only light;
}

.section-lancamento,
.section-linha,
.section-downloads,
.linha-card,
.download-card {
  forced-color-adjust: none;
}

.section-lancamento {
  background-color: var(--c-offwhite);
}

.section-linha {
  background-color: var(--c-offwhite-2);
}

.section-downloads {
  background-color: var(--c-offwhite);
}

.linha-card,
.download-card {
  background-color: var(--c-white);
}

.section-title--dark,
.section-text--dark,
.linha-card__title,
.linha-card__text,
.download-card__title,
.download-card__text,
.downloads-disclaimer {
  color: var(--c-charcoal);
}

.lancamento-quote {
  color: var(--c-red-main);
}

.lancamento-microcopy {
  color: var(--c-red-burnt);
}


/* =========================================================
   HERO PRODUCT PULSE
   Pulsação sutil da embalagem Red Wave Melancia no hero.
   ========================================================= */

@media (prefers-reduced-motion: no-preference) {
  .hero-product-img {
    animation: redwaveProductPulse 2.2s ease-in-out infinite;
    transform-origin: center center;
  }

  .hero-product-glow {
    animation: redwaveGlowPulse 2.2s ease-in-out infinite;
    transform-origin: center center;
  }
}

@keyframes redwaveProductPulse {
  0% {
    transform: scale(1) rotate(-6deg);
  }

  50% {
    transform: scale(1.045) rotate(-6deg);
  }

  100% {
    transform: scale(1) rotate(-6deg);
  }
}

@keyframes redwaveGlowPulse {
  0% {
    opacity: 0.72;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.08);
  }

  100% {
    opacity: 0.72;
    transform: scale(1);
  }
}

