:root {
  --bg: #f6f5f2;
  --surface: #ffffff;
  --surface-soft: #fdf8ee;
  --gold: #f7a600;
  --gold-deep: #eb9800;
  --gold-soft: #fff0cf;
  --ink: #171717;
  --muted: #6b6b6b;
  --line: #e8e1d2;
  --shadow: 0 24px 60px rgba(18, 18, 18, 0.08);
  --radius-xl: 34px;
  --radius-lg: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: linear-gradient(180deg, #fbfaf7 0%, #f6f5f2 100%);
  color: var(--ink);
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 5vw, 72px);
  background: rgba(255,255,255,.84);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.brand img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}
.brand strong {
  display: block;
  font-size: 1.45rem;
  letter-spacing: -.04em;
}
.brand span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: .92rem;
}
.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-weight: 600;
  color: #2d2d2d;
}
.nav a:hover { color: var(--gold-deep); }
.menu-btn {
  display: none;
  border: 0;
  background: transparent;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 16px;
  font-weight: 700;
  transition: .2s ease;
}
.btn.small { min-height: 46px; padding: 0 20px; }
.btn.primary {
  background: var(--gold);
  color: #171717;
  box-shadow: 0 14px 34px rgba(247,166,0,.28);
}
.btn.primary:hover { transform: translateY(-2px); background: var(--gold-deep); }
.btn.secondary {
  background: rgba(255,255,255,.86);
  border: 1px solid var(--line);
}
.btn.secondary:hover { transform: translateY(-2px); border-color: var(--gold); }
.btn.secondary.light {
  background: rgba(255,255,255,.15);
  color: #fff;
  border-color: rgba(255,255,255,.28);
}
.desktop-only { display: inline-flex; }

.hero {
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  align-items: center;
  gap: clamp(36px, 5vw, 60px);
  padding: clamp(40px, 6vw, 72px) clamp(20px, 5vw, 72px) clamp(70px, 8vw, 90px);
  position: relative;
  overflow: hidden;
  background-color: #fcfaf4;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='18' viewBox='0 0 22 18'%3E%3Cpath d='M0 18L11 0l11 18H0z' fill='%23e7e2d6' fill-opacity='0.22'/%3E%3C/svg%3E"),
    radial-gradient(circle at 68% 28%, rgba(247,166,0,.08), transparent 28%),
    radial-gradient(circle at 78% 24%, rgba(247,166,0,.045), transparent 38%),
    linear-gradient(90deg, rgba(255,255,255,.99) 0%, rgba(255,255,255,.985) 40%, rgba(255,250,235,.985) 74%, rgba(255,248,228,.99) 100%);
  background-repeat: repeat, no-repeat, no-repeat, no-repeat;
  background-size: 22px 18px, auto, auto, auto;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.55) 0%, rgba(255,255,255,.18) 42%, rgba(255,255,255,.36) 100%),
    radial-gradient(circle at 72% 24%, rgba(255,255,255,.42), transparent 24%);
  pointer-events: none;
}
.hero > * { position: relative; z-index: 1; }
.pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--gold-soft);
  color: var(--gold-deep);
  font-size: .86rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .02em;
}
.pill.dark {
  background: rgba(255,255,255,.12);
  color: #ffd57d;
}
.hero h1 {
  margin: 18px 0 20px;
  font-size: clamp(2.8rem, 5.5vw, 5.4rem);
  line-height: .96;
  letter-spacing: -.06em;
  max-width: 12ch;
}
.hero h1 span,
.platform-showcase h2 span { color: var(--gold-deep); }
.lead {
  max-width: 42rem;
  color: #5a5a5a;
  font-size: clamp(1.05rem, 1.45vw, 1.28rem);
  line-height: 1.72;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
.hero-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
}
.hero-points div,
.info-card,
.feature-card,
.device-card {
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: var(--shadow);
}
.hero-points div {
  border-radius: 22px;
  padding: 18px;
}
.hero-points strong { display: block; margin-bottom: 8px; font-size: .98rem; }
.hero-points span { color: var(--muted); font-size: .9rem; line-height: 1.5; }

.hero-visual {
  min-height: 700px;
  position: relative;
}
.floating-card-lg {
  width: min(100%, 760px);
}
.laptop-wrap {
  position: absolute;
  top: 18px;
  left: 0;
  right: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.laptop-frame {
  position: relative;
  width: 100%;
  background: linear-gradient(180deg, #19191b 0%, #0e0e10 100%);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 22px 22px 12px 12px;
  padding: 18px 18px 20px;
  box-shadow: 0 34px 80px rgba(0,0,0,.20);
}
.laptop-camera {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #27272b;
  box-shadow: 0 0 0 2px #0f0f12;
}
.laptop-screen {
  margin-top: 8px;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 10px;
  background: #ffffff;
}
.laptop-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
}
.laptop-base {
  width: 108%;
  height: 18px;
  margin-top: -2px;
  background: linear-gradient(180deg, #d9dde2 0%, #b7bcc4 100%);
  border-radius: 0 0 24px 24px;
  box-shadow: 0 16px 24px rgba(0,0,0,.14);
  position: relative;
}
.laptop-base::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 4px;
  transform: translateX(-50%);
  width: 22%;
  height: 5px;
  border-radius: 999px;
  background: rgba(108, 112, 118, .55);
}
.phone-frame {
  position: absolute;
  right: 0;
  bottom: 6px;
  width: min(255px, 36%);
  background: linear-gradient(180deg, #1a1a1c 0%, #090909 100%);
  padding: 16px 10px 18px;
  border-radius: 42px;
  box-shadow: 0 24px 60px rgba(0,0,0,.24);
  border: 1px solid rgba(255,255,255,.10);
}
.phone-speaker {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 34%;
  height: 7px;
  border-radius: 999px;
  background: #222428;
}
.phone-frame img {
  display: block;
  border-radius: 30px;
  aspect-ratio: 9 / 19.5;
  object-fit: cover;
  object-position: top center;
  width: 100%;
}
.phone-home {
  position: absolute;
  left: 50%;
  bottom: 7px;
  transform: translateX(-50%);
  width: 42%;
  height: 5px;
  border-radius: 999px;
  background: rgba(235,235,235,.75);
}

.section {
  padding: 0 clamp(20px, 5vw, 72px) 88px;
}
.section-head {
  max-width: 800px;
  margin-bottom: 40px;
}
.section-head.centered {
  margin-inline: auto;
  text-align: center;
}
.section-head h2,
.platform-showcase h2,
.cta-panel h2 {
  margin: 16px 0 14px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: -.05em;
}
.section-head p,
.showcase-copy p,
.cta-panel p { color: var(--muted); line-height: 1.72; font-size: 1.05rem; }

.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.info-card {
  border-radius: 26px;
  padding: 22px 22px 24px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
}
.icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--gold-soft);
  color: var(--gold-deep);
  flex-shrink: 0;
}
.icon-wrap svg { width: 28px; height: 28px; fill: currentColor; }
.info-card h3 { margin: 2px 0 8px; font-size: 1.1rem; letter-spacing: -.03em; }
.info-card p { margin: 0; color: var(--muted); line-height: 1.58; font-size: .96rem; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature-card {
  border-radius: 26px;
  padding: 26px;
}
.feature-card h3 { margin: 0 0 12px; font-size: 1.18rem; letter-spacing: -.03em; }
.feature-card p { margin: 0; color: var(--muted); line-height: 1.65; }

.platform-showcase {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 28px;
  align-items: start;
}
.showcase-copy {
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(0,0,0,.05);
  border-radius: var(--radius-xl);
  padding: 34px;
  box-shadow: var(--shadow);
}
.check-list {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.check-list li {
  position: relative;
  padding-left: 30px;
  color: #393939;
  font-weight: 600;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold-deep);
  font-weight: 900;
}
.showcase-visuals {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 18px;
  align-items: start;
}
.device-card {
  border-radius: 28px;
  padding: 16px;
}
.device-label {
  font-size: .92rem;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 12px;
}
.desktop-card img {
  border-radius: 18px;
  width: 100%;
}
.mobile-card img {
  border-radius: 18px;
  width: 100%;
}

.cta-panel {
  background: linear-gradient(135deg, #212121 0%, #131313 100%);
  color: #fff;
  border-radius: 36px;
  padding: clamp(34px, 5vw, 58px);
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 28px 70px rgba(0,0,0,.18);
}
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(20px, 5vw, 72px) 40px;
  border-top: 1px solid rgba(0,0,0,.06);
  background: rgba(255,255,255,.66);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}
.footer-brand strong { display: block; }
.footer-brand p, .footer-meta {
  margin: 4px 0 0;
  color: var(--muted);
}
.footer-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  font-size: .96rem;
}

@media (max-width: 1180px) {
  .feature-strip, .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .platform-showcase {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .desktop-only { display: none; }
  .menu-btn { display: inline-flex; }
  .nav {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 20px;
    right: 20px;
    padding: 18px;
    background: #fff;
    border-radius: 22px;
    border: 1px solid rgba(0,0,0,.06);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .nav.open { display: flex; }
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    min-height: 620px;
  }
  .laptop-wrap {
    right: 90px;
  }
  .phone-frame {
    width: min(225px, 36%);
  }
  .hero-points {
    grid-template-columns: 1fr;
  }
  .cta-panel,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .contact-actions,
  .footer-meta { align-items: flex-start; }
}

@media (max-width: 720px) {
  .brand img { width: 54px; height: 54px; }
  .brand strong { font-size: 1.2rem; }
  .hero { padding-top: 28px; }
  .hero-visual {
    min-height: auto;
    display: grid;
    gap: 14px;
  }
  .laptop-wrap,
  .phone-frame {
    position: relative;
    inset: auto;
    width: 100%;
    right: auto;
    left: auto;
  }
  .laptop-wrap {
    max-width: 680px;
    margin: 0 auto;
  }
  .laptop-base {
    width: 104%;
  }
  .phone-frame {
    max-width: 320px;
    justify-self: center;
  }
  .feature-strip,
  .features-grid,
  .showcase-visuals {
    grid-template-columns: 1fr;
  }
  .section,
  .hero {
    padding-left: 16px;
    padding-right: 16px;
  }
  .site-header,
  .site-footer {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* Secções mantidas do layout anterior */
.field-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  background: #151515;
  color: #fff;
  margin: 0;
}

.field-image {
  min-height: 700px;
  overflow: hidden;
}

.field-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

.field-content {
  padding: clamp(60px, 7vw, 120px);
  align-self: center;
}

.field-eyebrow,
.access-eyebrow {
  color: #f7a600;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 900;
  font-size: .82rem;
  margin-bottom: 22px;
}

.field-content h2 {
  margin: 0 0 26px;
  max-width: 800px;
  font-size: clamp(2.4rem, 4.4vw, 5rem);
  line-height: .98;
  letter-spacing: -.055em;
}

.field-content p {
  max-width: 860px;
  color: rgba(255,255,255,.82);
  line-height: 1.75;
  font-size: 1.12rem;
}

.field-checks {
  list-style: none;
  padding: 0;
  margin: 36px 0 0;
  display: grid;
  gap: 18px;
}

.field-checks li {
  position: relative;
  padding-left: 36px;
  color: rgba(255,255,255,.95);
  font-weight: 800;
}

.field-checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #f7a600;
  font-weight: 900;
}

.access-section {
  padding: clamp(82px, 10vw, 132px) clamp(20px, 5vw, 72px);
  background: #fbfaf4;
}

.access-head {
  text-align: center;
  margin: 0 auto 54px;
}

.access-head h2 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 5.2rem);
  line-height: .96;
  letter-spacing: -.06em;
}

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

.access-grid article {
  min-height: 285px;
  background: #fff;
  border: 1px solid #eadfc8;
  border-radius: 32px;
  padding: 34px;
  box-shadow: 0 24px 60px rgba(18, 18, 18, 0.06);
}

.access-grid span {
  display: block;
  color: #fff1cb;
  font-size: clamp(4rem, 6vw, 6rem);
  line-height: .8;
  font-weight: 900;
  margin-bottom: 30px;
}

.access-grid h3 {
  margin: 0 0 26px;
  font-size: 1.55rem;
}

.access-grid p {
  margin: 0;
  color: #616161;
  font-size: 1.05rem;
  line-height: 1.65;
}

.footer-logos img {
  max-width: 360px;
  width: 100%;
}

@media (max-width: 980px) {
  .field-section,
  .access-grid {
    grid-template-columns: 1fr;
  }

  .field-image {
    min-height: 420px;
  }

  .field-content {
    padding: 46px 22px;
  }

  .access-head h2 br {
    display: none;
  }
}


.feature-card.with-icon {
  background: #fffdf7;
  border: 1px solid #eadfc8;
}

.feature-icon {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 18px;
}

.footer-logos img {
  max-width: 520px;
  width: 100%;
  height: auto;
}


/* Ajustes de simplificação pedidos */
.hero {
  padding-bottom: 54px;
}

.hero-copy {
  max-width: 620px;
}

.hero .lead {
  max-width: 34rem;
}

.site-footer {
  align-items: center;
}

.footer-logos {
  margin-left: auto;
}

.footer-logos img {
  display: block;
  max-width: 640px;
}

.funding-text {
  max-width: 620px;
  margin: 0 0 10px auto;
  color: var(--muted);
  font-size: .84rem;
  line-height: 1.45;
  text-align: right;
}

@media (max-width: 980px) {
  .footer-logos {
    margin-left: 0;
  }
  .funding-text {
    margin-left: 0;
    text-align: left;
  }
}


/* Ajustes finais */
.footer-logos img {
  max-width: 360px !important;
}

@media (max-width: 720px) {
  .footer-logos img {
    max-width: 280px !important;
  }
}


/* Secção 3 - layout menos simétrico e mais orgânico */
.platform-showcase {
  align-items: center;
  gap: clamp(36px, 6vw, 86px);
}

.showcase-visuals {
  position: relative;
  min-height: 560px;
  display: block;
}

.showcase-visuals .device-card {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.showcase-visuals .device-label {
  display: none;
}

.showcase-visuals .desktop-card {
  position: absolute;
  left: 0;
  top: 32px;
  width: 86%;
  z-index: 1;
}

.showcase-visuals .desktop-card img {
  width: 100%;
  border-radius: 26px;
  box-shadow: 0 30px 90px rgba(17, 17, 17, 0.14);
  transform: rotate(-1.2deg);
}

.showcase-visuals .mobile-card {
  position: absolute;
  right: 0;
  bottom: 8px;
  width: min(265px, 32%);
  z-index: 3;
  filter: drop-shadow(0 28px 54px rgba(17, 17, 17, 0.22));
}

.showcase-visuals .mobile-card::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 42px;
  background: #111;
  z-index: -1;
}

.showcase-visuals .mobile-card img {
  width: 100%;
  border-radius: 34px;
  transform: rotate(2.5deg);
}

@media (max-width: 1180px) {
  .showcase-visuals {
    min-height: 620px;
  }

  .showcase-visuals .desktop-card {
    width: 88%;
  }

  .showcase-visuals .mobile-card {
    width: min(250px, 34%);
  }
}

@media (max-width: 720px) {
  .showcase-visuals {
    min-height: auto;
    display: grid;
    gap: 24px;
  }

  .showcase-visuals .desktop-card,
  .showcase-visuals .mobile-card {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .showcase-visuals .desktop-card img,
  .showcase-visuals .mobile-card img {
    transform: none;
  }

  .showcase-visuals .mobile-card {
    max-width: 320px;
    justify-self: center;
  }
}


/* Secção 3 - destaque forte no desktop */
.platform-showcase {
  grid-template-columns: .72fr 1.28fr;
  align-items: center;
}

.showcase-visuals {
  position: relative;
  min-height: 620px;
  display: block;
}

.showcase-visuals .desktop-card {
  position: absolute;
  inset: 0 70px 50px 0;
  width: auto;
  z-index: 1;
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 30px;
  padding: 18px;
  box-shadow: 0 30px 90px rgba(17, 17, 17, 0.12);
}

.showcase-visuals .desktop-card img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: left top;
  border-radius: 18px;
  transform: none;
}

.showcase-visuals .mobile-card {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(220px, 26%);
  z-index: 3;
  filter: drop-shadow(0 24px 44px rgba(17, 17, 17, 0.22));
}

.showcase-visuals .mobile-card::before {
  inset: -8px;
  border-radius: 38px;
}

.showcase-visuals .mobile-card img {
  width: 100%;
  border-radius: 30px;
  transform: none;
}

@media (max-width: 1180px) {
  .platform-showcase {
    grid-template-columns: 1fr;
  }

  .showcase-visuals {
    min-height: 600px;
  }

  .showcase-visuals .desktop-card {
    inset: 0 55px 40px 0;
  }

  .showcase-visuals .mobile-card {
    width: min(210px, 28%);
  }
}

@media (max-width: 720px) {
  .showcase-visuals {
    min-height: auto;
    display: grid;
    gap: 22px;
  }

  .showcase-visuals .desktop-card,
  .showcase-visuals .mobile-card {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .showcase-visuals .desktop-card {
    padding: 12px;
  }

  .showcase-visuals .desktop-card img,
  .showcase-visuals .mobile-card img {
    aspect-ratio: auto;
    transform: none;
  }

  .showcase-visuals .mobile-card {
    max-width: 320px;
    justify-self: center;
  }
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 650;
}
.footer-links a:hover { color: var(--gold-deep); }
