﻿/* =========================
   1. Configuracao geral
   ========================= */
:root {
  --bg: #f8f4ed;
  --dark: #202535;
  --muted: #6e6e6e;
  --red: #ff4e42;
  --blue: #0068CE;
  --yellow: #FDCB04;
  --green: #58b900;
  --soft-yellow: #fee358;
  --radius: 22px;
  --shadow: 0 18px 45px rgba(34, 40, 56, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--dark);
  font-family: "Nunito", Arial, sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  width: min(820px, calc(100% - 40px));
}

.section {
  padding: 120px 0;
}

.section-small {
  padding: 42px 0;
}

h1,
h2,
h3 {
  font-family: "Baloo 2", "Nunito", Arial, sans-serif;
  line-height: 0.95;
}

h2 {
  font-size: clamp(2rem, 5vw, 4.8rem);
  text-align: center;
}

p {
  color: var(--muted);
}

/* =========================
   2. Navbar
   ========================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 10px 30px rgba(34, 40, 56, 0.12);
}

.navbar {
  min-height: 64px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(24px, 4vw, 58px);
  background: rgba(255, 255, 255, 0.92);
}

.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-image {
  display: block;
  width: 115px;
  height: auto;
}

.footer .logo-image {
  width: 150px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 44px);
  font-family: "Baloo 2";
  font-size: 15px;
  color: #212121B2;
  
}

.nav-left {
  justify-content: flex-end;
}

.nav-right {
  justify-content: flex-start;
}

.nav-links a {
  transition: color 0.25s ease;
}

.nav-links a:hover {
  color: var(--blue);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: var(--dark);
  border-radius: 12px;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: #ffffff;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* =========================
   3. Hero
   ========================= */
.hero {
  min-height: 432px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 39px 0 28px;
}

.hero-content {
  max-width: 853px;
}

.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  height: 29px;
  margin-bottom: 17px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--blue);
  color: #ffffff;
  font-family: "Pouf V0.5 Trial", "Baloo 2", "Nunito", Arial, sans-serif;
  font-weight: 700;
  font-size: 10px;
  line-height: 12px;
  letter-spacing: 0px;
}

.tag-icon {
  width: 14px;
  height: 14px;
  object-fit: contain;
  flex: 0 0 14px;
}

.hero h1 {
  color: var(--dark);
  font-family: "Pouf V0.5 Trial", "Baloo 2", "Nunito", Arial, sans-serif;
  font-size: 86px;
  font-weight: 700;
  line-height: 90px;
  letter-spacing: -0.64px;
}

.hero-blue {
  position: relative;
  display: inline-block;
  color: var(--blue);
  text-shadow: none;
}

.hero-blue::after {
  content: "";
  position: absolute;
  left: -2px;
  bottom: 6px;
  width: 370px;
  height: 14px;
  background-image: url("../assets/images/hero-wave.png");
  background-repeat: no-repeat;
  background-size: 404px 17px;
  pointer-events: none;
}

.hero-red {
  position: relative;
  z-index: 2;
  color: var(--red);
}

.hero-text {
  max-width: 610px;
  margin: 24px auto 22px;
  font-size: 16px;
  font-weight: 700;
  line-height: 23px;
  color: #212121;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 22px;
  border: 2px solid var(--dark);
  border-radius: 999px;
  font-family: "Pouf V0.5 Trial", "Baloo 2", "Nunito", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.button-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

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

.button-yellow {
  width: 192px;
  height: 59px;
  padding: 0 24px;
  background: #FDCB04;
  color: var(--dark);
  border: 0;
  box-shadow: none;
}

.button-yellow:hover {
  background: #FDCB04;
  box-shadow: inset 0 -6px 0 #E3B700;
  transform: translateY(0);
}

.button-red {
  background: var(--red);
  color: #ffffff;
  border: 0;
  box-shadow: none;
}

.button-red:hover {
  background: var(--red);
  box-shadow: inset 0 -6px 0 #D94238;
  transform: translateY(0);
}

.button-light {
  background: #ffffff;
  border: 2px solid var(--dark);
  box-shadow: none;
}

.button-light:hover {
  background: #ffffff;
  border-color: var(--dark);
  box-shadow: inset 0 -6px 0 #E7E3DC;
  transform: translateY(0);
}

/* =========================
   4. Parceiros
   ========================= */
.partners h2 {
  margin-bottom: 18px;
  font-family: "Nunito", Arial, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: capitalize;
  color: var(--muted);
}

.partner-list {
  display: flex;
  justify-content: center;
  align-items: center;
}

.partner-logos-image {
  width: min(100%, 1030px);
  height: auto;
  opacity: 0.78;
}

/* =========================
   5. Barras coloridas
   ========================= */
.color-bar {
  overflow: hidden;
  height: 86px;
  display: flex;
  align-items: center;
  color: #ffffff;
  font-family: "Baloo 2", "Nunito", Arial, sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  white-space: nowrap;
}

.color-bar-red { background: var(--red); }
.color-bar-blue { background: var(--blue); }
.color-bar-yellow { background: var(--yellow); color: #111111; }

.color-track {
  display: flex;
  width: max-content;
  animation: moveBar 30s linear infinite;
  will-change: transform;
}

.color-track.reverse {
  animation-direction: reverse;
}

.marquee-group {
  display: flex;
  align-items: center;
  gap: clamp(42px, 5vw, 92px);
  padding-right: clamp(42px, 5vw, 92px);
  flex-shrink: 0;
}

.marquee-group span:nth-child(4),
.marquee-group span:nth-child(8) {
  margin-right: clamp(90px, 11vw, 190px);
}

@keyframes moveBar {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =========================
   6. Sobre
   ========================= */
.section-yellow {
  background: var(--soft-yellow);
}

.about {
  overflow: hidden;
  padding-bottom: 0;
}

.about .container {
  width: min(1500px, calc(100% - 40px));
}

.about-title {
  max-width: 1184px;
  min-height: 156px;
  margin: 0 auto;
  color: #222838;
  font-family: "Nunito", "Pouf V0.5 Trial", "Baloo 2", Arial, sans-serif;
  font-size: 74px;
  font-weight: 1000;
  line-height: 78px;
  letter-spacing: -0.37px;
  text-align: center;
}

.circled-word {
  position: relative;
  display: inline-block;
  margin-right: 0.12em;
  z-index: 1;
}

.circled-word::before {
  content: "";
  position: absolute;
  left: -55px;
  top: -24px;
  width: 250px;
  height: 110px;
  z-index: -1;
  background-image: url("../assets/images/feito-circle.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 250px 110px;
  border: 0;
  border-radius: 0;
  transform: none;
}

.circled-word::after {
  content: none;
}

.section-intro {
  max-width: 860px;
  margin: 36px auto 62px;
  text-align: center;
  color: var(--dark);
  font-weight: 900;
  font-size: 18px;
  line-height: 25px;
}

.tilted-cards,
.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: end;
}

.tilted-cards {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
  height: 560px;
  margin-top: 28px;
}

.photo-card,
.mini-card,
.support-card,
.contact-card {
  border: 3px solid var(--dark);
  border-radius: var(--radius);
  background: var(--bg);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease;
}

.photo-card:hover,
.mini-card:hover,
.wide-card:hover,
.support-card:hover {
  transform: translateY(-8px);
}

.photo-card {
  flex: 0 0 360px;
  width: 360px;
  height: 442px;
  min-height: 442px;
  padding: 28px;
  border: 2.3px solid #212121;
  border-radius: 28px;
  background: #F8F4ED;
  box-shadow: none;
  display: flex;
  flex-direction: column;
}

.photo-card:nth-child(2) {
  position: relative;
  z-index: 2;
  transform: translateY(-6px);
}

.rotate-left {
  transform: rotate(-15deg) translateY(50px);
}

.rotate-right {
  transform: rotate(15deg) translateY(50px);
}

.rotate-left:hover,
.rotate-right:hover {
  transform: rotate(0deg) translateY(-8px);
}

.photo-card:nth-child(2):hover {
  transform: translateY(-42px);
}

.image-placeholder,
.card-visual,
.wide-placeholder,
.support-placeholder,
.contact-placeholder {
  border: 2px dashed rgba(34, 40, 56, 0.22);
  background: linear-gradient(135deg, #ffe7df, #fff7dc);
}

.image-placeholder {
  position: relative;
  height: 196px;
  border-radius: 23px;
  display: block;
  padding: 20px;
  color: var(--dark);
  font-weight: 900;
}

.warm { background: linear-gradient(135deg, #ffe4df, #fff5d7); }
.cream { background: linear-gradient(135deg, #fff0df, #fff9eb); }
.soft { background: linear-gradient(135deg, #fff2df, #eaf7ff); }

.photo-card h3 {
  margin: 28px 0 12px;
  font-size: 22px;
  line-height: 27px;
  text-align: left;
}

.photo-card p {
  font-size: 15px;
  line-height: 22px;
}

.photo-badge {
  position: absolute;
  left: 22px;
  top: 22px;
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 12px;
  border-radius: 999px;
  background: #212121;
  color: #ffffff;
  font-family: "Baloo 2", "Nunito", Arial, sans-serif;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.photo-caption,
.photo-size {
  position: absolute;
  left: 26px;
}

.photo-caption {
  bottom: 35px;
  color: var(--dark);
  font-family: "Baloo 2", "Nunito", Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.photo-size {
  bottom: 17px;
  color: rgba(33, 33, 33, 0.46);
  font-size: 12px;
  font-style: italic;
  font-weight: 700;
}

/* =========================
   7. Jogos e aprendizagem
   ========================= */
.features h2 {
  max-width: 920px;
  margin: 0 auto 54px;
  text-align: left;
  color: var(--dark);
  font-family: "Pouf V0.5 Trial", "Baloo 2", "Nunito", Arial, sans-serif;
  font-size: 39px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0px;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  height: 49px;
  margin: 0 5px;
  padding: 6px 18px 6px 9px;
  border-radius: 60px;
  color: #ffffff;
  font-family: "Pouf V0.5 Trial", "Baloo 2", "Nunito", Arial, sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 35px;
  white-space: nowrap;
  vertical-align: baseline;
  box-shadow: 0px 12.69px 38.08px 0px rgba(33, 33, 33, 0.08);
}

.pill::before {
  content: "";
  display: inline-block;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.pill-red {
  width: 168px;
  background: #FF5442;
}


.pill-yellow {
  width: 226px;
  background: #FBC404;
  color: var(--dark);
}


.pill-blue {
  width: 278px;
  background: #0068CE;
}


.pill-green {
  width: 344px;
  background: #569E00;
}


.pill-red::before { background-image: url("../assets/icons/pill-jogos-icon.png"); }
.pill-yellow::before { background-image: url("../assets/icons/pill-book-icon.png"); }
.pill-blue::before { background-image: url("../assets/icons/pill-book-icon.png"); }
.pill-green::before { background-image: url("../assets/icons/pill-chat-icon.png"); }

.feature-cards {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(34px, 4vw, 72px);
  min-height: 520px;
  margin: 0 auto 72px;
}

.mini-card {
  flex: 0 0 clamp(210px, 16vw, 254px);
  min-height: clamp(400px, 30vw, 470px);
  padding: clamp(18px, 1.55vw, 24px);
  border-width: 2px;
  border-radius: 24px;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  margin-left: 0;
  transform-origin: center center;
  transform: rotate(-7deg) translateY(18px);
}

.mini-card:first-child {
  margin-left: 0;
}

.mini-card:nth-child(2) {
  position: relative;
  z-index: 2;
  transform: rotate(7deg) translateY(14px);
}

.mini-card:nth-child(3) {
  position: relative;
  z-index: 1;
  transform: rotate(-7deg) translateY(10px);
}

.mini-card:nth-child(4) {
  position: relative;
  z-index: 3;
  transform: rotate(8deg) translateY(-22px);
}

.mini-card:hover {
  transform: rotate(0deg) translateY(-8px);
}

.high-card {
  margin-top: 0;
}

.card-label {
  position: relative;
  z-index: 2;
  display: inline-block;
  width: fit-content;
  margin: 18px 0 -48px 22px;
  padding: 7px 14px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card-label.blue { background: var(--blue); }
.card-label.dark { background: var(--dark); }

.card-visual {
  position: relative;
  height: clamp(155px, 13vw, 205px);
  margin: 0 0 26px;
  border-radius: 24px;
}

.green-soft { background: linear-gradient(135deg, #e3f9f0, #efffe0); }
.yellow-soft { background: linear-gradient(135deg, #fff1d7, #fff8df); }
.blue-soft { background: linear-gradient(135deg, #dff1ff, #f3fbff); }

.features .button {
  margin: 0 auto;
  display: flex;
  width: fit-content;
}

.mini-card h3 {
  margin-bottom: 10px;
  font-family: "Baloo 2", "Nunito", Arial, sans-serif;
  font-size: clamp(1.2rem, 1.35vw, 1.55rem);
  line-height: 1;
}

.mini-card p {
  font-size: clamp(0.82rem, 0.9vw, 0.98rem);
  line-height: 1.55;
}

.mini-card:first-child h3 {
  color: var(--blue);
}

.feature-caption,
.feature-size {
  position: absolute;
  left: 20px;
}

.feature-caption {
  bottom: 34px;
  color: var(--dark);
  font-family: "Baloo 2", "Nunito", Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
}

.feature-size {
  bottom: 16px;
  color: rgba(33, 33, 33, 0.42);
  font-size: 0.72rem;
}

.feature-button {
  gap: 12px;
  min-width: 230px;
  min-height: 54px;
  border: 0;
  box-shadow: none;
}

/* =========================
   8. Aula, casa e comunidade
   ========================= */
.places h2 {
  margin-bottom: 68px;
}

.places .narrow {
  width: min(1080px, calc(100% - 40px));
}

.text-blue { color: var(--blue); }
.text-red { color: var(--red); }
.text-green { color: var(--green); }
.text-yellow { color: var(--yellow); }

.wide-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 4vw, 76px);
  align-items: center;
  width: min(860px, 100%);
  min-height: 215px;
  margin: 0 auto 58px;
  padding: clamp(28px, 3vw, 48px);
  border: 2px solid var(--dark);
  border-radius: 24px;
  color: #ffffff;
  transition: transform 0.25s ease;
}

.wide-card h3 {
  margin: 8px 0 10px;
  font-size: clamp(1.35rem, 1.8vw, 2rem);
  line-height: 1.05;
}

.wide-card p {
  font-size: clamp(0.9rem, 1vw, 1.08rem);
  line-height: 1.45;
}

.wide-card p,
.wide-card h3,
.wide-kicker {
  color: inherit;
}

.red-card {
  background: var(--red);
  color: #111111;
  transform: rotate(5deg);
}

.green-card {
  background: var(--green);
  color: #ffffff;
  transform: rotate(-2.5deg);
}

.blue-card {
  background: var(--blue);
  color: #ffffff;
  transform: rotate(3deg);
}

.wide-card:hover {
  transform: rotate(0deg) translateY(-8px);
}

.wide-placeholder {
  position: relative;
  height: clamp(125px, 11.5vw, 160px);
  border-radius: 18px;
  background: linear-gradient(135deg, #fff0e7, #fff7d8);
  border-color: rgba(33, 33, 33, 0.18);
}

.wide-badge {
  position: absolute;
  left: 18px;
  top: 18px;
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 12px;
  border-radius: 999px;
  background: #212121;
  color: #ffffff;
  font-family: "Baloo 2", "Nunito", Arial, sans-serif;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.wide-caption,
.wide-size {
  position: absolute;
  left: 22px;
}

.wide-caption {
  bottom: 34px;
  color: #212121;
  font-family: "Baloo 2", "Nunito", Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
}

.wide-size {
  bottom: 18px;
  color: rgba(33, 33, 33, 0.45);
  font-size: 0.68rem;
}

.wide-kicker {
  display: block;
  font-family: "Baloo 2", "Nunito", Arial, sans-serif;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* =========================
   9. Apoiar o KIBO
   ========================= */
.section-blue {
  background: var(--blue);
  color: #ffffff;
}

.support-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.support {
  padding: 90px 0;
}

.support-grid {
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(70px, 8vw, 130px);
}

.support-text h2 {
  max-width: 560px;
  margin-bottom: 28px;
  text-align: left;
  color: #ffffff;
  font-size: clamp(2.5rem, 4vw, 4.65rem);
  line-height: 1.08;
}

.support-text p,
.support-text li {
  color: #ffffff;
}

.support-text p {
  max-width: 520px;
  font-size: clamp(0.94rem, 1vw, 1.08rem);
  font-weight: 700;
  line-height: 1.6;
}

.check-list {
  margin: 34px 0;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
  font-size: 0.98rem;
  font-weight: 700;
}

.check-list img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex: 0 0 20px;
}

.support-card {
  position: relative;
  min-height: 620px;
  padding: 34px;
  border: 3px dashed rgba(33, 33, 33, 0.15);
  border-radius: 34px;
  background: linear-gradient(135deg, #fff2ec, #fff8dc);
  box-shadow: none;
}

.support-placeholder {
  height: 455px;
  margin: 72px 0 28px;
  border: 2px dashed rgba(33, 33, 33, 0.18);
  border-radius: 26px;
  background: transparent;
}

.support-badge {
  position: absolute;
  left: 34px;
  top: 34px;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 18px;
  border-radius: 999px;
  background: #111111;
  color: #ffffff;
  font-family: "Baloo 2", "Nunito", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.support-card h3 {
  color: #111111;
  font-size: 1.4rem;
  line-height: 1;
}

.support-card p {
  margin-top: 8px;
  color: rgba(33, 33, 33, 0.5);
  font-size: 1rem;
}

.support-button {
  width: auto;
  height: 52px;
  min-width: 0;
  min-height: 0;
  gap: 16px;
  padding: 0 28px;
  background: #FBC404;
  border: 0;
  border-radius: 999px;
  box-shadow: none;
  color: #111111;
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
}

.support-button:hover {
  background: #FBC404;
  box-shadow: inset 0 -6px 0 #E3B700;
  transform: translateY(0);
}

/* =========================
   10. Contactos
   ========================= */
.contact h2 {
  margin-bottom: 18px;
  text-align: left;
}

.contact h2 span {
  color: var(--blue);
}

.contact-form {
  margin-top: 30px;
}

.contact-form label {
  display: block;
  margin: 16px 0 7px;
  font-family: "Baloo 2", "Nunito", Arial, sans-serif;
  font-weight: 900;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-radius: 10px;
  padding: 15px 16px;
  font: inherit;
  background: #ffffff;
  outline: 2px solid transparent;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline-color: var(--blue);
}

.contact-form button {
  margin-top: 18px;
}

.send-button {
  gap: 12px;
  min-width: 220px;
  border: 0;
  box-shadow: none;
}

.send-button:hover {
  background: var(--red);
  box-shadow: inset 0 -6px 0 #D94238;
  transform: translateY(0);
}

.send-button img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.form-message {
  min-height: 28px;
  margin-top: 14px;
  color: var(--green);
  font-weight: 900;
}

.contact-card {
  padding: 34px;
  background: var(--yellow);
  border: 0;
}

.contact-card h3 {
  margin-bottom: 18px;
  font-size: 1.4rem;
}

.social-row {
  display: flex;
  gap: 14px;
  margin-bottom: 34px;
}

.social-row span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #ffffff;
}

.contact-placeholder {
  min-height: 260px;
  padding: 20px;
  border-radius: 18px;
  background: linear-gradient(135deg, #fff1dd, #fff7e8);
}

.contact-placeholder h4 {
  margin-top: 130px;
}

/* =========================
   11. Footer
   ========================= */
.footer {
  padding: 80px 0 28px;
  border-top: 1px solid rgba(34, 40, 56, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 50px;
}

.footer p {
  margin-top: 18px;
}

.footer li {
  margin-bottom: 12px;
  font-weight: 800;
  font-size: 14px;
}

.footer a:hover {
  color: var(--blue);
}

.copyright {
  margin-top: 60px;
  text-align: center;
  font-size: 10px;
}
.info{
  font-size: 6px;
}
/* =========================
   12. Responsividade
   ========================= */
@media (max-width: 900px) {
  .navbar {
    display: flex;
    justify-content: space-between;
    gap: 16px;
  }

  .logo {
    order: 1;
  }

  .menu-button {
    display: block;
    order: 2;
  }

  .menu-button.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-button.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-button.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-links {
    position: absolute;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: var(--shadow);
  }

  .nav-left {
    top: 64px;
    border-radius: 18px 18px 0 0;
    box-shadow: 0 18px 20px rgba(34, 40, 56, 0.08);
  }

  .nav-right {
    top: 216px;
    border-radius: 0 0 18px 18px;
    box-shadow: var(--shadow);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    display: block;
    padding: 14px;
  }

  .section {
    padding: 82px 0;
  }

  .partner-list,
  .tilted-cards,
  .feature-cards,
  .support-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .tilted-cards {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
  height: 560px;
  margin-top: 28px;
}

@media (max-width: 560px) {
  .hero h1 {
    font-size: 58px;
    line-height: 60px;
  }

  .hero-blue::after {
    bottom: 4px;
    width: min(404px, calc(100vw - 34px));
    background-size: 100% 17px;
  }
}
}














