/* ==========================================================================
   STOP SEEK - Design Tipográfico & Carro Elétrico em Movimento / Carregamento
   Paleta Oficial: #120330 (Dark) | #1b0448 (Midnight) | #6505c8 (Violet) | #00bcd4 (Cyan)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@600;700&family=Inter:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Oxanium:wght@600;700;800;900&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
  /* Cores da Paleta Oficial */
  --bg-dark: #0d0221;
  --bg-darker: #070114;
  --color-midnight: #1b0448;
  --color-purple: #6505c8;
  --color-purple-bright: #7c14e8;
  --color-cyan: #00bcd4;
  --color-cyan-bright: #26c6da;
  --color-whatsapp: #25d366;

  --text-main: #ffffff;
  --text-light: #e0e7ff;
  --text-muted: #9ba3c0;

  /* Tipografias */
  --font-highlight: 'Oxanium', -apple-system, sans-serif;
  --font-tech-clean: 'Space Grotesk', sans-serif;
  --font-sans: 'Inter', -apple-system, sans-serif;

  --grad-brand: linear-gradient(135deg, #00bcd4 0%, #6505c8 60%, #1b0448 100%);
  --grad-cyan-purple: linear-gradient(135deg, #00bcd4 0%, #7c14e8 100%);
  --grad-giant-text: linear-gradient(180deg, #ffffff 0%, #00bcd4 45%, #6505c8 100%);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-sans);
  scroll-behavior: smooth;
  letter-spacing: -0.03em;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  min-height: 100vh;
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
  letter-spacing: -0.03em;
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(101, 5, 200, 0.22) 0%, transparent 50%),
    radial-gradient(circle at 100% 50%, rgba(0, 188, 212, 0.1) 0%, transparent 45%),
    radial-gradient(circle at 0% 100%, rgba(27, 4, 72, 0.3) 0%, transparent 50%);
}

/* ==========================================================================
   Container Geral Unificado
   ========================================================================== */

.page-main-container {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  padding: 50px 24px 30px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

@media (max-width: 768px) {
  .page-main-container {
    padding: 34px 20px 24px;
    gap: 16px;
  }
}

/* ==========================================================================
   1. ABERTURA: LAYOUT SPLIT (TEXTO À ESQUERDA + ELEMENTO MINIMALISTA À DIREITA)
   ========================================================================== */

.hero-header-split {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 28px;
  width: 100%;
}

.hero-intro-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  flex: 1;
}

.brand-emblem-badge {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-logo-img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 10px rgba(0, 188, 212, 0.7)) drop-shadow(0 0 20px rgba(124, 20, 232, 0.4));
  animation: float-emblem 3s ease-in-out infinite;
}

@keyframes float-emblem {
  0%, 100% { transform: translateY(0); filter: drop-shadow(0 0 10px rgba(0, 188, 212, 0.7)) drop-shadow(0 0 20px rgba(124, 20, 232, 0.4)); }
  50% { transform: translateY(-4px); filter: drop-shadow(0 0 18px rgba(0, 188, 212, 0.95)) drop-shadow(0 0 30px rgba(124, 20, 232, 0.6)); }
}

.emblem-tag {
  font-family: var(--font-highlight);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--color-cyan);
  text-transform: uppercase;
}

/* Título "PARE." */
.title-pare {
  font-family: var(--font-highlight);
  font-size: clamp(3.4rem, 9vw, 6.5rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
}

.title-pare span {
  background: var(--grad-cyan-purple);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(0, 188, 212, 0.4);
}

.hero-charging-mini {
  width: 100%;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 65px; /* Alinhado exatamente na mesma altura que o início do PARE. */
}

.hero-car-brand-title {
  width: 100%;
  font-family: var(--font-highlight);
  font-size: clamp(2.8rem, 5.2vw, 4.4rem);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -0.05em;
  word-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  background: var(--grad-giant-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 35px rgba(0, 188, 212, 0.55));
  margin-top: 14px;
  user-select: none;
  white-space: nowrap;
}

/* Regras Responsivas Mobile */
@media (max-width: 768px) {
  .page-main-container {
    padding: 24px 16px 20px;
    gap: 12px;
  }

  .hero-header-split {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }

  .hero-intro-text {
    align-items: center;
    text-align: center;
    width: 100%;
    gap: 8px;
  }

  .brand-emblem-badge {
    justify-content: center;
    text-align: center;
    gap: 8px;
  }

  .header-logo-img {
    width: 38px;
    height: 38px;
  }

  .emblem-tag {
    font-size: 0.65rem;
  }

  .title-pare {
    text-align: center;
    width: 100%;
    font-size: clamp(3.8rem, 14vw, 5.5rem);
    line-height: 0.88;
    letter-spacing: -0.06em;
  }

  .text-voce-procurou {
    text-align: center;
    width: 100%;
    font-size: 0.96rem;
  }

  /* Elemento do Carro no Celular */
  .hero-charging-mini {
    align-self: center;
    max-width: 250px;
    margin-top: 6px;
    margin-bottom: 2px;
  }

  .mini-charging-art {
    padding: 4px 8px 3px;
    border-radius: 10px;
  }

  .hero-car-brand-title {
    font-size: clamp(2.6rem, 11vw, 4.4rem);
    margin-top: 10px;
    filter: drop-shadow(0 0 25px rgba(0, 188, 212, 0.5));
  }
}

.mini-charging-art {
  width: 100%;
  background: radial-gradient(circle at 65% 35%, rgba(27, 4, 72, 0.6) 0%, rgba(10, 2, 26, 0.95) 100%);
  border: 1px solid rgba(0, 188, 212, 0.3);
  border-radius: 14px;
  padding: 8px 12px 6px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 188, 212, 0.15);
  position: relative;
  overflow: hidden;
}

.mini-car-svg {
  width: 100%;
  height: auto;
  display: block;
}

/* Animações dos SVGs */
.mini-cable-flow {
  stroke-dasharray: 6 4;
  animation: mini-cable-move 0.8s linear infinite;
}

@keyframes mini-cable-move {
  from { stroke-dashoffset: 20; }
  to { stroke-dashoffset: 0; }
}

.mini-ring-pulse {
  transform-origin: 164px 72px;
  animation: mini-ring-grow 1.6s ease-out infinite;
}

@keyframes mini-ring-grow {
  0% { r: 3px; opacity: 1; stroke-width: 1.5px; }
  100% { r: 16px; opacity: 0; stroke-width: 0.3px; }
}

.mini-underglow {
  animation: mini-glow-breathe 2.5s ease-in-out infinite alternate;
}

@keyframes mini-glow-breathe {
  0% { opacity: 0.3; rx: 90px; }
  100% { opacity: 0.85; rx: 115px; }
}

.mini-headlight-flare {
  animation: mini-beam-pulse 2s ease-in-out infinite alternate;
}

@keyframes mini-beam-pulse {
  0% { opacity: 0.35; }
  100% { opacity: 0.9; }
}

.mini-totem-pulse {
  animation: mini-totem-flicker 1.8s infinite ease-in-out;
}

@keyframes mini-totem-flicker {
  0%, 100% { fill: #00bcd4; filter: drop-shadow(0 0 4px #00bcd4); }
  50% { fill: #7c14e8; filter: drop-shadow(0 0 6px #7c14e8); }
}

.byd-wheel {
  animation: byd-wheel-fx 2.5s infinite ease-in-out alternate;
}

@keyframes byd-wheel-fx {
  0% { filter: drop-shadow(0 0 2px rgba(0, 188, 212, 0.3)); }
  100% { filter: drop-shadow(0 0 8px rgba(0, 188, 212, 0.8)); }
}

/* ==========================================================================
   Fluxo Narrativo do Manifesto (Espaçamento Compacto entre Parágrafos)
   ========================================================================== */

.manifesto-flow {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

@media (max-width: 600px) {
  .manifesto-flow {
    gap: 8px;
  }

  .text-p {
    font-size: 0.94rem;
    line-height: 1.44;
  }

  .text-p.lead-p, .lead-entre-novo {
    font-size: 1.02rem;
  }

  .highlight-recarregamos {
    font-size: 1.55rem;
  }

  .sequence-steps {
    gap: 2px;
    margin: 4px 0;
  }

  .step-row {
    font-size: 1.05rem;
  }

  .step-row.climax {
    font-size: 1.35rem;
  }

  .final-mantra {
    font-size: 1.05rem;
  }

  .brand-hashtag {
    font-size: 0.92rem;
  }
}

.text-p {
  font-size: 1.08rem;
  line-height: 1.5;
  color: var(--text-light);
  font-weight: 300;
  letter-spacing: -0.03em;
  margin: 0;
}

.text-p.lead-p {
  font-size: 1.25rem;
  color: #fff;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: -0.035em;
  margin: 0;
}

.text-p strong {
  font-weight: 700;
  color: #fff;
}

.text-p em {
  font-style: italic;
  color: var(--color-cyan);
}

/* Grupo com Espaçamento Ultra-Reduzido entre Frases */
.tight-phrase-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0;
}

@media (max-width: 600px) {
  .tight-phrase-group {
    gap: 3px;
  }
}

/* Frases e Destaques em Ciano e Roxo */
.text-cyan {
  font-family: var(--font-tech-clean);
  color: var(--color-cyan);
  font-weight: 700;
  letter-spacing: -0.03em;
  text-shadow: 0 0 10px rgba(0, 188, 212, 0.3);
}

.text-purple {
  font-family: var(--font-tech-clean);
  color: var(--color-purple-bright);
  font-weight: 700;
  letter-spacing: -0.03em;
}

/* Destaque RECARREGAMOS! */
.highlight-recarregamos {
  font-family: var(--font-highlight);
  font-size: clamp(1.8rem, 4.5vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--color-cyan);
  display: inline-block;
  margin-top: 3px;
  line-height: 1.1;
  text-shadow: 0 0 20px rgba(0, 188, 212, 0.6);
}

.block-recarregamos {
  font-family: var(--font-highlight);
  font-size: clamp(1.8rem, 4.5vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--color-cyan);
  margin: 4px 0;
  line-height: 1.1;
  text-shadow: 0 0 20px rgba(0, 188, 212, 0.6);
}

/* Sequência Rítmica de Passos */
.sequence-steps {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 6px 0;
}

.step-row {
  font-family: var(--font-highlight);
  font-size: clamp(1.3rem, 3vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: #fff;
  line-height: 1.25;
}

.step-row.climax {
  font-size: clamp(1.65rem, 3.8vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  background: var(--grad-cyan-purple);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 15px rgba(0, 188, 212, 0.4));
  margin-top: 2px;
}

/* Mantra Final */
.final-mantra {
  font-family: var(--font-tech-clean);
  font-size: clamp(1.35rem, 3.2vw, 1.95rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-top: 6px;
  letter-spacing: -0.04em;
}

.brand-signature {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
  padding-bottom: 12px;
}

.brand-hashtag {
  font-family: var(--font-highlight);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--color-purple-bright);
  text-shadow: 0 0 15px rgba(124, 20, 232, 0.4);
}

/* ==========================================================================
   Botão de Ação WhatsApp: "Agende seu Carregamento"
   ========================================================================== */

.whatsapp-action-area {
  margin: 10px 0 20px;
}

@media (max-width: 600px) {
  .whatsapp-action-area {
    margin: 8px 0 16px;
    text-align: center;
  }
}

.btn-whatsapp-booking {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  max-width: 460px;
  padding: 18px 34px;
  border-radius: 14px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #fff;
  font-family: var(--font-highlight);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);
}

@media (max-width: 600px) {
  .btn-whatsapp-booking {
    font-size: 0.88rem;
    padding: 12px 18px;
    border-radius: 10px;
    gap: 10px;
  }
}

.btn-whatsapp-booking:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.55);
  color: #fff;
}

.btn-whatsapp-booking i {
  font-size: 1.4rem;
}

/* ==========================================================================
   Nome Gigante "STOP SEEK" Tomando Todo o Espaço no Final da Tela
   ========================================================================== */

.giant-footer-brand-section {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 40px 10px 30px;
  text-align: center;
  overflow: hidden;
  border-top: 1px solid rgba(0, 188, 212, 0.15);
  background: linear-gradient(180deg, transparent 0%, var(--color-midnight) 100%);
}

.giant-stop-seek-text {
  font-family: var(--font-highlight);
  font-size: clamp(3.2rem, 15.5vw, 13rem);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -0.06em;
  word-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--grad-giant-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 40px rgba(0, 188, 212, 0.3));
  margin: 0;
  user-select: none;
  white-space: nowrap;
}

@media (max-width: 600px) {
  .giant-stop-seek-text {
    font-size: 13.5vw;
    letter-spacing: -0.06em;
    word-spacing: 0.12em;
  }
}

/* Rodapé Mínimo */
.clean-footer-text {
  text-align: center;
  padding: 20px;
  font-size: 0.8rem;
  color: var(--text-muted);
}
