/* ============================================
   Gráfica EDJ Transfer — Design System
   ============================================ */
:root {
  --bg: #0b0d12;
  --surface: #ffffff;
  --surface-2: #f6f7fb;
  --surface-3: #eef0f6;
  --ink: #0f1320;
  --ink-2: #2a3142;
  --muted: #5b6479;
  --line: #e6e8f0;

  --brand: #00ACED;     /* Ciano principal */
  --brand-2: #057eaa;   /* Azul mais escuro para contraste */
  --brand-3: #FEF12D;   /* Amarelo vibrante do transfer */
  --brand-4: #CB008B;   /* Rosa vibrante para detalhes */
  --accent: #1f4dff;
  --grad: linear-gradient(135deg, #057eaa 0%, #00ACED 100%); /* Degradê Azul/Ciano */
  --grad-cool: linear-gradient(135deg, #1f4dff 0%, #6a5cff 100%);

  --radius: 18px;
  --radius-sm: 10px;
  --radius-lg: 28px;
  --shadow-sm: 0 4px 14px rgba(15, 19, 32, 0.06);
  --shadow: 0 18px 40px -18px rgba(15, 19, 32, 0.25);
  --shadow-lg: 0 30px 60px -20px rgba(15, 19, 32, 0.35);

  --container: 1200px;
  --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }

h1, h2, h3, h4, h5 {
  font-family: 'Sora', 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 .5em;
  color: var(--ink);
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.25rem; }
p  { margin: 0 0 1em; color: var(--ink-2); }

.container { width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }

.eyebrow {
  display: inline-block;
  font-family: 'Sora', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #CB008B; /* Rosa vibrante para destacar */
  background: rgba(237, 0, 237, 0.1); /* Ciano transparente */
  padding: .35rem .7rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.eyebrow-1{
    display: inline-block;
    font-family: 'Sora', sans-serif;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--brand);
    background: rgba(0, 172, 237, 0.1);
    padding: .35rem .7rem;
    border-radius: 999px;
    margin-bottom: 1rem;
}
.eyebrow--light { color: var(--brand-3); background: rgba(255, 209, 102, 0.12); }
.lead { font-size: 1.1rem; color: var(--muted); max-width: 60ch; }

.grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.brand-3 {
  background: var(--brand-3);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.brand-4 {
  background: var(--brand-4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s;
  white-space: nowrap;
}
.btn--primary {
  background: #CB008B;
  color: #fff;
  box-shadow: 0 10px 24px -8px --brand-3; /* Sombra ciano */
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 18px 32px -10px rgba(193, 0, 237, 0.65); }
.btn--ghost { 
  background: transparent; 
  color: var(--ink); 
  border: 2px solid var(--ink-2); /* Borda escura */
}
.btn--ghost:hover { 
  background: var(--ink); /* Fundo preenche de escuro */
  color: #fff; /* Letra fica branca */
}
.btn--lg { padding: 1.05rem 1.8rem; font-size: 1rem; }

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(160%) blur(14px);
  background: rgba(11, 13, 18, .82);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background .2s, border-color .2s, box-shadow .2s;
}
.nav.scrolled { background: rgba(11, 13, 18, .94); box-shadow: 0 6px 20px rgba(0,0,0,.25); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .9rem 0; }
.brand { display: inline-flex; align-items: center; gap: .6rem; font-family: 'Sora', sans-serif; font-weight: 800; }
.brand__logo { height: 44px; width: auto; display: block; }
.brand--footer .brand__logo { height: 50px; }

.nav__links { display: flex; gap: 1.6rem; }
.nav__links a { font-size: .95rem; color: rgba(255,255,255,.78); font-weight: 500; position: relative; padding: .25rem 0; }
.nav__links a:hover { color: #fff; }
.nav__links a::after {
  content: ''; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--grad); transition: width .25s var(--ease);
}
.nav__links a:hover::after { width: 100%; }

.nav .btn--ghost { color: #fff; border-color: rgba(255,255,255,.25); }
.nav .btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,.06); }

.nav__toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav__toggle span { width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: .25s; }

@media (max-width: 880px) {
  .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav__links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: .25rem;
    background: #0b0d12; padding: 1rem 1.5rem 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
    transform: translateY(-10px); opacity: 0; pointer-events: none;
    transition: .25s var(--ease);
  }
  .nav__links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav__links a { padding: .75rem 0; border-bottom: 1px solid rgba(255,255,255,.08); }
}

/* HERO */
.hero {
  position: relative;
  padding: clamp(3rem, 6vw, 6rem) 0 0;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: -10% -5% 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(0, 172, 237, 0.12), transparent 50%), /* Brilho Ciano muito suave */
    radial-gradient(ellipse at 80% 50%, rgba(203, 0, 139, 0.08), transparent 50%); /* Brilho Magenta quase imperceptível */
  filter: blur(20px);
  z-index: -1;
}
.hero__inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 3rem; align-items: center; padding-bottom: 4rem; }
.hero__title { margin-bottom: 1.2rem; }
.hero__sub { font-size: 1.15rem; color: var(--ink-2); max-width: 56ch; margin-bottom: 1.8rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 2.5rem; }
.hero__stats { display: flex; gap: 2rem; flex-wrap: wrap; }
.hero__stats > div { display: flex; flex-direction: column; }
.hero__stats strong { font-family: 'Sora', sans-serif; font-size: 1.6rem; color: var(--ink); }
.hero__stats span { color: var(--muted); font-size: .9rem; }

.hero__visual { position: relative; height: 460px; }
.card-stack { position: relative; height: 100%; }
.card-stack__item {
  position: absolute; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition: transform .8s var(--ease);
}
.card-stack__item--1 {
  inset: 8% 25% 25% 0;
  background:
    linear-gradient(135deg, #057eaa, #00ACED);
  transform: rotate(-6deg);
}
.card-stack__item--1::after {
  content: 'EDJ'; position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: 'Sora', sans-serif; font-weight: 800; font-size: 4rem; color: rgba(255,255,255,.95);
  letter-spacing: .08em;
  text-shadow: 0 4px 16px rgba(0,0,0,.18);
}
.card-stack__item--2 {
  inset: 25% 8% 12% 22%;
  background: linear-gradient(135deg, #CB008B, #df0199);
  transform: rotate(3deg);
}
.card-stack__item--2::after {
  content: '★'; position: absolute; inset: 0;
  display: grid; place-items: center;
  font-size: 6rem;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.card-stack__item--3 {
  inset: 45% 35% 0 18%;
  background: linear-gradient(135deg, #ded125, #FEF12D);
  transform: rotate(-3deg);
}
.card-stack__item--3::after {
  content: 'TRANSFER'; position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: 'Sora', sans-serif; font-weight: 800; font-size: 1.6rem;
  color: #1f1f2b; letter-spacing: .25em;
}
.hero:hover .card-stack__item--1 { transform: rotate(-9deg) translateY(-6px); }
.hero:hover .card-stack__item--2 { transform: rotate(5deg) translateY(-4px); }
.hero:hover .card-stack__item--3 { transform: rotate(-1deg) translateY(-8px); }

@media (max-width: 880px) {
  .hero__inner { grid-template-columns: 1fr; gap: 1rem; padding-bottom: 2.5rem; }
  .hero__visual { height: 280px; order: -1; } 

  .card-stack__item--1 { inset: 5% 10% 25% 0%; }
  .card-stack__item--1::after { font-size: 2.8rem; }

  .card-stack__item--2 { inset: 20% 0% 15% 15%; }
  .card-stack__item--2::after { font-size: 4.5rem; }

  .card-stack__item--3 { inset: 45% 10% 0 10%; } 
  .card-stack__item--3::after { font-size: 1.25rem; letter-spacing: .2em; }
}

/* Marquee */
.marquee {
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  padding: .9rem 0;
  border-block: 1px solid rgba(255,255,255,.06);
}
.marquee__track {
  display: inline-flex; gap: 2rem;
  white-space: nowrap;
  animation: scroll 28s linear infinite;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.marquee__track span:nth-child(odd) { color: #fff; }
.marquee__track span:nth-child(even) { color: var(--brand-3); }
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Sections */
.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section--alt { background: var(--surface-2); }
.section--dark { background: var(--bg); color: #fff; }
.section--dark .h--light { color: #fff; }
.section--dark .p--light { color: rgba(255,255,255,.75); }
.section__head { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.section__head .lead { margin-inline: auto; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
@media (max-width: 880px) { .grid-2 { grid-template-columns: 1fr; gap: 2.5rem; } }

.checks { list-style: none; padding: 0; margin: 1.5rem 0 0; }
.checks li {
  position: relative; padding-left: 2rem; margin-bottom: .7rem;
  color: var(--ink-2);
}
.checks li::before {
  content: ''; position: absolute; left: 0; top: .35em;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--grad);
  box-shadow: inset 0 0 0 4px #fff, 0 0 0 1.5px var(--brand);
}

/* About visual */
.about-visual__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
.tile {
  border-radius: var(--radius);
  padding: 1.8rem 1.4rem;
  display: flex; flex-direction: column; gap: .35rem;
  min-height: 160px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease);
}
.tile:hover { transform: translateY(-4px); }
.tile span { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 1.8rem; color: #fff; }
.tile small { color: rgba(255,255,255,.85); font-size: .85rem; }
.tile--a { background: var(--grad); }
.tile--b { background: linear-gradient(135deg, #1f1f2b, #2c2f3f); }
.tile--c { background: #CB008B; }
.tile--d { background: linear-gradient(135deg, #ded125, #FEF12D); } /* Agora usa o seu Amarelo exato */
.tile--d span, .tile--d small { color: #1f1f2b; }
/* Muda a cor das estrelas e do texto do card escuro para o amarelo da marca */
.tile--b span, 
.tile--b small { 
  color: var(--brand-3); 
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}
.card {
  background: #fff; border-radius: var(--radius);
  padding: 2rem 1.6rem;
  border: 1px solid var(--line);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.card__icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  background: var(--grad);
  border-radius: 14px;
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 8px 18px -8px rgba(0, 172, 237, .6); /* Sombra ciano do ícone */
}
.card h3 { margin-bottom: .5rem; }
.card p { margin: 0; color: var(--muted); font-size: .95rem; }

/* Steps */
.steps {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 2rem 1.6rem;
  background: var(--surface-2);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.step__num {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 2.2rem;
  background: #CB008B;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: .5rem;
}
.step h3 { margin-bottom: .35rem; }
.step p  { margin: 0; color: var(--muted); font-size: .95rem; }

/* Features (dark) */
.features {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
.feature {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: background .25s, transform .3s var(--ease);
}
.feature:hover { background: rgba(255,255,255,.07); transform: translateY(-4px); }
.feature h4 { color: var(--brand-3); margin-bottom: .35rem; font-family: 'Sora', sans-serif; font-size: 1.05rem; }
.feature p  { color: rgba(255,255,255,.75); margin: 0; font-size: .92rem; }

/* CTA Band */
.cta-band {
  padding: 3rem 0;
  background: var(--grad);
}
.cta-band__inner {
  display: flex; flex-wrap: wrap; gap: 2rem;
  align-items: center; justify-content: space-between;
  color: #fff;
}
.cta-band h2 { color: #fff; margin-bottom: .25rem; }
.cta-band p  { margin: 0; color: rgba(255,255,255,.9); }
.cta-band .btn--primary {
  background: #fff; color: var(--brand);
  box-shadow: 0 12px 24px -10px rgba(0,0,0,.35);
}
.cta-band .btn--primary:hover { color: var(--ink); }

/* Contact */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem;
}
.contact-card {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem 1.3rem;
}
.contact-card h4 { font-family: 'Sora', sans-serif; font-size: .95rem; color: #CB008B; margin-bottom: .5rem; }
.contact-card a { display: block; color: var(--ink-2); font-size: .92rem; padding: .15rem 0; transition: color .2s; }
.contact-card a:hover { color: var(--brand); }

/* Form */
.form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  display: grid; gap: 1rem;
}
.form h3 { margin-bottom: .5rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .form__row, .contact-grid { grid-template-columns: 1fr; } }
.form label { display: grid; gap: .35rem; font-size: .9rem; font-weight: 500; color: var(--ink-2); }
.form input, .form textarea {
  font: inherit;
  padding: .8rem 1rem;
  border-radius: 12px;
  border: 1.5px solid var(--line);
  background: var(--surface-2);
  color: var(--ink);
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.form input:focus, .form textarea:focus {
  outline: none;
  border-color: var(--brand);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(0, 172, 237, .15); /* Borda ciano ao digitar */
}
.form textarea { resize: vertical; min-height: 130px; }
.form button { justify-self: start; margin-top: .5rem; }
.form__note { font-size: .9rem; padding: .8rem 1rem; border-radius: 12px; margin: 0; }
.form__note.success { background: #e6f7ed; color: #0a6b34; }
.form__note.error   { background: #fde8e8; color: #9b1c1c; }

/* Footer */
.footer { background: #0b0d12; color: rgba(255,255,255,.78); padding: 4rem 0 1.5rem; }
.footer__inner {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer h5 { color: #fff; font-family: 'Sora', sans-serif; font-size: 1rem; margin-bottom: .8rem; }
.footer p  { margin: .25rem 0; color: rgba(255,255,255,.65); font-size: .92rem; }
.footer a  { color: rgba(255,255,255,.85); }
.footer a:hover { color: var(--brand-3); }
.brand--footer { color: #fff; margin-bottom: 1rem; }

/* Nova área inferior com os créditos */
.footer__bottom { 
  padding-top: 1.25rem; 
  color: rgba(255,255,255,.55); 
  font-size: 0.95rem; 
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Destaque subtil para o seu nome de desenvolvedor */
.footer__bottom small:last-child {
  font-weight: 500;
  color: rgba(255,255,255,.7);
}

/* Ajustes para o ecrã do telemóvel */
@media (max-width: 720px) { 
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; } 
  .footer__bottom { justify-content: center; text-align: center; }
}
/* Floating WhatsApp */
.whats {
  position: fixed; bottom: 22px; right: 22px; z-index: 60;
  width: 58px; height: 58px;
  background: #25d366; color: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 14px 28px -8px rgba(37, 211, 102, .55);
  transition: transform .25s var(--ease);
}
.whats:hover { transform: translateY(-3px) scale(1.05); }

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
