:root {
  --green: #243d2d;
  --green-2: #3f6148;
  --cream: #f7f1e8;
  --paper: #fffdfa;
  --ink: #171714;
  --muted: #6c665f;
  --line: #ded4c6;
  --gold: #746044;
  --wine: #a7070a;
  --wine-dark: #7f0508;
  --leaf: #8cc63e;
  --charcoal: #211d18;
  --shadow: 0 24px 70px rgba(23, 23, 20, 0.13);
  --soft-shadow: 0 14px 42px rgba(23, 23, 20, 0.09);
  --header-height: 62px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.58;
  overflow-x: hidden;
  font-kerning: normal;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: rgba(167, 7, 10, 0.16);
  color: var(--ink);
}

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

img {
  max-width: 100%;
  height: auto;
}

.wa-fab {
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, #0b8f44, #067a38);
  color: #ffffff;
  box-shadow: 0 18px 44px rgba(23, 23, 20, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.26);
  z-index: 90;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: relative;
  top: 0;
  z-index: 20;
  display: grid;
  max-width: 100vw;
  grid-template-columns: auto minmax(0, 1fr) auto;
  grid-template-rows: auto auto;
  grid-template-areas:
    "brand nav tools"
    "whats whats whats";
  align-items: center;
  column-gap: 20px;
  row-gap: 10px;
  min-height: var(--header-height);
  padding: 8px clamp(18px, 4vw, 52px);
  border-bottom: 1px solid rgba(116, 96, 68, 0.14);
  background: rgba(255, 253, 250, 0.96);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(23, 23, 20, 0.03);
}

.home-page .site-header {
  position: absolute;
  left: 0;
  right: 0;
  border-bottom: 1px solid transparent;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}

.home-page .site-header:hover,
.home-page .site-header:focus-within,
.home-page .site-header.is-open {
  border-bottom-color: rgba(116, 96, 68, 0.18);
  background: rgba(255, 253, 250, 0.94);
  box-shadow: 0 1px 0 rgba(23, 23, 20, 0.03);
}

.brand {
  grid-area: brand;
  display: flex;
  align-items: center;
  min-width: max-content;
}

.brand img {
  display: block;
  width: clamp(176px, 15vw, 220px);
  height: auto;
}

.brand-logo-light {
  display: none !important;
}

.home-page .site-header:not(:hover):not(:focus-within):not(.is-open) .brand-logo-default {
  display: none;
}

.home-page .site-header:not(:hover):not(:focus-within):not(.is-open) .brand-logo-light {
  display: block !important;
  filter: drop-shadow(0 3px 16px rgba(23, 23, 20, 0.42));
}

.main-nav {
  grid-area: nav;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(8px, 1.2vw, 14px);
  min-width: 0;
  overflow: visible;
  white-space: nowrap;
  padding: 2px 10px;
  font-size: 13px;
  font-weight: 700;
}

.main-nav a {
  white-space: nowrap;
}

/* (No horizontal scrolling in desktop header; keeps mega-menu visible.) */

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-item.has-mega::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 14px;
}

.nav-item .nav-link {
  position: relative;
  color: #34352f;
  transition: color 180ms ease;
}

.home-page .nav-item .nav-link {
  color: rgba(255, 253, 250, 0.92);
  text-shadow: 0 1px 18px rgba(23, 23, 20, 0.45);
}

.home-page .site-header:hover .nav-item .nav-link,
.home-page .site-header:focus-within .nav-item .nav-link,
.home-page .site-header.is-open .nav-item .nav-link {
  color: #34352f;
  text-shadow: none;
}

.mega-menu {
  position: absolute;
  left: 0;
  top: calc(100% + 10px);
  width: min(720px, calc(100vw - 80px));
  padding: 12px;
  border: 1px solid rgba(116, 96, 68, 0.18);
  border-radius: 10px;
  background: rgba(255, 253, 250, 0.98);
  box-shadow: 0 24px 70px rgba(23, 23, 20, 0.18);
  backdrop-filter: blur(14px);
  display: none;
  z-index: 60;
}

.mega-inner {
  display: grid;
  grid-template-columns: minmax(160px, 0.55fr) minmax(0, 1fr);
  gap: 14px;
}

.mega-lead strong {
  display: block;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.mega-lead span {
  display: block;
  margin-top: 8px;
  color: rgba(52, 53, 47, 0.74);
  font-size: 13.5px;
  line-height: 1.5;
}

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

.mega-card {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 10px;
  align-items: center;
  padding: 10px;
  min-width: 0;
  border: 1px solid rgba(116, 96, 68, 0.14);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255, 253, 250, 0.96), rgba(247, 241, 232, 0.62));
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.mega-card:hover {
  transform: translateY(-1px);
  border-color: rgba(116, 96, 68, 0.3);
  box-shadow: 0 16px 40px rgba(23, 23, 20, 0.12);
}

.mega-card .thumb {
  width: 54px;
  height: 54px;
  border-radius: 10px;
  border: 1px solid rgba(255, 253, 250, 0.7);
  outline: 1px solid rgba(255, 253, 250, 0.7);
  outline-offset: -8px;
  background-size: cover;
  background-position: center;
}

.mega-card .title {
  display: block;
  color: var(--ink);
  font-size: 13.5px;
  font-weight: 900;
  line-height: 1.2;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mega-card .desc {
  display: block;
  margin-top: 4px;
  color: rgba(52, 53, 47, 0.72);
  font-size: 12.5px;
  font-weight: 650;
  line-height: 1.35;
  min-width: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

/* Show mega menu on hover/focus by default.
   Some laptops report hover:none when a touchscreen exists, even with a mouse.
   We only disable mega menus for coarse pointers (true touch). */
.nav-item.has-mega:hover .mega-menu,
.nav-item.has-mega:focus-within .mega-menu {
  display: block;
}

@media (hover: none) and (pointer: coarse) {
  .mega-menu {
    display: none !important;
  }
}

.main-nav a {
  position: relative;
  color: #34352f;
  transition: color 180ms ease;
}

.home-page .main-nav a {
  color: rgba(255, 253, 250, 0.92);
  text-shadow: 0 1px 18px rgba(23, 23, 20, 0.45);
}

.home-page .site-header:hover .main-nav a,
.home-page .site-header:focus-within .main-nav a,
.home-page .site-header.is-open .main-nav a {
  color: #34352f;
  text-shadow: none;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: var(--wine);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

.main-nav a:hover::after {
  transform: scaleX(1);
}

.header-actions,
.hero-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
}

.header-tools {
  grid-area: tools;
  justify-content: flex-end;
}

.header-whatsapp {
  grid-area: whats;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
}

.header-whatsapp .solid-btn {
  width: auto;
}

.whatsapp-btn {
  width: 44px;
  min-width: 44px;
  height: 38px;
  padding: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.whatsapp-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cert-link {
  white-space: nowrap;
}

.site-header .cert-link,
.site-header .student-portal {
  display: none;
}

.home-page .site-header .cert-link {
  display: inline-flex;
}

.home-page .site-header .student-portal {
  display: block;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(116, 96, 68, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.lang-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  color: rgba(23, 23, 20, 0.72);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.lang-link:hover {
  color: var(--wine);
}

.lang-link.is-active {
  background: rgba(116, 96, 68, 0.12);
  color: var(--ink);
}

.content-band.dark .lang-switch {
  border-color: rgba(251, 247, 239, 0.16);
  background: rgba(255, 255, 255, 0.06);
}

.content-band.dark .lang-link {
  color: rgba(251, 247, 239, 0.76);
}

.content-band.dark .lang-link.is-active {
  background: rgba(251, 247, 239, 0.12);
  color: var(--cream);
}

.student-portal {
  position: relative;
}

.portal-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  display: none;
  width: 300px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.student-portal.is-open .portal-panel {
  display: grid;
  gap: 12px;
}

.portal-panel::before {
  content: "";
  position: absolute;
  top: -7px;
  right: 28px;
  width: 14px;
  height: 14px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: var(--paper);
  transform: rotate(45deg);
}

.portal-panel label,
.portal-panel a,
.portal-panel button {
  position: relative;
}

.portal-panel a {
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(116, 96, 68, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  padding: 10px 14px;
  color: rgba(23, 23, 20, 0.78);
  font-weight: 850;
}

.solid-btn,
.ghost-btn,
.light-btn,
.text-btn {
  border: 0;
  cursor: pointer;
  font-weight: 800;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.solid-btn,
.ghost-btn,
.light-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 19px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
  box-shadow: inset 0 0 0 1px rgba(255, 253, 250, 0.08);
}

.solid-btn {
  background: linear-gradient(135deg, var(--wine), var(--wine-dark));
  color: var(--cream);
  box-shadow: 0 13px 30px rgba(167, 7, 10, 0.18), inset 0 0 0 1px rgba(255, 253, 250, 0.12);
}

.home-page .site-header:not(:hover):not(:focus-within):not(.is-open) .solid-btn {
  border: 1px solid rgba(255, 253, 250, 0.58);
  background: rgba(23, 23, 20, 0.2);
  color: var(--cream);
  box-shadow: none;
}

.home-page .site-header:not(:hover):not(:focus-within):not(.is-open) .ghost-btn {
  border-color: rgba(255, 253, 250, 0.48);
  background: rgba(23, 23, 20, 0.12);
  color: var(--cream);
}

.solid-btn:hover {
  background: linear-gradient(135deg, #b40a0e, var(--wine-dark));
  transform: translateY(-1px);
}

.ghost-btn {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--gold);
}

.ghost-btn:hover {
  border-color: rgba(167, 7, 10, 0.34);
  background: rgba(167, 7, 10, 0.045);
  color: var(--wine);
}

.light-btn {
  background: var(--cream);
  color: var(--wine);
}

.light-btn:hover {
  background: #fffdfa;
  transform: translateY(-1px);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(140, 198, 62, 0.42);
  outline-offset: 3px;
}

.large {
  min-height: 48px;
  padding-inline: 22px;
}

.text-btn {
  position: relative;
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  padding: 0;
  background: transparent;
  color: var(--wine);
  line-height: 1.35;
}

.text-btn::after {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
  transition: width 180ms ease;
}

.text-btn:hover {
  color: var(--wine-dark);
}

.text-btn:hover::after {
  width: 34px;
}

.hero {
  position: relative;
  display: grid;
  height: 100svh;
  min-height: min(520px, 100svh);
  max-height: 100svh;
  grid-template-columns: 1fr;
  overflow: hidden;
}

.page-hero {
  display: grid;
  min-height: clamp(400px, 66svh, 560px);
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(30px, 5vw, 56px);
  align-items: center;
  padding-top: clamp(44px, 6vw, 74px);
  padding-bottom: clamp(42px, 6vw, 72px);
  background:
    radial-gradient(circle at 82% 14%, rgba(140, 198, 62, 0.1), transparent 24%),
    linear-gradient(180deg, rgba(255, 253, 250, 0.96), rgba(247, 241, 232, 0.98)),
    var(--cream);
}

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

.page-hero p:not(.eyebrow) {
  margin-top: 18px;
  max-width: 610px;
  color: var(--muted);
  font-size: clamp(16px, 1.35vw, 18px);
  line-height: 1.72;
}

.page-hero h1 {
  max-width: 560px;
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.12;
}

.page-hero .balanced-title {
  max-width: 560px;
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.12;
}

.page-hero-image {
  min-height: clamp(280px, 42svh, 390px);
  border-radius: 6px;
  background: center/cover;
  box-shadow: 0 24px 64px rgba(23, 23, 20, 0.14);
  outline: 1px solid rgba(255, 253, 250, 0.58);
  outline-offset: -10px;
}

.page-hero-video-demo {
  position: relative;
  min-height: clamp(280px, 42svh, 390px);
  overflow: hidden;
  border-radius: 6px;
  background: #171714;
  box-shadow: var(--shadow);
  outline: 1px solid rgba(255, 253, 250, 0.58);
  outline-offset: -10px;
}

.page-hero-video-demo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(24, 33, 28, 0.02), rgba(24, 33, 28, 0.48)),
    radial-gradient(circle at 70% 20%, rgba(141, 198, 63, 0.14), transparent 26%);
}

.page-hero-video-demo span {
  position: absolute;
  inset: 0;
  opacity: 0;
  background-position: center;
  background-size: cover;
  transform: scale(1.04);
  animation: heroReel 15s infinite;
}

.page-hero-video-demo span:nth-child(2) {
  animation-delay: 3s;
}

.page-hero-video-demo span:nth-child(3) {
  animation-delay: 6s;
}

.page-hero-video-demo span:nth-child(4) {
  animation-delay: 9s;
}

.page-hero-video-demo span:nth-child(5) {
  animation-delay: 12s;
}

.hero-video-label {
  position: absolute;
  z-index: 1;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid rgba(255, 253, 250, 0.22);
  border-radius: 6px;
  padding: 13px 14px;
  background: rgba(24, 33, 28, 0.72);
  color: var(--cream);
}

.hero-video-label strong,
.hero-video-label small {
  display: block;
}

.hero-video-label strong {
  font-size: 14px;
}

.hero-video-label small {
  color: rgba(251, 247, 239, 0.72);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.page-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.page-nav.stacked-nav {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  justify-content: start;
  align-items: center;
  gap: 16px 26px;
  max-width: 760px;
}

.page-nav a {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(116, 96, 68, 0.22);
  border-radius: 999px;
  padding: 0 16px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  background: rgba(255, 253, 250, 0.66);
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.page-nav a:hover {
  border-color: rgba(167, 7, 10, 0.34);
  background: rgba(167, 7, 10, 0.07);
  color: var(--wine);
}

.detail-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 38px;
  align-items: start;
}

.detail-section > div:first-child {
  max-width: 560px;
}

.detail-image {
  grid-column: 1 / 2;
  width: min(100%, 520px);
  margin: -10px 0 0;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 18px 48px rgba(23, 23, 20, 0.11);
  outline: 1px solid rgba(255, 253, 250, 0.75);
  outline-offset: -10px;
}

.detail-image img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.thematic-experience > div:first-child {
  display: grid;
  align-content: start;
}

.thematic-experience > div:first-child p:not(.eyebrow) {
  margin-top: 18px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.thematic-experience .detail-image {
  width: min(100%, 440px);
  margin-top: 26px;
}

.thematic-experience .detail-image img {
  aspect-ratio: 5 / 4;
}

.career-training-image {
  margin-top: 22px;
}

.kids-learning .kids-learning-image {
  width: min(100%, 440px);
  margin-top: 26px;
}

.kids-learning .kids-learning-image img {
  aspect-ratio: 16 / 10;
}

.b2b-objectives .b2b-objectives-image {
  width: min(100%, 440px);
  margin-top: 26px;
}

.b2b-objectives .b2b-objectives-image img {
  aspect-ratio: 16 / 10;
}

.detail-list {
  display: grid;
  gap: 16px;
}

.detail-item {
  display: grid;
  gap: 9px;
  padding: clamp(22px, 2.8vw, 28px);
  border: 1px solid rgba(116, 96, 68, 0.16);
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(255, 253, 250, 0.98), rgba(247, 241, 232, 0.62)),
    var(--paper);
  box-shadow: 0 9px 24px rgba(23, 23, 20, 0.045);
}

.detail-item h3 {
  color: var(--ink);
}

.detail-item p {
  color: var(--muted);
  line-height: 1.66;
}

.method-section {
  grid-template-columns: 1fr;
  gap: clamp(24px, 3vw, 34px);
}

.method-section > div:first-child {
  position: static;
  max-width: 920px;
}

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

.method-section .detail-item {
  min-height: 196px;
}

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

.faq-item {
  padding: 18px 18px;
  border: 1px solid rgba(116, 96, 68, 0.16);
  border-radius: 10px;
  background: var(--paper);
  box-shadow: 0 16px 36px rgba(24, 33, 28, 0.06);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 850;
  color: var(--ink);
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: rgba(116, 96, 68, 0.8);
  font-weight: 900;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.72;
}

.info-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
  margin-top: 26px;
}

.info-strip span {
  display: grid;
  min-height: 66px;
  align-content: center;
  justify-content: center;
  text-align: center;
  border: 1px solid rgba(116, 96, 68, 0.16);
  border-radius: 6px;
  padding: 14px;
  background: linear-gradient(180deg, rgba(255, 253, 250, 0.92), rgba(247, 241, 232, 0.62));
  color: var(--gold);
  font-weight: 900;
  font-size: 12.5px;
  line-height: 1.25;
  box-shadow: 0 7px 18px rgba(23, 23, 20, 0.04);
}

.page-form-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: 44px;
  align-items: start;
  background:
    linear-gradient(135deg, rgba(33, 29, 24, 0.98), rgba(36, 61, 45, 0.96)),
    var(--charcoal);
  color: var(--cream);
}

.page-form-section p:not(.eyebrow) {
  margin-top: 18px;
  color: rgba(251, 247, 239, 0.74);
  font-size: 18px;
}

.course-path {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: stretch;
  background:
    linear-gradient(90deg, rgba(245, 238, 227, 0.98), rgba(255, 253, 250, 0.96)),
    var(--cream);
}

.course-path-copy {
  display: grid;
  align-content: center;
}

.course-path-copy p:not(.eyebrow) {
  margin-top: 18px;
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

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

.course-path-grid article {
  display: grid;
  gap: 10px;
  min-height: 176px;
  padding: clamp(22px, 2.5vw, 28px);
  border: 1px solid rgba(116, 96, 68, 0.22);
  border-radius: 6px;
  background: rgba(255, 253, 250, 0.88);
  box-shadow: 0 12px 34px rgba(24, 33, 28, 0.065);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.course-path-grid article:hover {
  border-color: rgba(167, 7, 10, 0.24);
  box-shadow: 0 18px 46px rgba(24, 33, 28, 0.09);
  transform: translateY(-2px);
}

.course-path-grid span {
  color: var(--wine);
  font-size: 12px;
  font-weight: 900;
}

.course-path-grid h3,
.course-path-grid p {
  margin: 0;
}

.course-path-grid p {
  color: var(--muted);
  line-height: 1.62;
}

.portal-hero {
  background: var(--charcoal);
  color: var(--cream);
}

.portal-hero p:not(.eyebrow) {
  color: rgba(251, 247, 239, 0.74);
}

.portal-summary {
  display: grid;
  gap: 18px;
  align-self: stretch;
  align-content: center;
  border: 1px solid rgba(251, 247, 239, 0.16);
  border-radius: 6px;
  padding: clamp(26px, 4vw, 42px);
  background:
    linear-gradient(rgba(24, 33, 28, 0.78), rgba(24, 33, 28, 0.78)),
    url("assets/photos/cozinha-qf.png") center/cover;
  box-shadow: var(--shadow);
}

.portal-summary h2 {
  color: var(--cream);
}

.portal-action-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.portal-shell {
  display: grid;
  gap: 20px;
}

.portal-shortcuts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.shortcut-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(116, 96, 68, 0.18);
  border-radius: 999px;
  background: rgba(255, 253, 250, 0.94);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.shortcut-pill:hover {
  border-color: rgba(116, 96, 68, 0.34);
  background: var(--paper);
  transform: translateY(-1px);
}

.shortcut-pill.is-whatsapp {
  background: #1d6b4f;
  border-color: #1d6b4f;
  color: var(--cream);
}

.portal-frame-card {
  display: grid;
  gap: 18px;
  padding: clamp(18px, 2vw, 24px);
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 253, 250, 0.98);
  box-shadow: 0 18px 46px rgba(24, 33, 28, 0.08);
}

.portal-frame-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.portal-frame-head h3 {
  margin: 0;
}

.portal-sync-frame {
  width: 100%;
  min-height: 1800px;
  border: 1px solid rgba(116, 96, 68, 0.16);
  border-radius: 6px;
  background: #fffdfa;
}

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

.security-note {
  margin-top: 14px !important;
  padding: 13px 15px;
  border-left: 3px solid var(--leaf);
  background: rgba(251, 247, 239, 0.08);
  color: var(--cream) !important;
  font-size: 15px !important;
  font-weight: 800;
}

.admin-toolbar {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(190px, 0.5fr) auto auto;
  gap: 16px;
  align-items: end;
  margin-bottom: 18px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  box-shadow: 0 8px 28px rgba(24, 33, 28, 0.08);
}

.admin-toolbar strong,
.admin-toolbar span {
  display: block;
}

.admin-toolbar span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.admin-table {
  display: grid;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  background: var(--paper);
  box-shadow: 0 16px 44px rgba(24, 33, 28, 0.08);
}

.comparison-table {
  border-color: rgba(116, 96, 68, 0.18);
  box-shadow: 0 16px 42px rgba(24, 33, 28, 0.055);
  background: rgba(255, 253, 250, 0.94);
}

.comparison-table .admin-row {
  grid-template-columns: minmax(120px, 0.9fr) minmax(140px, 1fr) minmax(180px, 1.25fr) minmax(180px, 1.25fr) minmax(90px, 0.55fr);
}

.comparison-table .admin-row:not(:has(span:nth-child(5))) {
  grid-template-columns: minmax(130px, 0.9fr) minmax(180px, 1fr) minmax(220px, 1.25fr) minmax(120px, 0.7fr);
}

.comparison-table .admin-head {
  background:
    linear-gradient(180deg, rgba(247, 241, 232, 0.98), rgba(239, 228, 215, 0.98));
  color: var(--gold);
  border-bottom: 1px solid rgba(116, 96, 68, 0.18);
}

.comparison-table .admin-row:not(.admin-head) span:first-child {
  color: var(--ink);
  font-weight: 900;
}

.admin-row {
  display: grid;
  grid-template-columns: minmax(120px, 0.9fr) minmax(180px, 1.35fr) minmax(120px, 0.9fr) minmax(100px, 0.7fr) minmax(100px, 0.7fr);
  gap: 16px;
  align-items: center;
  min-height: 58px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.admin-row:has(input[type="checkbox"]) {
  grid-template-columns: 42px minmax(180px, 1.45fr) minmax(130px, 0.9fr) minmax(110px, 0.72fr) minmax(100px, 0.68fr);
}

.admin-row a {
  color: var(--wine);
  font-weight: 900;
}

.admin-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--wine);
}

.admin-row:last-child {
  border-bottom: 0;
}

.admin-head {
  background: var(--charcoal);
  color: var(--cream);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

main > .content-band .admin-row:not(.admin-head) {
  background: rgba(255, 253, 250, 0.88);
}

main > .content-band .admin-row:not(.admin-head):hover {
  background: rgba(247, 241, 232, 0.76);
}

.admin-row span:first-child {
  overflow-wrap: anywhere;
}

.status-ok,
.status-review,
.status-error {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 28px;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 900;
}

.status-ok {
  background: rgba(140, 198, 62, 0.18);
  color: var(--green);
}

.status-review {
  background: rgba(111, 90, 63, 0.16);
  color: var(--gold);
}

.status-error {
  background: rgba(167, 7, 10, 0.12);
  color: var(--wine);
}

.permission-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.1fr) repeat(4, minmax(120px, 0.55fr));
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  background: var(--paper);
}

.permission-grid > * {
  min-height: 56px;
  padding: 14px 16px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-weight: 800;
}

.permission-grid > *:nth-child(5n) {
  border-right: 0;
}

.permission-head {
  background: var(--charcoal);
  color: var(--cream);
}

.permission-grid label {
  display: flex;
  align-items: center;
  gap: 9px;
}

.permission-grid input {
  width: 18px;
  height: 18px;
  accent-color: var(--wine);
}

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

.profile-grid article {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
}

.profile-grid ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

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

.media-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  box-shadow: 0 10px 30px rgba(24, 33, 28, 0.08);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.media-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.media-grid article > div {
  display: grid;
  gap: 12px;
  padding: 20px;
}

.media-grid article:hover {
  border-color: rgba(167, 7, 10, 0.24);
  box-shadow: 0 22px 52px rgba(24, 33, 28, 0.12);
  transform: translateY(-2px);
}

.media-grid p {
  color: var(--muted);
  font-size: 14px;
}

.preview-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
  gap: 18px;
}

.search-preview,
.share-preview {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  box-shadow: var(--soft-shadow);
}

.search-preview {
  display: grid;
  gap: 8px;
  padding: 24px;
}

.search-preview span,
.share-preview span {
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}

.search-preview h3 {
  color: #1a0dab;
}

.search-preview p,
.share-preview p {
  color: var(--muted);
  font-size: 14px;
}

.share-preview {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  overflow: hidden;
}

.share-preview img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
}

.share-preview div {
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 20px;
}

.metric-grid,
.report-grid {
  display: grid;
  gap: 18px;
}

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

.metric-grid article,
.report-card {
  display: grid;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(255, 253, 250, 0.98), rgba(251, 247, 239, 0.66)),
    var(--paper);
  box-shadow: var(--soft-shadow);
}

.metric-grid article {
  padding: 24px;
}

.metric-grid span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.metric-grid strong {
  color: var(--wine);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 52px;
  line-height: 0.95;
}

.metric-grid p,
.report-card p {
  color: var(--muted);
  font-size: 14px;
}

.signature-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 0 clamp(20px, 6vw, 76px) clamp(20px, 3vw, 34px);
  background: linear-gradient(180deg, #fffdfa, #f7f1e8);
}

.signature-strip article {
  display: grid;
  align-content: start;
  gap: 7px;
  min-height: 136px;
  padding: clamp(20px, 2.6vw, 30px);
  background: rgba(255, 253, 250, 0.94);
  border-top: 1px solid rgba(116, 96, 68, 0.16);
  border-bottom: 1px solid rgba(116, 96, 68, 0.16);
  border-left: 1px solid rgba(116, 96, 68, 0.14);
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.signature-strip article:last-child {
  border-right: 1px solid rgba(116, 96, 68, 0.14);
}

.signature-strip article:hover {
  background: var(--paper);
  box-shadow: 0 18px 42px rgba(23, 23, 20, 0.08);
  transform: translateY(-2px);
}

.signature-strip span {
  color: var(--wine);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.2;
}

.signature-strip strong {
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(21px, 1.9vw, 28px);
  line-height: 1.06;
}

.signature-strip p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.68;
}

.signature-strip.six-up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.signature-strip.six-up article {
  min-height: 178px;
  border: 1px solid rgba(116, 96, 68, 0.16);
  border-radius: 6px;
  text-align: center;
  justify-items: center;
}

.signature-strip.six-up h3,
.signature-strip.six-up strong,
.signature-strip.six-up p {
  max-width: 92%;
}

.signature-strip small {
  display: block;
  margin-top: 8px;
  color: rgba(91, 82, 71, 0.74);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

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

.report-card {
  padding: 26px;
}

.bar-list {
  display: grid;
  gap: 16px;
}

.bar-list div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 14px;
  align-items: center;
}

.bar-list span {
  color: var(--muted);
  font-weight: 800;
}

.bar-list strong {
  color: var(--gold);
}

.bar-list i {
  grid-column: 1 / -1;
  display: block;
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--cream);
}

.bar-list i::before {
  content: "";
  display: block;
  width: var(--value);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--wine), var(--leaf));
}

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

.message-grid article {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 300px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  box-shadow: var(--soft-shadow);
}

.message-grid p {
  color: var(--muted);
  font-size: 14px;
}

.admin-login-page {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(360px, 1.2fr);
  padding: clamp(20px, 5vw, 70px);
  gap: 24px;
  align-items: stretch;
  background:
    linear-gradient(90deg, rgba(24, 33, 28, 0.94), rgba(24, 33, 28, 0.74)),
    url("assets/photos/fachada.png") center/cover;
}

.admin-login-card,
.admin-login-aside {
  display: grid;
  align-content: center;
  gap: 18px;
  border-radius: 8px;
  padding: clamp(28px, 5vw, 54px);
}

.admin-login-card {
  background: var(--paper);
  box-shadow: var(--shadow);
}

.admin-login-card h1 {
  color: var(--ink);
  font-size: clamp(42px, 5vw, 68px);
}

.admin-login-card p:not(.eyebrow) {
  color: var(--muted);
}

.admin-login-card form {
  display: grid;
  gap: 16px;
  margin-top: 12px;
}

.login-brand img {
  width: min(260px, 70vw);
}

.admin-login-aside {
  color: var(--cream);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(251, 247, 239, 0.18);
}

.admin-login-aside h2 {
  color: var(--cream);
}

.admin-login-aside .detail-item {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(251, 247, 239, 0.18);
}

.admin-login-aside .detail-item p {
  color: rgba(251, 247, 239, 0.72);
}

.hero-media {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(23, 23, 20, 0.92), rgba(36, 61, 45, 0.64), rgba(167, 7, 10, 0.1));
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  backdrop-filter: saturate(0.92) blur(0.6px);
  background:
    radial-gradient(circle at 72% 42%, rgba(167, 7, 10, 0.1), transparent 30%),
    linear-gradient(90deg, rgba(23, 23, 20, 0.82) 0%, rgba(23, 23, 20, 0.54) 42%, rgba(23, 23, 20, 0.18) 100%),
    linear-gradient(180deg, rgba(23, 23, 20, 0.24), rgba(23, 23, 20, 0.58));
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: url("assets/photos/chef-fogo.jpg") center/cover;
  z-index: 1;
  pointer-events: none;
  /* Fill the whole hero width. This may crop vertically, but avoids "vertical video" look. */
  object-fit: cover;
  object-position: 50% 28%;
}

/* (Intentionally no blurred background layer; video occupies full width.) */

.hero-demo-reel,
.hero-demo-reel span {
  position: absolute;
  inset: 0;
}

.hero-demo-reel {
  z-index: 0;
  overflow: hidden;
  background: #171714;
}

.hero-demo-reel span {
  opacity: 0;
  background-position: center;
  background-size: cover;
  transform: scale(1.04);
  animation: heroReel 25s infinite;
}

.hero-demo-reel span:nth-child(2) {
  animation-delay: 5s;
}

.hero-demo-reel span:nth-child(3) {
  animation-delay: 10s;
}

.hero-demo-reel span:nth-child(4) {
  animation-delay: 15s;
}

.hero-demo-reel span:nth-child(5) {
  animation-delay: 20s;
}

html.hero-video-ready .hero-demo-reel {
  display: none;
}

@keyframes heroReel {
  0% {
    opacity: 0;
    transform: scale(1.04);
  }

  5% {
    opacity: 1;
  }

  24% {
    opacity: 1;
  }

  30% {
    opacity: 0;
    transform: scale(1.12);
  }

  100% {
    opacity: 0;
    transform: scale(1.12);
  }
}

.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 980px;
  min-height: 100svh;
  margin: 0 auto;
  padding: calc(var(--header-height) + clamp(34px, 5vw, 68px)) clamp(20px, 7vw, 88px) clamp(42px, 7vw, 82px);
  color: var(--cream);
  text-align: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--leaf);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-content .eyebrow {
  color: rgba(251, 247, 239, 0.86);
  text-shadow: 0 2px 18px rgba(23, 23, 20, 0.44);
}

h1,
h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.04;
  letter-spacing: 0;
  font-weight: 600;
  text-wrap: balance;
}

h1 {
  max-width: 740px;
  font-size: clamp(40px, 4.7vw, 64px);
}

.hero-content h1 {
  max-width: 820px;
  text-shadow: 0 18px 44px rgba(23, 23, 20, 0.45);
}

.hero-statement {
  position: relative;
  display: grid;
  place-items: center;
  width: min(1180px, 92vw);
  min-height: clamp(180px, 25vw, 330px);
  margin-top: 0;
}

.hero-line,
.hero-words span {
  grid-area: 1 / 1;
  margin: 0;
  color: rgba(255, 253, 250, 0.94);
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 400;
  line-height: 0.92;
  text-align: center;
  text-shadow: 0 14px 36px rgba(23, 23, 20, 0.38);
  will-change: opacity, filter, transform, letter-spacing;
}

.hero-words {
  grid-area: 1 / 1;
  display: grid;
  place-items: center;
  width: 100%;
}

.hero-words span {
  grid-area: 1 / 1;
  display: block;
  max-width: 1120px;
  color: rgba(255, 253, 250, 0.88);
  font-size: clamp(48px, 6.8vw, 104px);
  opacity: 0;
}

.hero-words span:nth-child(1) {
  animation: heroWordOne 28s infinite both;
}

.hero-words span:nth-child(2) {
  animation: heroWordTwo 28s infinite both;
}

.hero-words span:nth-child(3) {
  animation: heroWordThree 28s infinite both;
}

.hero-line-secondary {
  max-width: 980px;
  color: rgba(255, 253, 250, 0.88);
  font-size: clamp(24px, 2.8vw, 42px);
  line-height: 1.12;
  animation: heroSecondaryPhrase 28s infinite both;
}

.hero-line-final {
  display: grid;
  gap: 8px;
  max-width: 980px;
  color: rgba(255, 253, 250, 0.84);
  font-size: clamp(18px, 2vw, 30px);
  line-height: 1.1;
  animation: heroFinalPhrase 28s infinite both;
}

.hero-line-final span {
  display: block;
}

@keyframes heroWordOne {
  0%,
  10% {
    opacity: 0;
    filter: blur(0);
    letter-spacing: 0.01em;
    transform: translateY(10px) scale(0.995);
  }

  15%,
  23% {
    opacity: 1;
    filter: blur(0);
    letter-spacing: 0;
    transform: translateY(0) scale(1);
  }

  30%,
  100% {
    opacity: 0;
    filter: blur(0);
    letter-spacing: 0.01em;
    transform: translateY(-12px) scale(0.995);
  }
}

@keyframes heroWordTwo {
  0%,
  32% {
    opacity: 0;
    filter: blur(0);
    transform: translateY(10px) scale(0.995);
  }

  38%,
  47% {
    opacity: 1;
    filter: blur(0);
    letter-spacing: 0;
    transform: translateY(0) scale(1);
  }

  54%,
  100% {
    opacity: 0;
    filter: blur(0);
    letter-spacing: 0.01em;
    transform: translateY(-12px) scale(0.995);
  }
}

@keyframes heroWordThree {
  0%,
  56% {
    opacity: 0;
    filter: blur(0);
    transform: translateY(10px) scale(0.995);
  }

  62%,
  70% {
    opacity: 1;
    filter: blur(0);
    letter-spacing: 0;
    transform: translateY(0) scale(1);
  }

  76%,
  100% {
    opacity: 0;
    filter: blur(0);
    letter-spacing: 0.01em;
    transform: translateY(-12px) scale(0.995);
  }
}

@keyframes heroSecondaryPhrase {
  0%,
  76% {
    opacity: 0;
    filter: blur(0);
    transform: translateY(10px);
  }

  80%,
  86% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }

  89%,
  100% {
    opacity: 0;
    filter: blur(0);
    transform: translateY(-10px);
  }
}

@keyframes heroFinalPhrase {
  0%,
  90% {
    opacity: 0;
    transform: translateY(10px);
  }

  94%,
  99.5% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(-8px);
  }
}

h2 {
  max-width: 820px;
  font-size: clamp(29px, 3vw, 40px);
}

h3 {
  margin: 0;
  font-size: clamp(18px, 1.45vw, 21px);
  line-height: 1.24;
  font-weight: 800;
  text-wrap: balance;
}

p {
  margin: 0;
  text-wrap: pretty;
}

.hero-content > p:not(.eyebrow):not(.hero-line-secondary) {
  max-width: 620px;
  margin: 20px 0 30px;
  font-size: clamp(17px, 1.55vw, 20px);
  line-height: 1.68;
  color: rgba(251, 247, 239, 0.86);
  text-shadow: 0 10px 28px rgba(23, 23, 20, 0.42);
}

section {
  padding: clamp(58px, 8vw, 98px) clamp(20px, 6vw, 76px);
}

.section-heading {
  max-width: 900px;
  margin-bottom: 34px;
}

.section-heading > p:not(.eyebrow) {
  max-width: 680px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.section-heading.split {
  display: grid;
  max-width: 1180px;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 36px;
  align-items: end;
}

.section-heading.split > p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
  max-width: 560px;
}

.legal-note {
  margin-top: 14px;
  max-width: 560px;
  color: rgba(108, 102, 95, 0.82);
  font-size: 13.5px;
  line-height: 1.6;
}

.section-heading.split > .section-callout {
  max-width: clamp(320px, 30vw, 380px);
  padding: 20px 22px;
  border-left: 3px solid var(--wine);
  border-radius: 0 6px 6px 0;
  background: rgba(167, 7, 10, 0.055);
  color: var(--wine);
  font-size: clamp(17px, 1.35vw, 20px);
  font-weight: 850;
  line-height: 1.6;
  text-align: left;
  text-align-last: auto;
  hyphens: none;
}

.section-heading > p:not(.eyebrow),
.section-heading.split > p,
.course-path-copy p:not(.eyebrow),
.detail-section > div:first-child p:not(.eyebrow),
.page-form-section p:not(.eyebrow) {
  text-align: justify;
  text-align-last: left;
  hyphens: auto;
}

.intent-section {
  background:
    linear-gradient(180deg, #fffdfa 0%, #f5eee3 100%);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 0;
  background: rgba(116, 96, 68, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 253, 250, 0.08);
}

.proof-strip div {
  min-height: 178px;
  padding: clamp(24px, 3vw, 34px);
  background:
    radial-gradient(circle at 82% 12%, rgba(140, 198, 62, 0.11), transparent 34%),
    linear-gradient(145deg, rgba(33, 29, 24, 0.98), rgba(36, 61, 45, 0.94)),
    var(--charcoal);
  color: var(--cream);
}

.proof-strip strong {
  display: block;
  margin-bottom: 16px;
  color: var(--leaf);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(27px, 2.8vw, 40px);
  line-height: 1;
}

.proof-strip span {
  display: block;
  max-width: 260px;
  color: rgba(251, 247, 239, 0.8);
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.5;
}

.intent-grid,
.card-grid,
.trio-grid,
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.intent-card,
.course-card,
.trio-grid article,
.card-grid.compact article,
.job-card,
.outline-card {
  min-height: 210px;
  padding: clamp(22px, 2.6vw, 28px);
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  box-shadow: 0 14px 36px rgba(24, 33, 28, 0.055);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

/* Smaller cards + company logo placeholder for the career grid. */
.job-card {
  position: relative;
  min-height: 118px;
  padding: 16px;
}

.job-logo {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  border: 1px solid rgba(116, 96, 68, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 253, 250, 0.92), rgba(247, 241, 232, 0.62));
  box-shadow: 0 10px 24px rgba(23, 23, 20, 0.06);
}

.intent-card {
  position: relative;
  overflow: hidden;
}

.intent-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--wine), var(--leaf));
  opacity: 0.86;
}

.course-card,
.trio-grid article,
.card-grid.compact article,
.job-card {
  align-content: start;
  background:
    linear-gradient(180deg, rgba(255, 253, 250, 0.99), rgba(251, 247, 239, 0.76)),
    var(--paper);
}

.intent-card:hover,
.course-card:hover,
.trio-grid article:hover,
.card-grid.compact article:hover,
.job-card:hover,
.outline-card:hover {
  border-color: rgba(116, 96, 68, 0.34);
  box-shadow: 0 22px 52px rgba(24, 33, 28, 0.1);
  transform: translateY(-2px);
}

.intent-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.intent-card span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.intent-card p,
.course-card p,
.trio-grid p,
.card-grid.compact p,
.job-card p {
  color: var(--muted);
  line-height: 1.68;
  overflow-wrap: anywhere;
}

.job-card h3,
.job-card p {
  max-width: calc(100% - 66px);
}

.job-card .tag {
  margin-top: 6px;
  margin-bottom: 10px;
  display: inline-flex;
  align-items: center;
}

.job-card h3 {
  font-size: 17px;
  line-height: 1.22;
}

.job-card p {
  font-size: 13.5px;
  line-height: 1.5;
}

.course-card .course-start {
  margin-top: 4px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.35;
}

.intent-card h3,
.course-card h3,
.trio-grid h3,
.card-grid.compact h3,
.job-card h3 {
  max-width: 92%;
  overflow-wrap: anywhere;
}

.content-band {
  background: var(--paper);
}

.content-band.light {
  background: #f5eee3;
}

.content-band.dark {
  background:
    radial-gradient(circle at 82% 12%, rgba(140, 198, 62, 0.12), transparent 28%),
    linear-gradient(135deg, rgba(33, 29, 24, 0.98), rgba(36, 61, 45, 0.94)),
    var(--charcoal);
  color: var(--cream);
}

.content-band.dark .section-heading p,
.content-band.dark article p {
  color: rgba(251, 247, 239, 0.76);
}

.content-band.dark article {
  border-color: rgba(251, 247, 239, 0.2);
  background: rgba(255, 255, 255, 0.055);
}

.content-band.dark .tag {
  background: rgba(255, 255, 255, 0.1);
  color: var(--leaf);
}

.content-band.dark .text-btn {
  color: var(--leaf);
}

.content-band.dark .text-btn:hover {
  color: var(--cream);
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.content-band.dark .section-cta {
  justify-content: flex-start;
}

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

.card-grid.compact {
  margin-bottom: 30px;
}

.card-grid.compact article {
  display: grid;
  align-content: start;
  gap: 16px;
}

.card-grid.compact h3 {
  margin-top: 0;
}

.course-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.course-card .text-btn,
.card-grid.compact .text-btn,
.trio-grid .text-btn,
.job-card .text-btn {
  margin-top: auto;
}

.kids-agenda-grid .course-card {
  display: grid;
  grid-template-rows: auto auto minmax(54px, auto) 24px 1fr auto;
  align-content: stretch;
}

.kids-agenda-grid .course-start {
  align-self: start;
  margin-top: 0;
  color: var(--wine);
}

.kids-agenda-grid .course-start.is-empty {
  visibility: hidden;
}

.kids-agenda-grid .text-btn {
  align-self: end;
  margin-top: 0;
}

.tag {
  width: fit-content;
  min-height: 28px;
  padding: 7px 11px;
  border-radius: 999px;
  border: 1px solid rgba(116, 96, 68, 0.12);
  background: rgba(116, 96, 68, 0.08);
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.tag.accent {
  border-color: rgba(167, 7, 10, 0.14);
  background: rgba(167, 7, 10, 0.08);
  color: var(--wine);
}

.tag.hot {
  border-color: rgba(167, 7, 10, 0.18);
  background: rgba(167, 7, 10, 0.06);
  color: rgba(167, 7, 10, 0.92);
}

.tag.premium {
  border-color: rgba(167, 7, 10, 0.26);
  background: linear-gradient(135deg, rgba(24, 33, 28, 0.96), rgba(36, 30, 26, 0.92));
  color: rgba(255, 253, 250, 0.94);
  box-shadow: 0 10px 24px rgba(23, 23, 20, 0.12), inset 0 0 0 1px rgba(255, 253, 250, 0.08);
}

.course-card.is-premium {
  border-color: rgba(167, 7, 10, 0.28);
  background:
    linear-gradient(180deg, rgba(255, 253, 250, 0.98), rgba(247, 241, 232, 0.86)),
    radial-gradient(circle at 84% 10%, rgba(141, 198, 63, 0.14), transparent 36%);
  box-shadow: 0 28px 72px rgba(24, 33, 28, 0.16);
  position: relative;
  overflow: hidden;
}

.course-card.is-premium::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, rgba(167, 7, 10, 0.96), rgba(141, 198, 63, 0.72));
  opacity: 0.9;
}

.course-card.is-premium h3 {
  color: var(--wine);
}

.course-highlight {
  display: block;
  margin-top: -4px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
  text-transform: uppercase;
}

.course-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.course-demand {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 28px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(141, 198, 63, 0.3);
  background: rgba(141, 198, 63, 0.14);
  color: var(--green);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.trio-grid article {
  display: grid;
  gap: 14px;
}

.feature-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(34px, 5vw, 58px);
  align-items: start;
  background:
    linear-gradient(rgba(255, 253, 250, 0.96), rgba(255, 253, 250, 0.95)),
    url("assets/photos/mesa-pratos.jpg") center/cover;
}

.feature-copy {
  position: sticky;
  top: 118px;
}

.feature-copy p:not(.eyebrow) {
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
}

.agenda-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 22px;
  align-items: stretch;
  background: var(--paper);
}

.agenda-feature-card {
  display: grid;
  align-content: start;
  gap: 20px;
  padding: clamp(28px, 4vw, 42px);
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(33, 29, 24, 0.96), rgba(36, 61, 45, 0.94)),
    url("assets/photos/cozinha-bancadas.jpg") center/cover;
  color: var(--cream);
  box-shadow: var(--shadow);
}

.agenda-feature-card .tag {
  border-color: rgba(251, 247, 239, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
}

.agenda-feature-card .tag.accent {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.agenda-feature-card h2 {
  color: var(--cream);
}

.agenda-feature-card p {
  color: rgba(251, 247, 239, 0.76);
}

.agenda-meta,
.agenda-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.agenda-meta span,
.agenda-filters span {
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.agenda-feature-card .agenda-meta span {
  border-color: rgba(251, 247, 239, 0.22);
  color: rgba(251, 247, 239, 0.82);
}

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

.agenda-calendar div {
  display: grid;
  min-height: 220px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: linear-gradient(180deg, #fffdfa 0%, var(--cream) 100%);
  box-shadow: 0 12px 30px rgba(24, 33, 28, 0.06);
}

.agenda-calendar strong {
  color: var(--wine);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 48px;
  line-height: 0.95;
}

.agenda-calendar span {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
}

.agenda-calendar small,
.agenda-card small {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.5;
}

.agenda-card .tag {
  margin-bottom: 4px;
}

.agenda-card p {
  color: var(--muted);
  font-weight: 700;
}

.agenda-card .class-price {
  display: inline-block;
  margin-top: 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.agenda-filters {
  margin-bottom: 22px;
}

.agenda-filters .is-active {
  border-color: var(--wine);
  background: rgba(167, 7, 10, 0.08);
  color: var(--wine);
}

.certificate-band {
  background: var(--cream);
}

.certificate-preview {
  display: grid;
  gap: 20px;
  max-width: 900px;
  min-height: 520px;
  margin: 0 auto;
  padding: 56px;
  border: 12px solid rgba(111, 90, 63, 0.22);
  border-radius: 6px;
  background:
    linear-gradient(rgba(255, 253, 248, 0.94), rgba(255, 253, 248, 0.94)),
    url("assets/photos/cozinha-bancadas.jpg") center/cover;
  box-shadow: var(--shadow);
  text-align: center;
}

.certificate-preview img {
  max-width: 260px;
  margin: 0 auto 20px;
}

.certificate-preview h2 {
  color: var(--wine);
  font-size: clamp(42px, 6vw, 82px);
}

.certificate-preview p:not(.eyebrow) {
  max-width: 620px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.certificate-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 34px;
  color: var(--gold);
  font-weight: 900;
}

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

.flow-grid article {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
}

.flow-grid span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 999px;
  background: var(--wine);
  color: #fff;
  font-weight: 900;
}

.flow-grid p {
  color: var(--muted);
}

.agenda-list {
  display: grid;
  gap: 16px;
}

.agenda-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 150px;
  padding: 28px;
  border: 1px solid rgba(116, 96, 68, 0.18);
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(255, 253, 250, 0.98), rgba(251, 247, 239, 0.76)),
    var(--paper);
  box-shadow: 0 14px 38px rgba(23, 23, 20, 0.07);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.agenda-card h3 {
  margin: 12px 0 6px;
}

.agenda-card:hover {
  border-color: rgba(167, 7, 10, 0.24);
  box-shadow: 0 22px 52px rgba(24, 33, 28, 0.1);
  transform: translateY(-2px);
}

.school-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 48px;
  align-items: center;
}

.home-page .school-section {
  background:
    linear-gradient(90deg, rgba(255, 253, 250, 0.98), rgba(247, 241, 232, 0.94));
}

.login-panel,
.contact-form,
.modal-card {
  display: grid;
  gap: 17px;
  padding: clamp(24px, 3vw, 32px);
  border: 1px solid rgba(116, 96, 68, 0.18);
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(255, 253, 250, 0.99), rgba(247, 241, 232, 0.7)),
    var(--paper);
  color: var(--ink);
  box-shadow: 0 16px 44px rgba(23, 23, 20, 0.1);
}

label {
  display: grid;
  gap: 9px;
  color: #34352f;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(116, 96, 68, 0.22);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  min-height: 48px;
  padding: 12px 14px;
  font-size: 15px;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

input::placeholder,
textarea::placeholder {
  color: rgba(108, 102, 95, 0.72);
}

input:focus,
select:focus,
textarea:focus {
  outline: 0;
  border-color: rgba(167, 7, 10, 0.58);
  box-shadow: 0 0 0 3px rgba(167, 7, 10, 0.1);
  background: #fffdfa;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

.human-check {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 12px 14px;
  border: 1px solid rgba(116, 96, 68, 0.2);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.human-check input {
  width: 18px;
  min-height: 18px;
  margin-top: 1px;
  accent-color: var(--wine);
}

.spam-trap {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.content-protected main,
.content-protected header,
.content-protected footer {
  -webkit-user-select: none;
  user-select: none;
}

.content-protected input,
.content-protected textarea,
.content-protected select {
  -webkit-user-select: text;
  user-select: text;
}

@media print {
  .content-protected main,
  .content-protected header,
  .content-protected footer {
    display: none !important;
  }
}

@media (max-width: 900px) {
  .party-quote {
    grid-template-columns: 1fr;
  }

  .quote-panel,
  .quote-result {
    grid-column: 1;
  }

  .quote-result {
    position: static;
    grid-row: auto;
  }

  .quote-grid,
  .quote-options {
    grid-template-columns: 1fr;
  }
}

.class-detail-box {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(116, 96, 68, 0.18);
  border-radius: 6px;
  background: rgba(255, 253, 250, 0.72);
}

.class-detail-box h3 {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
}

.class-detail-box p,
.class-detail-box small {
  color: var(--muted);
  line-height: 1.6;
}

.class-detail-box small {
  font-weight: 800;
}

.login-panel a {
  color: var(--green);
  font-size: 14px;
  font-weight: 700;
}

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

.outline-card {
  display: grid;
  align-content: center;
  justify-items: start;
  color: var(--green);
  font-size: 22px;
  font-weight: 900;
  text-align: left;
}

.outline-card::after {
  content: "";
  width: 42px;
  height: 2px;
  margin-top: 18px;
  background: var(--wine);
}

.school-image {
  min-height: 520px;
  border-radius: 6px;
  background:
    linear-gradient(rgba(22, 59, 43, 0.1), rgba(22, 59, 43, 0.1)),
    url("assets/photos/cozinha-qf.png") center/cover;
}

.gallery-section {
  background:
    linear-gradient(rgba(251, 247, 239, 0.96), rgba(251, 247, 239, 0.95)),
    url("assets/photos/fachada.png") center/cover;
}

.photo-gallery {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.75fr;
  grid-auto-rows: clamp(210px, 20vw, 270px);
  gap: 16px;
  margin-top: 38px;
}

.photo-gallery figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  background: var(--green);
  box-shadow: 0 18px 42px rgba(24, 33, 28, 0.14);
}

.photo-gallery figure:first-child {
  grid-row: span 2;
}

.photo-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 420ms ease, filter 420ms ease;
}

.photo-gallery figure:hover img {
  transform: scale(1.035);
  filter: saturate(1.08) contrast(1.02);
}

.photo-gallery figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 11px 13px;
  border-radius: 6px;
  background: rgba(24, 33, 28, 0.78);
  color: var(--cream);
  font-size: 13px;
  font-weight: 800;
}

.video-option-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.925fr 0.925fr;
  gap: 18px;
  margin-top: 36px;
}

.video-option {
  display: grid;
  align-content: start;
  gap: 14px;
  border: 1px solid rgba(116, 96, 68, 0.15);
  border-radius: 6px;
  padding: 14px;
  background: rgba(255, 253, 250, 0.78);
  box-shadow: 0 18px 42px rgba(24, 33, 28, 0.1);
}

.video-option.recommended {
  background: #fffdfa;
}

.video-frame {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  border-radius: 6px;
  background-position: center;
  background-size: cover;
}

.video-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(24, 33, 28, 0.08), rgba(24, 33, 28, 0.42));
}

.video-frame-wide {
  min-height: 290px;
}

.play-badge,
.duration-badge {
  position: absolute;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  color: #fffdfa;
  font-weight: 900;
}

.play-badge {
  left: 50%;
  top: 50%;
  width: 56px;
  height: 56px;
  transform: translate(-50%, -50%);
  background: rgba(161, 24, 31, 0.9);
  box-shadow: 0 16px 34px rgba(24, 33, 28, 0.24);
}

.duration-badge {
  right: 12px;
  bottom: 12px;
  min-height: 30px;
  padding: 0 11px;
  background: rgba(24, 33, 28, 0.72);
  font-size: 12px;
}

.video-option h3 {
  margin: 0;
  color: var(--green);
  font-size: 20px;
}

.video-option p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.school-section p:not(.eyebrow) {
  margin: 22px 0;
  color: var(--muted);
  font-size: 18px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-weight: 700;
}

.check-list li::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--leaf);
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.contact-section {
  background: var(--cream);
}

.contact-section p:not(.eyebrow) {
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1.15fr) repeat(4, minmax(150px, 0.55fr));
  gap: clamp(28px, 4vw, 48px);
  padding: clamp(48px, 6vw, 76px) clamp(20px, 6vw, 80px);
  background:
    radial-gradient(circle at 12% 0%, rgba(140, 198, 62, 0.12), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(116, 96, 68, 0.2), transparent 30%),
    linear-gradient(135deg, #171714, #211d18 54%, #16251c);
  color: var(--cream);
}

.site-footer img {
  display: block;
  width: min(280px, 60vw);
  height: auto;
  margin-bottom: 18px;
}

.site-footer p,
.site-footer span {
  color: rgba(251, 247, 239, 0.68);
  line-height: 1.7;
}

.site-footer h3 {
  margin-bottom: 16px;
  color: var(--cream);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-footer nav {
  display: grid;
  gap: 10px;
}

.site-footer nav span {
  color: rgba(251, 247, 239, 0.68);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}

.footer-optin {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding: 14px;
  border: 1px solid rgba(251, 247, 239, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
}

.footer-optin label {
  display: grid;
  gap: 8px;
  color: rgba(251, 247, 239, 0.76);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.footer-optin input[type="tel"] {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(251, 247, 239, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: var(--cream);
  font: inherit;
}

.footer-optin-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: end;
}

.footer-optin-row .solid-btn {
  min-height: 44px;
  align-self: end;
}

.footer-optin input[type="tel"]::placeholder {
  color: rgba(251, 247, 239, 0.5);
}

.footer-consent {
  grid-auto-flow: column;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  color: rgba(251, 247, 239, 0.64);
  font-size: 12.5px;
  font-weight: 600;
}

.footer-consent input {
  margin-top: 2px;
}

.footer-optin .solid-btn {
  width: auto;
  justify-self: start;
  padding: 10px 14px;
  font-size: 13px;
}

.footer-optin-feedback {
  margin: 0;
  color: rgba(140, 198, 62, 0.9);
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.4;
}

.site-footer a {
  color: rgba(251, 247, 239, 0.76);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  transition: color 180ms ease, transform 180ms ease;
}

.site-footer a.social-link {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-footer a.social-link svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  color: rgba(251, 247, 239, 0.78);
}

.site-footer a.social-link span {
  color: rgba(251, 247, 239, 0.76);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.35;
}

.site-footer a:hover {
  color: var(--leaf);
  transform: translateX(2px);
}

.footer-brand {
  max-width: 420px;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding-top: 26px;
  border-top: 1px solid rgba(251, 247, 239, 0.16);
}

.modal {
  width: min(680px, calc(100vw - 32px));
  border: 0;
  border-radius: 12px;
  padding: 0;
  background: transparent;
}

.modal::backdrop {
  background: rgba(24, 33, 28, 0.6);
  backdrop-filter: blur(4px);
}

.modal-card {
  position: relative;
  max-height: 88vh;
  overflow: auto;
}

.modal-card h2 {
  font-size: 38px;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: var(--cream);
  color: var(--ink);
  cursor: pointer;
  font-size: 24px;
}

.acceptance {
  display: flex;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
}

.acceptance input {
  width: auto;
  margin-top: 4px;
}

.success-message {
  padding: 14px;
  border-radius: 6px;
  background: rgba(22, 59, 43, 0.1);
  color: var(--green);
  font-weight: 700;
}

.form-feedback {
  margin: 0;
  padding: 14px;
  border-radius: 6px;
  background: rgba(140, 198, 62, 0.14);
  color: var(--green);
  font-weight: 800;
}

.validation-result {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(140, 198, 62, 0.45);
  border-radius: 6px;
  background: rgba(140, 198, 62, 0.12);
}

.validation-result h3,
.validation-result p {
  margin: 0;
}

.party-quote {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.62fr);
  gap: 18px;
  align-items: start;
}

.quote-panel,
.quote-result {
  display: grid;
  gap: 18px;
  padding: clamp(18px, 2.4vw, 26px);
  border: 1px solid rgba(116, 96, 68, 0.18);
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(255, 253, 250, 0.98), rgba(247, 241, 232, 0.68)),
    var(--paper);
  box-shadow: 0 16px 40px rgba(23, 23, 20, 0.08);
}

.quote-panel {
  grid-column: 1;
}

.quote-result {
  position: sticky;
  top: calc(var(--header-height) + 18px);
  grid-column: 2;
  grid-row: 1 / span 7;
  background: var(--charcoal);
  color: var(--cream);
}

.quote-result h2 {
  margin: 0;
  color: var(--cream);
  font-size: clamp(34px, 5vw, 58px);
}

.quote-result p {
  margin: 0;
}

.quote-section-heading {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.quote-section-heading > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--wine);
  color: var(--cream);
  font-weight: 900;
}

.quote-section-heading h3,
.quote-section-heading p,
.quote-subgroup h4 {
  margin: 0;
}

.quote-section-heading p,
.quote-help {
  color: var(--muted);
}

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

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

.quote-grid-contact label:last-child {
  grid-column: 1 / -1;
}

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

.quote-options label {
  display: flex;
  min-height: 48px;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(116, 96, 68, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 800;
}

.quote-options-cards label {
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.quote-options-cards label:hover {
  transform: translateY(-2px);
  border-color: rgba(131, 36, 51, 0.35);
  box-shadow: 0 14px 24px rgba(23, 23, 20, 0.08);
}

.quote-options-cards label:has(input:checked) {
  border-color: rgba(131, 36, 51, 0.5);
  background: rgba(131, 36, 51, 0.08);
  box-shadow: 0 14px 24px rgba(131, 36, 51, 0.14);
}

.quote-options input {
  width: 18px;
  min-height: 18px;
  accent-color: var(--wine);
}

.quote-subgroup {
  display: grid;
  gap: 10px;
  padding-top: 6px;
}

.quote-subgroup.is-disabled {
  display: none;
}

.quote-help {
  font-size: 12px;
  font-weight: 800;
}

.quote-help.is-error {
  color: var(--wine);
}

.quote-lines {
  display: grid;
  gap: 10px;
}

.quote-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.quote-meta article,
.quote-contact-preview {
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid rgba(255, 253, 250, 0.12);
  border-radius: 6px;
  background: rgba(255, 253, 250, 0.06);
}

.quote-meta strong,
.quote-contact-preview strong {
  color: var(--cream);
  font-size: 14px;
}

.quote-meta span,
.quote-contact-preview p {
  margin: 0;
  color: rgba(255, 253, 250, 0.72);
  font-size: 12px;
}

.quote-note {
  display: grid;
  gap: 6px;
  padding: 14px;
  border: 1px solid rgba(255, 253, 250, 0.12);
  border-radius: 6px;
  background: rgba(255, 253, 250, 0.06);
}

.quote-note strong,
.quote-note p {
  margin: 0;
}

.quote-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 253, 250, 0.16);
  color: rgba(255, 253, 250, 0.82);
  font-size: 13px;
}

.quote-line strong {
  color: var(--cream);
  white-space: nowrap;
}

.quote-actions {
  display: grid;
  gap: 12px;
}

.quote-actions .human-check {
  background: rgba(255, 253, 250, 0.08);
  border-color: rgba(255, 253, 250, 0.18);
  color: var(--cream);
}

.cookie-notice {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  max-width: 920px;
  margin: 0 auto;
  padding: 18px;
  border: 1px solid rgba(251, 247, 239, 0.16);
  border-radius: 6px;
  box-shadow: var(--shadow);
  background: rgba(24, 33, 28, 0.96);
  color: var(--cream);
}

.cookie-notice strong {
  display: block;
  margin-bottom: 5px;
}

.cookie-notice p {
  margin: 0;
  color: rgba(251, 247, 239, 0.72);
}

.cookie-notice a {
  display: inline-block;
  margin-top: 8px;
  color: var(--leaf);
  font-weight: 800;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

@media (max-width: 1380px) {
  .site-header {
    column-gap: 12px;
    row-gap: 8px;
    padding-inline: clamp(14px, 2.6vw, 34px);
  }

  .main-nav {
    gap: 8px;
    font-size: 12.25px;
  }

  .brand img {
    width: clamp(152px, 11.2vw, 194px);
  }

  .header-actions {
    gap: 7px;
  }
}

@media (max-width: 1200px) {
  .site-header {
    column-gap: 10px;
    padding-inline: clamp(12px, 2.2vw, 26px);
  }

  .main-nav {
    gap: 7px;
    font-size: 11.75px;
    overflow: visible;
  }

  .brand img {
    width: clamp(148px, 10.6vw, 186px);
  }

  .lang-switch {
    padding: 4px;
  }

  .lang-link {
    min-width: 30px;
    height: 26px;
    padding: 0 8px;
  }
}

@media (max-width: 1060px) {
  :root {
    --header-height: 58px;
  }

  body:not(.home-page) {
    padding-bottom: 80px;
  }

  .site-header {
    column-gap: 12px;
    row-gap: 8px;
  }

  .brand img {
    width: clamp(166px, 28vw, 208px);
  }

  .header-tools {
    display: none !important;
  }

  .menu-toggle {
    display: inline-flex;
    grid-area: tools;
    justify-self: end;
  }

  .main-nav,
  .header-actions {
    width: auto;
  }

  .main-nav {
    display: none;
  }

  .site-header.is-open {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto auto auto;
    grid-template-areas:
      "brand tools"
      "whats whats"
      "nav nav";
    row-gap: 10px;
    background: rgba(255, 253, 250, 0.96);
    border-bottom-color: rgba(116, 96, 68, 0.18);
  }

  .site-header.is-open .header-tools {
    display: none !important;
  }

  .site-header.is-open .main-nav {
    display: flex;
    grid-area: nav;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0 0;
    overflow: visible;
    white-space: normal;
  }

  .main-nav a::after {
    bottom: -4px;
  }

  .header-actions {
    justify-content: flex-end;
    flex-wrap: nowrap;
    gap: 8px;
  }

  .student-portal {
    width: auto;
  }

  /* Mobile/tablet: keep WhatsApp as a fixed bottom bar, never overlaying the header. */
  body:not(.home-page) .header-whatsapp {
    position: fixed !important;
    left: 12px;
    right: 12px;
    bottom: 12px !important;
    top: auto !important;
    width: auto;
    z-index: 80;
    padding: 10px;
    border: 1px solid rgba(116, 96, 68, 0.16);
    border-radius: 999px;
    background: rgba(255, 253, 250, 0.92);
    backdrop-filter: blur(16px);
    box-shadow: 0 18px 44px rgba(23, 23, 20, 0.16);
  }

  body:not(.home-page) .header-whatsapp .solid-btn {
    width: 100%;
    justify-content: center;
  }

  body:not(.home-page) .header-whatsapp .lang-switch {
    display: none;
  }

  .portal-panel {
    right: 0;
  }

  .portal-panel::before {
    display: none;
  }

  .intent-grid,
  .proof-strip,
  .signature-strip,
  .card-grid,
  .trio-grid,
  .media-grid,
  .video-option-grid,
  .metric-grid,
  .report-grid,
  .message-grid,
  .flow-grid,
  .jobs-grid,
  .section-heading.split,
  .page-hero,
  .detail-section,
  .page-form-section,
  .course-path,
  .agenda-feature,
  .feature-section,
  .school-section,
  .contact-section {
    grid-template-columns: 1fr 1fr;
  }

  .info-strip {
    grid-template-columns: 1fr 1fr;
  }

  .signature-strip {
    padding-inline: 18px;
    gap: 12px;
    background: #f7f1e8;
  }

  .signature-strip article,
  .signature-strip article:last-child {
    border: 1px solid rgba(116, 96, 68, 0.16);
  }

  .cookie-notice {
    grid-template-columns: 1fr;
  }

  .cookie-actions {
    justify-content: flex-start;
  }

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

  .method-section > div:first-child {
    max-width: 760px;
  }

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

@media (max-width: 860px) {
  .page-hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 56px;
  }

  body:not(.home-page) {
    padding-bottom: 80px;
  }

  section {
    padding-inline: 18px;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto;
    grid-template-areas: "brand tools";
    row-gap: 0;
    column-gap: 10px;
    padding: 10px calc(12px + env(safe-area-inset-right)) 10px calc(12px + env(safe-area-inset-left));
    overflow: visible;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: min(148px, 44vw);
    max-width: 100%;
  }

  .menu-toggle {
    display: inline-flex;
    grid-area: tools;
    justify-self: end;
    min-width: 0;
    border-color: rgba(255, 253, 250, 0.3);
    background: linear-gradient(135deg, var(--wine), var(--wine-dark));
    color: var(--cream);
    box-shadow: 0 14px 34px rgba(167, 7, 10, 0.22), inset 0 0 0 1px rgba(255, 253, 250, 0.14);
    margin-right: env(safe-area-inset-right);
    padding: 9px 12px;
    line-height: 1;
  }

  .header-tools {
    display: none !important;
  }

  .header-whatsapp {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
    padding: 10px;
    border: 1px solid rgba(116, 96, 68, 0.16);
    border-radius: 999px;
    background: rgba(255, 253, 250, 0.92);
    backdrop-filter: blur(16px);
    box-shadow: 0 18px 44px rgba(23, 23, 20, 0.16);
    z-index: 80;
  }

  .header-whatsapp .lang-switch {
    display: none;
  }

  .header-whatsapp .solid-btn {
    min-height: 38px;
    padding: 9px 12px;
    font-size: 12px;
    width: auto;
    flex: 1;
    min-width: 0;
    max-width: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  /* Home mobile: WhatsApp as a floating icon without the pill container. */
  body.home-page .header-whatsapp {
    left: auto;
    right: 14px;
    bottom: 14px;
    width: auto;
    border: 0;
    padding: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    overflow: visible;
  }

  body.home-page .header-whatsapp .whatsapp-btn {
    width: 46px;
    min-width: 46px;
    height: 46px;
    border-radius: 999px;
    border: 1px solid rgba(255, 253, 250, 0.22);
    background: linear-gradient(135deg, #25d366, #1aa84f);
    color: #ffffff;
    box-shadow: 0 16px 40px rgba(23, 23, 20, 0.28), inset 0 0 0 1px rgba(255, 253, 250, 0.14);
  }

  /* Home mobile: WhatsApp stays as a compact icon button on the right. */
  body.home-page .header-whatsapp {
    justify-content: flex-end;
  }

  .site-header.is-open {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto auto;
    grid-template-areas:
      "brand tools"
      "nav nav";
    row-gap: 10px;
  }

  .site-header.is-open .brand img {
    width: min(190px, 68vw);
  }

  .site-header.is-open .header-tools {
    display: none !important;
  }

  .site-header.is-open .main-nav {
    display: flex;
    grid-area: nav;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0 0;
    overflow: visible;
    white-space: normal;
  }

  .main-nav {
    display: none;
  }

  .main-nav a,
  .nav-item {
    width: 100%;
  }

  .nav-item .nav-link {
    width: 100%;
  }

  .main-nav {
    gap: 12px;
    font-size: 11.5px;
  }

  .hero {
    height: 100svh;
    min-height: min(560px, 100svh);
    max-height: 100svh;
  }

  /* Mobile: keep the same hero video, but shift framing to reduce face/head cropping. */
  .hero-video {
    object-position: 50% 16%;
  }

  .hero-media {
    background:
      linear-gradient(180deg, rgba(24, 33, 28, 0.62), rgba(111, 90, 63, 0.32)),
      url("assets/photos/aluno-na-cozinha.png") center/cover;
  }

  .hero-media::after {
    background:
      linear-gradient(180deg, rgba(23, 23, 20, 0.62) 0%, rgba(23, 23, 20, 0.32) 52%, rgba(23, 23, 20, 0.55) 100%);
  }

  /* Mobile: use a still image instead of video for smoother performance. */
  body.home-page .hero-video {
    display: none;
  }

  /* Mobile: avoid flashing the old fallback reel images before styles settle. */
  body.home-page .hero-demo-reel {
    display: none;
  }

  .hero-actions,
  .agenda-card,
  .footer-bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-content {
    padding: 74px 18px 38px;
  }

  h1 {
    font-size: clamp(32px, 10vw, 48px);
  }

  h2 {
    font-size: clamp(26px, 8.5vw, 36px);
  }

  .page-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 26px;
    padding-top: 54px;
  }

  .page-hero p:not(.eyebrow) {
    font-size: 17px;
  }

  .page-hero .info-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .page-hero .info-strip span {
    min-height: 38px;
    padding: 10px 12px;
    font-size: 12px;
  }

  .page-nav.stacked-nav {
    grid-template-columns: 1fr;
    justify-content: stretch;
    max-width: none;
  }

  .page-nav.stacked-nav a {
    justify-content: center;
  }

  .page-hero-image,
  .page-hero-video-demo {
    min-height: 280px;
  }

  .solid-btn,
  .ghost-btn,
  .light-btn {
    width: 100%;
  }

  /* Keep header actions on a single line on mobile. */
  .site-header .header-actions .solid-btn,
  .site-header .header-actions .ghost-btn,
  .site-header .header-actions .light-btn {
    width: auto;
  }

  .site-header .header-actions {
    flex-wrap: nowrap;
    gap: 8px;
  }

  /* But when the mobile menu is open, stack header actions so nothing overflows. */
  .site-header.is-open .header-actions {
    flex-wrap: wrap;
  }

  .site-header.is-open .header-actions .solid-btn,
  .site-header.is-open .header-actions .ghost-btn,
  .site-header.is-open .header-actions .light-btn {
    width: 100%;
  }

  /* Safer text wrapping on narrow screens (prevents clipping). */
  h1,
  h2 {
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .intent-grid,
  .proof-strip,
  .signature-strip,
  .card-grid,
  .trio-grid,
  .media-grid,
  .video-option-grid,
  .metric-grid,
  .report-grid,
  .message-grid,
  .flow-grid,
  .jobs-grid,
  .section-heading.split,
  .page-hero,
  .detail-section,
  .page-form-section,
  .course-path,
  .agenda-feature,
  .feature-section,
  .school-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .party-quote,
  .quote-grid,
  .quote-grid-contact,
  .quote-options,
  .quote-meta {
    grid-template-columns: 1fr;
  }

  .quote-result {
    position: static;
    grid-column: 1;
    grid-row: auto;
  }

  /* On mobile, stack the 6-up signature cards (Cursos page) to avoid narrow columns and text overflow. */
  .signature-strip.six-up {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .signature-strip.six-up article {
    min-height: 0;
    text-align: left;
    justify-items: start;
  }

  .signature-strip.six-up h3,
  .signature-strip.six-up strong,
  .signature-strip.six-up p {
    max-width: 100%;
  }

  .admin-row {
    grid-template-columns: 1fr;
  }

  .method-section .detail-list {
    grid-template-columns: 1fr;
  }

  .method-section .detail-item {
    min-height: 0;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .comparison-table .admin-row,
  .comparison-table .admin-row:not(:has(span:nth-child(5))) {
    grid-template-columns: 1fr;
  }

  .admin-toolbar {
    grid-template-columns: 1fr;
  }

  .permission-grid {
    grid-template-columns: 1fr;
  }

  .course-path-grid {
    grid-template-columns: 1fr;
  }

  .permission-grid > * {
    border-right: 0;
  }

  .profile-grid {
    grid-template-columns: 1fr;
  }

  .preview-grid,
  .share-preview {
    grid-template-columns: 1fr;
  }

  .agenda-calendar {
    grid-template-columns: 1fr;
  }

  .certificate-preview {
    padding: 28px;
  }

  .certificate-footer {
    display: grid;
    justify-content: center;
  }

  .admin-login-page {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .admin-login-card,
  .admin-login-aside {
    padding: 24px;
  }

  .info-strip {
    grid-template-columns: 1fr;
  }

  .photo-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .photo-gallery figure:first-child {
    grid-row: span 1;
  }

  .feature-copy {
    position: static;
  }

  .school-image {
    min-height: 320px;
  }

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

  .cookie-notice {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .cookie-actions {
    display: grid;
  }
}

@media (max-width: 420px) {
  .header-whatsapp .solid-btn {
    padding: 9px 10px;
    font-size: 11.5px;
  }

  .menu-toggle {
    padding: 8px 11px;
    font-size: 12px;
  }
}
