/* ==========================================================
   FPSS 2027 — HERO FUNDO CLARO
   Estilo jornalístico, limpo, profissional
   Fonte: Merriweather + Roboto
========================================================== */

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

/* ==========================================================
   HERO — FUNDO CREME CLARO
========================================================== */

.hero-v4 {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #fdf6ee 0%, #fdf0e0 60%, #fce8d0 100%);
  border-bottom: 3px solid #cc0000;
}

/* detalhe decorativo sutil no canto */
.hero-v4::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 420px; height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(204,0,0,0.04) 100%);
  pointer-events: none;
  z-index: 0;
}

/* esconde o background/overlay do vídeo no tema claro */
.hero-v4__background,
.hero-v4__overlay { display: none; }

/* ==========================================================
   CONTAINER
========================================================== */

.hero-v4__container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 36px 28px 38px;
}

/* ==========================================================
   GRID — ESQUERDA + DIREITA
========================================================== */

.hero-v4__grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  align-items: center;
  gap: 40px;
}

/* ==========================================================
   COLUNA ESQUERDA
========================================================== */

.hero-v4__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  animation: heroFadeUp .6s ease forwards;
}

/* ==========================================================
   BADGE
========================================================== */

.hero-v4__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 14px;
  margin-bottom: 14px;
  border-radius: 4px;
  background: #cc0000;
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-family: 'Roboto', sans-serif;
}

/* ==========================================================
   TÍTULO
========================================================== */

.hero-v4__title {
  margin: 0;
  font-family: 'Merriweather', Georgia, serif;
  font-size: clamp(26px, 3vw, 46px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -1px;
  text-transform: uppercase;
  color: #1a0000;
}

.hero-v4__title span {
  display: block;
  color: #cc0000;
}

/* ==========================================================
   SUBTÍTULO
========================================================== */

.hero-v4__subtitle {
  margin-top: 12px;
  max-width: 520px;
  color: #555555;
  font-size: 14px;
  line-height: 1.65;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
}

/* ==========================================================
   CHIPS
========================================================== */

.hero-v4__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 16px;
}

.hero-v4__chip {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #e0d0c0;
  color: #333333;
  font-size: 11px;
  font-weight: 600;
  font-family: 'Roboto', sans-serif;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

/* ==========================================================
   BOTÕES — 3 NA MESMA LINHA
========================================================== */

.hero-v4__actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  margin-top: 22px;
  width: 100%;
}

.hero-v4__button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 44px;
  padding: 0 18px;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .3px;
  transition: all .22s ease;
  cursor: pointer;
  text-transform: uppercase;
  white-space: nowrap;
  flex: 1;
  font-family: 'Roboto', sans-serif;
}

/* brilho no hover */
.hero-v4__button::before {
  content: "";
  position: absolute;
  top: 0; left: -130%;
  width: 70%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.28), transparent);
  transition: .6s;
}
.hero-v4__button:hover::before { left: 130%; }

/* CARTELA — vermelho pulsante */
.hero-v4__button--primary {
  background: linear-gradient(135deg, #cc0000, #990000);
  color: #ffffff;
  animation: pulseRed 2.4s infinite;
}

@keyframes pulseRed {
  0%   { box-shadow: 0 0 0 0 rgba(204,0,0,.45); }
  70%  { box-shadow: 0 0 0 12px rgba(204,0,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(204,0,0,0); }
}

.hero-v4__button--primary:hover {
  background: linear-gradient(135deg, #e60000, #bb0000);
  transform: translateY(-2px);
}

/* WHATSAPP — verde pulsante */
.hero-v4__button--whatsapp {
  background: linear-gradient(135deg, #25d366, #128c4a);
  color: #ffffff;
  animation: pulseGreen 2.4s infinite .5s;
}

@keyframes pulseGreen {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,.45); }
  70%  { box-shadow: 0 0 0 12px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

.hero-v4__button--whatsapp:hover {
  background: linear-gradient(135deg, #2ee870, #15a854);
  transform: translateY(-2px);
}

/* CAMISETA — borda, discreto */
.hero-v4__button--secondary {
  background: #ffffff;
  border: 1.5px solid #cc0000;
  color: #cc0000;
  flex: 0.8;
}

.hero-v4__button--secondary:hover {
  background: #fff5f5;
  transform: translateY(-2px);
}

/* esconde prova social */
.hero-v4__social-proof { display: none; }

/* ==========================================================
   COLUNA DIREITA
========================================================== */

.hero-v4__right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  animation: heroFadeUp .7s ease forwards;
}

/* ==========================================================
   CARD DO ARTISTA + COUNTDOWN — COMPACTO
========================================================== */

.hero-v4__artist-card {
  width: 100%;
  background: #ffffff;
  border: 1px solid #e8ddd0;
  border-left: 4px solid #cc0000;
  border-radius: 10px;
  padding: 14px 16px;
  box-shadow: 0 3px 14px rgba(0,0,0,0.07);
}

.hero-v4__artist-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: 4px;
  background: #fff5f5;
  border: 1px solid #ffcccc;
  color: #cc0000;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .8px;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-family: 'Roboto', sans-serif;
}

.hero-v4__artist-content {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-v4__artist-image {
  width: 140px;
  height: 80px;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid #f0e0d0;
}

.hero-v4__artist-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  background: #ffffff;
}

.hero-v4__artist-info { flex: 1; }

.hero-v4__artist-name {
  margin: 0;
  color: #1a0000;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.1;
  font-family: 'Merriweather', Georgia, serif;
}

.hero-v4__artist-description {
  margin-top: 4px;
  color: #777777;
  font-size: 11px;
  line-height: 1.4;
  font-family: 'Roboto', sans-serif;
}

.hero-v4__divider {
  margin: 12px 0 10px;
  border: none;
  height: 1px;
  background: #f0e0d0;
}

/* COUNTDOWN */
.hero-v4__countdown-title {
  display: block;
  text-align: center;
  color: #cc0000;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-family: 'Roboto', sans-serif;
}

.hero-v4__countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.hero-v4__count-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 7px;
  background: #fff8f5;
  border: 1px solid #f0e0d0;
}

.hero-v4__count-number {
  color: #cc0000;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  font-family: 'Merriweather', Georgia, serif;
}

.hero-v4__count-label {
  margin-top: 3px;
  color: #999;
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  font-family: 'Roboto', sans-serif;
}

/* ALERTA DATA */
.hero-v4__date-alert {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 10px;
  padding: 7px 10px;
  border-radius: 6px;
  background: #fff5f5;
  border: 1px solid #ffcccc;
  color: #cc0000;
  font-size: 10px;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
  font-family: 'Roboto', sans-serif;
}

/* CTA dentro do card */
.hero-v4__card-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 8px;
  padding: 10px;
  border-radius: 7px;
  background: linear-gradient(135deg, #cc0000, #990000);
  color: #ffffff;
  text-decoration: none;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .3px;
  transition: .22s;
  animation: pulseRed 2.4s infinite .9s;
  font-family: 'Roboto', sans-serif;
}

.hero-v4__card-cta:hover {
  background: linear-gradient(135deg, #e60000, #bb0000);
  transform: scale(1.02);
}

/* ==========================================================
   ANIMAÇÃO
========================================================== */

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

/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1024px) {
  .hero-v4__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .hero-v4__left { align-items: center; text-align: center; }
  .hero-v4__title { text-align: center; }
  .hero-v4__subtitle { text-align: center; }
  .hero-v4__chips { justify-content: center; }
  .hero-v4__actions { justify-content: center; }
  .hero-v4__right { max-width: 440px; margin: 0 auto; width: 100%; }
}

/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 640px) {
  .hero-v4__container { padding: 24px 16px 28px; }
  .hero-v4__title { font-size: 24px; }
  .hero-v4__subtitle { font-size: 13px; }
  .hero-v4__actions {
    flex-wrap: wrap;
    gap: 8px;
  }
  .hero-v4__button {
    flex: 1 1 calc(50% - 4px);
    font-size: 11px;
  }
  .hero-v4__button--secondary { flex: 1 1 100%; }
  .hero-v4__right {
    grid-template-columns: 1fr;
  }
  .hero-v4__foto-principal { height: 180px; }
  .hero-v4__count-number { font-size: 17px; }
  .hero-v4__count-item { min-height: 44px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}

/* ---- BOTÃO CHURRASCO ANTECIPADO ---- */
.hero-v4__button--churrasco {
  background: linear-gradient(135deg, #e67e00, #cc6600);
  color: #ffffff;
}
.hero-v4__button--churrasco:hover {
  background: linear-gradient(135deg, #ff8c00, #e67300);
  transform: translateY(-2px);
}
