/*
Theme Name: Tecnologia Farma
Theme URI: https://tecnologiafarma.com.br
Description: Landing Page - Balconista Digital com IA para o varejo farmacêutico.
Version: 1.0
Author: Tecnologia Farma
Author URI: https://tecnologiafarma.com.br
Text Domain: tecnologia-farma
*/

/* ============================
   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(180, 20%, 5%);
  --fg: hsl(170, 30%, 95%);
  --card: hsl(180, 20%, 8%);
  --primary: hsl(174, 60%, 45%);
  --primary-fg: hsl(180, 30%, 5%);
  --muted: hsl(170, 15%, 55%);
  --border: hsl(180, 15%, 16%);
  --surface: hsl(180, 20%, 9%);
  --glow: hsl(174, 60%, 45%);
  --radius: 0.75rem;
}

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.15;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ============================
   UTILITIES
   ============================ */
.text-gradient {
  background: linear-gradient(135deg, hsl(174, 60%, 55%) 0%, hsl(190, 50%, 40%) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glass {
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  background: hsla(180, 20%, 9%, 0.6);
  border: 1px solid hsla(180, 15%, 16%, 0.5);
}

.glow-box {
  box-shadow: 0 0 40px -10px hsla(174, 60%, 45%, 0.4), 0 0 80px -20px hsla(174, 60%, 45%, 0.2);
}

.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-full { border-radius: 9999px; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  background: var(--primary);
  color: var(--primary-fg);
  font-weight: 600;
  font-size: 1.125rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-primary:hover { filter: brightness(1.1); }

.btn-glass {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  backdrop-filter: blur(24px);
  background: hsla(180, 20%, 9%, 0.6);
  border: 1px solid hsla(180, 15%, 16%, 0.5);
  color: var(--fg);
  font-weight: 600;
  font-size: 1.125rem;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-glass:hover { background: hsla(180, 20%, 12%, 0.8); }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
}
.badge .dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--primary);
}

/* ============================
   ANIMATIONS
   ============================ */
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.animate-marquee {
  animation: marquee 30s linear infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 20px -5px hsla(174, 60%, 45%, 0.3); }
  50% { box-shadow: 0 0 40px -5px hsla(174, 60%, 45%, 0.6); }
}
.pulse-glow { animation: pulseGlow 3s ease-in-out infinite; }

/* Scroll-triggered animations */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Elementor editor: disable fade-up so widgets are always visible */
.elementor-editor-active .fade-up,
.elementor-editor-preview .fade-up {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* ============================
   NAVBAR
   ============================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: 4rem;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
}
.navbar-brand img { height: 2rem; width: auto; border-radius: 4px; }
.navbar-links { display: flex; align-items: center; gap: 2rem; }
.navbar-links a { font-size: 0.875rem; color: var(--muted); transition: color 0.3s; }
.navbar-links a:hover { color: var(--fg); }
.navbar-cta {
  padding: 0.625rem 1.25rem;
  border-radius: 0.75rem;
  background: var(--primary);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}
.navbar-cta:hover { filter: brightness(1.1); }

.mobile-toggle { display: none; background: none; border: none; color: var(--fg); font-size: 1.5rem; cursor: pointer; }
@media (max-width: 768px) {
  .navbar-links { display: none; }
  .mobile-toggle { display: block; }
}

/* ============================
   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;
  opacity: 0.5;
}
.hero-bg .overlay-1 {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--bg), hsla(180, 20%, 5%, 0.7), transparent);
}
.hero-bg .overlay-2 {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg), transparent, hsla(180, 20%, 5%, 0.5));
}
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 48rem;
  padding: 8rem 0;
}
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.hero p.subtitle {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 40rem;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}
.hero-buttons { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 5rem;
}
.hero-stats .stat-card {
  padding: 1.5rem;
  text-align: center;
}
.hero-stats .stat-value {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 0.25rem;
}
.hero-stats .stat-label {
  font-size: 0.75rem;
  color: var(--muted);
}
@media (max-width: 768px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
}

/* ============================
   PARTNERS MARQUEE
   ============================ */
.partners {
  padding: 5rem 0;
  border-top: 1px solid hsla(180, 15%, 16%, 0.5);
  border-bottom: 1px solid hsla(180, 15%, 16%, 0.5);
  overflow: hidden;
}
.partners p {
  text-align: center;
  font-size: 1.125rem;
  color: var(--muted);
  margin-bottom: 3rem;
}
.partners-track {
  position: relative;
}
.partners-track::before,
.partners-track::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 8rem;
  z-index: 10;
}
.partners-track::before { left: 0; background: linear-gradient(to right, var(--bg), transparent); }
.partners-track::after { right: 0; background: linear-gradient(to left, var(--bg), transparent); }
.partners-scroll {
  display: flex;
  white-space: nowrap;
}
.partner-item {
  flex-shrink: 0;
  margin: 0 2rem;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  color: var(--muted);
}

/* ============================
   FEATURES
   ============================ */
.features { padding: 7rem 0; }
.features .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.features h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
}
.features .section-header p {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 40rem;
  margin: 0 auto;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feature-card {
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.5s;
}
.feature-card:hover { border-color: hsla(174, 60%, 45%, 0.5); }
.feature-card .icon-box {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  background: hsla(174, 60%, 45%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
  color: var(--primary);
  transition: background 0.3s;
}
.feature-card:hover .icon-box { background: hsla(174, 60%, 45%, 0.2); }
.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.feature-card p {
  color: var(--muted);
  line-height: 1.7;
}
@media (max-width: 992px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .features-grid { grid-template-columns: 1fr; } }

/* ============================
   ABOUT
   ============================ */
.about { padding: 7rem 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.about p.desc {
  font-size: 1.125rem;
  color: var(--muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}
.about-list { display: flex; flex-direction: column; gap: 1.25rem; }
.about-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.about-list-item .bullet {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: hsla(174, 60%, 45%, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.125rem;
}
.about-list-item .bullet-inner {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--primary);
}
.about-image { position: relative; }
.about-image img { border-radius: 1.5rem; }
.about-image .gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsla(180, 20%, 5%, 0.6), transparent);
  border-radius: 1.5rem;
}
.about-float {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  padding: 1.25rem;
}
.about-float .value {
  font-size: 1.875rem;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
}
.about-float .label {
  font-size: 0.875rem;
  color: var(--muted);
}
@media (max-width: 992px) { .about-grid { grid-template-columns: 1fr; } }

/* ============================
   ROI
   ============================ */
.roi { padding: 7rem 0; }
.roi .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.roi h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
}
.roi .section-header p {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 40rem;
  margin: 0 auto;
}
.roi-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.roi-metric {
  padding: 1.5rem;
  text-align: center;
  transition: all 0.5s;
}
.roi-metric:hover { border-color: hsla(174, 60%, 45%, 0.5); }
.roi-metric .icon-box {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: hsla(174, 60%, 45%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.25rem;
  color: var(--primary);
}
.roi-metric .value {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 0.5rem;
}
.roi-metric .label {
  font-size: 0.875rem;
  color: var(--muted);
}
.roi-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.roi-result {
  padding: 2rem;
  text-align: center;
  transition: all 0.5s;
}
.roi-result:hover { border-color: hsla(174, 60%, 45%, 0.5); }
.roi-result .label {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.roi-result .value {
  font-size: 2.25rem;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
}
.roi-highlight {
  background: var(--primary);
  border-radius: 1.5rem;
  padding: 2.5rem 3.5rem;
  text-align: center;
}
.roi-highlight h3 {
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--primary-fg);
  margin-bottom: 1rem;
}
.roi-highlight p {
  color: hsla(180, 30%, 5%, 0.8);
  font-size: 1.125rem;
  max-width: 32rem;
  margin: 0 auto;
}
.roi-highlight strong { color: var(--primary-fg); }
@media (max-width: 992px) {
  .roi-metrics { grid-template-columns: repeat(2, 1fr); }
  .roi-results { grid-template-columns: 1fr; }
}

/* ============================
   EVENTS
   ============================ */
.events { padding: 7rem 0; }
.events-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.events h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
}
.events-header-right {
  display: flex;
  align-items: flex-end;
}
.events-header-right p {
  font-size: 1.125rem;
  color: var(--muted);
  line-height: 1.7;
}
.events-header-right .bar {
  width: 4rem;
  height: 4px;
  background: var(--primary);
  border-radius: 9999px;
  margin-top: 1.5rem;
}
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.event-card {
  overflow: hidden;
  transition: all 0.5s;
}
.event-card:hover { border-color: hsla(174, 60%, 45%, 0.5); }
.event-card-image {
  position: relative;
  height: 13rem;
  overflow: hidden;
}
.event-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}
.event-card:hover .event-card-image img { transform: scale(1.05); }
.event-card-image .gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--card), transparent);
}
.event-card-image .top {
  position: absolute;
  top: 1rem;
  left: 1rem;
  right: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.event-card-image .category {
  font-size: 0.875rem;
  font-weight: 600;
}
.event-card-body { padding: 1.5rem; }
.event-card-body h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.event-card-body .info {
  display: flex;
  gap: 1.5rem;
  font-size: 0.875rem;
}
.event-card-body .info .date-label {
  color: var(--primary);
  font-weight: 600;
}
.event-card-body .info .small { color: var(--muted); }
@media (max-width: 992px) { .events-grid { grid-template-columns: 1fr; } .events-header { grid-template-columns: 1fr; } }

/* ============================
   CONFERENCE
   ============================ */
.conference { padding: 7rem 0; }
.conference-main {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  height: 500px;
  margin-bottom: 1.5rem;
}
.conference-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s;
}
.conference-main:hover img { transform: scale(1.05); }
.conference-main .gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsla(180, 20%, 5%, 0.9), hsla(180, 20%, 5%, 0.3), transparent);
}
.conference-main .label {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  font-size: 1.25rem;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
}
.conference-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.conference-card-primary {
  border-radius: 1.5rem;
  background: var(--primary);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
}
.conference-card-primary h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-fg);
  margin-bottom: 1rem;
}
.conference-card-primary p { color: hsla(180, 30%, 5%, 0.8); line-height: 1.7; }
.conference-card-primary a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-fg);
  font-weight: 600;
  margin-top: 1.5rem;
}
.conference-card-image {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  min-height: 280px;
}
.conference-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.7s;
}
.conference-card-image:hover img { transform: scale(1.05); }
.conference-card-image .gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsla(180, 20%, 5%, 0.9), hsla(180, 20%, 5%, 0.4), transparent);
}
.conference-card-image .content {
  position: relative;
  z-index: 10;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.conference-card-image .content p { font-size: 1.125rem; line-height: 1.7; }
.conference-card-image .content a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  margin-top: 1.5rem;
}
@media (max-width: 768px) { .conference-cards { grid-template-columns: 1fr; } .conference-main { height: 300px; } }

/* ============================
   TESTIMONIALS
   ============================ */
.testimonials { padding: 7rem 0; }
.testimonials .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.testimonials h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  font-style: italic;
}
.testimonials .section-header p {
  color: var(--muted);
  margin-top: 1rem;
}
.testimonials-scroll {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.testimonials-scroll::-webkit-scrollbar { display: none; }
.testimonial-card {
  flex-shrink: 0;
  width: 18rem;
  padding: 1.5rem;
  scroll-snap-align: start;
  transition: all 0.5s;
}
.testimonial-card:hover { border-color: hsla(174, 60%, 45%, 0.5); }
.testimonial-card .quote-icon {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}
.testimonial-card .quote {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.testimonial-card .divider {
  border-top: 1px solid hsla(180, 15%, 16%, 0.5);
  padding-top: 1rem;
}
.testimonial-card .author { font-weight: 600; font-size: 0.875rem; font-family: 'Space Grotesk', sans-serif; }
.testimonial-card .role { font-size: 0.75rem; color: var(--muted); }
.testimonial-card .company { font-size: 0.75rem; color: var(--primary); font-weight: 600; margin-top: 0.25rem; }

/* ============================
   PARTNERSHIPS
   ============================ */
.partnerships { padding: 7rem 0; }
.partnerships-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}
.partnerships-image {
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid hsla(180, 15%, 16%, 0.5);
}
.partnerships h2 {
  font-size: clamp(1.875rem, 3vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 1rem;
}
.partnerships p.desc {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.partnerships-logos {
  text-align: center;
}
.partnerships-logos p {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin-bottom: 2rem;
}
.partnerships-logos .logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
.partnerships-logos .logo {
  font-size: 1.125rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  color: hsla(170, 15%, 55%, 0.6);
  transition: color 0.3s;
}
.partnerships-logos .logo:hover { color: var(--fg); }
@media (max-width: 992px) { .partnerships-grid { grid-template-columns: 1fr; } }

/* ============================
   CTA
   ============================ */
.cta { padding: 7rem 0; }
.cta-box {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
}
.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}
.cta-content {
  position: relative;
  z-index: 10;
  padding: 4rem;
  text-align: center;
}
.cta h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.cta .desc {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 40rem;
  margin: 0 auto 2.5rem;
}
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 4rem;
}
.cta-contacts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 40rem;
  margin: 0 auto;
}
.cta-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.875rem;
}
.cta-contact .icon { color: var(--primary); font-size: 1.25rem; }
@media (max-width: 768px) { .cta-content { padding: 2.5rem 1.5rem; } .cta-contacts { grid-template-columns: 1fr; } }

/* ============================
   FOOTER
   ============================ */
.site-footer {
  border-top: 1px solid hsla(180, 15%, 16%, 0.5);
  padding: 4rem 0 2rem;
  position: relative;
  overflow: hidden;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.footer-brand {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 1rem;
}
.footer-tagline {
  font-size: 1.125rem;
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 2rem;
}
.footer-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.footer-stat {
  padding: 1.25rem;
}
.footer-stat .value {
  font-size: 1.875rem;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 0.5rem;
}
.footer-stat .label { font-size: 0.75rem; color: var(--muted); }
.footer-col h4 {
  font-size: 0.875rem;
  font-weight: 600;
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.75rem; }
.footer-col a { font-size: 0.875rem; color: var(--muted); transition: color 0.3s; }
.footer-col a:hover { color: var(--fg); }
.footer-bottom {
  border-top: 1px solid hsla(180, 15%, 16%, 0.5);
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.875rem; color: var(--muted); }
.footer-socials { display: flex; gap: 1rem; }
.footer-social {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  color: var(--muted);
  transition: all 0.3s;
}
.footer-social:hover { color: var(--fg); border-color: hsla(174, 60%, 45%, 0.5); }
@media (max-width: 992px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .footer-grid { grid-template-columns: 1fr; } }
