/*
Theme Name: Henrique Lopes Radar Notícias
Theme URI: https://asto.marketing/
Author: ASTO Marketing
Author URI: https://asto.marketing/
Description: Landing page em WordPress recriada a partir do projeto React/Vite enviado. Ideal para captação de leads para grupo de WhatsApp/Radar de Notícias.
Version: 1.0.0
Requires at least: 5.8
Tested up to: 6.5
Requires PHP: 7.4
License: GPLv2 or later
Text Domain: henrique-radar
*/

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

:root {
  --bg: #ffffff;
  --fg: #212121;
  --muted: #f5f5f5;
  --muted-fg: #737373;
  --card: #ffffff;
  --border: #e6e6e6;
  --primary: #24cf63;
  --primary-hover: #1fb855;
  --hero: #fe4141;
  --white: #ffffff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--fg);
  overflow-x: hidden;
}
body.admin-bar .hl-hero { min-height: calc(100dvh - 32px); }
a { color: inherit; }
.hl-page { min-height: 100vh; background: var(--bg); }
.hl-container { width: min(100% - 32px, 1152px); margin: 0 auto; }
.hl-narrow { width: min(100% - 32px, 896px); margin: 0 auto; }
.hl-hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--hero);
  text-align: center;
}
.hl-hero__content {
  position: relative;
  z-index: 1;
  width: min(100% - 32px, 896px);
  margin: 0 auto;
  animation: hlFadeUp .8s ease both;
}
.hl-logo { height: 64px; width: auto; margin: 0 auto 24px; display: block; object-fit: contain; }
.hl-title {
  margin: 0 0 24px;
  color: var(--white);
  font-size: clamp(2.5rem, 7vw, 3.75rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.hl-subtitle {
  margin: 0 auto 40px;
  max-width: 672px;
  color: rgba(255,255,255,.9);
  font-size: clamp(1.125rem, 2.8vw, 1.25rem);
  line-height: 1.6;
}
.hl-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 14px 32px;
  border-radius: 8px;
  background: var(--primary);
  color: #fff !important;
  font-weight: 800;
  font-size: clamp(1rem, 2.3vw, 1.125rem);
  text-decoration: none;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
  box-shadow: 0 10px 24px rgba(0,0,0,.12);
}
.hl-button:hover { background: var(--primary-hover); transform: translateY(-1px); box-shadow: 0 14px 30px rgba(0,0,0,.16); }
.hl-button:active { transform: scale(.98); }
.hl-section { padding: clamp(64px, 8vw, 96px) 0; }
.hl-section--muted { background: var(--muted); }
.hl-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 32px; }
.hl-card {
  height: 100%;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0,0,0,.05);
  transition: box-shadow .2s ease, transform .2s ease;
  animation: hlFadeUp .65s ease both;
}
.hl-card:hover { box-shadow: 0 10px 24px rgba(0,0,0,.08); transform: translateY(-2px); }
.hl-card__content { padding: 32px; min-height: 100%; display: flex; flex-direction: column; }
.hl-iconbox { width: 56px; height: 56px; border-radius: 12px; background: rgba(36,207,99,.1); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.hl-iconbox svg { width: 28px; height: 28px; stroke: var(--primary); }
.hl-card h3 { margin: 0 0 12px; font-size: 1.25rem; line-height: 1.28; font-weight: 750; color: var(--fg); }
.hl-card p { margin: 0; font-size: 1rem; line-height: 1.65; color: var(--muted-fg); }
.hl-statement { margin: 0; text-align: center; font-size: clamp(1.5rem, 4vw, 1.875rem); line-height: 1.35; font-weight: 750; text-wrap: balance; color: var(--fg); animation: hlFadeUp .65s ease both; }
.hl-alert { border-left: 4px solid var(--primary); background: rgba(245,245,245,.72); padding: clamp(32px, 5vw, 40px); border-radius: 10px; animation: hlFadeUp .65s ease both; }
.hl-alert p { margin: 0; font-size: clamp(1.125rem, 3vw, 1.25rem); line-height: 1.6; font-weight: 650; }
.hl-center { text-align: center; animation: hlFadeUp .65s ease both; }
@keyframes hlFadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@media (min-width: 768px) { .hl-logo { height: 96px; margin-bottom: 32px; } }
@media (max-width: 767px) { .hl-grid { grid-template-columns: 1fr; } .hl-button { width: 100%; } .hl-card__content { padding: 28px; } }
@media (max-width: 782px) { body.admin-bar .hl-hero { min-height: calc(100dvh - 46px); } }
