:root {
  --green: #15a85b;
  --green-dark: #087b44;
  --teal: #18aeca;
  --teal-dark: #075f8f;
  --blue: #006fbd;
  --blue-deep: #053d6e;
  --red: #e3343f;
  --red-dark: #b91f2c;
  --pink: #f45b9a;
  --pink-soft: #ffe7f1;
  --orange: #f58220;
  --yellow: #ffd21f;
  --ink: #343434;
  --muted: #6f7782;
  --line: #dedede;
  --bg: #ffffff;
  --soft: #f7fbff;
  --shadow: 0 6px 18px rgba(30, 36, 42, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.45;
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

img,
svg,
video {
  height: auto;
}

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

button,
input,
textarea {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  box-shadow: 0 5px 18px rgba(36, 36, 36, 0.18);
}

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

.header-shell {
  position: relative;
  display: grid;
  grid-template-columns: 120px minmax(390px, 1fr) auto;
  grid-template-areas: "brand nav actions";
  align-items: center;
  min-height: 92px;
  gap: 14px;
}

.brand {
  grid-area: brand;
}

.logo-slot {
  width: 96px;
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo-img {
  display: block;
  width: 86px;
  height: 86px;
  object-fit: contain;
}

.header-actions {
  grid-area: actions;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  justify-self: end;
}

.icon-circle,
.icon-whatsapp {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid var(--green);
  border-radius: 50%;
  position: relative;
}

.icon-whatsapp::after {
  content: "";
  position: absolute;
  right: -2px;
  bottom: -4px;
  width: 7px;
  height: 7px;
  border-left: 3px solid var(--green);
  border-bottom: 3px solid var(--green);
  transform: rotate(-18deg);
  background: #fff;
}

.join-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 104px;
  min-height: 36px;
  padding: 0 21px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green), var(--yellow), var(--orange));
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.social-actions,
.auth-actions {
  display: inline-flex;
  align-items: center;
}

.social-actions {
  gap: 8px;
}

.social-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.16);
}

.social-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.auth-actions {
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green), var(--yellow), var(--orange));
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.auth-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
}

.auth-actions span {
  margin: 0 8px;
  opacity: 0.8;
}

.search-form {
  display: flex;
  align-items: center;
  width: 278px;
  height: 36px;
  border: 1px solid #cfcfcf;
  border-radius: 999px;
  background: #fff;
  overflow: hidden;
}

.search-form button {
  width: 43px;
  height: 100%;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.search-form input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  color: #555;
  font-size: 14px;
}

.search-icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 4px solid var(--blue);
  border-radius: 50%;
  position: relative;
}

.search-icon::after {
  content: "";
  position: absolute;
  right: -7px;
  bottom: -5px;
  width: 10px;
  height: 4px;
  border-radius: 3px;
  background: var(--blue);
  transform: rotate(45deg);
}

.main-nav {
  grid-area: nav;
  justify-self: start;
  width: 100%;
}

.main-nav ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav a {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  color: #333;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
}

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

.menu-toggle {
  display: none;
  grid-area: toggle;
  position: relative;
  width: 42px;
  height: 38px;
  border: 0;
  background: transparent;
  cursor: pointer;
  z-index: 2;
}

.menu-toggle span {
  display: none;
  height: 3px;
  margin: 6px 0;
  border-radius: 3px;
  background: var(--teal-dark);
}

.menu-toggle::before {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  top: 9px;
  height: 3px;
  border-radius: 3px;
  background: var(--teal-dark);
  box-shadow: 0 8px 0 var(--teal-dark), 0 16px 0 var(--teal-dark);
}

.hero {
  position: relative;
  min-height: 545px;
  overflow: hidden;
  background: #fff;
}

.hero::after {
  content: "";
  position: absolute;
  right: 8%;
  top: 108px;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: radial-gradient(circle at 42% 42%, var(--yellow) 0 28%, var(--orange) 29% 52%, var(--red) 53% 100%);
  opacity: 0.13;
  pointer-events: none;
}

.hero-curve {
  position: absolute;
  pointer-events: none;
  background: var(--teal);
}

.hero-curve-top {
  top: -120px;
  left: -125px;
  width: 430px;
  height: 230px;
  border-radius: 0 0 230px 0;
  background: linear-gradient(135deg, var(--blue), var(--green));
}

.hero-curve-bottom {
  right: -60px;
  bottom: 24px;
  width: 430px;
  height: 94px;
  border-radius: 120px 0 0 0;
  background: linear-gradient(120deg, var(--yellow), var(--orange), var(--red), var(--pink));
  transform: skewY(-7deg);
}

.hero-content {
  position: relative;
  min-height: 545px;
}

.hero-with-banner {
  min-height: 545px;
}

.hero-with-banner .hero-content {
  min-height: 545px;
}

.hero-with-banner .benefit-board,
.hero-with-banner .hero-visual::before,
.hero-with-banner .hero-visual::after {
  display: none;
}

.hero-brand-mark {
  position: absolute;
  top: 184px;
  left: -34px;
  width: 235px;
  color: var(--teal-dark);
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
}

.hero-brand-logo {
  display: block;
  width: 156px;
  height: 156px;
  margin: 0 auto 6px;
  object-fit: contain;
}

.hero-brand-mark strong {
  display: block;
  font-size: 27px;
  color: var(--orange);
}

.hero-brand-mark small {
  display: block;
  color: var(--green-dark);
  font-size: 14px;
}

.hero-visual {
  position: absolute;
  left: 250px;
  top: 54px;
  width: 560px;
  height: 440px;
}

.hero-visual-banner {
  left: 250px;
  top: 50px;
  width: 560px;
  height: auto;
  aspect-ratio: 1457 / 1080;
  padding: 0;
  border-radius: 4px;
  background: transparent;
  box-shadow: none;
  transform: none;
}

.art-slot,
.image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(0, 111, 189, 0.12), rgba(244, 91, 154, 0.08), rgba(21, 168, 91, 0.08)),
    linear-gradient(45deg, rgba(255, 210, 31, 0.08), rgba(245, 130, 32, 0.05)),
    repeating-linear-gradient(-45deg, #f8f8f8 0 12px, #f1f3f3 12px 24px);
  color: #849099;
  text-align: center;
}

.art-slot {
  flex-direction: column;
  padding: 20px;
}

.image-placeholder img,
.art-slot img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hero-visual-banner img {
  object-fit: contain;
}

.hero-visual.hero-visual-banner {
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.art-slot span,
.image-placeholder span {
  display: block;
  color: #6f7b84;
  font-weight: 800;
}

.art-slot small {
  display: block;
  margin-top: 7px;
  max-width: 86%;
  font-size: 12px;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.hero-visual::before {
  content: "";
  position: absolute;
  right: -274px;
  top: 70px;
  width: 410px;
  height: 286px;
  border-radius: 86px;
  background: var(--orange);
  transform: rotate(3deg);
  z-index: -1;
}

.hero-visual::after {
  content: "";
  position: absolute;
  right: -238px;
  top: 42px;
  width: 415px;
  height: 310px;
  border-radius: 78px;
  background: linear-gradient(135deg, var(--yellow), var(--pink));
  transform: rotate(4deg);
  z-index: -2;
}

.benefit-board {
  position: absolute;
  top: 134px;
  right: 40px;
  z-index: 3;
  width: 360px;
  min-height: 255px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 14px;
  padding: 24px 26px;
  border-radius: 70px 52px 70px 52px;
  background: linear-gradient(135deg, rgba(5, 61, 110, 0.96), rgba(0, 111, 189, 0.9));
  border-left: 8px solid var(--orange);
  border-bottom: 6px solid var(--yellow);
  color: #fff;
  text-align: center;
  font-family: "Nunito", Arial, sans-serif;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.benefit-brand {
  font-size: 13px;
}

.shortcut-bar {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  min-height: 108px;
  margin-top: -54px;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.shortcut-bar a {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
  color: #7b8c98;
  font-size: 17px;
  font-weight: 800;
}

.shortcut-bar a + a {
  border-left: 1px solid #d2d2d2;
}

.shortcut-icon {
  width: 42px;
  height: 34px;
  position: relative;
}

.icon-dots {
  background: radial-gradient(circle, var(--green) 0 3px, transparent 4px);
  background-size: 13px 13px;
}

.icon-cross::before,
.icon-cross::after {
  content: "";
  position: absolute;
  inset: 13px 3px auto;
  height: 9px;
  border-radius: 6px;
  background: var(--red);
}

.icon-cross::after {
  transform: rotate(90deg);
}

.shortcut-bar a:first-child strong {
  color: var(--green-dark);
}

.shortcut-bar a:nth-child(2) strong {
  color: var(--orange);
}

.shortcut-bar a:nth-child(3) strong {
  color: var(--blue);
}

.icon-pages::before,
.icon-pages::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 27px;
  background: var(--blue);
  transform: skewY(-16deg);
}

.icon-pages::after {
  left: 11px;
  top: 5px;
  background: var(--pink);
}

.section {
  padding: 78px 0 84px;
}

.section-border {
  border-top: 1px solid var(--line);
}

.section-heading {
  margin-bottom: 38px;
}

.section-heading h2 {
  margin: 0;
  color: #343434;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0;
}

.section-heading h2::after {
  content: "";
  display: block;
  width: 120px;
  height: 1px;
  margin-top: 13px;
  background: #cfcfcf;
}

.section-heading.centered {
  text-align: center;
}

.section-heading.centered h2::after {
  margin-inline: auto;
}

.section-heading.light h2 {
  color: #fff;
}

.section-heading.light h2::after {
  background: rgba(255, 255, 255, 0.8);
}

.featured-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 26px;
  align-items: start;
}

.feature-stack {
  display: grid;
  gap: 26px;
}

.feature-card,
.post-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  text-align: center;
}

.feature-card[data-news-id],
.post-card[data-news-id] {
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.feature-card[data-news-id]:hover,
.post-card[data-news-id]:hover,
.feature-card[data-news-id]:focus-visible,
.post-card[data-news-id]:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(30, 36, 42, 0.18);
  outline: 0;
}

.feature-card h3,
.post-card h3 {
  margin: 0;
  padding: 24px 28px 27px;
  color: #3d3d3d;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.24;
}

.feature-card-large {
  min-height: 0;
}

.image-placeholder {
  width: 100%;
  height: 214px;
}

.image-placeholder.tall {
  height: 510px;
}

.category-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 74px;
  min-height: 33px;
  padding: 4px 9px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--red), var(--orange));
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  transform: translateY(-18px);
  margin-bottom: -18px;
}

.play-button {
  position: absolute;
  left: 50%;
  top: 82px;
  width: 58px;
  height: 41px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  transform: translateX(-50%);
}

.play-button::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 22px;
  border-left: 17px solid #5c6570;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

.section-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 104px;
  min-height: 37px;
  margin-top: 34px;
  padding: 0 19px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue-deep), var(--blue));
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.24);
}

.section-link.small {
  min-width: 86px;
  min-height: 28px;
  margin-top: 14px;
  font-size: 10px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-content: center;
  gap: 26px 28px;
  max-width: 960px;
  margin-inline: auto;
}

.card-grid .post-card:nth-child(4) {
  grid-column: 2;
}

.post-card {
  min-height: 300px;
}

.post-card time {
  position: absolute;
  top: 146px;
  left: 0;
  right: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
}

.post-card h3 {
  padding: 24px 25px 30px;
}

.newspaper-card .image-placeholder {
  height: 320px;
  background: #fff;
}

.newspaper-card .image-placeholder img {
  object-fit: contain;
}

.admin-blog-section.is-empty {
  display: none;
}

.admin-blog-card p {
  margin: -12px 24px 28px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.card-read-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 31px;
  margin: -8px auto 24px;
  padding: 0 17px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green), var(--yellow), var(--orange));
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}

.article-tone {
  background:
    linear-gradient(135deg, rgba(0, 111, 189, 0.24), rgba(244, 91, 154, 0.12)),
    repeating-linear-gradient(-45deg, #f4f4f4 0 13px, #ececec 13px 26px);
}

.column-card {
  min-height: auto;
}

.column-cover {
  height: 224px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--green), var(--yellow), var(--orange));
  color: #fff;
}

.column-cover strong,
.column-cover span {
  display: block;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: 3px;
  line-height: 1.02;
}

.column-cover time {
  position: static;
  margin-top: 30px;
  color: #fff;
  font-size: 15px;
}

.video-card .play-button {
  top: 82px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 38px;
  border: 1px solid #9aa0a5;
  border-radius: 4px;
  padding: 0 16px;
  color: #18566c;
  background: #fff;
  font-size: 12px;
  font-weight: 700;
}

.contact-form button {
  width: 248px;
  min-height: 36px;
  margin: 12px auto 0;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--red), var(--orange));
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

.service-grid a {
  min-height: 78px;
  display: flex;
  align-items: end;
  justify-content: center;
  padding: 43px 7px 9px;
  border-radius: 4px;
  background: linear-gradient(145deg, var(--blue-deep), var(--blue));
  color: #fff;
  text-align: center;
  font-family: "Nunito", Arial, sans-serif;
  font-size: 10px;
  font-weight: 800;
  position: relative;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.18);
}

.service-grid a::before {
  content: "";
  position: absolute;
  top: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
}

.service-grid a::after {
  content: "";
  position: absolute;
  top: 19px;
  width: 16px;
  height: 9px;
  border-left: 5px solid var(--green);
  border-bottom: 5px solid var(--green);
  transform: rotate(-45deg);
}

.services-panel {
  padding: 72px 0 86px;
  background: linear-gradient(180deg, var(--soft), #fff8df, #fff);
}

.service-box {
  max-width: 960px;
  margin-inline: auto;
  padding: 52px 110px 62px;
  border-radius: 4px;
  background:
    linear-gradient(135deg, rgba(5, 61, 110, 0.98), rgba(0, 111, 189, 0.9), rgba(21, 168, 91, 0.76), rgba(245, 130, 32, 0.82)),
    repeating-linear-gradient(-45deg, rgba(255,255,255,0.06) 0 9px, rgba(255,255,255,0) 9px 18px);
  color: #fff;
  text-align: center;
  box-shadow: var(--shadow);
}

.service-box p {
  max-width: 720px;
  margin: -12px auto 28px;
  font-size: 13px;
  line-height: 1.35;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px 18px;
  max-width: 700px;
  margin: 0 auto 30px;
}

.service-grid a {
  min-height: 116px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 14px;
}

.service-grid a::before {
  top: 25px;
  width: 40px;
  height: 40px;
}

.service-grid a::after {
  top: 35px;
}

.green-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  min-height: 36px;
  border-radius: 999px;
  background: #fff;
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
}

.about-section {
  background: #fff;
}

.about-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 74px 0;
  border-top: 1px solid var(--line);
}

.about-row h2 {
  margin: 0 0 16px;
  font-size: 26px;
  font-weight: 800;
  text-transform: uppercase;
}

.about-row p {
  max-width: 520px;
  margin: 0;
  color: #3f3f3f;
  font-size: 13px;
}

.about-image {
  height: 250px;
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.contact-section {
  padding: 72px 0 96px;
}

.contact-box {
  max-width: 960px;
  min-height: 300px;
  margin-inline: auto;
  padding: 44px 50px;
  border-radius: 4px;
  background:
    linear-gradient(100deg, rgba(5, 61, 110, 0.93), rgba(0, 111, 189, 0.84), rgba(21, 168, 91, 0.68), rgba(245, 130, 32, 0.72)),
    repeating-linear-gradient(-45deg, #dfe8ea 0 18px, #eff3f4 18px 36px);
  color: #fff;
}

.contact-box h2 {
  margin: 0 0 12px;
  font-size: 22px;
}

.contact-box p {
  max-width: 470px;
  margin: 0 0 16px;
  font-size: 12px;
}

.contact-form {
  max-width: 420px;
  display: grid;
  gap: 7px;
}

.contact-form input,
.contact-form textarea {
  min-height: 32px;
  border-color: #fff;
  color: #fff;
  background: transparent;
}

.contact-form textarea {
  min-height: 62px;
  padding-top: 8px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #fff;
}

.contact-form button {
  margin: 2px 0 0;
}

.footer {
  background: #fff;
}

.footer-top {
  padding: 48px 0;
  background:
    linear-gradient(135deg, #f7fbff, #fff1f7, #fff7d7),
    repeating-linear-gradient(-45deg, rgba(255,255,255,0.8) 0 8px, rgba(255,255,255,0.2) 8px 16px);
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.footer h4 {
  margin: 0 0 14px;
  color: #2e2e2e;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.footer a {
  display: block;
  margin: 8px 0;
  color: #555;
  font-size: 12px;
}

.footer .section-link {
  display: inline-flex;
  color: #fff;
}

.footer-mid {
  padding: 31px 0;
  background: #fff;
}

.footer-mid-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 42px;
  align-items: center;
  text-align: center;
}

.footer-logo {
  width: 126px;
  min-height: 126px;
  margin: 0;
}

.footer-logo .brand-logo-img {
  width: 116px;
  height: 116px;
}

.footer-mid p {
  margin: 0;
  color: #333;
  font-size: 11px;
}

.footer-contact a {
  margin: 4px 0;
  color: #222;
  font-size: 12px;
}

.social-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
  color: var(--green);
  font-weight: 800;
}

.footer-bottom {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: var(--blue);
  color: #fff;
  font-size: 11px;
}

.cookie-alert {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 44;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 17px;
  background: rgba(47, 47, 47, 0.93);
  color: #fff;
  font-size: 14px;
}

.cookie-alert button {
  min-width: 174px;
  min-height: 36px;
  border: 1px solid #fff;
  border-radius: 5px;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.cookie-alert.is-hidden {
  display: none;
}

.news-detail-page {
  background: linear-gradient(180deg, #f7fbff 0, #fff 360px);
}

.article-hero {
  padding: 70px 0 58px;
  background:
    linear-gradient(135deg, rgba(5, 61, 110, 0.96), rgba(0, 111, 189, 0.9), rgba(21, 168, 91, 0.82), rgba(245, 130, 32, 0.86)),
    repeating-linear-gradient(-45deg, rgba(255,255,255,0.08) 0 9px, transparent 9px 18px);
  color: #fff;
}

.article-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 46px;
  align-items: center;
}

.article-back {
  display: inline-flex;
  margin-bottom: 22px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.article-meta span,
.article-meta time {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 12px;
  font-weight: 800;
}

.article-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: 43px;
  line-height: 1.08;
}

.article-hero p {
  max-width: 720px;
  margin: 20px 0 0;
  font-size: 17px;
  line-height: 1.55;
}

.article-media {
  min-height: 310px;
  margin: 0;
  overflow: hidden;
  border: 10px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.article-media img {
  width: 100%;
  height: 100%;
  min-height: 310px;
  display: block;
  object-fit: cover;
}

.article-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 46px;
  align-items: start;
  padding-top: 60px;
  padding-bottom: 76px;
}

.article-body {
  padding: 42px;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.article-body p {
  margin: 0 0 22px;
  color: #333;
  font-size: 18px;
  line-height: 1.74;
}

.article-body p:last-child {
  margin-bottom: 0;
}

.article-side {
  display: grid;
  gap: 24px;
}

.article-source,
.related-list {
  display: grid;
  gap: 12px;
}

.article-source {
  padding: 22px;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.article-source strong,
.article-side h2 {
  margin: 0;
  color: var(--blue-deep);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
}

.article-source span {
  color: var(--muted);
  font-size: 13px;
}

.related-item {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 13px;
  align-items: center;
  padding: 12px;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.related-item img {
  grid-row: span 2;
  width: 82px;
  height: 70px;
  border-radius: 6px;
  object-fit: cover;
}

.related-item span {
  grid-column: 2;
  display: block;
  color: var(--orange);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.related-item strong {
  grid-column: 2;
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-size: 12px;
  line-height: 1.28;
}

.auth-page {
  min-height: 100vh;
  background:
    linear-gradient(180deg, #f7fbff 0, #fff8df 58%, #fff 100%);
}

.auth-hero {
  padding: 74px 0 96px;
}

.auth-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.72fr);
  gap: 54px;
  align-items: start;
}

.auth-copy {
  padding: 54px 0;
}

.auth-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(0, 111, 189, 0.1);
  color: var(--blue-deep);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.auth-copy h1 {
  margin: 0 0 16px;
  color: var(--blue-deep);
  font-size: 46px;
  line-height: 1.05;
}

.auth-copy p {
  max-width: 620px;
  margin: 0;
  color: #3f3f3f;
  font-size: 17px;
  line-height: 1.6;
}

.auth-panel {
  padding: 28px;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.auth-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 18px;
}

.auth-tabs button {
  min-height: 39px;
  border: 1px solid #d3dbe3;
  border-radius: 999px;
  background: #fff;
  color: var(--blue-deep);
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

.auth-tabs button.is-active {
  border-color: transparent;
  background: linear-gradient(135deg, var(--blue-deep), var(--blue));
  color: #fff;
}

.auth-status {
  display: none;
  margin-bottom: 16px;
  padding: 13px 15px;
  border-radius: 7px;
  background: #f7fbff;
  color: var(--muted);
  font-size: 13px;
}

.auth-status:not(:empty) {
  display: block;
}

.auth-status.is-success {
  background: #effbf4;
  color: var(--green-dark);
}

.auth-status.is-error {
  background: #fff0f1;
  color: var(--red-dark);
}

.auth-form {
  display: none;
  gap: 15px;
}

.auth-form.is-active {
  display: grid;
}

.auth-form label {
  display: grid;
  gap: 7px;
  color: var(--blue-deep);
  font-size: 13px;
  font-weight: 800;
}

.auth-form input {
  width: 100%;
  min-height: 43px;
  border: 1px solid #c8d0d8;
  border-radius: 5px;
  padding: 10px 12px;
  color: var(--ink);
  background: #fff;
  font-size: 13px;
}

.auth-form button {
  width: max-content;
  min-height: 38px;
  border: 0;
  border-radius: 999px;
  padding: 0 22px;
  background: linear-gradient(135deg, var(--red), var(--orange));
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

@media (max-width: 1060px) {
  .header-shell {
    grid-template-columns: 110px 1fr;
    grid-template-areas:
      "brand actions"
      "nav nav";
    min-height: 112px;
  }

  .header-actions {
    gap: 14px;
  }

  .main-nav {
    justify-self: start;
  }

  .main-nav ul {
    gap: 18px;
  }

  .search-form {
    width: 230px;
  }

  .hero-brand-mark {
    left: -8px;
  }

  .hero-visual {
    left: 180px;
    width: 500px;
  }

  .benefit-board {
    right: 0;
    width: 320px;
  }
}

@media (max-width: 900px) {
  .container {
    width: min(100% - 28px, 760px);
  }

  .header-shell {
    grid-template-columns: 1fr 48px;
    grid-template-areas:
      "brand toggle"
      "actions actions"
      "nav nav";
    padding: 8px 0 10px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: end;
    position: relative;
    top: auto;
    right: auto;
  }

  .header-actions {
    justify-content: center;
    flex-wrap: wrap;
    justify-self: stretch;
    width: 100%;
  }

  .main-nav {
    display: none;
    justify-self: stretch;
    width: 100%;
  }

  .main-nav.is-open {
    display: block;
  }

  .main-nav ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: center;
    gap: 8px 6px;
    padding: 8px 0;
  }

  .main-nav a {
    justify-content: center;
    width: 100%;
  }

  .hero {
    min-height: 690px;
  }

  .hero-content {
    min-height: 690px;
  }

  .hero-with-banner,
  .hero-with-banner .hero-content {
    min-height: auto;
  }

  .hero-with-banner {
    padding: 26px 0 32px;
  }

  .hero-with-banner .hero-content {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
  }

  .hero-brand-mark {
    position: relative;
    top: auto;
    left: auto;
    width: 150px;
  }

  .hero-brand-logo {
    width: 118px;
    height: 118px;
  }

  .hero-brand-mark strong {
    font-size: 19px;
  }

  .hero-visual {
    left: 50%;
    top: 132px;
    width: min(92vw, 520px);
    height: 320px;
    transform: translateX(-50%);
  }

  .hero-visual-banner {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    max-width: 560px;
    height: auto;
    transform: none;
  }

  .benefit-board {
    left: 50%;
    top: 420px;
    right: auto;
    width: min(92vw, 420px);
    transform: translateX(-50%);
  }

  .shortcut-bar {
    margin-top: -30px;
  }

  .featured-grid,
  .article-hero-grid,
  .article-shell,
  .auth-layout,
  .about-row,
  .footer-mid-grid {
    grid-template-columns: 1fr;
  }

  .auth-copy {
    padding: 24px 0 0;
  }

  .auth-copy h1 {
    font-size: 36px;
  }

  .article-hero h1 {
    font-size: 34px;
  }

  .article-media {
    max-width: 560px;
  }

  .feature-card-large {
    min-height: auto;
  }

  .about-row-alt .about-image {
    order: 2;
  }

  .service-box {
    padding: 42px 24px 46px;
  }

  .footer-logo {
    margin-inline: auto;
  }

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

@media (max-width: 720px) {
  .site-header .container,
  .container {
    width: min(100% - 24px, 680px);
  }

  .header-shell {
    grid-template-columns: 90px 1fr 44px;
    grid-template-areas:
      "brand . toggle"
      "actions actions actions"
      "nav nav nav";
    gap: 8px 10px;
    min-height: auto;
  }

  .logo-slot {
    width: 76px;
    min-height: 70px;
  }

  .brand-logo-img {
    width: 68px;
    height: 68px;
  }

  .header-actions {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: stretch;
    gap: 8px;
  }

  .main-nav ul {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 6px 0 10px;
  }

  .main-nav a {
    justify-content: center;
    width: 100%;
    min-height: 38px;
    border-radius: 6px;
    background: #f7fbff;
    font-size: 11px;
  }

  .join-pill,
  .search-form {
    width: 100%;
    justify-content: center;
  }

  .social-actions {
    justify-content: center;
  }

  .search-form,
  .join-pill {
    grid-column: 1 / -1;
  }

  .auth-actions {
    min-width: 0;
    justify-content: center;
  }

  .auth-actions a {
    flex: 1;
    justify-content: center;
  }

  .hero-brand-mark {
    display: none;
  }

  .hero,
  .hero-content {
    min-height: 790px;
  }

  .hero-with-banner,
  .hero-with-banner .hero-content {
    min-height: auto;
  }

  .hero-with-banner {
    padding: 18px 0 24px;
  }

  .hero-with-banner .hero-content {
    display: block;
  }

  .hero-visual {
    left: 14px;
    width: calc(100% - 28px);
    height: 320px;
    transform: none;
  }

  .hero-visual-banner {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    height: auto;
    transform: none;
  }

  .hero-visual::before {
    right: -165px;
  }

  .hero-visual::after {
    right: -140px;
  }

  .art-slot small {
    display: none;
  }

  .benefit-board {
    top: 420px;
    left: 14px;
    width: calc(100% - 28px);
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 12px;
    padding: 25px 18px;
    border-radius: 46px;
    font-size: 9px;
    transform: none;
  }

  .shortcut-bar {
    grid-template-columns: 1fr;
    margin-top: -18px;
  }

  .shortcut-bar a + a {
    border-left: 0;
    border-top: 1px solid #d2d2d2;
  }

  .card-grid,
  .service-grid,
  .footer-columns {
    grid-template-columns: 1fr;
  }

  .card-grid .post-card:nth-child(4) {
    grid-column: auto;
  }

  .image-placeholder.tall {
    height: 310px;
  }

  .feature-stack {
    gap: 20px;
  }

  .section {
    padding: 58px 0 64px;
  }

  .section-heading h2 {
    font-size: 25px;
  }

  .article-hero {
    padding: 46px 0 38px;
  }

  .article-hero h1 {
    font-size: 29px;
  }

  .article-hero p,
  .article-body p {
    font-size: 16px;
  }

  .article-body {
    padding: 24px 20px;
  }

  .article-shell {
    padding-top: 34px;
    padding-bottom: 54px;
  }

  .article-media,
  .article-media img {
    min-height: 220px;
  }

  .related-item {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .related-item img {
    width: 72px;
    height: 62px;
  }

  .auth-hero {
    padding: 44px 0 70px;
  }

  .auth-panel {
    padding: 20px;
  }

  .auth-tabs {
    grid-template-columns: 1fr;
  }

  .contact-box {
    padding: 32px 22px;
  }

  .contact-form button {
    width: 100%;
  }

  .footer-columns,
  .footer-mid-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cookie-alert {
    align-items: stretch;
    flex-direction: column;
    font-size: 12px;
  }

  .cookie-alert button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .container,
  .site-header .container {
    width: min(100% - 20px, 460px);
  }

  .header-shell {
    grid-template-columns: 76px 1fr 42px;
  }

  .logo-slot {
    width: 66px;
    min-height: 62px;
  }

  .brand-logo-img {
    width: 60px;
    height: 60px;
  }

  .auth-actions {
    padding-inline: 8px;
    font-size: 11px;
  }

  .search-form input {
    font-size: 12px;
  }

  .hero-with-banner {
    padding-top: 12px;
  }

  .shortcut-bar a {
    min-height: 66px;
    font-size: 14px;
  }

  .feature-card h3,
  .post-card h3 {
    padding-inline: 18px;
    font-size: 15px;
  }

  .image-placeholder {
    height: 190px;
  }

  .image-placeholder.tall,
  .newspaper-card .image-placeholder {
    height: 260px;
  }

  .service-box {
    padding: 34px 16px 38px;
  }

  .about-row {
    gap: 28px;
    padding: 52px 0;
  }

  .about-image {
    height: 190px;
  }

  .article-hero h1,
  .auth-copy h1 {
    font-size: 27px;
  }

  .article-meta span,
  .article-meta time {
    width: 100%;
    justify-content: center;
  }

  .auth-panel {
    padding: 18px;
  }

  .auth-form button {
    width: 100%;
  }
}

/* =========================================================
   AJUSTE FINAL MOBILE - FENACONAM
   Header menor + banner maior + esconder ao rolar
   Cole no FINAL do styles.css
   ========================================================= */

@media (max-width: 720px) {
  .site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: #fff;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
  }

  .site-header.header-hidden {
    transform: translateY(-100%);
  }

  .site-header .container,
  .container {
    width: min(100% - 20px, 680px);
  }

  .header-shell {
    grid-template-columns: 62px 1fr 38px;
    grid-template-areas:
      "brand . toggle"
      "actions actions actions"
      "nav nav nav";
    gap: 4px 8px;
    padding: 4px 0 7px;
    min-height: auto;
  }

  .logo-slot {
    width: 58px;
    min-height: 54px;
  }

  .brand-logo-img {
    width: 52px;
    height: 52px;
  }

  .menu-toggle {
    width: 36px;
    height: 34px;
  }

  .menu-toggle::before {
    left: 7px;
    right: 7px;
    top: 8px;
    box-shadow: 0 7px 0 var(--teal-dark), 0 14px 0 var(--teal-dark);
  }

  .header-actions {
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 6px;
    align-items: center;
  }

  .social-actions {
    justify-content: center;
    gap: 6px;
  }

  .social-icon {
    width: 30px;
    height: 30px;
  }

  .auth-actions {
    min-height: 32px;
    height: 32px;
    padding: 0 8px;
    font-size: 11px;
  }

  .auth-actions a {
    min-height: 32px;
  }

  .auth-actions span {
    margin: 0 5px;
  }

  .search-form {
    grid-column: 1 / -1;
    width: 100%;
    height: 34px;
  }

  .search-form button {
    width: 40px;
  }

  .search-form input {
    font-size: 12px;
  }

  .main-nav ul {
    grid-template-columns: 1fr 1fr;
    gap: 5px;
    padding: 5px 0 4px;
  }

  .main-nav li:last-child {
    grid-column: 1 / -1;
  }

  .main-nav a {
    min-height: 30px;
    padding: 0 6px;
    font-size: 10px;
  }

  .hero-with-banner {
    min-height: auto;
    padding: 14px 0 18px;
  }

  .hero-with-banner .hero-content {
    min-height: auto;
    display: block;
  }

  .hero-brand-mark,
  .benefit-board {
    display: none !important;
  }

  .hero-visual.hero-visual-banner {
    position: relative;
    left: 50%;
    top: auto;
    width: 100vw;
    max-width: 430px;
    height: auto;
    aspect-ratio: 1457 / 1080;
    transform: translateX(-50%);
    margin: 0 auto;
    padding: 0;
    background: transparent;
    box-shadow: none;
  }

  .hero-visual.hero-visual-banner img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .hero-curve-top {
    top: -95px;
    left: -120px;
    width: 390px;
    height: 205px;
  }

  .hero-curve-bottom {
    right: -90px;
    bottom: 8px;
    width: 360px;
    height: 76px;
  }

  .hero::after {
    top: 94px;
    right: 4%;
    width: 76px;
    height: 76px;
  }

  .shortcut-bar {
    margin-top: 4px;
  }
}

@media (max-width: 480px) {
  .header-shell {
    grid-template-columns: 56px 1fr 36px;
  }

  .logo-slot {
    width: 52px;
    min-height: 48px;
  }

  .brand-logo-img {
    width: 46px;
    height: 46px;
  }

  .social-icon {
    width: 28px;
    height: 28px;
  }

  .auth-actions {
    height: 30px;
    min-height: 30px;
    font-size: 10px;
  }

  .search-form {
    height: 32px;
  }

  .hero-with-banner {
    padding-top: 10px;
  }

  .hero-visual.hero-visual-banner {
    width: 104vw;
    max-width: 410px;
  }
}

/* =========================================================
   HEADER MOBILE ESTILO "ESCAVADOR"
   Cole no FINAL do styles.css
   ========================================================= */

@media (max-width: 720px) {
  .site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: #fff;
    border-bottom: 1px solid #e9e9e9;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  }

  .header-shell {
    display: grid;
    grid-template-columns: 44px 1fr 44px;
    grid-template-areas:
      "toggle brand actions"
      "nav nav nav";
    align-items: center;
    gap: 0;
    min-height: 78px;
    padding: 0;
  }

  .brand {
    grid-area: brand;
    justify-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Logo maior no mobile */
  .logo-slot {
    width: 160px;
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .brand-logo-img {
    width: 150px;
    height: 72px;
    object-fit: contain;
  }

  .menu-toggle {
    display: inline-flex;
    grid-area: toggle;
    align-items: center;
    justify-content: center;
    justify-self: start;
    width: 44px;
    height: 44px;
    margin-left: 2px;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  /* Remove o ícone antigo por pseudo-elemento */
  .menu-toggle::before {
    display: none;
  }

  /* Mostra as 3 barras reais */
  .menu-toggle span {
    display: block;
    width: 22px;
    height: 2.5px;
    margin: 3px 0;
    border-radius: 999px;
    background: #667085;
    transition: 0.2s ease;
  }

  /* Animação do X */
  .menu-toggle.is-active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

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

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

  .header-actions {
    grid-area: actions;
    justify-self: end;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0;
    width: 44px;
    margin-right: 2px;
  }

  /* Esconde elementos antigos do topo no mobile */
  .social-actions,
  .auth-actions {
    display: none !important;
  }

  /* Faz a busca virar apenas um ícone à direita */
  .search-form {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
  }

  .search-form input {
    display: none !important;
  }

  .search-form button {
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
  }

  .search-icon {
    width: 18px;
    height: 18px;
    border: 2.5px solid #667085;
    border-radius: 50%;
    position: relative;
  }

  .search-icon::after {
    content: "";
    position: absolute;
    right: -6px;
    bottom: -3px;
    width: 8px;
    height: 2.5px;
    border-radius: 999px;
    background: #667085;
    transform: rotate(45deg);
  }

  /* Menu dropdown */
  .main-nav {
    grid-area: nav;
    display: none;
    width: 100%;
    background: #fff;
    border-top: 1px solid #ececec;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
  }

  .main-nav.is-open {
    display: block;
  }

  .main-nav ul {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 8px 0;
    list-style: none;
  }

  .main-nav li {
    width: 100%;
  }

  .main-nav a {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 48px;
    padding: 0 18px;
    background: #fff;
    color: #30343a;
    font-size: 14px;
    font-weight: 700;
    border-radius: 0;
    border-bottom: 1px solid #f1f1f1;
    justify-content: flex-start;
  }

  .main-nav a:hover {
    background: #f8f8f8;
    color: var(--orange);
  }
}

@media (max-width: 480px) {
  .header-shell {
    min-height: 72px;
  }

  .logo-slot {
    width: 145px;
    min-height: 66px;
  }

  .brand-logo-img {
    width: 136px;
    height: 66px;
  }
}
/* =========================================================
   MOBILE FINAL - LOGO MAIOR + SOCIAIS NA HOME + AUTH NO MENU
   Cole no FINAL do styles.css
   ========================================================= */

/* desktop */
.mobile-home-actions,
.mobile-nav-auth {
  display: none;
}

@media (max-width: 720px) {
  .site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: #fff;
    border-bottom: 1px solid #ececec;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  }

  .site-header.header-hidden {
    transform: translateY(-100%);
    transition: transform 0.28s ease;
  }

  .header-shell {
    display: grid;
    grid-template-columns: 44px 1fr 44px;
    grid-template-areas:
      "toggle brand actions"
      "nav nav nav";
    align-items: center;
    gap: 0;
    min-height: 82px;
    padding: 0;
  }

  .brand {
    grid-area: brand;
    justify-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* LOGO MAIOR */
  .logo-slot {
    width: 190px;
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .brand-logo-img {
    width: 175px;
    height: 76px;
    object-fit: contain;
  }

  .menu-toggle {
    display: inline-flex;
    grid-area: toggle;
    align-items: center;
    justify-content: center;
    justify-self: start;
    width: 44px;
    height: 44px;
    margin-left: 4px;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle::before {
    display: none;
  }

  .menu-toggle span {
    display: block;
    width: 22px;
    height: 2.5px;
    margin: 3px 0;
    border-radius: 999px;
    background: #5f6b7a;
    transition: 0.2s ease;
  }

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

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

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

  /* mantém o logo visualmente centralizado */
  .header-actions {
    grid-area: actions;
    width: 44px;
    visibility: hidden;
    pointer-events: none;
  }

  /* esconder elementos antigos do topo no mobile */
  .header-actions .social-actions,
  .header-actions .auth-actions,
  .header-actions .search-form {
    display: none !important;
  }

  /* menu mobile */
  .main-nav {
    grid-area: nav;
    display: none;
    width: 100%;
    background: #fff;
    border-top: 1px solid #ececec;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
  }

  .main-nav.is-open {
    display: block;
  }

  .main-nav ul {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 8px 0 10px;
    list-style: none;
  }

  .main-nav li {
    width: 100%;
  }

  .main-nav a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    min-height: 48px;
    padding: 0 18px;
    color: #2f343b;
    font-size: 14px;
    font-weight: 700;
    background: #fff;
    border-bottom: 1px solid #f2f2f2;
  }

  .mobile-nav-auth {
    display: block;
  }

  .mobile-nav-auth a {
    justify-content: center;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, var(--green), var(--yellow), var(--orange));
    margin: 8px 14px 0;
    min-height: 42px;
    border-radius: 999px;
    border-bottom: 0;
  }

  /* BLOCO DOS ÍCONES SOCIAIS DENTRO DA HOME */
  .mobile-home-actions {
    display: flex;
    justify-content: flex-start;
    margin: 0 0 10px;
    padding-top: 4px;
  }

  .mobile-home-social {
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }

  .mobile-home-social .social-icon {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  }

  .mobile-home-social .social-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  /* hero */
  .hero-with-banner {
    min-height: auto;
    padding: 10px 0 20px;
  }

  .hero-with-banner .hero-content {
    min-height: auto;
    display: block;
  }

  .hero-brand-mark,
  .benefit-board {
    display: none !important;
  }

  .hero-visual.hero-visual-banner {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    max-width: 100%;
    height: auto;
    transform: none;
    margin: 0 auto;
    padding: 0;
    background: transparent;
    box-shadow: none;
  }

  .hero-visual.hero-visual-banner img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    display: block;
  }

  .hero-curve-top {
    top: -96px;
    left: -120px;
    width: 390px;
    height: 205px;
  }

  .hero-curve-bottom {
    right: -80px;
    bottom: 8px;
    width: 330px;
    height: 74px;
  }

  .hero::after {
    top: 120px;
    right: 4%;
    width: 70px;
    height: 70px;
  }

  .shortcut-bar {
    margin-top: 8px;
  }
}

@media (max-width: 480px) {
  .header-shell {
    min-height: 76px;
  }

  .logo-slot {
    width: 176px;
    min-height: 70px;
  }

  .brand-logo-img {
    width: 162px;
    height: 70px;
  }

  .mobile-home-social .social-icon {
    width: 34px;
    height: 34px;
  }
}

/* Ajuste final do menu hamburguer no telefone */
@media (max-width: 720px) {
  .menu-toggle {
    width: 40px;
    height: 40px;
    flex-direction: column;
    gap: 4px;
    margin-left: 2px;
    border: 1px solid #e5ebef;
    border-radius: 999px;
    background: #f7fbff;
    box-shadow: 0 3px 8px rgba(5, 61, 110, 0.08);
  }

  .menu-toggle::before {
    display: none !important;
  }

  .menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 0;
    border-radius: 999px;
    background: var(--blue-deep);
    transform-origin: center;
    transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
  }

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

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

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

.footer-secondary-link {
  margin-left: 8px;
}

@media (max-width: 720px) {
  .footer-secondary-link {
    margin-left: 0;
  }
}

.member-page {
  min-height: 100vh;
  background: linear-gradient(180deg, #f7fbff 0, #fff8df 46%, #fff 100%);
}

.member-hero {
  padding: 62px 0 46px;
  background:
    linear-gradient(135deg, rgba(5, 61, 110, 0.96), rgba(0, 111, 189, 0.9), rgba(21, 168, 91, 0.76)),
    linear-gradient(90deg, rgba(255, 210, 31, 0.35), rgba(245, 130, 32, 0.24));
  color: #fff;
}

.member-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 42px;
  align-items: center;
}

.member-hero .auth-kicker {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.member-hero h1 {
  margin: 0 0 12px;
  font-size: 42px;
  line-height: 1.05;
}

.member-hero p {
  max-width: 640px;
  margin: 0;
  font-size: 16px;
  line-height: 1.58;
}

.member-id-card {
  padding: 26px;
  border-radius: 8px;
  background: #fff;
  color: var(--blue-deep);
  box-shadow: var(--shadow);
}

.member-id-card span,
.member-id-card small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.member-id-card strong {
  display: block;
  margin: 8px 0;
  font-size: 25px;
}

.member-dashboard {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: -28px;
}

.member-stat,
.member-card {
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.member-stat {
  min-height: 104px;
  padding: 22px 18px;
  border-top: 5px solid var(--orange);
}

.member-stat strong,
.member-stat span {
  display: block;
}

.member-stat strong {
  color: var(--blue-deep);
  font-size: 22px;
  line-height: 1.15;
}

.member-stat span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.member-content {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 24px;
  padding: 44px 0 92px;
}

.member-card {
  padding: 26px;
}

.member-card-wide {
  grid-column: span 2;
}

.member-card header {
  margin-bottom: 20px;
}

.member-card header span {
  display: block;
  margin-bottom: 5px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.member-card h2 {
  margin: 0;
  color: var(--blue-deep);
  font-size: 24px;
}

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

.member-form.single,
.preference-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.member-form-full {
  grid-column: span 2;
}

.member-form label,
.preference-list label {
  display: grid;
  gap: 7px;
  color: var(--blue-deep);
  font-size: 13px;
  font-weight: 800;
}

.preference-list label {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  color: #34404b;
  font-weight: 700;
}

.member-form input,
.member-form select,
.member-form textarea {
  width: 100%;
  min-height: 43px;
  border: 1px solid #c8d0d8;
  border-radius: 5px;
  padding: 10px 12px;
  color: var(--ink);
  background: #fff;
  font-size: 13px;
}

.member-form textarea {
  min-height: 112px;
  resize: vertical;
}

.member-form button,
.preference-list button {
  width: max-content;
  min-height: 38px;
  border: 0;
  border-radius: 999px;
  padding: 0 22px;
  background: linear-gradient(135deg, var(--red), var(--orange));
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.member-status {
  min-height: 0;
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.member-status.is-success {
  color: var(--green-dark);
}

.member-status.is-error {
  color: var(--red-dark);
}

.request-list {
  display: grid;
  gap: 14px;
}

.request-empty {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.request-item {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.3fr) auto;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border: 1px solid #e2e9ef;
  border-radius: 8px;
  background: #f8fbfd;
}

.request-item strong,
.request-item span,
.request-item em {
  display: block;
}

.request-item strong {
  color: var(--blue-deep);
  font-size: 14px;
}

.request-item span,
.request-item p,
.request-item em {
  color: var(--muted);
  font-size: 12px;
}

.request-item p {
  margin: 0;
  line-height: 1.45;
}

.request-item em {
  padding: 6px 10px;
  border-radius: 999px;
  background: #effbf4;
  color: var(--green-dark);
  font-style: normal;
  font-weight: 800;
}

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

.member-info-grid div {
  padding: 20px;
  border-radius: 8px;
  background: linear-gradient(180deg, #f7fbff, #fff);
  border: 1px solid #e2e9ef;
}

.member-info-grid strong {
  display: block;
  color: var(--blue-deep);
  font-size: 15px;
}

.member-info-grid p {
  margin: 9px 0 0;
  color: #485460;
  font-size: 13px;
  line-height: 1.5;
}

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

  .member-card-wide {
    grid-column: auto;
  }

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

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

@media (max-width: 720px) {
  .member-hero {
    padding: 40px 0 38px;
  }

  .member-hero h1 {
    font-size: 30px;
  }

  .member-dashboard,
  .member-form {
    grid-template-columns: 1fr;
  }

  .member-form-full {
    grid-column: auto;
  }

  .member-content {
    padding: 32px 0 70px;
  }

  .request-item {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .member-card,
  .member-id-card {
    padding: 20px;
  }

  .member-dashboard {
    gap: 12px;
  }

  .member-stat {
    min-height: 92px;
  }

  .member-form button,
  .preference-list button {
    width: 100%;
  }
}
