/*
Theme Name: UNIQUE
Theme URI: https://unique.com.br
Author: UNIQUE Agency
Description: Tema WordPress da agência UNIQUE - Marketing de Performance
Version: 1.0.0
Text Domain: unique
*/

/* ========== RESET & BASE ========== */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --bg: hsl(260 20% 6%);
  --fg: hsl(0 0% 95%);
  --card: hsl(260 18% 10%);
  --primary: hsl(300 100% 25%);
  --primary-glow: hsl(290 80% 45%);
  --muted: hsl(260 10% 55%);
  --border: hsl(260 15% 18%);
  --gradient-primary: linear-gradient(135deg, hsl(300 100% 25%), hsl(290 80% 45%));
  --gradient-glow: radial-gradient(ellipse at center, hsl(300 100% 25% / 0.15), transparent 70%);
  --shadow-glow: 0 0 60px hsl(300 100% 25% / 0.3);
  --shadow-glow-sm: 0 0 30px hsl(300 100% 25% / 0.2);
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

body {
  background-color: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  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 { max-width: 100%; height: auto; }

/* ========== UTILITIES ========== */
.container { max-width: 1152px; margin: 0 auto; padding: 0 1.5rem; }
.container-sm { max-width: 896px; margin: 0 auto; padding: 0 1.5rem; }
.container-xs { max-width: 768px; margin: 0 auto; padding: 0 1.5rem; }

.text-gradient {
  background-image: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glow-border {
  border: 1px solid hsl(300 100% 25% / 0.3);
  box-shadow: var(--shadow-glow-sm);
}

.bg-glow {
  background-image: var(--gradient-glow);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 9999px;
  font-family: var(--font-display);
}

.tag--muted {
  color: var(--muted);
  border: 1px solid var(--border);
}

.tag--primary {
  color: var(--primary);
  border: 1px solid hsl(300 100% 25% / 0.3);
  box-shadow: var(--shadow-glow-sm);
}

/* ========== NAVBAR ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: hsl(260 20% 6% / 0.6);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid hsl(260 15% 18% / 0.5);
}

.navbar__inner {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: -0.025em;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: var(--font-display);
  border-radius: 9999px;
  background: var(--primary);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: filter 0.3s;
}

.btn-primary:hover { filter: brightness(1.25); }

.btn-primary--lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
  box-shadow: var(--shadow-glow);
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__glow {
  position: absolute;
  inset: 0;
  background-image: var(--gradient-glow);
}

.hero__orb {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: hsl(300 100% 25% / 0.05);
  filter: blur(120px);
  animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.hero__content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 896px;
  margin: 0 auto;
  padding: 8rem 1.5rem;
}

.hero__title {
  font-size: clamp(2.5rem, 7vw, 6rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin-bottom: 2rem;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 3rem;
}

.hero__fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 8rem;
  background: linear-gradient(to top, var(--bg), transparent);
}

/* ========== SECTIONS ========== */
.section { padding: 8rem 0; position: relative; }

.section__header {
  text-align: center;
  margin-bottom: 5rem;
}

.section__title {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
}

.section__text {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ========== SERVICES GRID ========== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

.service-card {
  padding: 2rem;
  border-radius: 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  transition: all 0.5s;
}

.service-card:hover {
  border-color: hsl(300 100% 25% / 0.3);
  box-shadow: var(--shadow-glow-sm);
}

.service-card__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: hsl(300 100% 25% / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.service-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.service-card__text {
  color: var(--muted);
  line-height: 1.7;
}

/* ========== PROCESS / STEPS ========== */
.steps { display: flex; flex-direction: column; }

.step {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.step__indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.step__number {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--primary);
  transition: all 0.5s;
}

.step:hover .step__number {
  border-color: hsl(300 100% 25% / 0.3);
  box-shadow: var(--shadow-glow-sm);
}

.step__line {
  width: 1px;
  height: 5rem;
  background: var(--border);
}

.step__content { padding-bottom: 4rem; }

.step__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.step__text {
  color: var(--muted);
  line-height: 1.7;
  max-width: 32rem;
}

/* ========== TESTIMONIALS ========== */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

.testimonial-card {
  padding: 2rem;
  border-radius: 1rem;
  background: var(--card);
  border: 1px solid var(--border);
}

.testimonial-card__stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.testimonial-card__text {
  color: hsl(0 0% 95% / 0.8);
  margin-bottom: 1.5rem;
  line-height: 1.7;
  font-style: italic;
}

.testimonial-card__name {
  font-family: var(--font-display);
  font-weight: 600;
}

.testimonial-card__role {
  font-size: 0.875rem;
  color: var(--muted);
}

/* ========== CTA ========== */
.cta { text-align: center; }

.cta__title {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.cta__text {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 36rem;
  margin: 0 auto 3rem;
}

/* ========== FOOTER ========== */
.footer {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer__brand {
  font-size: 1.25rem;
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: -0.025em;
}

.footer__copy {
  font-size: 0.875rem;
  color: var(--muted);
  margin-top: 0.75rem;
}

/* ========== SVG ICONS INLINE ========== */
.icon { width: 1.25rem; height: 1.25rem; }
.icon--sm { width: 1rem; height: 1rem; }
.icon--lg { width: 1.5rem; height: 1.5rem; }
