/*
Theme Name: Satélite Monitoramento
Theme URI: https://satelitemonitoramento.com.br
Author: Satélite Monitoramento
Description: Landing page de segurança eletrônica — Gurupi, TO
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: satelite
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Oswald:wght@600;700&display=swap');

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:          hsl(0, 0%, 5%);
  --bg-dark:     hsl(0, 0%, 3%);
  --card:        hsl(0, 0%, 8%);
  --card-grad:   linear-gradient(145deg, hsl(0,0%,10%) 0%, hsl(0,0%,7%) 100%);
  --border:      hsl(0, 0%, 18%);
  --fg:          hsl(0, 0%, 100%);
  --muted:       hsl(0, 0%, 65%);
  --primary:     hsl(0, 100%, 42%);   /* red  */
  --secondary:   hsl(45, 100%, 50%);  /* gold */
  --radius:      0.75rem;
  --font-display:'Oswald', sans-serif;
  --font-body:   'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 { font-family: var(--font-display); }

a { text-decoration: none; color: inherit; }

img { display: block; max-width: 100%; }

/* ─── Container ─── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ─── Utilities ─── */
.text-gradient-danger {
  background: linear-gradient(135deg, hsl(0,100%,42%), hsl(0,100%,55%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glow-red { box-shadow: 0 0 30px hsla(0,100%,50%,0.3), 0 0 60px hsla(0,100%,50%,0.1); }

.bg-gradient-dark { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-dark) 100%); }
.bg-gradient-danger { background: linear-gradient(135deg, hsl(0,100%,35%) 0%, hsl(0,100%,45%) 100%); }

/* ─── WhatsApp Button ─── */
.wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #25D366;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  border-radius: var(--radius);
  transition: transform 0.3s, filter 0.3s;
  cursor: pointer;
  border: none;
}
.wa-btn:hover { transform: scale(1.05); filter: brightness(1.1); }
.wa-btn svg { flex-shrink: 0; }

.wa-btn--default { padding: 1rem 2rem; font-size: 1.05rem; }
.wa-btn--large   { padding: 1.25rem 2.5rem; font-size: 1.2rem; }

.wa-microcopy { font-size: 0.85rem; color: var(--muted); margin-top: 0.5rem; text-align: center; }

.wa-wrap { display: flex; flex-direction: column; align-items: center; gap: 0.25rem; }

/* ─── Floating WhatsApp ─── */
.floating-wa {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(37,211,102,0.4), 0 4px 20px rgba(0,0,0,0.3);
  transition: transform 0.3s;
  animation: float 3s ease-in-out infinite;
}
.floating-wa:hover { transform: scale(1.1); }

/* ─── Card ─── */
.card {
  background: var(--card-grad);
  border: 1px solid var(--border);
  border-radius: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.card:hover { border-color: hsla(0,100%,50%,0.4); }
.card:hover.glow-hover { box-shadow: 0 0 30px hsla(0,100%,50%,0.3), 0 0 60px hsla(0,100%,50%,0.1); }

/* ─── Badge pill ─── */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid hsla(0,100%,50%,0.3);
  background: hsla(0,100%,50%,0.1);
  color: var(--primary);
  border-radius: 999px;
  padding: 0.375rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.label-primary {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--primary);
}
.label-secondary {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--secondary);
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--bg) 0%, hsla(0,0%,5%,0.9) 55%, hsla(0,0%,5%,0.6) 100%);
}
.hero__content {
  position: relative;
  z-index: 10;
  max-width: 42rem;
  padding: 2rem 0;
}
.hero__logo { margin-bottom: 1.5rem; }
.hero__logo img { height: 8rem; width: auto; }
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}
.hero p { font-size: 1.15rem; color: var(--muted); margin-bottom: 2.5rem; max-width: 36rem; }

@media(min-width: 768px) {
  .hero__content { padding: 8rem 0; }
  .hero__logo img { height: 9rem; }
}

/* ─── PROBLEM ─── */
.problem { padding: 5rem 0 0.25rem; }
.problem.bg-gradient-dark { padding: 5rem 0; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 { font-size: clamp(1.75rem, 4vw, 3rem); font-weight: 700; line-height: 1.15; margin-top: 0.75rem; }

.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 48rem;
  margin: 0 auto 3.5rem;
}
@media(min-width: 640px) { .problem-grid { grid-template-columns: 1fr 1fr; } }

.problem-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 0.75rem;
}
.problem-icon {
  flex-shrink: 0;
  background: hsla(0,100%,50%,0.15);
  border-radius: 0.5rem;
  padding: 0.75rem;
  color: var(--primary);
}
.problem-card p { font-size: 1.05rem; font-weight: 500; }

/* ─── SOLUTIONS ─── */
.solutions { padding: 5rem 0; position: relative; }
.solutions::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, hsla(0,100%,42%,0.05), transparent 60%);
  pointer-events: none;
}

.solutions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 56rem;
  margin: 0 auto;
}
@media(min-width: 640px) { .solutions-grid { grid-template-columns: 1fr 1fr; } }

.solution-card {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  border-radius: 1rem;
}
.solution-icon {
  background: hsla(0,100%,50%,0.1);
  border-radius: 0.75rem;
  padding: 1rem;
  width: fit-content;
  margin-bottom: 1.25rem;
  color: var(--primary);
  transition: background 0.3s;
}
.solution-card:hover .solution-icon { background: hsla(0,100%,50%,0.2); }
.solution-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.5rem; }
.solution-card p  { color: var(--muted); margin-bottom: 1.5rem; flex: 1; }

/* ─── SOCIAL PROOF ─── */
.social-proof { padding: 5rem 0; }

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 48rem;
  margin: 0 auto 4rem;
}
@media(min-width: 768px) { .stats-grid { grid-template-columns: repeat(4,1fr); } }

.stat-card { text-align: center; padding: 1.5rem; border-radius: 0.75rem; }
.stat-card svg { margin: 0 auto 0.5rem; color: var(--primary); }
.stat-value { font-family: var(--font-display); font-size: 1.85rem; font-weight: 700; color: var(--secondary); }
.stat-label { font-size: 0.85rem; color: var(--muted); margin-top: 0.25rem; }

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 56rem;
  margin: 0 auto;
}
@media(min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3,1fr); } }

.testimonial-card { padding: 1.5rem; border-radius: 1rem; }
.stars { display: flex; gap: 0.25rem; margin-bottom: 0.75rem; color: var(--secondary); }
.stars svg { fill: var(--secondary); }
.testimonial-card blockquote { color: var(--fg); margin-bottom: 1rem; font-style: italic; }
.testimonial-card cite { font-size: 0.85rem; color: var(--muted); font-weight: 600; }

/* ─── AUTHORITY ─── */
.authority { padding: 5rem 0; position: relative; }
.authority::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at bottom, hsla(45,100%,50%,0.03), transparent 60%);
  pointer-events: none;
}

.authority-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 56rem;
  margin: 0 auto;
}
@media(min-width: 768px) { .authority-grid { grid-template-columns: repeat(3,1fr); } }

.authority-item { text-align: center; }
.authority-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  background: hsla(45,100%,50%,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--secondary);
}
.authority-item h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.5rem; }
.authority-item p  { color: var(--muted); }

/* ─── URGENCY ─── */
.urgency {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.urgency::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, hsla(0,0%,100%,0.05), transparent 70%);
  pointer-events: none;
}
.urgency svg.hero-icon { margin: 0 auto 1.5rem; color: var(--secondary); }
.urgency h2 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; margin-bottom: 1rem; }
.urgency p  { font-size: 1.2rem; color: rgba(255,255,255,0.8); margin-bottom: 2.5rem; }

/* ─── FINAL CTA ─── */
.final-cta { padding: 5rem 0 0; }
.final-cta .inner { text-align: center; }
.final-cta h2 { font-size: clamp(1.75rem, 4vw, 3rem); font-weight: 700; margin: 0.75rem 0 1rem; }
.final-cta .sub { color: var(--muted); font-size: 1.1rem; margin-bottom: 2.5rem; max-width: 28rem; margin-left: auto; margin-right: auto; }

.footer-bar {
  margin-top: 4rem;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  text-align: center;
}
.footer-logo { display: inline-block; background: #fff; border-radius: 0.75rem; padding: 0.5rem; margin-bottom: 1rem; }
.footer-logo img { height: 3rem; width: auto; }
.footer-bar p { font-size: 0.85rem; color: var(--muted); }

/* ─── Animations ─── */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

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

.fade-up { opacity: 0; }
.fade-up.visible { animation: fadeUp 0.6s ease forwards; }
.fade-up:nth-child(1) { animation-delay: 0s; }
.fade-up:nth-child(2) { animation-delay: 0.1s; }
.fade-up:nth-child(3) { animation-delay: 0.2s; }
.fade-up:nth-child(4) { animation-delay: 0.3s; }

/* SVG icons inline */
.icon { display: inline-block; width: 1.5rem; height: 1.5rem; }
.icon-lg { width: 2rem; height: 2rem; }
.icon-xl { width: 3rem; height: 3rem; }
