:root {
  --ink: #24235c;
  --muted: #606579;
  --line: #e3e5ed;
  --surface: #ffffff;
  --soft: #f6f7fb;
  --deep: #24235c;
  --deep-2: #171743;
  --green: #17934c;
  --green-dark: #10733a;
  --yellow: #ffdf00;
  --red: #df3028;
  --blue: #24235c;
  --blue-dark: #171743;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

.align-center {
	text-align: center;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
    "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 88px;
  padding: 10px clamp(18px, 4vw, 48px);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(36, 35, 92, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
}

.brand-logo {
  width: auto;
  max-height: 70px;
  height: auto;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
  color: rgba(36, 35, 92, 0.74);
  font-size: 13px;
}

.main-nav a:hover {
  color: var(--green);
}

.site-footer a:hover {
  color: #fff;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-small {
  min-height: 36px;
  padding: 0 16px;
  font-size: 13px;
}

.button-primary {
  color: #fff;
  background: var(--green);
}

.button-primary:hover {
  background: var(--green-dark);
}

.button-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.34);
}

.button-whatsapp {
  color: #fff;
  background: var(--blue);
}

.button-whatsapp:hover {
  background: var(--blue-dark);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 160px clamp(20px, 6vw, 72px) 72px;
  color: #fff;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(20, 20, 65, 0.76), rgba(36, 35, 92, 0.34) 48%, rgba(36, 35, 92, 0.08)),
    linear-gradient(0deg, rgba(20, 20, 65, 0.54), rgba(20, 20, 65, 0.06) 42%);
}

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

.eyebrow {
  margin: 0 0 16px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--yellow);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(46px, 7vw, 86px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(38px, 5.4vw, 72px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1.12;
}

.hero-text {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(19px, 2.4vw, 25px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-actions-222 {
   margin-top: 30px;
}

.support-text {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
}

.section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 132px) 0;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(44px, 7vw, 96px);
  align-items: start;
}

.intro-copy {
  color: var(--muted);
  font-size: clamp(19px, 2vw, 23px);
}

.check-list {
  display: grid;
  gap: 16px;
  padding: 0;
  margin: 32px 0 0;
  color: var(--ink);
  font-size: 17px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 2px;
  content: "✓";
  color: var(--green);
  font-weight: 900;
}

.pathway-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
  padding: clamp(76px, 10vw, 124px) clamp(20px, 5vw, 64px);
  color: #fff;
  background:
    radial-gradient(circle at 82% 16%, rgba(255, 223, 0, 0.18), transparent 24%),
    linear-gradient(135deg, var(--deep), var(--deep-2));
}

.pathway-copy {
  max-width: 680px;
}

.pathway-copy .eyebrow {
  color: var(--green);
}

.pathway-copy p:not(.eyebrow) {
  color: rgba(0, 0, 0, 0.76);
  font-size: clamp(19px, 2vw, 24px);
}

.pathway-cards {
  display: grid;
  gap: 14px;
}

.pathway-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
}

.pathway-gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
}

/* Mobile: 2 colunas e 3 linhas */
@media (max-width: 640px) {
  .pathway-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .pathway-gallery img {
    border-radius: 6px;
  }
}


.pathway-cards article {
  padding: 26px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  max-width: 200px;
}





.feature-band {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  min-height: 760px;
  color: #fff;
  background: var(--green);
}

.feature-copy {
  align-self: center;
  padding: clamp(56px, 8vw, 104px);
}

.feature-copy p:not(.eyebrow),
.statement p,
.value-section p,
.visit-content p {
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(19px, 2vw, 24px);
}

.feature-media img,
.photo-story img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cards-section {
  padding-top: clamp(44px, 7vw, 80px);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.card {
  min-height: 150px;
  padding: 28px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(36, 35, 92, 0.06);
	vertical-align: middle;
}

.card-number {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.card p,
.split-item p,
.routine-grid p,
.calm-section p,
.site-footer p {
  color: var(--muted);
}

.cards-image {
	margin-bottom: 20px;
	
	border-radius: 100px;
}

.cards-image img {
	border-radius: 10px;
	width: 100%;
}

.statement,
.value-section,
.visit-section {
  padding: clamp(84px, 11vw, 150px) clamp(20px, 5vw, 64px);
  text-align: center;
}

.statement {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(36, 35, 92, 0.96), rgba(36, 35, 92, 0.86)),
    linear-gradient(90deg, var(--green), var(--yellow), var(--red));
}

.statement h2,
.statement p,
.value-section h2,
.value-section p,
.visit-content {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.LOGO-GRUPO {
	display: flex;
  align-items: flex-start;
  justify-content: center;
}

.LOGO-GRUPO img {
	height: 120px;
}

.country-flags {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(36px, 7vw, 90px);
  margin-top: 42px;
}

.country {
  display: grid;
  justify-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 600;
}

.country img {
  display: block;
  width: 88px;
  height: 58px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

/* A bandeira da Suíça é quadrada */
.country:first-child img {
  width: 58px;
}

@media (max-width: 640px) {
  .country-flags {
    gap: 24px;
    margin-top: 32px;
  }

  .country img {
    width: 64px;
    height: 42px;
  }

  .country:first-child img {
    width: 42px;
  }

  .country {
    font-size: 12px;
  }
}



.split-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  padding-top: 0;
}

.split-item {
  padding: clamp(28px, 5vw, 54px);
  background: #fff;
  border-top: 1px solid var(--line);
}

.split-item.accent {
  grid-column: 1 / -1;
  color: #fff;
  background: var(--deep);
  border-top-color: var(--deep);
}

.split-item.accent p {
  color: rgba(255, 255, 255, 0.74);
}

.split-item.accent h3::after {
  display: block;
  width: 48px;
  height: 4px;
  margin-top: 18px;
  content: "";
  background: linear-gradient(90deg, var(--green), var(--yellow), var(--red));
  border-radius: 999px;
}

.photo-story {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 720px;
  background: var(--soft);
}

.photo-story-copy {
  align-self: center;
  padding: clamp(48px, 7vw, 92px);
}

.photo-story-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(19px, 2vw, 24px);
}

.routine-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
  padding-top: clamp(58px, 7vw, 90px);
}

.routine-grid article {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.calm-section {
  padding: clamp(76px, 10vw, 128px) clamp(20px, 5vw, 64px);
  background: var(--soft);
}

.centered {
  max-width: 860px;
  margin: 0 auto 48px;
  text-align: center;
}

.centered p:not(.eyebrow) {
  font-size: clamp(18px, 2vw, 22px);
}

.card.light {
  background: #fff;
}

.value-section {
  color: #fff;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 223, 0, 0.12), transparent 30%),
    #17934c;
}

.value-section .eyebrow,
.visit-section .eyebrow {
  color: rgba(255, 255, 255, 0.7);
}

.motto {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 46px;
  color: #fff;
  font-size: clamp(28px, 5vw, 58px);
  font-weight: 800;
  line-height: 1;
}

.motto span {
  padding: 14px 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.motto span:nth-child(1) {
  border-color: rgba(40, 56, 89, 0.7);
}

.motto span:nth-child(2) {
  border-color: rgba(255, 223, 0, 0.7);
}

.motto span:nth-child(3) {
  border-color: rgba(223, 48, 40, 0.7);
}

.visit-section {
  color: #fff;
  background:
    linear-gradient(rgba(81, 161, 87, 0.48), rgba(81, 161, 87, 0.88)),
    url("assets/toddlers-blocks.png") center / cover;
}

.visit-content .support-text,
.location {
  color: rgba(255, 255, 255, 0.72);
}

.visit-content .hero-actions {
  justify-content: center;
}

.location {
  margin-top: 34px;
  font-size: 16px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto;
  gap: 0px;
  padding: 24px clamp(20px, 5vw, 64px);
  color: #fff;
  background: var(--green);
}

.footer-logo {
  width: min(300px, 20%);
  height: auto;
  margin-bottom: 0px;
  padding: 0px;
  
  border-radius: 8px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.legal {
  grid-column: 1 / -1;
  max-width: 800px;
  margin: 0;
  font-size: 13px;
}

@media (max-width: 980px) {
  .site-header {
    position: fixed;
    flex-wrap: wrap;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .intro,
  .feature-band,
  .photo-story,
  .pathway-section {
    grid-template-columns: 1fr;
  }

  .feature-band,
  .photo-story {
    min-height: auto;
  }

  .feature-media,
  .photo-story img {
    min-height: 420px;
  }

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

@media (max-width: 640px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand-copy small,
   {
    display: none;
  }

  .brand {
    padding: 5px 8px;
  }

  .brand-logo {
    max-height: 60px;
  }

  .hero {
    min-height: 780px;
    align-items: end;
    padding: 170px 20px 44px;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(23, 23, 67, 0.86), rgba(23, 23, 67, 0.28) 72%, rgba(23, 23, 67, 0.52)),
      linear-gradient(90deg, rgba(23, 23, 67, 0.28), rgba(23, 23, 67, 0.04));
  }

  h1 {
    font-size: 43px;
  }

  h2 {
    font-size: 36px;
  }

  .section {
    width: min(100% - 32px, var(--max));
  }

  .cards-grid,
  .routine-grid,
  .split-list,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .feature-copy,
  .photo-story-copy {
    padding: 52px 20px;
  }

  .feature-media,
  .photo-story img {
    min-height: 320px;
  }

  .card {
    min-height: auto;
  }

  .motto {
    display: grid;
  }
	
	.footer-logo {
  width: min(300px, 40%);
  height: auto;
		
  margin: auto;
  padding: 0px;
align-items: center;
		border-radius: 8px;
}
	
	
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
	margin-top: 20px;
	align-content: center;
	text-align: center;
}
	
	
}
