/* ============================================================
   STARNET DIGITAL — Folha de Estilos Principal
   Paleta: #030102 | #5C398D | #72C597 | #5298BA | #838385 | #D1D0D5
   ============================================================ */

/* ---------- Reset & Variáveis ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --black: #030102;
  --purple: #5c398d;
  --purple-dark: #49297a;
  --green: #72c597;
  --green-dark: #57ae7e;
  --blue: #5298ba;
  --gray-mid: #838385;
  --gray-light: #d1d0d5;
  --white: #ffffff;

  --font: "Inter", system-ui, -apple-system, sans-serif;
  --radius: 12px;
  --transition: 0.3s ease;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.28);
  --container: 1320px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

::selection {
  background: var(--green);
  color: var(--black);
}

body {
  font-family: var(--font);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ---------- Utilitários ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 112px 0;
}
.section-sm {
  padding: 80px 0;
}

.tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--green);
  color: var(--black);
}
.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 6px 20px rgba(114, 197, 151, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-3px) scale(1.02);
}

.btn-purple {
  background: var(--purple);
  color: var(--white);
}
.btn-purple:hover {
  background: var(--purple-dark);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 6px 20px rgba(92, 57, 141, 0.4);
}

/* ---------- Header ---------- */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition:
    background var(--transition),
    box-shadow var(--transition),
    padding var(--transition);
}

#header.scrolled {
  background: rgba(3, 1, 2, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
  padding: 14px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-text strong {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
}
.logo-text span {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--green);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--transition);
  position: relative;
}
.nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav a:hover {
  color: var(--white);
}
.nav a:hover::after {
  transform: scaleX(1);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(3, 1, 2, 0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  transition: color var(--transition);
}
.mobile-menu a:hover {
  color: var(--green);
}
.mobile-menu .btn {
  font-size: 1rem;
}

/* ---------- Hero ---------- */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--black);
  padding-top: 90px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(
      to right,
      rgba(3, 1, 2, 0.95) 0%,
      rgba(3, 1, 2, 0.8) 45%,
      transparent 80%
    ),
    radial-gradient(
      ellipse 60% 60% at 40% 50%,
      rgba(92, 57, 141, 0.4) 0%,
      transparent 70%
    ),
    url("../background-hero.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
}

/* Fiber lines decoration */
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(
      135deg,
      transparent 45%,
      rgba(114, 197, 151, 0.04) 50%,
      transparent 55%
    ),
    linear-gradient(
      45deg,
      transparent 45%,
      rgba(92, 57, 141, 0.06) 50%,
      transparent 55%
    );
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(114, 197, 151, 0.12);
  border: 1px solid rgba(114, 197, 151, 0.25);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 28px;
}
.hero-badge span {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
}

#hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 24px;
}

#hero h1 em {
  font-style: normal;
  background: linear-gradient(
    to right,
    var(--green) 20%,
    var(--blue) 40%,
    var(--blue) 60%,
    var(--green) 80%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shine 4s linear infinite;
}

@keyframes shine {
  to {
    background-position: 200% center;
  }
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 40px;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.stat strong {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.stat span {
  font-size: 0.8rem;
  color: var(--gray-mid);
  margin-top: 4px;
}

/* ---------- Services ---------- */
#servicos {
  background: #0a0809;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section-header p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  max-width: 560px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--blue));
  transform: scaleX(0);
  transition: transform var(--transition);
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(92, 57, 141, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(92, 57, 141, 0.18);
}
.service-card:hover::before {
  transform: scaleX(1);
}

.service-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover .service-image img {
  transform: scale(1.08);
}

.service-content {
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-grow: 1;
}

.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(92, 57, 141, 0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: rgba(92, 57, 141, 0.3);
}
.service-icon svg {
  width: 26px;
  height: 26px;
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--white);
}

.service-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
  margin-bottom: 20px;
}

.service-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(114, 197, 151, 0.12);
  color: var(--green);
  margin-top: auto;
  border: 1px solid rgba(114, 197, 151, 0.2);
}

/* ---------- Sobre / MVV ---------- */
#sobre {
  background: var(--black);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  line-height: 1.15;
}

.about-text p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  margin-bottom: 16px;
  line-height: 1.75;
}

.about-text .btn {
  margin-top: 12px;
}

.mvv-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mvv-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-left: 3px solid var(--purple);
  border-radius: var(--radius);
  padding: 24px 28px;
  transition: var(--transition);
}
.mvv-card:nth-child(2) {
  border-left-color: var(--blue);
}
.mvv-card:nth-child(3) {
  border-left-color: var(--green);
}
.mvv-card:hover {
  background: rgba(255, 255, 255, 0.055);
  transform: translateX(4px);
}

.mvv-card h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 8px;
}
.mvv-card p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* ---------- Diferenciais ---------- */
#diferenciais {
  background: #0a0809;
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.diff-item {
  text-align: center;
  padding: 32px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  transition: var(--transition);
}
.diff-item:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-4px);
}

.diff-item svg {
  width: 36px;
  height: 36px;
  margin: 0 auto 16px;
  color: var(--green);
}
.diff-item strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 6px;
}
.diff-item span {
  font-size: 0.85rem;
  color: var(--gray-mid);
}

/* ---------- CTA & Contato Unificado ---------- */
.cta-split {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-sales {
  background: linear-gradient(135deg, var(--purple) 0%, #3d2164 100%);
  padding: 64px 48px;
  position: relative;
}
.cta-sales::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at bottom right,
    rgba(114, 197, 151, 0.15) 0%,
    transparent 60%
  );
  pointer-events: none;
}
.cta-sales > * {
  position: relative;
  z-index: 1;
}
.cta-sales h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  margin: 12px 0 16px;
  color: var(--white);
}
.cta-sales p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  max-width: 420px;
}
.cta-support {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-left: none;
  padding: 64px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cta-support h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--white);
}
.cta-support p {
  color: var(--gray-mid);
  font-size: 0.95rem;
  margin-bottom: 32px;
}
.support-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.support-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  font-weight: 500;
  transition: var(--transition);
}
.support-item svg {
  color: var(--green);
}
.support-item:hover {
  color: var(--white);
  transform: translateX(4px);
}

/* ---------- Footer ---------- */
#footer {
  background: #08060a;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 72px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--gray-mid);
  line-height: 1.75;
  margin-top: 16px;
  max-width: 280px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.footer-col h5 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 20px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition);
}
.footer-col a:hover {
  color: var(--white);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}
.footer-contact-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gray-mid);
}
.footer-contact-item span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: var(--gray-mid);
}
.footer-bottom a {
  color: var(--gray-mid);
  transition: color var(--transition);
}
.footer-bottom a:hover {
  color: var(--white);
}

.social-links {
  display: flex;
  gap: 12px;
}
.social-link {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.social-link:hover {
  background: var(--purple);
  transform: translateY(-2px);
}
.social-link svg {
  width: 18px;
  height: 18px;
}

/* ---------- Cookie Banner ---------- */
#cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 580px;
  background: #1a1020;
  border: 1px solid rgba(92, 57, 141, 0.4);
  border-radius: var(--radius);
  padding: 24px 28px;
  z-index: 9999;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transform: translateY(120%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
#cookie-banner.visible {
  transform: translateY(0);
}
#cookie-banner.hidden {
  display: none;
}

.cookie-text p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}
.cookie-text a {
  color: var(--green);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}
.btn-cookie-accept {
  background: var(--green);
  color: var(--black);
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}
.btn-cookie-accept:hover {
  background: var(--green-dark);
}

.btn-cookie-decline {
  background: transparent;
  color: var(--gray-mid);
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: var(--transition);
}
.btn-cookie-decline:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
}

/* ---------- WhatsApp Float ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9998;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  animation:
    float-in 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.5s both,
    pulse-ring 2.5s infinite 2s;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  animation-play-state: paused;
}
.whatsapp-float svg {
  width: 30px;
  height: 30px;
}

@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@keyframes float-in {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ---------- Animações de Entrada ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition:
    opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition:
    opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}
.reveal-delay-4 {
  transition-delay: 0.4s;
}
.reveal-delay-5 {
  transition-delay: 0.5s;
}

/* ---------- Páginas Internas (Termos/Privacidade) ---------- */
.page-hero {
  padding: 140px 0 80px;
  background: linear-gradient(
    180deg,
    rgba(92, 57, 141, 0.15) 0%,
    transparent 100%
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 12px;
}
.page-hero p {
  color: var(--gray-mid);
  font-size: 0.9rem;
}

.legal-content {
  padding: 72px 0;
  max-width: 800px;
}
.legal-content h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 40px 0 12px;
  color: var(--white);
}
.legal-content h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 24px 0 8px;
  color: rgba(255, 255, 255, 0.85);
}
.legal-content p,
.legal-content li {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  margin-bottom: 12px;
}
.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}
.legal-content a {
  color: var(--green);
  text-decoration: underline;
}

/* ---------- Responsivo ---------- */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .diff-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section {
    padding: 72px 0;
  }
  .section-sm {
    padding: 48px 0;
  }

  .nav,
  .header-cta .btn {
    display: none;
  }
  .hamburger {
    display: flex;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-stats {
    gap: 24px;
    flex-wrap: wrap;
  }
  .stat strong {
    font-size: 1.6rem;
  }

  .hero-bg {
    background-image:
      linear-gradient(
        to bottom,
        rgba(3, 1, 2, 0.95) 0%,
        rgba(3, 1, 2, 0.7) 40%,
        transparent 80%
      ),
      radial-gradient(
        ellipse 80% 60% at 50% 30%,
        rgba(92, 57, 141, 0.4) 0%,
        transparent 70%
      ),
      url("../background-hero-mobile.png");
  }

  #cookie-banner {
    left: 16px;
    right: 16px;
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .diff-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-actions {
    flex-direction: column;
  }
  .cookie-actions {
    flex-direction: column;
  }

  .cta-split {
    grid-template-columns: 1fr;
    border-radius: 16px;
  }
  .cta-sales,
  .cta-support {
    padding: 40px 24px;
  }
  .cta-support {
    border-left: 1px solid rgba(255, 255, 255, 0.07);
    border-top: none;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
