﻿:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-alt: #f7f9fd;
  --ink: #333333;
  --ink-soft: #5c7383;
  --muted: #707070;
  --line: rgba(144, 155, 177, 0.24);
  --brand-orange: #fe5100;
  --brand-blue: #007bff;
  --brand-blue-deep: #0754be;
  --brand-orange-soft: #fff0e8;
  --brand-blue-soft: #f2f7ff;
  --shadow: 0 16px 36px rgba(52, 69, 82, 0.1);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: min(1180px, calc(100vw - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Source Sans Pro", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(254, 81, 0, 0.08), transparent 18rem),
    linear-gradient(180deg, #ffffff 0%, #ffffff 70%, #f7f9fd 100%);
  line-height: 1.6;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  background: var(--brand-orange);
  color: #fff;
  padding: 12px 16px;
  border-radius: 10px;
  z-index: 20;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(4, 16, 70, 0.1);
  margin: 0;
}

.topbar,
.hero,
.section {
  width: var(--container);
  margin: 0 auto;
}

.section-band {
  width: 100%;
  padding: 28px 0;
}

.band-apresentacao { background: #fff0e8; }
.band-marcas { background: #f7f9fd; }
.band-conceitos { background: #ffffff; }
.band-dados { background: #fff0e8; }
.band-criancas { background: #5c7383; }
.band-cookies { background: #f7f9fd; }
.band-seguranca { background: #fff0e8; }
.band-direitos { background: #ffffff; }
.band-governanca { background: #f7f9fd; }
.band-contato { background: #fff0e8; }
.band-dpo { background: #ffffff; }
.band-compromisso {
  background: #e6e7eb;
  padding-bottom: 28px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-mark {
  width: 84px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(52, 69, 82, 0.12);
  flex: 0 0 84px;
  padding: 0;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong,
.section-heading h2,
.hero h1,
.accordion-card summary,
th,
.contact-card h3,
.brand-card h3 {
  font-family: "Source Sans Pro", sans-serif;
}

.brand-copy strong {
  font-size: 0.98rem;
}

.brand-copy span {
  font-size: 0.82rem;
  color: var(--muted);
}

.section-nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
  min-width: 0;
}

.section-nav a {
  text-decoration: none;
  font-size: 0.92rem;
  color: var(--brand-blue);
  padding: 10px 14px;
  border-radius: 999px;
  white-space: nowrap;
  scroll-snap-align: start;
}

.section-nav a:hover,
.section-nav a.is-active {
  color: #fff;
  background: var(--brand-orange);
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 34px;
  align-items: start;
  padding: 54px 0 36px;
}

.hero-full {
  grid-template-columns: 1fr;
}

.hero-copy,
.hero-panel,
.section {
  position: relative;
  min-width: 0;
}

.hero-copy {
  background:
    radial-gradient(circle at 100% 100%, rgba(254, 81, 0, 0.1), transparent 14rem),
    linear-gradient(180deg, #ffffff 0%, #f7f9fd 100%);
  border: 1px solid rgba(144, 155, 177, 0.22);
  border-radius: 36px;
  box-shadow: var(--shadow);
  padding: 36px;
  overflow: hidden;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.8fr);
  gap: 18px;
  align-items: stretch;
}

.hero-main {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero-banner {
  margin: 0 0 12px;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(144, 155, 177, 0.2);
}

.hero-banner img {
  width: 100%;
  display: block;
}

.hero-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-left: 24px;
}

.hero-copy::after {
  content: "";
  position: absolute;
  inset: auto -60px -90px auto;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(254, 81, 0, 0.16), transparent 68%);
}

.eyebrow {
  margin: 0 0 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--brand-orange);
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.3rem, 4vw, 4.2rem);
  line-height: 0.98;
  color: var(--brand-orange);
}

.hero-subtitle {
  margin: 0;
  font-size: clamp(1.05rem, 2vw, 1.4rem);
  color: var(--ink);
  max-width: 28ch;
}

.hero-summary {
  max-width: 100%;
  display: grid;
  gap: 16px;
  font-size: 1.08rem;
  color: var(--ink-soft);
}

.hero-summary p {
  margin: 0;
}

.hero-links {
  list-style: none;
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
}

.hero-links a {
  text-decoration: none;
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(144, 155, 177, 0.28);
  color: var(--brand-blue-deep);
  font-weight: 600;
}

.hero-update {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--brand-blue-soft);
  color: var(--brand-blue-deep);
  font-weight: 800;
}

.hero-sites {
  border: 1px solid rgba(144, 155, 177, 0.22);
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 100%, rgba(254, 81, 0, 0.1), transparent 14rem),
    linear-gradient(180deg, #ffffff 0%, #f7f9fd 100%);
  padding: 20px;
  display: grid;
  gap: 14px;
}

.hero-sites-title {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.hero-callout {
  grid-column: 1 / -1;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, #344552 0%, #5c7383 100%);
  color: #fff;
  text-align: center;
  margin-top: auto;
}

.hero-callout h2 {
  margin: 0;
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  line-height: 1.15;
}

.hero-callout p:last-child {
  margin-bottom: 0;
}

.hero-actions {
  position: static;
  margin-top: auto;
  margin-bottom: 6px;
  padding-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  border-radius: 999px;
  padding: 14px 18px;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: #fff;
  background: var(--brand-orange);
  box-shadow: 0 14px 28px rgba(254, 81, 0, 0.24);
}

.button-secondary {
  background: var(--brand-blue);
  color: #fff;
  box-shadow: 0 14px 28px rgba(0, 123, 255, 0.22);
}

.brand-visual img,
.footer-brand img {
  width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.section {
  margin-top: 0;
  background: #ffffff;
  border: 1px solid rgba(144, 155, 177, 0.2);
  border-radius: 34px;
  box-shadow: var(--shadow);
  padding: 34px;
}

.section-heading {
  max-width: 78ch;
}

.section-media {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 360px);
  gap: 24px;
  align-items: center;
  margin-bottom: 20px;
}

.section-illustration {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(144, 155, 177, 0.2);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.section-illustration img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(1.55rem, 2.7vw, 2.6rem);
  line-height: 1.12;
}

.section-heading p:last-child,
.lead,
.support-note,
.support-label {
  color: var(--ink-soft);
}

.section-heading h2 {
  color: var(--brand-orange);
}

.lead {
  margin-bottom: 0;
  font-size: 1.12rem;
}

.brand-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.contact-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.brand-card,
.contact-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 22px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.brand-visual {
  height: 168px;
  margin-bottom: 22px;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff, rgba(144, 155, 177, 0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
}

.brand-visual-text {
  background: linear-gradient(135deg, rgba(254, 81, 0, 0.16), rgba(254, 81, 0, 0.08));
}

.brand-visual-text span {
  font: 800 1.2rem/1 "Source Sans Pro", sans-serif;
  color: var(--brand-orange);
}

.brand-card h3,
.contact-card h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.contact-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-card h3 {
  min-height: 2.6em;
}

.brand-card p,
.contact-card a {
  margin: 0;
  color: var(--ink-soft);
}

.brand-card p {
  min-height: 0;
}

.brand-card a {
  margin-top: 8px;
  padding-top: 0;
}

.brand-card a,
.contact-card a,
.dpo-mail a {
  font-weight: 700;
  color: var(--brand-blue);
  text-decoration-color: rgba(0, 123, 255, 0.45);
  overflow-wrap: anywhere;
}

.brand-card .brand-visual img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  padding: 12px;
}

.accordion-group,
.data-layout {
  margin-top: 22px;
  display: grid;
  gap: 14px;
}

.concepts-meta {
  margin-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 0 4px;
  font: 800 0.82rem/1 "Source Sans Pro", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.accordion-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #ffffff;
  padding: 0 22px;
  overflow: hidden;
}

.accordion-card summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 34px 20px 0;
  position: relative;
  font-size: 1.04rem;
  font-weight: 700;
}

.accordion-card summary i {
  color: var(--brand-orange);
  width: 18px;
  text-align: center;
  flex: 0 0 18px;
}

.accordion-card summary::-webkit-details-marker {
  display: none;
}

.accordion-card summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 18px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(61, 79, 134, 0.12);
}

.accordion-card[open] summary::after {
  content: "-";
  background: rgba(254, 81, 0, 0.14);
  color: var(--brand-orange);
}

.accordion-card p,
.accordion-card ul,
.accordion-card .table-wrap {
  margin-top: 0;
  margin-bottom: 20px;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

th,
td {
  text-align: left;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(4, 16, 70, 0.08);
  vertical-align: top;
}

thead th {
  background: #344552;
  color: #fff;
  font-size: 0.95rem;
}

tbody tr:nth-child(even) td {
  background: rgba(247, 249, 253, 0.95);
}

.content-list {
  margin: 18px 0 0;
  padding-left: 20px;
}

.content-list li + li {
  margin-top: 10px;
}

.content-list-wide {
  columns: 2;
  column-gap: 28px;
}

.highlight-band {
  background:
    radial-gradient(circle at right top, rgba(254, 81, 0, 0.12), transparent 16rem),
    linear-gradient(135deg, #344552 0%, #5c7383 100%);
  color: #fff;
}

.highlight-band .eyebrow,
.highlight-band p {
  color: rgba(255, 255, 255, 0.84);
}

.highlight-band h2 {
  color: #fff;
}

.pill-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.pill {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border-radius: 22px;
  padding: 18px 20px;
  background: rgba(254, 81, 0, 0.08);
  border: 1px solid rgba(254, 81, 0, 0.14);
  font-weight: 600;
}

.pill i {
  color: var(--brand-orange);
  width: 18px;
  text-align: center;
  flex: 0 0 18px;
  margin-top: 2px;
}

.contact {
  background:
    radial-gradient(circle at 10% 0%, rgba(254, 81, 0, 0.12), transparent 16rem),
    linear-gradient(180deg, #ffffff, #f7f9fd);
}

.contact-secondary-label {
  margin: 0;
  color: var(--ink-soft);
  font-weight: 700;
}

.contact .button-contact-main {
  margin: 8px 0 32px;
  padding: 10px 18px;
  font-size: clamp(0.95rem, 1.1vw, 1.15rem);
  box-shadow: 0 10px 18px rgba(254, 81, 0, 0.24);
}

.contact .section-heading p:last-child {
  margin-bottom: 0;
}

.contact .contact-card {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(144, 155, 177, 0.2);
}

.contact .contact-card h3 {
  margin-bottom: 6px;
  font-size: 1rem;
}

.contact .contact-card a {
  font-size: 0.95rem;
  font-weight: 600;
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: normal;
}

.intro {
  background:
    radial-gradient(circle at 10% 0%, rgba(254, 81, 0, 0.12), transparent 16rem),
    linear-gradient(180deg, #ffffff, #fffdd7);
}

.concepts {
  background:
    radial-gradient(circle at 10% 0%, rgba(254, 81, 0, 0.12), transparent 16rem),
    linear-gradient(180deg, #ffffff, #f0ffee);
}

.governance {
  background:
    radial-gradient(circle at 10% 0%, rgba(238, 219, 179, 0.95), transparent 16rem),
    linear-gradient(180deg, #ffffff, #eedbb3);
}

.commitment {
  background:
    radial-gradient(circle at 100% 100%, rgba(230, 231, 235, 0.95), transparent 14rem),
    linear-gradient(180deg, #ffffff 0%, #e6e7eb 100%);
}

.dpo {
  text-align: center;
}

.dpo .section-heading {
  margin: 0 auto;
  text-align: center;
}

.dpo-mail {
  margin-top: 4px;
  font-size: 1.1rem;
}

.site-footer {
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: #bf8a5e;
  color: #fff;
  border-radius: 0;
  box-shadow: none;
}

.site-footer {
  padding-left: max(24px, calc((100vw - var(--container)) / 2 + 24px));
  padding-right: max(24px, calc((100vw - var(--container)) / 2 + 24px));
}

.footer-brand {
  max-width: 140px;
  border-radius: 12px;
  overflow: hidden;
}

.footer-brand img {
  border-radius: 12px;
}

.footer-copy p {
  margin: 2px 0;
  font-size: 0.95rem;
}

@media (max-width: 1080px) {
  .hero,
  .pill-grid {
    grid-template-columns: 1fr;
  }

  .brand-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .topbar,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-nav {
    width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 2px;
    padding-inline: 2px;
    justify-content: flex-start;
    scroll-snap-type: x proximity;
  }

  .hero-copy,
  .section {
    padding: 24px;
    border-radius: 26px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-side {
    margin-left: 0;
  }

  .hero-callout {
    min-height: 220px;
  }

  .hero-actions {
    position: static;
    margin-top: 24px;
  }

  .section-media {
    grid-template-columns: 1fr;
  }

  .section-illustration {
    max-width: 420px;
  }

  .concepts-meta,
  .content-list-wide,
  .pill-grid {
    grid-template-columns: 1fr;
    columns: 1;
  }

  .brand-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .concepts-meta {
    display: grid;
  }
}

@media (max-width: 640px) {
  body {
    line-height: 1.5;
  }

  .hero {
    padding-top: 28px;
  }

  .topbar,
  .hero,
  .section {
    width: min(100vw - 20px, 100%);
  }

  .section-band {
    padding: 18px 0;
  }

  .hero-actions,
  .hero-links {
    flex-direction: column;
  }

  .button,
  .hero-links a {
    width: 100%;
  }

  .site-footer {
    text-align: left;
  }

  table {
    min-width: 0;
  }

  th,
  td {
    min-width: 180px;
  }
}
