:root {
  --yellow: #ffd326;
  --orange: #f58536;
  --blue: #8cc3e7;
  --red: #eb263f;
  --brown: #7e6b60;
  --brown-dark: #2d2521;
  --ink: #241f1d;
  --muted: #68615d;
  --line: #e7e1dc;
  --paper: #ffffff;
  --cream: #fff6e8;
  --peach: #ffe9d6;
  --mint: #eef8f4;
  --sky-soft: #eaf6fd;
  --soft: #fff7ed;
  --green: #4d8f68;
  --radius: 8px;
  --shadow: 0 18px 50px rgba(36, 31, 29, 0.12);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 16%, rgba(255, 211, 38, 0.16), transparent 24rem),
    radial-gradient(circle at 92% 12%, rgba(140, 195, 231, 0.18), transparent 22rem),
    linear-gradient(180deg, var(--cream), #fffaf4 34%, var(--sky-soft) 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

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

a:hover {
  color: var(--red);
}

p {
  margin: 0 0 1rem;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.35rem, 8vw, 5.7rem);
  max-width: 12ch;
}

h2 {
  font-size: clamp(1.8rem, 5vw, 3.1rem);
}

h3 {
  font-size: 1.25rem;
}

ul {
  padding-left: 1.2rem;
}

address {
  font-style: normal;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  transform: translateY(-140%);
  padding: 0.7rem 0.9rem;
  color: var(--paper);
  background: var(--brown-dark);
  border-radius: var(--radius);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  background:
    linear-gradient(90deg, rgba(255, 211, 38, 0.26), rgba(245, 133, 54, 0.2) 35%, rgba(140, 195, 231, 0.2) 68%, rgba(235, 38, 63, 0.14)),
    rgba(255, 250, 244, 0.95);
  border-bottom: 1px solid rgba(231, 225, 220, 0.86);
  box-shadow: 0 10px 30px rgba(36, 31, 29, 0.07);
  backdrop-filter: blur(16px);
}

.site-header::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--yellow), var(--orange), var(--blue), var(--red));
}

.site-header .container {
  width: min(1640px, calc(100% - 32px));
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-width: 0;
  font-weight: 800;
}

.brand img {
  width: 118px;
  height: 48px;
  object-fit: contain;
}

.brand span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.primary-nav {
  flex: 1 1 auto;
  justify-content: flex-end;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 0.12rem;
  font-size: 0.86rem;
  font-weight: 700;
}

.primary-nav > a,
.nav-dropdown-toggle {
  position: relative;
  flex: 0 0 auto;
  isolation: isolate;
  overflow: hidden;
  white-space: nowrap;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.75rem 0.5rem 1.55rem;
  color: var(--brown-dark);
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: transparent;
  font: inherit;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.primary-nav > a:not(.nav-cta)::before,
.nav-dropdown-toggle::before {
  content: "";
  position: absolute;
  left: 0.5rem;
  top: 50%;
  width: 0.76rem;
  height: 2px;
  background: var(--menu-shape-color, var(--red));
  border-radius: 999px;
  opacity: 0;
  transform: translateY(-50%) scaleX(0.35);
  transform-origin: left center;
  transition: opacity 180ms ease, transform 220ms cubic-bezier(0.2, 1.4, 0.35, 1);
}

.primary-nav > a:not(.nav-cta):hover::before,
.primary-nav > a:not(.nav-cta):focus-visible::before,
.primary-nav [aria-current="page"]::before,
.nav-dropdown:hover .nav-dropdown-toggle::before,
.nav-dropdown-toggle:focus-visible::before {
  opacity: 1;
  transform: translateY(-50%) scaleX(1);
}

.primary-nav [aria-current="page"],
.primary-nav > a:hover,
.nav-dropdown:hover .nav-dropdown-toggle,
.nav-dropdown-toggle:focus-visible {
  color: var(--red);
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(235, 38, 63, 0.12);
  box-shadow: 0 8px 18px rgba(36, 31, 29, 0.07);
}

.nav-cta,
.button,
.button-outline,
.button-soft {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.72rem 0.95rem;
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.nav-cta,
.button {
  color: var(--paper);
  background: var(--red);
  box-shadow: 0 10px 24px rgba(235, 38, 63, 0.22);
}

.button:hover,
.nav-cta:hover {
  color: var(--paper);
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(235, 38, 63, 0.28);
}

.growappy-nav {
  padding: 0.45rem 0.58rem;
  color: #18384f;
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(24, 56, 79, 0.12);
  box-shadow: 0 10px 24px rgba(24, 56, 79, 0.12);
}

.growappy-nav img {
  width: 98px;
  height: 26px;
  object-fit: contain;
}

.growappy-nav span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  color: #18384f;
  font-size: 0.82rem;
}

.growappy-nav:hover {
  color: #18384f;
  background: var(--paper);
  box-shadow: 0 14px 30px rgba(24, 56, 79, 0.16);
}

.nav-contact-box {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  min-height: 42px;
  padding: 0.48rem 0.72rem;
  color: var(--paper);
  background: linear-gradient(135deg, #1877f2, #0f67d6);
  border: 1px solid rgba(15, 103, 214, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(15, 103, 214, 0.18);
  white-space: nowrap;
  font-weight: 800;
}

.nav-contact-box:hover {
  color: var(--paper);
  background: linear-gradient(135deg, #0f67d6, #0a5ac0);
  box-shadow: 0 14px 28px rgba(15, 103, 214, 0.24);
}

.nav-contact-box-icon {
  width: 1.35rem;
  height: 1.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0f67d6;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  font-size: 0.82rem;
  font-weight: 900;
  flex: 0 0 auto;
}

.nav-contact-box-text {
  line-height: 1;
  text-align: left;
}

.nav-contact-box-text strong {
  display: block;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.88;
}

.nav-contact-box-text span {
  display: block;
  font-size: 0.92rem;
}

.button-outline {
  color: var(--brown-dark);
  border-color: var(--brown-dark);
  background: transparent;
}

.button-outline:hover {
  color: var(--paper);
  background: var(--brown-dark);
}

.button-soft {
  color: var(--brown-dark);
  background: var(--yellow);
}

.button-soft:hover {
  color: var(--brown-dark);
  background: #ffe06c;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-panel {
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  width: 210px;
  padding: 0.45rem 0 0;
  display: block;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(6px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 3px solid var(--red);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  z-index: 2;
}

.nav-dropdown-panel a {
  position: relative;
  display: block;
  padding: 0.65rem 0.7rem 0.65rem 1.8rem;
  border-radius: var(--radius);
}

.nav-dropdown-panel a::before {
  content: "";
  position: absolute;
  left: 0.7rem;
  top: 50%;
  width: 0.65rem;
  height: 2px;
  background: var(--menu-item-color, var(--red));
  border-radius: 999px;
  transform: translateY(-50%);
}

.nav-dropdown-panel a:nth-child(1) {
  --menu-item-color: var(--yellow);
}

.nav-dropdown-panel a:nth-child(2) {
  --menu-item-color: var(--blue);
}

.nav-dropdown-panel a:nth-child(3) {
  --menu-item-color: var(--red);
}

.nav-dropdown-panel a:hover {
  color: var(--red);
  background: rgba(255, 211, 38, 0.12);
}

.nav-dropdown-panel a.nav-subitem-child {
  padding-left: 2.25rem;
}

.nav-dropdown-panel a.nav-subitem-child::after {
  content: "↳";
  position: absolute;
  left: 0.95rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--red);
  font-weight: 900;
  font-size: 0.9rem;
}

.nav-dropdown.is-open .nav-dropdown-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

@media (min-width: 1081px) {
  .nav-dropdown:hover .nav-dropdown-panel,
  .nav-dropdown:focus-within .nav-dropdown-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.nav-toggle span {
  width: 21px;
  height: 2px;
  display: block;
  margin: 4px auto;
  background: var(--brown-dark);
}

main {
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: center;
  padding: 8.4rem 0 4.2rem;
  color: var(--brown-dark);
  background:
    linear-gradient(90deg, rgba(255, 250, 244, 0.74) 0%, rgba(255, 250, 244, 0.46) 42%, rgba(255, 250, 244, 0.1) 100%),
    linear-gradient(180deg, rgba(255, 246, 232, 0.28), rgba(255, 246, 232, 0.04)),
    url("../img/educacao-bg.jpg") center / cover no-repeat;
}

.motion-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-showcase {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 410px;
}

.hero-logo-stage {
  position: relative;
  width: min(380px, 100%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  isolation: isolate;
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transform-style: preserve-3d;
  transition: transform 220ms ease;
  will-change: transform;
}

.hero-showcase-logo {
  position: relative;
  z-index: 1;
  width: min(320px, 78%);
  filter: drop-shadow(0 20px 28px rgba(36, 31, 29, 0.18));
  animation: heroLogoFloat 4.8s ease-in-out infinite;
}

@keyframes heroLogoFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-0.7deg) scale(1);
  }

  50% {
    transform: translate3d(0, -16px, 0) rotate(1.1deg) scale(1.025);
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.85rem;
  color: var(--brown);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 4px;
  background: linear-gradient(90deg, var(--yellow), var(--orange), var(--red));
  border-radius: 0;
}

.hero-lead {
  max-width: 640px;
  margin-top: 1.15rem;
  color: #4f433b;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  font-weight: 650;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.36);
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.hero-pills span {
  position: relative;
  padding-left: 1.6rem;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding-right: 0.68rem;
  padding-block: 0.35rem;
  color: var(--brown-dark);
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-left: 5px solid var(--orange);
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(36, 31, 29, 0.08);
}

.hero-pills span::before {
  content: "";
  position: absolute;
  left: 0.6rem;
  top: 50%;
  width: 0.7rem;
  height: 0.7rem;
  background: var(--hero-pill-color, var(--yellow));
  transform: translateY(-50%) rotate(var(--hero-pill-rotation, 0deg));
}

.hero-pills span:nth-child(1) {
  border-left-color: var(--yellow);
  --hero-pill-color: var(--yellow);
}

.hero-pills span:nth-child(1)::before {
  border-radius: 50%;
}

.hero-pills span:nth-child(2) {
  border-left-color: var(--blue);
  --hero-pill-color: var(--blue);
  --hero-pill-rotation: 45deg;
}

.hero-pills span:nth-child(3) {
  border-left-color: var(--red);
  --hero-pill-color: var(--red);
}

.hero-pills span:nth-child(3)::before {
  clip-path: polygon(50% 0, 100% 36%, 82% 100%, 18% 100%, 0 36%);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.7rem;
}

.hero-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}

.strip-item {
  min-height: 118px;
  padding: 1rem 1.05rem;
  display: flex;
  align-items: center;
  gap: 0.95rem;
  color: var(--brown-dark);
  background: rgba(255, 250, 244, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-left: 6px solid var(--accent);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(36, 31, 29, 0.12);
  backdrop-filter: blur(7px);
}

.strip-item-yellow,
.accent-yellow,
.service-yellow,
.download-yellow,
.contact-yellow,
.row-yellow {
  --accent: var(--yellow);
}

.strip-item-blue,
.accent-blue,
.service-blue,
.download-blue,
.contact-blue,
.row-blue {
  --accent: var(--blue);
}

.strip-item-red,
.accent-red,
.service-red,
.download-red,
.contact-red,
.row-red {
  --accent: var(--red);
}

.accent-orange,
.service-orange,
.download-orange,
.contact-orange,
.row-orange {
  --accent: var(--orange);
}

.accent-green,
.service-green,
.download-green,
.contact-green,
.row-green {
  --accent: var(--green);
}

.accent-brown,
.service-brown,
.download-brown,
.contact-brown,
.row-brown {
  --accent: var(--brown);
}

.strip-logo {
  flex: 0 0 92px;
  width: 92px;
  height: 92px;
  object-fit: contain;
  filter: none;
}

.strip-item > div {
  min-width: 0;
}

.strip-item strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 1.05rem;
}

.section {
  padding: clamp(3.4rem, 8vw, 6rem) 0;
  background:
    linear-gradient(180deg, rgba(255, 250, 244, 0.78), rgba(255, 250, 244, 0.9)),
    radial-gradient(circle at 8% 12%, rgba(255, 211, 38, 0.1), transparent 18rem);
}

.section-alt {
  background:
    linear-gradient(180deg, rgba(234, 246, 253, 0.86), rgba(238, 248, 244, 0.9)),
    radial-gradient(circle at 88% 10%, rgba(235, 38, 63, 0.08), transparent 18rem),
    radial-gradient(circle at 12% 88%, rgba(245, 133, 54, 0.1), transparent 20rem);
}

.section-dark {
  color: var(--paper);
  background: var(--brown-dark);
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.65fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 2rem;
}

.section-header p {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-dark .section-header p {
  color: #d8d0cb;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 1rem;
}

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

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

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

.card,
.info-panel,
.download-card,
.news-card,
.service-card {
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
}

.card {
  box-shadow: 0 12px 34px rgba(36, 31, 29, 0.07);
}

.accent-top {
  border-top: 6px solid var(--accent);
}

.service-card {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-top: 8px solid var(--accent);
}

.service-card p,
.card p,
.download-card p,
.news-card p {
  color: var(--muted);
}

.news-card {
  overflow: hidden;
}

.news-card-image {
  width: calc(100% + 2.5rem);
  max-width: none;
  aspect-ratio: 16 / 9;
  margin: -1.25rem -1.25rem 1rem;
  object-fit: cover;
}

.news-card-content {
  display: grid;
  gap: 0.65rem;
}

.news-card-content h3 {
  margin-top: 0.1rem;
}

.news-full-content {
  color: var(--muted);
}

.news-full-content p:last-child {
  margin-bottom: 0;
}

.news-grid-status {
  grid-column: 1 / -1;
  margin: 0;
  padding: 1rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: var(--radius);
}

.icon-shape {
  width: 52px;
  height: 52px;
  margin-bottom: 0.95rem;
  background: var(--accent);
}

.shape-circle {
  border-radius: 50%;
}

.shape-diamond {
  transform: rotate(45deg);
}

.shape-triangle {
  width: 0;
  height: 0;
  background: transparent;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-bottom: 54px solid var(--accent);
}

.shape-pentagon {
  clip-path: polygon(50% 0, 98% 36%, 80% 100%, 20% 100%, 2% 36%);
}

.activity-carousel {
  position: relative;
  min-height: 365px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--brown-dark);
  box-shadow: var(--shadow);
}

.carousel-slide {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: end start;
  padding: clamp(1.5rem, 4vw, 3rem);
  color: var(--paper);
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 600ms ease, transform 600ms ease;
  background:
    linear-gradient(120deg, rgba(45, 37, 33, 0.74), rgba(45, 37, 33, 0.24)),
    var(--slide-bg, linear-gradient(135deg, #ffd326, #f58536)),
    var(--slide-image, url("../img/educacao-bg.jpg")) center / cover no-repeat;
  background-blend-mode: normal, multiply, normal;
}

.carousel-slide-creche {
  --slide-bg: linear-gradient(135deg, rgba(255, 211, 38, 0.34), rgba(245, 133, 54, 0.2));
  --slide-image: url("../img/creche-hero-bg.png");
}

.carousel-slide-preescolar {
  --slide-bg: linear-gradient(135deg, rgba(140, 195, 231, 0.34), rgba(77, 143, 104, 0.2));
  --slide-image: url("../img/pre-escolar-hero-bg.png");
}

.carousel-slide-catl {
  --slide-bg: linear-gradient(135deg, rgba(235, 38, 63, 0.34), rgba(126, 107, 96, 0.2));
  --slide-image: url("../img/catl-hero-bg.png");
}

.carousel-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.carousel-slide h3 {
  max-width: 12ch;
  font-size: clamp(2rem, 5vw, 4rem);
}

.carousel-slide p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.08rem;
}

.carousel-controls {
  position: absolute;
  z-index: 2;
  right: 1rem;
  bottom: 1rem;
  display: flex;
  gap: 0.45rem;
}

.icon-button {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  color: var(--brown-dark);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius);
  font-weight: 900;
  cursor: pointer;
}

.event-band {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 1.3rem;
  align-items: stretch;
}

.event-poster {
  min-height: 330px;
  display: grid;
  place-items: center;
  padding: 2rem;
  color: var(--paper);
  background:
    linear-gradient(145deg, rgba(235, 38, 63, 0.82), rgba(245, 133, 54, 0.76)),
    url("../img/educacao-bg.jpg") center / cover no-repeat;
  border-radius: var(--radius);
}

.event-poster span {
  display: block;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 0.92;
}

.event-copy {
  padding: 1.4rem 0;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.menu-tile {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 1.25rem;
  color: var(--paper);
  background:
    linear-gradient(180deg, rgba(45, 37, 33, 0.08), rgba(45, 37, 33, 0.36)),
    var(--accent);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(36, 31, 29, 0.12);
}

.menu-tile-orange {
  --accent: var(--orange);
}

.menu-tile-blue {
  --accent: var(--blue);
}

.menu-tile-red {
  --accent: var(--red);
}

.menu-tile h3 {
  font-size: 1.45rem;
}

.menu-details {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 260ms ease, opacity 260ms ease, margin-top 260ms ease;
}

.menu-tile:hover .menu-details,
.menu-tile:focus-within .menu-details {
  max-height: 240px;
  margin-top: 0.9rem;
  opacity: 1;
}

.menu-tile .button-outline {
  color: var(--brown-dark);
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(255, 255, 255, 0.72);
}

.menu-tile .button-outline:hover {
  color: var(--paper);
  background: rgba(36, 31, 29, 0.92);
}

.widget-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) 1.2fr;
  gap: 1rem;
}

.weather-band-section {
  padding-top: 1.5rem;
}

.weather-band {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  padding: 1rem 1.25rem;
}

.weather-band-blue {
  --accent: var(--blue);
}

.weather-band-copy {
  flex: 0 0 auto;
}

.weather-band-copy h2 {
  font-size: clamp(1.4rem, 3.5vw, 2.1rem);
}

.weather-band-stats {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.2rem;
  flex: 1 1 auto;
  flex-wrap: wrap;
}

.weather-band-stat {
  min-width: 120px;
  padding: 0.45rem 0.75rem;
  border-left: 3px solid rgba(140, 195, 231, 0.35);
}

.weather-band-label {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.weather-value {
  font-size: 2.35rem;
  font-weight: 900;
  line-height: 1;
}

.weather-forecast {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.5rem;
}

.weather-day {
  padding: 0.7rem 0.55rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: var(--radius);
}

.weather-day.is-today {
  background: linear-gradient(180deg, rgba(255, 211, 38, 0.22), rgba(255, 255, 255, 0.92));
  box-shadow: 0 10px 22px rgba(36, 31, 29, 0.1);
  border-color: rgba(245, 133, 54, 0.24);
}

.weather-day-name {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.weather-day.is-today .weather-day-name {
  color: var(--red);
}

.weather-day-icon {
  display: grid;
  place-items: center;
  min-height: 44px;
  font-size: 2.6rem;
  line-height: 1;
}

.weather-day-temp {
  display: block;
  font-size: 0.98rem;
  font-weight: 900;
}

.agenda-list {
  display: grid;
  gap: 0.75rem;
}

.agenda-item {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 1rem;
  align-items: center;
  padding: 0.9rem;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: var(--radius);
}

.agenda-date {
  display: grid;
  place-items: center;
  min-height: 62px;
  color: var(--brown-dark);
  background: var(--yellow);
  border-radius: var(--radius);
  font-weight: 900;
  text-align: center;
  line-height: 1.05;
}

.page-hero {
  padding: 6.35rem 0 2.15rem;
  color: var(--paper);
  background:
    linear-gradient(105deg, rgba(45, 37, 33, 0.84), rgba(45, 37, 33, 0.42)),
    linear-gradient(180deg, rgba(235, 38, 63, 0.42), rgba(245, 133, 54, 0.3)),
    url("../img/educacao-bg.jpg") center / cover no-repeat;
}

.page-hero h1 {
  max-width: none;
  font-size: clamp(1.7rem, 4vw, 2.85rem);
}

.page-hero.blue {
  background:
    linear-gradient(105deg, rgba(45, 37, 33, 0.78), rgba(45, 37, 33, 0.32)),
    linear-gradient(135deg, rgba(140, 195, 231, 0.52), rgba(255, 211, 38, 0.25)),
    url("../img/educacao-bg.jpg") center / cover no-repeat;
}

.page-hero.yellow {
  color: var(--brown-dark);
  background:
    linear-gradient(105deg, rgba(255, 250, 244, 0.9), rgba(255, 250, 244, 0.44)),
    linear-gradient(135deg, rgba(255, 211, 38, 0.42), rgba(140, 195, 231, 0.22)),
    url("../img/educacao-bg.jpg") center / cover no-repeat;
}

.page-hero.creche-bg {
  color: var(--brown-dark);
  background:
    linear-gradient(105deg, rgba(255, 250, 244, 0.92), rgba(255, 250, 244, 0.5)),
    linear-gradient(135deg, rgba(255, 211, 38, 0.22), rgba(245, 133, 54, 0.14)),
    url("../img/creche-hero-bg.png") center / cover no-repeat;
}

.page-hero.pre-escolar-bg {
  background:
    linear-gradient(105deg, rgba(45, 37, 33, 0.78), rgba(45, 37, 33, 0.24)),
    linear-gradient(135deg, rgba(140, 195, 231, 0.42), rgba(255, 211, 38, 0.18)),
    url("../img/pre-escolar-hero-bg.png") center / cover no-repeat;
}

.page-hero.catl-bg {
  background:
    linear-gradient(105deg, rgba(45, 37, 33, 0.8), rgba(45, 37, 33, 0.22)),
    linear-gradient(135deg, rgba(235, 38, 63, 0.34), rgba(140, 195, 231, 0.16)),
    url("../img/catl-hero-bg.png") center / cover no-repeat;
}

.page-hero p {
  max-width: 720px;
  margin-top: 0.65rem;
  color: inherit;
  font-size: 1.02rem;
}

.page-hero.valencia-hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.valencia-hero-copy {
  flex: 1 1 0;
  min-width: 0;
}

.valencia-hero-logo {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 290px);
  padding: 1rem 1.1rem;
  margin-left: auto;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.14);
}

.valencia-hero-logo img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.16));
}

.page-hero.valencia-hero h1 {
  margin-top: 0.25rem;
}

.prose {
  max-width: 860px;
  text-align: justify;
}

.prose h2 {
  margin-top: 2.3rem;
  margin-bottom: 0.8rem;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

.prose h3 {
  margin-top: 1.4rem;
  margin-bottom: 0.55rem;
}

.foundation-pillars h2 {
  margin-bottom: 1rem;
}

.pillar-points {
  display: grid;
  gap: 0.95rem;
}

.prose a {
  color: var(--red);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.notice {
  padding: 1rem;
  color: var(--brown-dark);
  background: #fff8dc;
  border: 1px solid #f3dda0;
  border-radius: var(--radius);
}

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

table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  background: var(--paper);
}

th,
td {
  padding: 0.95rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

th {
  color: var(--brown-dark);
  background: var(--soft);
}

tr:last-child td {
  border-bottom: 0;
}

.download-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.download-list.full-width {
  grid-template-columns: 1fr;
}

.download-list.three-up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.download-card {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.statutos-page .notice {
  margin-bottom: 1.5rem;
}

.statutos-page .download-card {
  width: 100%;
  max-width: none;
}

.statutos-page .download-card .button {
  width: fit-content;
}

.catl-holiday-card {
  display: grid;
  gap: 1rem;
}

.catl-price-highlight {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  padding: 0.85rem 1rem;
  color: var(--paper);
  background: linear-gradient(135deg, var(--red), #b81e31);
  border-radius: calc(var(--radius) + 2px);
  box-shadow: 0 12px 28px rgba(235, 38, 63, 0.24);
  font-weight: 800;
  line-height: 1.25;
}

.catl-price-highlight strong {
  font-size: 1.05rem;
}

.catl-holiday-card p {
  color: var(--muted);
}

.catl-holiday-card .button {
  width: fit-content;
}

#ferias-movimento {
  scroll-margin-top: 110px;
}

.catl-calendar {
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(231, 225, 220, 0.9);
  background: rgba(255, 255, 255, 0.72);
}

.catl-calendar iframe {
  display: block;
  width: 100%;
  max-width: 100%;
}

.valencia-download-head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.valencia-download-head.centered {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.9rem;
}

.valencia-download-logo {
  flex: 0 0 auto;
  width: 100%;
  max-width: 100%;
  height: auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.valencia-download-logo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.valencia-download-logo.large {
  width: 100%;
  max-width: none;
  padding: 0;
}

.valencia-download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.valencia-download-group {
  display: grid;
  gap: 0.55rem;
  padding-top: 0.2rem;
}

.valencia-download-group h4 {
  margin: 0;
  color: var(--brown-dark);
  font-size: 1rem;
}

.valencia-download-group p {
  margin: 0;
}

.news-tools {
  margin-bottom: 1.25rem;
}

.search-input {
  width: min(520px, 100%);
  min-height: 48px;
  padding: 0.7rem 0.9rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
}

.tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  padding: 0.28rem 0.55rem;
  color: var(--brown-dark);
  background: var(--yellow);
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 900;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 1.1fr);
  gap: 1.4rem;
}

.contact-list {
  display: grid;
  gap: 0.85rem;
}

.contact-row {
  padding: 1rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 6px solid var(--accent);
  border-radius: var(--radius);
}

.panel-frame {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(126, 107, 96, 0.14);
  border-radius: 0.75rem;
}

.panel-frame iframe {
  width: 100%;
  min-height: 78vh;
  border: 0;
  border-radius: 0.6rem;
}

.map-free {
  min-height: 320px;
  display: grid;
  place-items: center;
  padding: 2rem;
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(45, 37, 33, 0.76), rgba(45, 37, 33, 0.36)),
    url("../img/educacao-bg.jpg") center / cover no-repeat;
  border-radius: var(--radius);
  text-align: center;
}

.stars {
  color: var(--yellow);
  font-size: 1.3rem;
  letter-spacing: 0;
}

.site-footer {
  padding: 3.2rem 0 1.5rem;
  color: #eee7e2;
  background:
    linear-gradient(180deg, rgba(45, 37, 33, 0.96), rgba(45, 37, 33, 0.98)),
    url("../img/educacao-bg.jpg") center bottom / cover no-repeat;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.4rem;
}

.site-footer h2 {
  margin-bottom: 0.9rem;
  color: var(--paper);
  font-size: 1rem;
}

.site-footer p,
.site-footer li,
.site-footer address {
  color: #d9d0ca;
}

.site-footer ul {
  display: grid;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-logo {
  width: 190px;
  margin-bottom: 0.85rem;
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.footer-social {
  margin-top: 1rem;
}

.footer-link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.55rem 0.7rem;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  font-weight: 800;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
  white-space: nowrap;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.footer-social .footer-link-button[href*="facebook.com"] {
  gap: 0.35rem;
  color: var(--paper);
  background: #1877f2;
  border-color: rgba(24, 119, 242, 0.28);
  box-shadow: 0 10px 24px rgba(24, 119, 242, 0.18);
}

.footer-social .footer-link-button[href*="facebook.com"]:hover {
  color: var(--paper);
  background: #0f67d6;
  border-color: rgba(15, 103, 214, 0.34);
  box-shadow: 0 14px 26px rgba(24, 119, 242, 0.24);
}

.social-mark {
  display: inline-grid;
  place-items: center;
  width: 1.18rem;
  height: 1.18rem;
  border-radius: 0.24rem;
  color: var(--paper);
  font-size: 0.62rem;
  font-weight: 900;
  flex: 0 0 auto;
}

.social-facebook {
  background: rgba(255, 255, 255, 0.16);
}

.social-x {
  background: #111111;
}

.social-pinterest {
  background: #e60023;
}

.social-youtube {
  background: #ff0000;
}

.social-google {
  background: #f58536;
}

.footer-social .footer-link-button[href*="x.com"],
.footer-social .footer-link-button[href*="pinterest.com"],
.footer-social .footer-link-button[href*="youtube.com"] {
  gap: 0.35rem;
}

.footer-social .footer-link-button[href*="google.com/search"] {
  color: var(--brown-dark);
  background: #ffe27a;
  border-color: rgba(245, 133, 54, 0.22);
  box-shadow: 0 10px 24px rgba(245, 133, 54, 0.14);
}

.footer-social .footer-link-button[href*="google.com/search"]:hover {
  color: var(--brown-dark);
  background: var(--paper);
  border-color: rgba(245, 133, 54, 0.38);
  box-shadow: 0 14px 26px rgba(36, 31, 29, 0.14);
}

.footer-social .footer-link-button[href*="google.com/search"] .stars {
  color: var(--yellow);
}

.footer-growappy {
  padding: 0.95rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  grid-column: span 2;
}

.footer-contact {
  padding: 0.95rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.footer-contact h2 {
  margin-bottom: 0.75rem;
}

.footer-contact-list {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  font-size: 0.93rem;
  line-height: 1.42;
}

.footer-contact-row {
  display: grid;
  grid-template-columns: 1.35rem minmax(0, 1fr);
  gap: 0.55rem;
  align-items: start;
}

.footer-contact-icon {
  width: 1.35rem;
  height: 1.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1rem;
  color: var(--brown-dark);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 900;
  flex: 0 0 auto;
}

.footer-contact-row a {
  color: var(--paper);
  font-weight: 800;
}

.footer-contact-row a:hover {
  color: var(--yellow);
}

.footer-growappy-logo {
  width: 188px;
  margin-bottom: 0.75rem;
  padding: 0.48rem;
  background: rgba(255, 255, 255, 0.96);
  border-radius: var(--radius);
}

.footer-growappy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.7rem 0 0.9rem;
}

.footer-growappy-actions .footer-link-button {
  min-height: 36px;
  padding: 0.46rem 0.62rem;
  font-size: 0.85rem;
}

.footer-qr-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.footer-qr-card {
  display: grid;
  gap: 0.45rem;
  justify-items: center;
  padding: 0.6rem;
  color: var(--brown-dark);
  background: rgba(255, 255, 255, 0.94);
  border-radius: var(--radius);
  text-align: center;
  font-size: 0.8rem;
  font-weight: 900;
}

.footer-qr-card img {
  width: 96px;
  height: 96px;
}

.call-note,
.credit {
  margin-top: 1.4rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.92rem;
}

.credit {
  margin-top: 0;
  padding-top: 0.6rem;
  border-top: 0;
}

.footer-legal {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.8rem 1.2rem;
  margin-top: 1.3rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  overflow-x: auto;
}

.footer-legal h2 {
  margin: 0;
  flex: 0 0 auto;
}

.site-footer .footer-legal-links {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.45rem 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
  align-items: center;
  min-width: max-content;
}

.site-footer .footer-legal-links li {
  display: inline-flex;
  flex: 0 0 auto;
}

.site-footer .footer-legal-links a {
  color: #d9d0ca;
  font-weight: 800;
  white-space: nowrap;
}

.site-footer .footer-legal-links a:hover {
  color: var(--yellow);
}

.footer-meta {
  display: grid;
  gap: 0.45rem;
  margin-top: 1rem;
}

.footer-meta .call-note {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
  text-align: right;
}

.footer-meta .credit {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.cookie-banner {
  position: fixed;
  z-index: 150;
  right: 16px;
  bottom: 16px;
  width: min(560px, calc(100% - 32px));
  padding: 1rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.7rem;
}

.small-button {
  min-height: 40px;
  padding: 0.55rem 0.75rem;
  color: var(--paper);
  background: var(--brown-dark);
  border: 1px solid var(--brown-dark);
  border-radius: var(--radius);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.small-button.secondary {
  color: var(--brown-dark);
  background: var(--paper);
}

.hidden {
  display: none !important;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .motion-canvas {
    display: none;
  }
}

@media (max-width: 1080px) {
  .nav-toggle {
    display: block;
  }

  .primary-nav {
    position: fixed;
    inset: 78px 0 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0.35rem;
    padding: 1rem;
    overflow: auto;
    background: var(--paper);
    border-top: 1px solid var(--line);
  }

  body.nav-open .primary-nav {
    display: flex;
  }

  .primary-nav > a,
  .nav-dropdown-toggle,
  .nav-cta,
  .nav-contact-box {
    justify-content: flex-start;
    width: 100%;
  }

  .nav-dropdown-panel {
    position: static;
    width: 100%;
    display: none;
    padding: 0 0 0 0.8rem;
    border: 0;
    box-shadow: none;
  }

  .nav-dropdown.is-open .nav-dropdown-panel {
    display: block;
  }
}

@media (max-width: 860px) {
  .section-header,
  .event-band,
  .widget-grid,
  .contact-layout,
  .grid-2,
  .grid-3,
  .grid-4,
  .download-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-showcase {
    min-height: 350px;
  }

  .hero-strip,
  .menu-grid {
    grid-template-columns: 1fr;
  }

  .weather-band {
    align-items: flex-start;
  }

  .weather-band-stats {
    justify-content: flex-start;
  }

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

  .activity-carousel {
    min-height: 430px;
  }

  .page-hero.valencia-hero .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .valencia-hero-logo {
    width: min(100%, 240px);
    margin-left: 0;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 22px, var(--container));
  }

  .header-inner {
    min-height: 70px;
  }

  .brand img {
    width: 132px;
    height: 48px;
  }

  .primary-nav {
    inset: 70px 0 0;
  }

  .hero {
    min-height: auto;
    padding-top: 7.4rem;
  }

  .hero-showcase {
    min-height: 270px;
  }

  .hero-logo-stage {
    width: min(280px, 84vw);
  }

  .hero-showcase-logo {
    width: min(250px, 78%);
  }

  .hero-actions,
  .cookie-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .page-hero.valencia-hero .container {
    gap: 1.25rem;
  }

  .button,
  .button-outline,
  .button-soft,
  .small-button {
    width: 100%;
  }

  .footer-qr-grid {
    grid-template-columns: 1fr;
  }

  .footer-growappy {
    grid-column: span 1;
  }

  .footer-legal {
    align-items: flex-start;
    overflow-x: auto;
  }

  .footer-contact {
    padding: 0.8rem;
  }

  .footer-meta .call-note {
    text-align: left;
  }
}
