@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&family=Roboto:wght@100;300;400;500;700;900&family=Roboto+Condensed:wght@300;400;500&display=swap');

:root {
  --bg: #ffffff;
  --ink: #060800;
  --muted: #2e2f2b;
  --line: #d8ddd0;
  --lime: #f2f1a6;
  --lime-soft: #f2f1a6;
  --paper: #ffffff;
  --dark: #0c0b0b;
  --gray: #989996;
  --color-primary: #000000;
  --color-text: #333333;
  --color-text-light: #666666;
  --color-yellow: #d6da1e;
  --color-green-btn: #f2f1a6;
  --color-green-complete: #9cc760;
  --color-red-hover: #e40f3e;
  --color-white: #ffffff;
  --color-whatsapp: #e6e6e6;
  --font-barlow: 'Roboto', sans-serif;
  --font-bitter: 'Playfair Display', serif;
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Playfair Display', serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
}

.container {
  width: min(80vw, 1440px);
  max-width: none;
  margin: 0 auto;
  padding: 0;
}

main {
  width: min(80vw, 1440px);
  margin: 0 auto;
  padding: 0 0 4rem;
}

@media (max-width: 1024px) {
  .container,
  main {
    width: 88vw;
  }
}

@media (max-width: 768px) {
  .container,
  main {
    width: 92vw;
  }
}

h1, h2, h3 {
  letter-spacing: .01em;
  line-height: 1.02;
  margin: 0;
  color: var(--ink);
}

h1, h2 {
  font-family: 'Playfair Display', serif;
}

h3 {
  font-family: 'Roboto', sans-serif;
}

h1 { font-size: clamp(2.1rem, 6vw, 4.8rem); }
h2 { font-size: clamp(1.25rem, 3vw, 2.45rem); margin: 1.1rem 0 .65rem; font-weight: 700; }

.home-hero-text h2 {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.quote-landing .home-hero-text .hero-kicker {
  font-family: 'Roboto', sans-serif;
  font-size: 5.3px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.quote-landing .home-hero-text .hero-subtitle {
  font-size: 1.8em;
  line-height: 1.3;
}

.notebook-page .hero-subtitle {
  font-size: clamp(1.25rem, 3vw, 2.45rem);
  line-height: 1.2;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.paragraph-tecnico {
  font-size: 18px;
  line-height: 1.8;
}

.quote-landing .quote-columns {
  margin: 80px 0 0;
}

.quote-landing .quote-columns + .quote-columns {
  margin-top: 60px;
}

.quote-landing .home-cta-band {
  margin-top: 60px;
}

.quote-landing .quote-cta-gap {
  margin-top: 160px;
}

.quote-landing .quote-columns .section-title {
  font-size: clamp(44px, 4.2vw, 68px);
  line-height: 1.05;
  margin: 0 0 36px;
  color: #000000;
  margin-right: 20%;
}

.quote-landing .quote-columns .columns {
  display: grid;
  gap: 36px;
  align-items: start;
}

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

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

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

.quote-landing .quote-columns--two .section-title {
  margin-right: 0;
}

.nb-paper-options--grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 24px 0 36px;
}

.nb-paper-options--grid img {
  width: 100%;
  height: auto;
  object-fit: cover;
  max-width: 180px;
  margin: 0 auto;
  display: block;
}

.nb-paper-options--grid .paper-card,
.nb-paper-options--grid .print-card,
.nb-paper-options--grid .paper-item {
  width: 100%;
}

.nb-paper-options--grid .paper-item {
  text-align: center;
  padding: 0 12px;
}

.nb-paper-options--grid .paper-item strong {
  display: block;
  margin-top: 12px;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 400;
}

.nb-paper-options--grid .paper-item + .paper-item {
  border-left: 2px solid #1f1f1f;
}

.quote-landing .quote-columns .col-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  line-height: 1.15;
  margin: 0 0 10px;
  display: inline-block;
  border-bottom: 2px solid #000000;
  padding-bottom: 6px;
}

.quote-landing .quote-columns .col-item p {
  font-size: 16px;
  line-height: 1.55;
  margin: 0;
}

.quote-landing .quote-columns .col-step {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  margin-right: 6px;
}

@media (max-width: 1100px) {
  .quote-landing .quote-columns {
    margin-top: 60px;
  }
  .quote-landing .quote-columns .columns-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .quote-landing .quote-columns {
    margin-top: 45px;
  }
  .quote-landing .quote-columns .columns-3,
  .quote-landing .quote-columns .columns-4,
  .quote-landing .quote-columns .columns-2 {
    grid-template-columns: 1fr;
  }
  .quote-landing .quote-columns .section-title {
    font-size: clamp(32px, 8vw, 42px);
  }
}
h3 { font-size: clamp(1.05rem, 2vw, 1.4rem); margin: 0 0 .45rem; }

p { margin: 0 0 .95rem; }

a { color: var(--ink); text-underline-offset: 2px; }
a:hover { opacity: .85; }

ul, ol { margin: 0 0 1rem; padding-left: 1.15rem; }
li { margin: .35rem 0; }

img { max-width: 100%; height: auto; border-radius: 10px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  backdrop-filter: blur(5px);
  background: color-mix(in srgb, var(--bg) 88%, white 12%);
  border-bottom: 1px solid var(--line);
  padding: .7rem 0;
  margin-bottom: .9rem;
}

.site-header-inner {
  width: min(1140px, 92vw);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .75rem;
}

.site-brand {
  font-family: 'Roboto', sans-serif;
  font-weight: 800;
  font-size: 1.45rem;
  text-decoration: none;
  color: var(--dark);
  letter-spacing: .03em;
}

.site-nav {
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
}

.site-nav a {
  text-decoration: none;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #20211c;
}

.hero {
  background: linear-gradient(145deg, var(--lime) 0%, var(--lime-soft) 100%);
  border: 1px solid #cfd43c;
  border-radius: 22px;
  padding: clamp(1.15rem, 4vw, 2.8rem);
  box-shadow: 0 12px 30px rgba(23, 23, 20, .14);
  margin-bottom: 1.2rem;
}

.hero .kicker {
  display: inline-block;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .78rem;
  color: #434500;
  margin-bottom: .55rem;
}

.hero p { color: #1e2017; max-width: 68ch; }

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: .9rem;
}

.btn {
  display: inline-block;
  padding: .72rem 1.05rem;
  border-radius: 999px;
  text-decoration: none;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  letter-spacing: .03em;
  border: 1px solid #191a15;
}

.btn.primary {
  background: var(--dark);
  color: #fff;
}

.btn.secondary {
  background: #fff;
  color: var(--dark);
}

.band-dark {
  background: var(--dark);
  color: #f7f7f2;
  border-radius: 18px;
  padding: 1.05rem 1rem;
  margin: 1.15rem 0;
}

.band-dark h2, .band-dark h3 { color: var(--lime); }
.band-dark a { color: #fff; }

.grid {
  display: grid;
  gap: .95rem;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: .95rem;
}

.article {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: clamp(1rem, 2.5vw, 1.65rem);
}

.article h2, .article h3 { margin-top: 1rem; }

.meta, .original-url { color: var(--gray); font-size: .92rem; }

details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: .55rem .75rem;
  margin-bottom: .55rem;
}

summary {
  cursor: pointer;
  list-style: none;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 1.04rem;
}

summary::-webkit-details-marker { display: none; }

.index-list {
  columns: 2;
  column-gap: 1.5rem;
}

.index-list li { break-inside: avoid; }

@media (max-width: 820px) {
  .index-list { columns: 1; }
}

/* PDF-reference layout */
.ref-page {
  background: #ececec;
  color: #2a2a2a;
  font-family: 'Playfair Display', serif;
}

.ref-wrap {
  width: min(760px, 92vw);
  margin: 0 auto;
  padding: 2.1rem 0 4.4rem;
}

.ref-topline {
  font-size: 0.74rem;
  color: #6f6f6f;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.4rem;
}

.ref-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  margin: 1.1rem 0 .65rem;
}

.ref-mark {
  display: grid;
  grid-template-columns: repeat(4, 8px);
  gap: 4px;
  align-items: end;
}

.ref-mark span:nth-child(1) { height: 12px; background: #1e1e1e; }
.ref-mark span:nth-child(2) { height: 20px; background: #f2f1a6; }
.ref-mark span:nth-child(3) { height: 28px; background: #1e1e1e; }
.ref-mark span:nth-child(4) { height: 24px; background: #f2f1a6; }

.ref-brand { font-family: 'Roboto', sans-serif; letter-spacing: .06em; font-size: 1.2rem; font-weight: 600; }
.ref-brand small { display:block; letter-spacing:.13em; font-size:.62rem; color:#5f5f5f; }

.ref-burger {
  margin: .35rem auto 1.1rem;
  width: 20px;
  height: 2px;
  background: #444;
  box-shadow: 0 6px 0 #444, 0 12px 0 #444;
}

.ref-hero {
  text-align: center;
  padding: 1.2rem 0 1.5rem;
}

.ref-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 7vw, 3.8rem);
  font-weight: 300;
  color: #5f5f5f;
  line-height: 1.02;
}

.ref-hero h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.55rem, 3.8vw, 2.25rem);
  color: #7a7a7a;
  font-weight: 300;
  line-height: 1.08;
  margin: 1.15rem 0 .6rem;
}

.ref-hero p {
  width: min(540px, 100%);
  margin: 0 auto 1.2rem;
  color: #2c2c2c;
  font-size: 1.03rem;
}

.ref-cta {
  display: inline-block;
  text-decoration: none;
  color: #2a2a2a;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 1.02rem;
  text-transform: uppercase;
  letter-spacing: .03em;
  border-bottom: 2px solid #2a2a2a;
  padding-bottom: .14rem;
}

.ref-post {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  gap: 1rem;
  margin: 1.4rem 0;
  align-items: start;
}

.ref-post.reverse { grid-template-columns: 1fr 1.08fr; }
.ref-post.reverse .ref-media { order: -1; }

.ref-media {
  border: 1px solid #d0d0d0;
  background: #f7f7f7;
  border-radius: 4px;
  overflow: hidden;
}

.ref-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
}

.ref-copy h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  line-height: 1.04;
  font-weight: 400;
  color: #3c3c3c;
}

.ref-copy p { font-size: .95rem; color: #303030; margin-top: .6rem; }
.ref-more {
  margin-top: .75rem;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: .95rem;
}

.ref-steps {
  margin: 2rem 0 1rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .8rem;
  text-align: center;
  font-family: 'Roboto', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1f1f1f;
}

.ref-steps small { display:block; font-size:.8rem; text-transform:uppercase; letter-spacing:.06em; color:#666; font-weight:600; }

.ref-form {
  margin: 1rem 0 1.5rem;
  background: #f3f3f3;
  border: 1px solid #d5d5d5;
  border-radius: 10px;
  padding: .9rem;
}

.ref-field { margin-bottom: .55rem; }
.ref-field label { font-family: 'Roboto', sans-serif; font-weight: 600; font-size: .95rem; display:block; margin-bottom:.25rem; }
.ref-field input, .ref-field select {
  width: 100%;
  border: 1px solid #b9b9b9;
  background: #fff;
  border-radius: 4px;
  padding: .58rem .62rem;
  font: inherit;
}

.ref-final-cta {
  margin: 2.1rem 0 1rem;
  padding: 1.2rem;
  border: 1px solid #d5d5d5;
  border-radius: 10px;
  background: #f7f7f7;
}

.ref-final-cta h2 {
  margin: 0 0 .8rem;
  font-family: 'Roboto', sans-serif;
  font-size: clamp(2rem, 6vw, 3.2rem);
  line-height: .95;
  text-transform: uppercase;
  color: #2e2e2e;
}

@media (max-width: 840px) {
  .ref-post,
  .ref-post.reverse {
    grid-template-columns: 1fr;
  }
  .ref-post.reverse .ref-media { order: 0; }
  .ref-steps { grid-template-columns: 1fr; font-size: 2rem; }
}

/* Home replica from screenshots */
.home-page {
  background: #fff;
  color: #1a1a1a;
}

.home-shell {
  width: min(1270px, calc(100vw - 40px));
  max-width: 1270px;
  margin: 0 auto;
  padding: 0;
}

.home-top {
  border-top: 1px solid #242424;
  padding-top: 20px;
}

.home-nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
}

.home-top {
  border-top: 0;
  padding-top: 0;
}

.home-page main {
  padding-top: 0;
}

/* Main nav (from stylesdemilian.css, now centralized here) */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 18px 20px 24px 32px;
  background: #ffffff;
  border-bottom: 2px solid #000000;
}

.nav-left,
.nav-center,
.nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.nav-left .brand img {
  display: block;
  width: min(132px, 18vw);
  height: auto;
}

.nav-left .brand:hover,
.nav-left .brand:focus {
  opacity: 1;
}

.nav-center {
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 30px;
  padding-left: 10vw;
}

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

.nav .nav-toggle {
  display: none;
  justify-self: center;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,0.45);
  background: rgba(0,0,0,0.78);
  color: #ffffff;
  cursor: pointer;
  line-height: 1.1;
  font-size: 0.5rem;
}

.nav .nav-cta {
  padding: 9px 12px;
  border: 1px solid rgba(255,255,255,0.45);
  background: rgba(0,0,0,0.78);
  color: #ffffff;
  line-height: 1.1;
  white-space: nowrap;
  font-size: 0.7875rem;
  text-decoration: none;
}

.nav .nav-cta--print {
  margin-left: auto;
  background: #25d366;
  border-color: #25d366;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.nav .nav-cta--print::before {
  content: "";
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='%23ffffff' d='M16 3C9.383 3 4 8.383 4 15c0 2.653.857 5.105 2.308 7.095L5 29l7.157-1.866A11.94 11.94 0 0 0 16 27c6.617 0 12-5.383 12-12S22.617 3 16 3zm0 22.2c-1.78 0-3.513-.48-5.015-1.388l-.36-.216-4.243 1.107 1.132-4.132-.236-.397A9.18 9.18 0 0 1 6.8 15c0-5.07 4.13-9.2 9.2-9.2s9.2 4.13 9.2 9.2-4.13 9.2-9.2 9.2zm5.315-6.72c-.29-.145-1.714-.845-1.98-.94-.266-.097-.46-.145-.653.145-.193.29-.75.94-.92 1.133-.17.193-.338.217-.628.072-.29-.145-1.226-.452-2.336-1.44-.864-.77-1.447-1.72-1.616-2.01-.17-.29-.018-.447.127-.592.13-.13.29-.338.434-.507.145-.17.193-.29.29-.483.097-.193.048-.362-.024-.507-.072-.145-.653-1.575-.894-2.16-.235-.563-.474-.486-.653-.495l-.557-.01c-.193 0-.507.072-.773.362-.266.29-1.016.994-1.016 2.425s1.04 2.813 1.185 3.007c.145.193 2.047 3.126 4.958 4.384.693.3 1.234.48 1.656.614.696.22 1.33.19 1.83.116.558-.083 1.714-.7 1.955-1.377.242-.676.242-1.254.17-1.377-.072-.12-.265-.193-.555-.338z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.nav-center > a {
  font-size: 0.7875rem;
}

@media (min-width: 901px) {
  .nav a:hover,
  .nav a:focus-visible,
  .nav .nav-cta:hover,
  .nav .nav-cta:focus-visible {
    background: #000000;
    color: #ffffff;
    border-color: transparent;
    outline: none;
  }
}

.nav-left .brand:hover,
.nav-left .brand:focus-visible {
  background: transparent !important;
  color: inherit !important;
  border-color: transparent !important;
  opacity: 1 !important;
}

.nav .nav-cta.nav-cta--print:hover,
.nav .nav-cta.nav-cta--print:focus-visible {
  background: #9b9b9b;
  color: #ffffff;
  border-color: #9b9b9b;
}

.home-logo {
  display: flex;
  align-items: center;
  min-width: 236px;
  text-decoration: none;
}

.home-logo img {
  display: block;
  width: 215px;
  height: auto;
}

.home-logo .mark {
  width: 78px;
  height: 56px;
  border-right: 1px solid #9e9e9e;
  display: grid;
  grid-template-columns: repeat(4, 8px);
  gap: 5px;
  align-content: center;
  justify-content: center;
  padding-right: 11px;
}

.home-logo .mark span:nth-child(1){height:14px;background:#111}
.home-logo .mark span:nth-child(2){height:28px;background:#f2f1a6}
.home-logo .mark span:nth-child(3){height:36px;background:#111}
.home-logo .mark span:nth-child(4){height:31px;background:#f2f1a6}

.home-logo .brand {
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  letter-spacing: .08em;
  font-size: 1.82rem;
  line-height: .9;
}

.home-logo .brand small {
  display:block;
  font-size: .76rem;
  letter-spacing: .12em;
}

.home-menu {
  display: flex;
  flex-wrap: nowrap;
  gap: 4px;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.home-nav-cta {
  padding: 9px 12px;
  border: 1px solid rgba(255,255,255,0.45);
  background: rgba(0,0,0,0.78);
  color: #ffffff;
  line-height: 1.1;
  white-space: nowrap;
  font-size: 0.7875rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-family: 'Playfair Display', serif;
}

.home-nav-cta:hover,
.home-nav-cta:focus-visible {
  background: #ffffff;
  color: #000000;
  border-color: transparent;
  outline: none;
}

.home-menu a {
  text-decoration: none;
  font-family: 'Playfair Display', serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .02em;
  color: #000000;
  text-transform: uppercase;
  padding: 12px 12px;
}

.home-menu a.active {
  background: #f2f1a6;
  color: #000000;
}

.home-hero {
  padding: 72px 0 82px;
}

.home-hero h1 {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 96px;
  line-height: .88;
  margin-bottom: 56px;
  color: #000000;
}

.home-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 88px;
  align-items: start;
  width: 80vw;
  margin-left: calc(50% - 40vw);
  margin-right: calc(50% - 40vw);
}

.home-hero-text h1 {
  text-align: left;
  margin-bottom: 28px;
}

.home-hero-text p {
  font-size: 18px;
  line-height: 1.8;
}

.home-hero-blurb {
  margin-bottom: 28px;
}

.home-blurb-section {
  background: transparent;
  border-top: 1px solid #000000;
  margin-top: -100px;
  padding: 20px 0 40px;
}

.home-blurb-wrap {
  width: 80vw;
  margin: 0 auto;
}

.home-blurb-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 80px;
  align-items: start;
}

.home-blurb-columns.home-blurb-columns--single {
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
}

.home-hero-lead {
  font-size: 22px;
  font-weight: 400;
  line-height: 32px;
  margin: 0 0 22px;
  color: #000000;
}

.home-hero-lead--index {
  line-height: 1.8;
  margin-bottom: 42px;
}
.home-hero-lead--status {
  margin: 100px 0 50px;
  line-height: 1.8;
}

.home-blurb-divider {
  height: 1px;
  background: rgba(0,0,0,0.35);
  margin: 18px 0 24px;
}

.home-blurb-divider + .home-blurb-columns {
  margin-top: 50px;
}
.home-hero-blurb h3 {
  font-family: 'Playfair Display', serif;
  font-size: 60px;
  font-weight: 300;
  margin: 0 0 10px;
  color: #000000;
}

.home-hero-blurb p {
  font-size: 18px;
  line-height: 1.8;
  color: #000000;
  margin: 0 0 8px;
}

.home-hero-form .quote-form {
  max-width: 70%;
  width: 70%;
  margin: 0 auto;
}

.home-hero-form .form-steps-header {
  justify-content: center;
  width: 70%;
  margin-left: auto;
  margin-right: auto;
}

.home-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 38px;
  align-items: start;
}

.home-split h2 {
  font-family: 'Playfair Display', serif;
  font-size: 66px;
  font-weight: 300;
  line-height: .9;
  margin: 0 0 10px;
  color: #000000;
}

.home-split p {
  font-size: 22px;
  line-height: 1.42;
  color: #000000;
  margin: 0 0 16px;
}

.home-split .desc {
  max-width: 590px;
  font-size: 22px;
  line-height: 1.42;
}

.home-btn {
  display: inline-block;
  background: #f2f1a6;
  color: #000000;
  text-decoration: none;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: .02em;
  text-transform: uppercase;
  padding: 13px 28px;
  margin-top: 8px;
}

.home-btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  border: 1px solid #25d366;
  color: #ffffff;
  font-weight: 600;
}

.home-btn-whatsapp::before {
  content: "";
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='%23ffffff' d='M16 3C9.383 3 4 8.383 4 15c0 2.653.857 5.105 2.308 7.095L5 29l7.157-1.866A11.94 11.94 0 0 0 16 27c6.617 0 12-5.383 12-12S22.617 3 16 3zm0 22.2c-1.78 0-3.513-.48-5.015-1.388l-.36-.216-4.243 1.107 1.132-4.132-.236-.397A9.18 9.18 0 0 1 6.8 15c0-5.07 4.13-9.2 9.2-9.2s9.2 4.13 9.2 9.2-4.13 9.2-9.2 9.2zm5.315-6.72c-.29-.145-1.714-.845-1.98-.94-.266-.097-.46-.145-.653.145-.193.29-.75.94-.92 1.133-.17.193-.338.217-.628.072-.29-.145-1.226-.452-2.336-1.44-.864-.77-1.447-1.72-1.616-2.01-.17-.29-.018-.447.127-.592.13-.13.29-.338.434-.507.145-.17.193-.29.29-.483.097-.193.048-.362-.024-.507-.072-.145-.653-1.575-.894-2.16-.235-.563-.474-.486-.653-.495l-.557-.01c-.193 0-.507.072-.773.362-.266.29-1.016.994-1.016 2.425s1.04 2.813 1.185 3.007c.145.193 2.047 3.126 4.958 4.384.693.3 1.234.48 1.656.614.696.22 1.33.19 1.83.116.558-.083 1.714-.7 1.955-1.377.242-.676.242-1.254.17-1.377-.072-.12-.265-.193-.555-.338z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.home-btn-whatsapp:hover,
.home-btn-whatsapp:focus-visible {
  background: #9b9b9b;
  border-color: #9b9b9b;
  color: #ffffff;
}

.home-feature-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.52fr) minmax(0, 1fr);
  gap: 34px;
  margin: 92px 0 118px;
  align-items: start;
}

.home-feature-row h3 {
  font-family: 'Roboto', sans-serif;
  font-size: 56px;
  font-weight: 700;
  line-height: .95;
  margin: 0 0 16px;
}

.home-post-grid h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 400;
  line-height: .95;
  margin: 12px 0 12px;
}

.home-feature-row p,
.home-post-grid p {
  font-size: 18px;
  color: #000000;
  line-height: 1.45;
}

.mock-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 2px;
  background: linear-gradient(135deg, #f6f6f6, #cecece);
}

.mock-img.m-books {
  background: linear-gradient(135deg, #d9c9c1 0%, #e9e9e9 40%, #202329 100%);
}

.mock-img.m-offset {
  background: linear-gradient(145deg, #b1183f, #1b3c7b 55%, #101010);
}

.mock-img.m-paper {
  background: linear-gradient(170deg, #fefefe, #b6b6b6);
}

.mock-img.m-feed {
  background: linear-gradient(130deg, #535353, #f3f3f0);
}

.mock-img.m-stack {
  background: linear-gradient(130deg, #bdd2d7, #cabf9f);
}

.home-feature-row .mock-img {
  aspect-ratio: 1.33 / 1;
}

.home-feature-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.home-feature-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.home-link-more {
  color: #8f8f8f;
  text-transform: uppercase;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  border: 1px solid #000000;
  border-radius: 0;
  padding: 8px 12px;
  display: inline-block;
  margin-top: 20px;
}

.home-link-more:hover,
.home-link-more:focus-visible {
  color: #e0dd1f;
  background: #000000;
  outline: none;
}

.home-card-link {
  color: inherit;
  text-decoration: none;
  display: inline-block;
}

.home-quote-form {
  margin: 0 0 96px;
}

.home-quote-secondary--inline {
  margin: 40px 0 10px;
}

.home-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-bottom: 14px;
}

.home-steps .step {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #9d9d9d;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 22px;
  line-height: .9;
}

.home-steps .step::after {
  content: "";
  flex: 1;
  height: 2px;
  background: #cfd0cf;
  margin-top: 6px;
}

.home-steps .step span,
.home-steps .step strong {
  display: block;
}

.home-steps .step.is-active {
  color: #0d0d0d;
}

.home-steps .step.is-active span {
  color: #86bd45;
}

.home-form-wrap {
  margin: 0;
}

.home-form-step {
  border: 0;
  margin: 0;
  padding: 0;
  display: none;
}

.home-form-step.is-active {
  display: block;
}

.home-form-step label {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  line-height: 1.2;
  color: #777;
  margin: 18px 0 6px;
}

.home-form-step input,
.home-form-step select {
  width: 100%;
  height: 50px;
  border: 1px solid #8f959a;
  background: #f2f2f2;
  color: #888;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1;
  padding: 10px 14px;
}

.home-form-step input::placeholder {
  color: #a9a9a9;
}

.home-form-actions {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.home-form-actions button {
  min-width: 230px;
  height: 50px;
  border: 0;
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: none;
  cursor: pointer;
}

.home-form-actions .btn-lime {
  background: #badb69;
  color: #111;
}

.home-form-actions .btn-muted {
  background: #ece6e6;
  color: #b9b4b4;
}

.home-form-actions .btn-muted:disabled {
  cursor: default;
}

.home-post-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin: 0 0 132px;
}

.home-after-hero {
  background: transparent;
  padding: 0 0 40px;
}

.home-after-hero .home-post-grid {
  width: 80vw;
  margin: 0 auto 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-after-hero .home-post-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-after-hero .home-post-grid .card:last-child {
  margin-bottom: 0 !important;
}

.home-blurb-section .home-blurb-wrap {
  margin-top: 0 !important;
}

.home-blurb-section .home-hero-lead {
  margin-top: 0 !important;
}

.home-post-grid .card {
  border: 0;
  background: transparent;
  padding: 18px 18px 22px;
  border-radius: 14px;
  position: relative;
}

.home-post-grid .card > * {
  position: relative;
  z-index: 1;
}

.home-post-grid .card-hit {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
}

.home-post-grid .meta {
  font-size: 14px;
  color: #989996;
  margin: 8px 0 12px;
}


.home-post-grid .excerpt {
  font-size: 17px;
  line-height: 1.42;
  color: #000000;
  min-height: 170px;
}

.home-post-grid .mock-img {
  aspect-ratio: 1.6 / 1;
}

.home-card-image {
  width: 100%;
  aspect-ratio: 1.6 / 1;
  object-fit: cover;
  display: block;
}

.home-cta-band {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.25fr);
  gap: 30px;
  align-items: center;
  margin: 0;
  padding: 0 0 106px;
}

.home-cta-band h2 {
  font-size: 50px;
}

.home-quote-secondary {
  width: 80vw;
  margin: 0 auto 80px;
}

.home-quote-secondary .quote-form {
  max-width: 100%;
  width: 100%;
  margin: 0;
}

.home-quote-secondary .home-shell .quote-form,
.home-quote-secondary .quote-form {
  max-width: 70% !important;
  width: 70% !important;
  margin: 0 auto !important;
}

.home-quote-secondary .form-steps-header {
  width: 70% !important;
  justify-content: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.home-quote-secondary--inline {
  margin: 0 auto 96px;
}

.home-quote-secondary__intro {
  width: min(80vw, 860px);
  margin: 0 auto 34px;
}

.home-quote-secondary__intro h2 {
  font-size: clamp(36px, 4.2vw, 52px);
  margin-bottom: 12px;
}

.home-quote-secondary__intro p {
  font-size: 18px;
  line-height: 1.6;
  color: #3b3b34;
}

@media (max-width: 1024px) {
  .home-quote-secondary .home-shell .quote-form,
  .home-quote-secondary .quote-form {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
  }

  .home-quote-secondary .form-steps-header {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .home-quote-secondary__intro {
    width: 100%;
  }
}

.home-cta-band .mock-img {
  aspect-ratio: 1.45 / 1;
}

.home-cta-image {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
  display: block;
}


.home-cta-text {
  font-size: 18px;
  line-height: 1.6;
  color: #000000;
  margin: 0;
}

.home-footer {
  background: #f2f2f2;
  padding: 50px 0;
  color: #000000;
}

.home-footer .home-shell {
  display: block;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1.6fr;
  gap: 40px;
  align-items: start;
}

@media (min-width: 761px) {
  .footer-grid {
    display: grid !important;
    grid-template-columns: 1.1fr 0.9fr 1.6fr !important;
  }
}

.footer-col {
  padding: 16px;
}

.footer-col:nth-child(1),
.footer-col:nth-child(2) {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.footer-col h3 {
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  margin: 0 0 12px;
}

.footer-address,
.footer-phones {
  font-size: 16px;
  line-height: 1.5;
  color: #000000;
  margin: 12px 0;
}

.footer-phones a,
.footer-link,
.footer-links a {
  color: #000000;
  text-decoration: none;
}

.footer-links a {
  font-family: 'Roboto', sans-serif;
  font-variant-caps: all-small-caps;
  letter-spacing: 0.06em;
  line-height: 1.15;
}

.home-footer,
.home-footer .footer-col,
.home-footer .footer-col h3,
.home-footer .footer-address,
.home-footer .footer-phones,
.home-footer .footer-phones a,
.home-footer .footer-links a {
  color: #000000 !important;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin: 0;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.2);
}

.footer-links li:first-child {
  border-top: 1px solid rgba(0,0,0,0.2);
}

 .footer-col:last-child {
  justify-self: center;
}

@media (max-width: 760px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 1100px) {
  .home-nav { grid-template-columns: 1fr; align-items: start; }
  .home-nav-cta { justify-self: flex-start; }
  .home-menu { flex-wrap: wrap; white-space: normal; gap: 6px; }
  .home-menu a { font-size: 10px; padding: 8px 10px; }
  .home-hero h1 { font-size: 68px; }
  .home-hero-grid { grid-template-columns: 1fr; }
  .home-hero-text h1 { text-align: center; }
  .home-hero-form .form-steps-header { justify-content: center; }
  .home-hero-blurb h3 { font-size: 26px; }
  .home-split h2 { font-size: 44px; }
  .home-split p, .home-split .desc { font-size: 18px; }
  .home-feature-row { grid-template-columns: 1fr; gap: 20px; }
  .home-feature-row h3 { font-size: 42px; }
  .home-post-grid h3 { font-size: 28px; }
  .home-link-more { font-size: 16px; }
  .home-steps { gap: 20px; }
  .home-steps .step { font-size: 18px; }
  .home-post-grid { grid-template-columns: 1fr 1fr; }
  .home-cta-band { grid-template-columns: 1fr; }
    .home-blurb-columns { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 1024px) {
  .home-hero { padding-top: 36px; }
  .home-split { grid-template-columns: 1fr; gap: 20px; }
  .home-steps { grid-template-columns: 1fr; }
  .home-steps .step::after { display: none; }
  .home-form-actions { flex-direction: column; }
  .home-form-actions button { width: 100%; min-width: 0; }
  .home-post-grid { grid-template-columns: 1fr; }
  .home-menu a { padding: 8px 12px; }
  .home-hero h1 { font-size: 40px; text-align: left; }
  .home-split h2, .home-cta-band h2, .home-feature-row h3, .home-post-grid h3 { font-size: 28px; }
  .home-btn, .home-link-more { font-size: 16px; }
  .home-split p, .home-split .desc, .home-feature-row p, .home-post-grid p, .home-post-grid .excerpt { font-size: 16px; line-height: 1.5; }
  .home-hero-blurb h3 { font-size: 24px; }
  .home-hero-blurb p { font-size: 16px; }
}

@media (min-width: 761px) {
  }

@media (max-width: 900px) {
  .nav {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    justify-items: stretch;
    align-items: center;
    padding: 30px 40px 0;
    gap: 10px;
    height: 10vh;
    align-content: center;
  }

  .nav-left {
    grid-column: 1 / 2;
    align-self: center;
  }

  .nav-right {
    grid-column: 1 / -1;
    grid-row: 3;
    justify-content: flex-start;
  }

  .nav-center {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: center;
    padding-left: 0;
    gap: 10px;
  }

  .nav .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    order: 0;
    min-height: 42px;
    padding: 0 14px;
    border: none;
    align-self: center;
  }

  .nav-center > a {
    display: none;
    order: 1;
    font-size: 0.92rem;
    line-height: 1.2;
    width: calc(100% + 40px);
    margin-left: -20px;
    text-align: left;
    margin: 0;
  }

  .nav.nav-open .nav-center > a {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: #000000;
    min-height: 44px;
    padding: 0 20px;
    text-align: center;
    border: none;
    border-bottom: 1px solid rgba(0,0,0,0.2);
    letter-spacing: 0;
    font-variant-caps: all-small-caps;
    text-transform: uppercase;
    text-decoration: none;
  }

  .nav.nav-open {
    background: #ffffff;
    height: auto;
    align-content: start;
    padding-bottom: 20px;
    box-shadow: 0 12px 24px rgba(0,0,0,0.12);
  }

  .nav.nav-open .brand {
    display: inline-flex;
  }

  .nav .nav-cta {
    display: none;
    order: 2;
    flex: 1 1 calc(50% - 6px);
    text-align: center;
    margin-top: 6px;
    font-size: 0.84rem;
    min-height: 42px;
    padding: 0 10px;
  }

  .nav.nav-open .nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav .nav-toggle:hover,
  .nav .nav-toggle:focus-visible,
  .nav.nav-open .nav-center > a:hover,
  .nav.nav-open .nav-center > a:focus-visible,
  .nav.nav-open .nav-cta:hover,
  .nav.nav-open .nav-cta:focus-visible {
    background: #000000;
    color: #ffffff;
    border-color: transparent;
  }
}

/* Cotizar revista o catalogo */
.quote-page {
  background: #fff;
  color: #1a1a1a;
}

.quote-shell {
  width: min(1240px, calc(100vw - 48px));
  margin: 0 auto;
  padding: 0 0 120px;
}

.quote-hero {
  display: grid;
  grid-template-columns: 1fr 1.18fr;
  gap: 46px;
  align-items: start;
  margin-top: 82px;
  margin-bottom: 108px;
}

.quote-hero-copy h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 72px;
  line-height: .95;
  text-transform: uppercase;
  margin: 0 0 26px;
}

.quote-hero-copy p {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  line-height: 1.15;
  margin: 0 0 34px;
}

.quote-hero .home-btn,
.quote-editorial .home-btn,
.quote-costs-intro .home-btn {
  box-shadow: 0 6px 16px rgba(0, 0, 0, .12);
}

.quote-hero-art {
  position: relative;
  height: 430px;
  overflow: hidden;
}

.quote-hero-art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.quote-hero-art .card {
  position: absolute;
  width: 56%;
  aspect-ratio: .78 / 1;
  border-radius: 2px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, .15);
}

.quote-hero-art .card.a {
  right: 27%;
  top: 3%;
  transform: rotate(-10deg);
  background: linear-gradient(160deg, #f0f0f2, #bebec2);
}

.quote-hero-art .card.b {
  right: 8%;
  top: 14%;
  transform: rotate(16deg);
  background: linear-gradient(150deg, #84bad2, #0f4e78);
}

.quote-hero-art .card.c {
  left: 6%;
  bottom: 0;
  transform: rotate(-2deg);
  width: 64%;
  background: linear-gradient(150deg, #92d9e0, #dad2c2);
}

.quote-editorial {
  display: grid;
  grid-template-columns: .85fr 1.25fr;
  gap: 58px;
  align-items: start;
  margin-bottom: 130px;
}

.quote-editorial-image {
  min-height: 840px;
  background: #1f1f1f;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.quote-editorial-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
}

.quote-editorial-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .62);
  pointer-events: none;
}

.quote-editorial-image .overlay-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 0 14%;
  color: #ececec;
  font-family: 'Roboto', sans-serif;
  font-size: 22px;
  line-height: 1.04;
  font-weight: 600;
  text-align: center;
  z-index: 1;
}

.quote-editorial-copy h2,
.quote-costs-intro h2,
.quote-economicos h2,
.quote-accordion h2 {
  font-family: 'Playfair Display', serif;
  font-size: 62px;
  line-height: .95;
  font-weight: 700;
  margin: 0 0 34px;
}

.quote-editorial-copy p,
.quote-costs-grid p,
.quote-economicos p,
.quote-accordion p,
.quote-end p {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  line-height: 1.4;
  color: #252525;
  margin: 0 0 18px;
}

.quote-costs-intro {
  margin-bottom: 118px;
}

.quote-costs-intro h2 {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  margin-bottom: 48px;
}

.quote-costs-intro .line {
  display: inline-block;
  width: 1px;
  height: 206px;
  background: #9c9c9c;
  margin-top: 8px;
}

.quote-costs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 86px;
}

.quote-economicos {
  margin-bottom: 118px;
}

.quote-economicos h2 {
  margin-bottom: 42px;
}

.quote-economicos a {
  color: #f2f1a6;
  text-decoration: none;
}

.quote-economicos small {
  color: #767676;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  display: inline-block;
  margin-top: 40px;
}

.quote-accordion {
  margin-bottom: 98px;
}

.quote-accordion details {
  border: 0;
  border-bottom: 1px solid #d2d6da;
  border-radius: 0;
  background: transparent;
  padding: 0;
  margin: 0;
}

.quote-accordion summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 10px 12px;
  cursor: pointer;
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: #1f1f1f;
}

.quote-accordion summary::after {
  content: '+';
  font-family: 'Roboto', sans-serif;
  font-size: 24px;
  line-height: 1;
  color: #1f1f1f;
  transition: color .22s ease;
}

.quote-accordion summary span {
  transition: color .22s ease;
}

.quote-accordion details[open] summary::after {
  content: '-';
  color: #d94a3a;
}

.quote-accordion details[open] summary {
  color: #d94a3a;
}

.quote-accordion .acc-panel {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows .28s ease, opacity .22s ease;
}

.quote-accordion details[open] .acc-panel {
  grid-template-rows: 1fr;
  opacity: 1;
}

.quote-accordion details p {
  overflow: hidden;
  border: 1px solid #ced2d7;
  margin: 0 0 12px;
  padding: 10px 14px;
  font-size: 14px;
  line-height: 1.45;
}

.quote-accordion details[open] p {
  border-color: #d94a3a;
}

.quote-landing #faq {
  margin-bottom: 98px;
}

.quote-landing #faq h2 {
  font-family: 'Playfair Display', serif;
  font-size: 62px;
  line-height: .95;
  font-weight: 700;
  margin: 0 0 34px;
}

.quote-landing #faq h3 {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 10px 12px;
  cursor: default;
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: #1f1f1f;
  border-bottom: 1px solid #d2d6da;
  margin: 0 0 12px;
}

.quote-landing #faq h3::after {
  content: '+';
  font-family: 'Roboto', sans-serif;
  font-size: 24px;
  line-height: 1;
  color: #1f1f1f;
}

.quote-landing #faq p {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  line-height: 1.4;
  color: #252525;
  margin: 0 0 12px;
  border: 1px solid #ced2d7;
  padding: 10px 14px;
}

.quote-form-block {
  margin: 0 0 92px;
}

.quote-form-block .home-steps .step.is-active strong {
  color: #111;
}

.quote-form-block .home-form-step label {
  font-size: 15px;
}

.quote-form-block .home-form-step input,
.quote-form-block .home-form-step select {
  height: 52px;
  font-size: 16px;
}

.quote-form-block .home-form-actions button {
  height: 52px;
}

.quote-end {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.quote-end h3 {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  line-height: .92;
  font-style: italic;
  font-weight: 300;
  margin: 0;
}

@media (max-width: 1100px) {
  .quote-shell { width: min(1240px, calc(100vw - 32px)); }
  .quote-hero { margin-top: 40px; }
  .quote-hero,
  .quote-editorial,
  .quote-costs-grid,
  .quote-end { grid-template-columns: 1fr; }
  .quote-hero-copy h1 { font-size: 56px; }
  .quote-hero-copy p { font-size: 34px; }
  .quote-editorial-copy h2, .quote-costs-intro h2, .quote-economicos h2, .quote-accordion h2, .quote-landing #faq h2 { font-size: 48px; }
  .quote-editorial-copy p, .quote-costs-grid p, .quote-economicos p, .quote-accordion p, .quote-end p, .quote-landing #faq p { font-size: 15px; }
  .quote-accordion summary, .quote-landing #faq h3 { font-size: 34px; }
  .quote-editorial-image { min-height: 460px; }
  .quote-editorial-image .overlay-text { font-size: 18px; padding: 0 10%; }
  .quote-form-block .home-form-step label { font-size: 15px; }
  .quote-form-block .home-form-step input, .quote-form-block .home-form-step select { font-size: 16px; height: 52px; }
}

/* Cotizar impresion de cuadernos */
.notebook-page {
  background: #fff;
  color: #181818;
}

.notebook-shell {
  width: 80vw;
  margin: 0 auto;
  padding: 0 0 148px;
  background: transparent;
}


.nb-hero {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 42px;
  align-items: start;
  margin-top: 94px;
  margin-bottom: 122px;
}

.nb-hero-copy h1,
.nb-size-row h2,
.nb-paper-row h2,
.nb-print-row h2,
.nb-text-blocks h2,
.nb-binding-title h2,
.nb-form-intro h2 {
  font-family: 'Playfair Display', serif;
  font-size: 62px;
  line-height: .95;
  font-weight: 700;
  margin: 0 0 24px;
}

.nb-hero-copy p,
.nb-paper-row p,
.nb-size-row p,
.nb-text-blocks p,
.nb-form-intro p {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  line-height: 1.45;
  color: #2b2b2b;
  margin: 0 0 18px;
}

.nb-hero-art {
  position: relative;
  height: 420px;
}

.nb-hero-art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.notebook-page .nb-hero-art.home-hero-form {
  height: auto;
}

.notebook-page .home-hero-form .quote-form {
  max-width: 70%;
  width: 70%;
  margin: 0 auto;
}

.notebook-page .home-hero-form .form-steps-header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 35px;
}

.notebook-page .home-hero-form .form-step-indicator {
  text-align: center;
  padding: 0 30px;
}

.notebook-page .home-hero-form .step-label {
  display: block;
  font-family: 'Roboto Condensed', 'Roboto', sans-serif;
  font-size: 22px;
  font-weight: 300;
  color: var(--form-color-gray-inactive);
}

.notebook-page .home-hero-form .step-num {
  display: block;
  font-family: 'Roboto Condensed', 'Roboto', sans-serif;
  font-size: 40px;
  font-weight: 300;
  color: var(--form-color-gray-inactive);
}

.notebook-page .home-hero-form .form-step-indicator.active .step-label,
.notebook-page .home-hero-form .form-step-indicator.active .step-num {
  color: #060800;
}

.notebook-page .home-hero-form .form-step-indicator.completed .step-num {
  color: var(--form-color-green-complete);
}

.notebook-page .home-hero-form .form-step-line {
  flex: 1;
  height: 1px;
  background: #ddd;
  max-width: 69px;
}

.nb-hero-art .book {
  position: absolute;
  border-radius: 2px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, .16);
}

.nb-hero-art .b1 {
  width: 68%;
  aspect-ratio: 1.2 / .72;
  right: 12%;
  bottom: 0;
  transform: rotate(-22deg);
  background: linear-gradient(150deg, #17345d, #0d1930);
}

.nb-hero-art .b2 {
  width: 64%;
  aspect-ratio: 1.2 / .72;
  right: 20%;
  top: 30%;
  transform: rotate(8deg);
  background: linear-gradient(150deg, #6e67a4, #88d8f0);
}

.nb-hero-art .b3 {
  width: 61%;
  aspect-ratio: 1.2 / .72;
  right: 26%;
  top: 9%;
  transform: rotate(19deg);
  background: linear-gradient(150deg, #f0a860, #f9ca7f);
}

.nb-size-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 30px;
  align-items: start;
  margin-bottom: 132px;
}

.nb-size-item {
  text-align: center;
}

.nb-size-item .icon {
  width: 42px;
  height: 52px;
  margin: 0 auto 12px;
  border: 4px solid #111;
  border-radius: 5px;
  position: relative;
  background: #fff;
  overflow: hidden;
}

.nb-size-item .icon::before,
.nb-size-item .icon::after {
  content: '';
  position: absolute;
}

.nb-size-item .icon::before {
  top: 0;
  right: 0;
  width: 16px;
  height: 16px;
  background: #fff;
  border-left: 4px solid #111;
  border-bottom: 4px solid #111;
  border-radius: 0 0 0 4px;
}

.nb-size-item .icon::after {
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-top: 16px solid #f2f2f2;
  border-left: 16px solid transparent;
}

.nb-size-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  line-height: 1.15;
  margin: 0 0 8px;
}

.nb-size-item p {
  color: #808080;
}

.nb-paper-row {
  display: grid;
  grid-template-columns: 1.2fr .9fr;
  gap: 44px;
  align-items: start;
  margin-bottom: 126px;
}

.nb-paper-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  justify-items: center;
  align-items: start;
}

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

.paper-card {
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.paper-card strong,
.print-card strong {
  display: block;
  font-family: 'Roboto', sans-serif;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 1.1;
  color: #272727;
  margin-top: 8px;
}

.paper-card img {
  display: block;
  width: 86px;
  height: 52px;
  margin: 0 auto;
  border-radius: 2px;
  object-fit: contain;
  background: #fff;
  box-shadow: none;
}

.paper {
  display: block;
  width: 86px;
  height: 52px;
  margin: 0 auto;
  border-radius: 2px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, .12);
}

.paper.p1 { background: linear-gradient(150deg, #f0f0f0, #cbcbcb); }
.paper.p2 { background: linear-gradient(150deg, #f2f0dd, #d7d19f); }

.nb-print-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 44px;
  align-items: start;
  margin-bottom: 136px;
}

.nb-print-options {
  display: grid;
  gap: 34px;
}

.print-card {
  display: grid;
  grid-template-columns: .7fr .9fr;
  gap: 16px;
  align-items: center;
}

.print-sample {
  display: block;
  width: 100%;
  max-width: 212px;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
  border: 1px solid #ddd;
}

.nb-text-blocks {
  margin-bottom: 132px;
}

.nb-text-blocks h3 {
  font-family: 'Playfair Display', serif;
  font-size: 47px;
  line-height: 1.05;
  font-weight: 700;
  margin: 40px 0 14px;
}

.nb-text-blocks p {
  margin-bottom: 28px;
}

.nb-binding-title {
  text-align: center;
  margin: 24px 0 118px;
}

.nb-form-intro {
  margin-bottom: 124px;
}

.nb-form-intro p {
  max-width: 980px;
}

.nb-form-block {
  margin-bottom: 56px;
}

.nb-form-block .home-steps {
  margin-bottom: 24px;
}

.nb-form-block .home-form-actions .btn-muted {
  display: none;
}

@media (max-width: 1100px) {
  .notebook-shell { width: min(1240px, calc(100vw - 32px)); }
  .nb-hero { margin-top: 48px; }
  .nb-hero,
  .nb-size-row,
  .nb-paper-row,
  .nb-print-row { grid-template-columns: 1fr; }
  .nb-hero-copy h1, .nb-size-row h2, .nb-paper-row h2, .nb-print-row h2, .nb-text-blocks h2, .nb-binding-title h2, .nb-form-intro h2 { font-size: 48px; }
  .nb-text-blocks h3 { font-size: 34px; }
  .nb-paper-options { grid-template-columns: 1fr 1fr; }
  .nb-paper-options.nb-paper-options--grid { grid-template-columns: 1fr; }
}

/* Cotizar agenda personalizada */
.agenda-page {
  background: #fff;
  color: #212121;
}

.agenda-shell {
  width: min(1240px, calc(100vw - 48px));
  margin: 0 auto;
  padding: 0 0 138px;
}

.ag-hero,
.ag-intro,
.ag-story-top,
.ag-story-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: start;
}

.ag-hero { margin-top: 96px; margin-bottom: 116px; }
.ag-intro { margin-bottom: 84px; }
.ag-story-top { margin-bottom: 82px; }
.ag-story-bottom { margin: 0 0 106px; }

.ag-hero-copy h1 {
  font-family: 'Playfair Display', serif;
  color: #ff2a63;
  font-size: 58px;
  line-height: .94;
  margin: 0 0 26px;
  font-weight: 400;
  text-transform: none;
}

.ag-hero-copy h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 400;
  margin: 0 0 18px;
}

.ag-eyebrow {
  font-family: 'Roboto', sans-serif;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
  color: #000000;
  margin: 0 0 12px;
}

.ag-hero-copy p,
.ag-intro p,
.ag-story-top p,
.ag-cost-text p,
.ag-story-mid p,
.ag-story-bottom p,
.ag-points p,
.ag-form-intro p {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  line-height: 1.45;
  margin: 0 0 14px;
}

.ag-hero-art {
  position: relative;
  height: 300px;
}

.ag-hero-art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.agenda-page .ag-hero-art.home-hero-form {
  height: auto;
}

.ag-hero-art .agenda {
  position: absolute;
  border-radius: 6px;
  box-shadow: 0 14px 22px rgba(0, 0, 0, .2);
  background: linear-gradient(150deg, #121820, #06090f);
}

.ag-hero-art .a1 {
  width: 180px;
  height: 280px;
  right: 36%;
  top: 6px;
  transform: rotate(-10deg);
}

.ag-hero-art .a2 {
  width: 180px;
  height: 280px;
  right: 24%;
  top: 20px;
  transform: rotate(8deg);
}

.ag-intro h2,
.ag-cost-text h2,
.ag-story-mid h2,
.ag-form-intro h2 {
  font-family: 'Playfair Display', serif;
  font-size: 50px;
  line-height: .96;
  font-weight: 400;
  margin: 0 0 20px;
}

.ag-intro aside,
.ag-cost-text aside {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 120px;
}

.ag-intro h2 strong,
.ag-story-mid h4 strong,
.ag-points h2 strong {
  font-weight: 700;
}

.ag-btn {
  display: inline-block;
  margin-top: 22px;
  background: #ff1f5e;
  color: #fff;
  text-decoration: none;
  font-family: 'Roboto', sans-serif;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .02em;
  padding: 11px 24px;
  box-shadow: 0 8px 14px rgba(0, 0, 0, .18);
}

.ag-btn--ghost {
  background: transparent;
  color: #ff1f5e;
  border: 1px solid #ff1f5e;
  box-shadow: none;
}

.ag-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.ag-cta-group .ag-btn {
  margin-top: 0;
}

.ag-story-top h3,
.ag-cost-text h3,
.ag-story-bottom h3 {
  font-family: 'Playfair Display', serif;
  color: #ff6a8e;
  font-size: 50px;
  line-height: .95;
  font-weight: 400;
  margin: 0 0 16px;
}

.ag-photo {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

.ag-photo.p1 {
  min-height: 420px;
}

.ag-cost-text {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 46px;
  align-items: start;
  margin-bottom: 96px;
}

.ag-cost-text h3 {
  margin-top: 24px;
}

.ag-story-mid {
  margin-bottom: 68px;
}

.argumento-europa-mexico {
  border-top: 1px solid rgba(0,0,0,.35);
  border-bottom: 1px solid rgba(0,0,0,.35);
  padding: 28px 0;
  margin-top: 50px;
}

.volumen-costos {
  border-top: 1px solid rgba(0,0,0,.35);
  border-bottom: 1px solid rgba(0,0,0,.35);
  padding: 28px 0;
  margin-top: 50px;
}

.argumento-comercial {
  border-top: 1px solid rgba(0,0,0,.35);
  border-bottom: 1px solid rgba(0,0,0,.35);
  padding: 28px 0;
  margin-top: 50px;
}
.cuatro-columnas {
  margin-bottom: 50px;
}

.ag-story-mid h4 {
  font-family: 'Playfair Display', serif;
  font-size: 51px;
  line-height: .95;
  font-weight: 400;
  margin: 28px 0 14px;
}

.ag-story-bottom .ag-photo.p2 {
  min-height: 650px;
}

.ag-points {
  margin-bottom: 112px;
}

.ag-points h2 {
  font-family: 'Playfair Display', serif;
  font-size: 58px;
  line-height: .92;
  font-weight: 400;
  margin: 0 0 30px;
}

.ag-points-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px 46px;
}

.ag-points-grid article {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 12px;
}

.ag-points-grid .n {
  font-family: 'Roboto', sans-serif;
  color: #ff1f5e;
  font-size: 52px;
  font-weight: 700;
  line-height: 1;
}

.ag-points-grid h4 {
  font-family: 'Roboto', sans-serif;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 1.1;
  margin: 3px 0 8px;
}

.ag-points-grid p {
  grid-column: 2;
}

.ag-banner {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  height: 360px;
  overflow: hidden;
  margin-bottom: 112px;
}

.ag-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ag-form-intro {
  margin-bottom: 102px;
}

.ag-form {
  margin-bottom: 34px;
}

.ag-form .home-form-actions .btn-muted {
  display: none;
}

.ag-form .home-steps .step.is-active strong {
  color: #86bd45;
}

.ag-form .home-steps .step.is-active {
  color: #86bd45;
}

@media (max-width: 1100px) {
  .agenda-shell { width: min(1240px, calc(100vw - 32px)); }
  .ag-hero { margin-top: 52px; }
  .ag-hero, .ag-intro, .ag-story-top, .ag-cost-text, .ag-story-bottom { grid-template-columns: 1fr; }
  .ag-points-grid { grid-template-columns: 1fr; }
  .ag-hero-copy h1 { font-size: 44px; }
  .ag-intro h2, .ag-cost-text h2, .ag-story-mid h2, .ag-form-intro h2 { font-size: 40px; }
  .ag-story-top h3, .ag-cost-text h3, .ag-story-bottom h3, .ag-story-mid h4, .ag-points h2 { font-size: 38px; }
}

/* Entry: impresion de cuadernos y libretas */
.entry-page {
  background: #fff;
  color: #1f1f1f;
}

.entry-shell {
  width: min(1240px, calc(100vw - 36px));
  margin: 0 auto;
  padding-bottom: 80px;
}

.entry-nav {
  padding: 14px 0;
  margin-bottom: 0;
}

.entry-hero {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  height: 380px;
  overflow: hidden;
  background: #dfdfdf;
  margin-bottom: 66px;
}

.entry-hero img {
  width: 100%;
  height: 100%;
  margin: 0;
  display: block;
  object-fit: cover;
  object-position: center;
}

.entry-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 346px;
  gap: 42px;
  align-items: start;
}

.entry-layout.entry-layout-single {
  grid-template-columns: minmax(0, 1fr);
}

.entry-content {
  font-family: 'Playfair Display', serif;
  max-width: 780px;
}

.entry-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 62px;
  line-height: .98;
  font-weight: 400;
  margin: 0 0 52px;
}

.entry-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 50px;
  line-height: 1.02;
  margin: 54px 0 16px;
}

.entry-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  line-height: 1;
  margin: 42px 0 14px;
  font-weight: 700;
}

.entry-content p,
.entry-content li {
  font-size: 16px;
  line-height: 1.56;
  margin: 0 0 18px;
}

.entry-content ul,
.entry-content ol {
  margin: 0 0 24px 28px;
}

.entry-content a {
  color: #d95a62;
  text-decoration: none;
}

.entry-content figure {
  margin: 32px 0 22px;
}

.entry-content figure img {
  width: 100%;
  max-width: 740px;
  height: auto;
  border-radius: 0;
}

.entry-content blockquote {
  margin: 20px 0 30px;
  font-size: 48px;
  line-height: 1.22;
  font-style: italic;
  font-weight: 700;
}

.entry-content figcaption {
  font-size: 12px;
  color: #5f5f5f;
  font-style: italic;
  margin-top: 9px;
}

.entry-sidebar {
  position: sticky;
  top: 86px;
}

.entry-quote-box {
  border: 1px solid #d9d9d9;
  background: #efefef;
  padding: 0 16px 18px;
}

.entry-quote-box h3 {
  margin: 0 -16px 12px;
  padding: 11px 16px;
  background: #f2f1a6;
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 400;
}

.entry-quote-box label {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 12px;
  color: #777;
  text-transform: uppercase;
  margin: 10px 0;
}

.entry-quote-box input,
.entry-quote-box select {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #8f8f8f;
  background: #e8e8e8;
  font-size: 13px;
  font-family: 'Roboto', sans-serif;
  padding: 8px 10px;
  color: #333;
}

.entry-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.entry-quote-box button {
  margin-top: 12px;
  background: #f2f1a6;
  border: 0;
  font-family: 'Roboto', sans-serif;
  font-size: 43px;
  line-height: .9;
  padding: 9px 8px 8px;
  width: 144px;
  display: block;
  cursor: pointer;
}

@media (max-width: 1100px) {
  .entry-hero {
    height: 260px;
    margin-bottom: 38px;
  }
  .entry-layout {
    grid-template-columns: 1fr;
  }
  .entry-content {
    max-width: 100%;
    margin: 0 auto;
  }
  .entry-content h1 {
    font-size: 52px;
  }
  .entry-content h2 {
    font-size: 43px;
  }
  .entry-content h3 {
    font-size: 36px;
  }
  .entry-content p,
  .entry-content li {
    font-size: 19px;
  }
  .entry-content figcaption {
    font-size: 14px;
  }
  .entry-content blockquote {
    font-size: 30px;
  }
  .entry-sidebar {
    position: static;
    display: none;
  }

  .entry-quote-box button {
    width: 100%;
    font-size: 30px;
    line-height: 1;
  }
}

/* Home quote form from milian repo */
.home-shell {
  --form-color-primary: #000000;
  --form-color-text: #333333;
  --form-color-text-light: #666666;
  --form-color-yellow: #e6e6e6;
  --form-color-green-btn: #f2f1a6;
  --form-color-green-complete: #9CC760;
  --form-color-red-hover: #E40F3E;
  --form-color-white: #ffffff;
  --form-color-bg-input: #e6e6e6;
  --form-color-gray-inactive: #989996;
  --form-color-whatsapp: #e6e6e6;
}

.home-shell .container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.home-shell .section {
  padding: 50px 0;
}

.home-shell .section-form {
  padding: 68px 0 86px;
  margin: 0;
}

.home-shell .form-steps-header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 35px;
}

.home-shell .form-step-indicator {
  text-align: center;
  padding: 0 30px;
}

.home-shell .step-label {
  display: block;
  font-family: 'Roboto Condensed', 'Roboto', sans-serif;
  font-size: 22px;
  font-weight: 300;
  color: var(--form-color-gray-inactive);
}

.home-shell .step-num {
  display: block;
  font-family: 'Roboto Condensed', 'Roboto', sans-serif;
  font-size: 40px;
  font-weight: 300;
  color: var(--form-color-gray-inactive);
}

.home-shell .form-step-indicator.active .step-label,
.home-shell .form-step-indicator.active .step-num {
  color: #060800;
}

.home-shell .form-step-indicator.completed .step-num {
  color: var(--form-color-green-complete);
}

.home-shell .form-step-line {
  flex: 1;
  height: 1px;
  background: #ddd;
  max-width: 69px;
}

.home-shell .quote-form {
  max-width: 750px;
  margin: 4% auto 10%;
}

.home-shell .form-panel {
  display: none;
}

.home-shell .form-panel.active {
  display: block;
}

.home-shell .form-group {
  margin-bottom: 38px;
}

.home-shell .form-group label {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--form-color-primary);
  margin-bottom: 4px;
}

.home-shell .form-group input,
.home-shell .form-group select,
.home-shell .form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: 'Roboto', sans-serif;
  font-size: 19px;
  color: var(--form-color-text);
  background: var(--form-color-bg-input);
  border: none;
  border-radius: 0;
  transition: border-color .3s;
}

.home-shell .phone-input-wrapper .country-code-select {
  width: auto;
  max-width: 105px;
  font-size: 15px;
  padding: 14px 8px;
}

.home-shell .phone-input-wrapper input[type="tel"] {
  flex: 1;
  min-width: 0;
  width: auto;
}

/* Safari form control normalization */
.home-shell .form-group select {
  -webkit-appearance: none;
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #111 50%),
    linear-gradient(135deg, #111 50%, transparent 50%),
    linear-gradient(to right, transparent, transparent);
  background-position:
    calc(100% - 20px) 50%,
    calc(100% - 15px) 50%,
    100% 0;
  background-size: 5px 5px, 5px 5px, 2.5em 2.5em;
  background-repeat: no-repeat;
  padding-right: 42px;
}

.home-shell .form-group select::-ms-expand {
  display: none;
}

.home-shell .form-group input::placeholder,
.home-shell .form-group textarea::placeholder {
  color: #999;
}

.home-shell .form-group input:focus,
.home-shell .form-group select:focus,
.home-shell .form-group textarea:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--form-color-yellow);
}

.home-shell .btn {
  display: inline-block;
  padding: 14px 30px;
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all .3s;
  text-align: center;
}

.home-shell .btn-continue {
  background: var(--form-color-green-btn);
  color: #0c0b0b;
  width: 100%;
  padding: 16px;
  font-family: 'Roboto', sans-serif;
  font-size: 24px;
}

.home-shell .btn-continue:hover {
  background: #030000;
  color: #ffffff;
}

.home-shell .btn-back {
  background: #f7f1f1;
  color: #cfc9c9;
  width: 100%;
  padding: 16px;
  font-family: 'Roboto', sans-serif;
  font-size: 24px;
}

.home-shell .btn-back:hover {
  background: #e0e0e0;
  color: var(--form-color-text);
}

.home-shell .form-buttons {
  display: flex;
  gap: 15px;
}

.home-shell .form-buttons .btn {
  flex: 1;
}

.home-shell .form-group .input-error {
  border-color: #e74c3c;
  box-shadow: 0 0 0 2px rgba(231, 76, 60, .2);
}

.home-shell .form-group .field-error {
  color: #e74c3c;
  font-size: 13px;
  font-family: 'Playfair Display', serif;
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.home-shell .form-group .field-error::before {
  content: "⚠";
}

@media (max-width: 960px) {
  .home-shell .form-steps-header {
    flex-wrap: wrap;
    gap: 8px;
  }

  .home-shell .form-step-line {
    max-width: 12px;
  }
}

.success-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.success-popup-overlay.closing {
    animation: fadeOut 0.3s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

.success-popup {
    background: var(--color-white);
    border-radius: 16px;
    max-width: 480px;
    width: 100%;
    padding: 40px 32px;
    text-align: center;
    position: relative;
    animation: slideUp 0.4s ease;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(30px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

.success-popup-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--color-text-light);
    cursor: pointer;
    padding: 4px 8px;
    line-height: 1;
    transition: color 0.2s;
}

.success-popup-close:hover {
    color: var(--color-primary);
}

.success-popup-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--color-green-complete) 0%, var(--color-green-btn) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-popup-icon svg {
    width: 40px;
    height: 40px;
    color: var(--color-white);
    stroke-width: 3;
}

.success-popup-title {
    font-family: var(--font-barlow);
    font-size: 32px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.success-popup-message {
    font-family: var(--font-bitter);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text-light);
    margin-bottom: 28px;
}

.success-popup-message strong {
    color: var(--color-primary);
}

.success-popup-social {
    background: #f8f8f8;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
}

.success-popup-social-label {
    font-family: var(--font-barlow);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-light);
    margin-bottom: 12px;
}

.success-popup-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.success-popup-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 8px;
    font-family: var(--font-barlow);
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.success-popup-btn-whatsapp {
    background: var(--color-whatsapp);
    color: var(--color-white);
}

.success-popup-btn-whatsapp:hover {
    background: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.success-popup-btn-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--color-white);
}

.success-popup-btn-instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 39, 67, 0.4);
}

.success-popup-cta {
    border-top: 1px solid #eee;
    padding-top: 24px;
}

.success-popup-cta-text {
    font-family: var(--font-bitter);
    font-size: 15px;
    color: var(--color-text-light);
    margin-bottom: 16px;
}

.success-popup-cta-text strong {
    color: var(--color-primary);
}

.success-popup-btn-cta {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 14px 28px;
}

.success-popup-btn-cta:hover {
    background: var(--color-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(228, 15, 62, 0.3);
}

/* Responsive popup */
@media (max-width: 480px) {
    .success-popup {
        padding: 32px 20px;
    }
    
    .success-popup-title {
        font-size: 26px;
    }
    
    .success-popup-buttons {
        flex-direction: column;
    }
    
    .success-popup-btn {
        justify-content: center;
    }
}

/* Global quote form component */
.section-form {
  padding: 40px 0;
  margin: 0;
}

.section-form .form-steps-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 35px;
}

.section-form .form-step-indicator {
  text-align: center;
  padding: 0;
}

.section-form .step-label {
  display: block;
  font-family: 'Roboto Condensed', 'Roboto', sans-serif;
  font-size: 22px;
  font-weight: 300;
  color: #989996;
}

.section-form .step-num {
  display: block;
  font-family: 'Roboto Condensed', 'Roboto', sans-serif;
  font-size: 40px;
  font-weight: 300;
  color: #989996;
}

.section-form .form-step-indicator.active .step-label,
.section-form .form-step-indicator.active .step-num {
  color: #060800;
}

.section-form .form-step-indicator.completed .step-num {
  color: #9cc760;
}

.section-form .form-step-line {
  flex: 0 0 69px;
  height: 1px;
  background: #ddd;
  max-width: 69px;
}

.quote-form {
  max-width: 750px;
  margin: 5% auto 9%;
}

.form-steps-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 35px;
}

.form-step-indicator {
  text-align: center;
  padding: 0 30px;
}

.step-label {
  display: block;
  font-family: 'Roboto Condensed', 'Roboto', sans-serif;
  font-size: 22px;
  font-weight: 300;
  color: #989996;
}

.step-num {
  display: block;
  font-family: 'Roboto Condensed', 'Roboto', sans-serif;
  font-size: 40px;
  font-weight: 300;
  color: #989996;
}

.form-step-indicator.active .step-label,
.form-step-indicator.active .step-num {
  color: #060800;
}

.form-step-indicator.completed .step-num {
  color: #9cc760;
}

.form-step-line {
  flex: 0 0 69px;
  height: 1px;
  background: #ddd;
  max-width: 69px;
}

@media (max-width: 640px) {
  .form-steps-header {
    width: 100%;
    gap: 10px;
    margin-bottom: 22px;
  }

  .form-step-indicator {
    padding: 0 10px;
  }

  .step-label {
    font-size: 16px;
  }

  .step-num {
    font-size: 28px;
  }

  .form-step-line {
    flex: 0 0 22px;
    max-width: 22px;
  }
}

@media (max-width: 640px) {
  .form-group select {
    -webkit-appearance: auto !important;
    appearance: auto !important;
    background-image: none !important;
    padding-right: 16px !important;
  }
}


.form-panel {
  display: none;
}

.form-panel.active {
  display: block;
}

.form-group {
  margin-bottom: 38px;
}

.form-group label {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 500;
  color: #000;
  margin-bottom: 4px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  display: block;
  padding: 14px 16px;
  font-family: 'Roboto', sans-serif;
  font-size: 19px;
  color: #333;
  background: #f5f3f3;
  border: none;
  border-radius: 0;
}

.phone-input-wrapper .country-code-select {
  width: auto;
  min-width: auto;
  max-width: 90px;
  display: inline-block;
  font-size: 14px;
  padding: 14px 6px;
  flex-shrink: 0;
}

.phone-input-wrapper input[type="tel"] {
  flex: 1;
  min-width: 0;
  max-width: none;
  width: auto;
}

/* Normalize select appearance across pages (match Chrome style) */
.form-group select {
  -webkit-appearance: none;
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #111 50%),
    linear-gradient(135deg, #111 50%, transparent 50%),
    linear-gradient(to right, transparent, transparent);
  background-position:
    calc(100% - 20px) 50%,
    calc(100% - 15px) 50%,
    100% 0;
  background-size: 5px 5px, 5px 5px, 2.5em 2.5em;
  background-repeat: no-repeat;
  padding-right: 42px;
}

.form-group select::-ms-expand {
  display: none;
}

@media (max-width: 640px) {
  .form-group select {
    -webkit-appearance: auto !important;
    appearance: auto !important;
    background-image: none !important;
    padding-right: 16px !important;
  }
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  box-shadow: 0 0 0 2px #e6e6e6;
}

/* Prevent mobile select popups from mispositioning in Chrome */
@media (max-width: 640px) {
  .home-quote-secondary,
  .home-hero-form,
  .home-quote-wrap,
  .quote-form {
    transform: none !important;
  }
}

.section-form .btn,
.quote-form .btn,
.entry-quote-box .btn {
  display: inline-block;
  padding: 14px 30px;
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  text-align: center;
}

.quote-form .btn-continue {
  background: #f2f1a6;
  color: #0c0b0b;
  width: 100%;
  padding: 16px;
  font-family: 'Roboto', sans-serif;
  font-size: 24px;
  border-radius: 0;
}

.quote-form .btn-back {
  background: #f7f1f1;
  color: #cfc9c9;
  width: 100%;
  padding: 16px;
  font-family: 'Roboto', sans-serif;
  font-size: 24px;
  border-radius: 0;
}

.quote-form .btn-continue:hover {
  background: #030000;
  color: #ffffff;
}

.quote-form .btn-back:hover {
  background: #e0e0e0;
  color: #333;
}

.form-buttons {
  display: flex;
  gap: 15px;
}

.form-buttons .btn {
  flex: 1;
}

.form-group .input-error {
  border-color: #e74c3c;
  box-shadow: 0 0 0 2px rgba(231, 76, 60, .2);
}

.form-group .field-error {
  color: #e74c3c;
  font-size: 13px;
  font-family: 'Playfair Display', serif;
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.form-group .field-error::before {
  content: "⚠";
}

/* Compact variant for sidebar forms */
.entry-sidebar .quote-form-compact {
  max-width: 100%;
  margin: 0;
}

.entry-sidebar .quote-form-compact .form-steps-header {
  margin-bottom: 18px;
}

.entry-sidebar .quote-form-compact .form-step-indicator {
  padding: 0 8px;
}

.entry-sidebar .quote-form-compact .step-label {
  font-family: 'Roboto Condensed', 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 300;
}

.entry-sidebar .quote-form-compact .step-num {
  font-family: 'Roboto Condensed', 'Roboto', sans-serif;
  font-size: 28px;
  font-weight: 300;
}

.entry-sidebar .quote-form-compact .form-step-line {
  max-width: 18px;
}

.entry-sidebar .quote-form-compact .form-group {
  margin-bottom: 16px;
}

.entry-sidebar .quote-form-compact .form-group input,
.entry-sidebar .quote-form-compact .form-group select,
.entry-sidebar .quote-form-compact .form-group textarea {
  font-size: 16px;
  padding: 10px 12px;
}

.entry-sidebar .quote-form-compact .btn-continue,
.entry-sidebar .quote-form-compact .btn-back {
  font-size: 18px;
  padding: 10px 12px;
}

/* Force custom select styling consistently (match Chrome) */
.form-group select,
.home-shell .form-group select,
.quote-form-block .home-form-step select,
.home-form-step select,
.entry-quote-box select,
.entry-sidebar .quote-form-compact .form-group select,
.ref-field select {
  -webkit-appearance: none !important;
  appearance: none !important;
  background-image:
    linear-gradient(45deg, transparent 50%, #111 50%),
    linear-gradient(135deg, #111 50%, transparent 50%),
    linear-gradient(to right, transparent, transparent);
  background-position:
    calc(100% - 20px) 50%,
    calc(100% - 15px) 50%,
    100% 0;
  background-size: 5px 5px, 5px 5px, 2.5em 2.5em;
  background-repeat: no-repeat;
  padding-right: 42px !important;
}

@media (max-width: 960px) {
  .section-form .form-steps-header {
    gap: 8px;
    flex-wrap: wrap;
  }

  .section-form .form-step-line {
    flex-basis: 12px;
    max-width: 12px;
  }
}

/* Global white background override requested */
html,
body,
.home-page,
.quote-page,
.notebook-page,
.agenda-page,
.entry-page {
  background: #fff !important;
}

/* Typography and spacing refinement pass */
body {
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img {
  border-radius: 0;
}

/* Home */
.home-shell { width: min(1020px, calc(100vw - 220px)); }
.home-top { padding-top: 26px; }
 .home-page .home-top { padding-top: 0; }
.home-menu a {
  font-size: 11px;
  padding: 10px 11px;
}
.home-hero {
  padding: 86px 0 106px;
}
.home-hero h1 {
  font-size: clamp(68px, 6.2vw, 94px);
  line-height: .92;
  letter-spacing: -.01em;
  margin-bottom: 58px;
}
.home-split {
  gap: 44px;
}
.home-split h2 {
  font-size: clamp(42px, 4vw, 62px);
  line-height: .95;
}
.home-split .desc {
  font-size: 17px;
  line-height: 1.5;
  margin-bottom: 12px;
}
.home-split p {
  font-size: 17px;
  line-height: 1.5;
  margin-bottom: 12px;
}
.home-split .desc {
  max-width: 520px;
}
.home-split .desc + .home-btn,
.home-split p + .home-btn {
  margin-top: 14px;
}
.home-feature-row {
  margin: 102px 0 132px;
  gap: 40px;
}
.home-feature-row h3 {
  font-size: clamp(48px, 3.7vw, 62px);
  line-height: .98;
  margin-bottom: 16px;
}
.home-feature-row p {
  font-size: 16px;
  line-height: 1.56;
}
.home-post-grid {
  gap: 32px;
  margin-bottom: 132px;
}
.home-post-grid h3 {
  font-size: clamp(44px, 3.3vw, 54px);
  line-height: 1.01;
}
.home-post-grid .meta {
  font-size: 12px;
  margin: 10px 0 11px;
}
.home-post-grid .excerpt {
  font-size: 15px;
  line-height: 1.55;
  min-height: 0;
}
.home-link-more {
  font-size: 14px;
}
.home-cta-band {
  gap: 38px;
  padding-bottom: 118px;
}
.home-footer {
  padding: 20px 0;
}

/* Shared three-step form */
.home-steps {
  margin-bottom: 18px;
}
.home-form-step label {
  font-size: 14px;
  margin: 16px 0 7px;
}
.home-form-step input,
.home-form-step select {
  height: 50px;
  font-size: 15px;
}
.home-form-actions {
  margin-top: 20px;
}
.home-form-actions button {
  height: 48px;
  min-width: 210px;
  font-size: 17px;
}

/* Quote page */
.quote-shell,
.notebook-shell,
.agenda-shell {
  width: min(1020px, calc(100vw - 220px));
}
.quote-hero-copy h1 { font-size: clamp(52px, 4.2vw, 72px); }
.quote-hero-copy p { font-size: 19px; line-height: 1.5; }
.quote-editorial-copy h2,
.quote-costs-intro h2,
.quote-economicos h2,
.quote-accordion h2 {
  font-size: clamp(44px, 3.5vw, 58px);
}
.quote-editorial-copy p,
.quote-costs-grid p,
.quote-economicos p,
.quote-accordion p,
.quote-end p {
  font-size: 16px;
  line-height: 1.6;
}
.quote-accordion summary { font-size: 22px; }
.quote-accordion details p { font-size: 16px; }

/* Notebook and Agenda pages */
.nb-hero-copy h1,
.nb-size-row h2,
.nb-paper-row h2,
.nb-print-row h2,
.nb-text-blocks h2,
.nb-binding-title h2,
.nb-form-intro h2,
.ag-hero-copy h1,
.ag-intro h2,
.ag-cost-text h2,
.ag-story-mid h2,
.ag-form-intro h2 {
  letter-spacing: -.008em;
}

.nb-hero-copy p,
.nb-paper-row p,
.nb-size-row p,
.nb-text-blocks p,
.nb-form-intro p,
.ag-hero-copy p,
.ag-intro p,
.ag-story-top p,
.ag-cost-text p,
.ag-story-mid p,
.ag-story-bottom p,
.ag-points p,
.ag-form-intro p {
  font-size: 16px;
  line-height: 1.5;
}

/* Entries */
.entry-shell { width: min(1020px, calc(100vw - 220px)); }
.entry-layout { gap: 52px; }
.entry-content { max-width: 760px; }
.entry-content h1 {
  font-size: clamp(46px, 3.8vw, 62px);
  line-height: 1.02;
}
.entry-content h2 {
  font-size: clamp(38px, 3vw, 48px);
  line-height: 1.05;
}
.entry-content h3 {
  font-size: clamp(30px, 2.4vw, 36px);
  line-height: 1.1;
}
.entry-content p,
.entry-content li {
  font-size: 16px;
  line-height: 1.64;
}
.entry-content figure { margin: 34px 0 24px; }
.entry-content figcaption {
  font-size: 13px;
}
.entry-content blockquote {
  font-size: clamp(40px, 3.2vw, 52px);
}
.entry-quote-box button {
  width: 100%;
  font-size: 17px;
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: .01em;
  padding: 12px 10px;
}

@media (max-width: 1100px) {
  .home-shell,
  .quote-shell,
  .notebook-shell,
  .agenda-shell,
  .entry-shell {
    width: min(980px, calc(100vw - 64px));
  }
  .home-shell {
    width: min(980px, calc(100vw - 64px));
  }

  .notebook-page .notebook-shell {
    width: 80vw;
    max-width: none;
  }

  .home-hero { padding: 70px 0 78px; }
  .home-hero h1 { font-size: clamp(56px, 9vw, 78px); margin-bottom: 46px; }
  .home-split { grid-template-columns: 1fr; gap: 22px; }
  .home-split h2 { font-size: clamp(38px, 6.4vw, 52px); }
  .home-split p,
  .home-split .desc { font-size: 17px; line-height: 1.5; max-width: 100%; }
  .home-feature-row { margin: 96px 0 120px; }
  .home-feature-row h3 { font-size: clamp(36px, 6vw, 46px); }
  .home-post-grid h3 { font-size: clamp(24px, 3.6vw, 28px); }
  
  .home-form-actions button {
    min-width: 0;
    width: 100%;
    font-size: 17px;
  }

  .quote-hero-copy h1 { font-size: clamp(42px, 6.4vw, 58px); }
  .quote-editorial-copy h2,
  .quote-costs-intro h2,
  .quote-economicos h2,
  .quote-accordion h2,
  .quote-landing #faq h2 { font-size: clamp(34px, 5.2vw, 46px); }
  .quote-accordion summary,
  .quote-landing #faq h3 { font-size: 21px; }
  .quote-accordion details p,
  .quote-landing #faq p { font-size: 16px; }

  .entry-layout { gap: 38px; }
  .entry-content h1 { font-size: clamp(40px, 6.2vw, 52px); }
  .entry-content h2 { font-size: clamp(34px, 5.2vw, 42px); }
  .entry-content h3 { font-size: clamp(27px, 4.5vw, 32px); }
}

@media (max-width: 1024px) {
  .home-shell,
  .quote-shell,
  .notebook-shell,
  .agenda-shell,
  .entry-shell {
    width: min(980px, calc(100vw - 28px));
  }
  .home-shell {
    width: min(980px, calc(100vw - 28px));
  }

  .notebook-page .notebook-shell {
    width: 80vw;
    max-width: none;
  }

  .home-menu { justify-content: flex-start; }
  .home-menu a { padding: 7px 10px; font-size: 10px; }

  .home-hero { padding: 52px 0 56px; }
  .home-hero h1 {
    font-size: clamp(44px, 12.2vw, 56px);
    line-height: .94;
    margin-bottom: 30px;
  }
  .home-split h2 { font-size: clamp(35px, 9.8vw, 48px); }
  .home-split p,
  .home-split .desc { font-size: 16px; }
  .home-feature-row { margin: 64px 0 84px; gap: 30px; }
  .home-post-grid { margin-bottom: 96px; gap: 24px; }
  .home-post-grid h3 { font-size: clamp(22px, 7vw, 28px); }
  .home-blurb-section .home-hero-blurb h3 {
    font-size: clamp(22px, 7vw, 28px);
  }
  .home-cta-band { padding-bottom: 96px; }

  .home-hero-form .quote-form {
    max-width: 100%;
    width: 100%;
    margin: 0;
  }

  .home-hero-form .form-steps-header {
    width: 100%;
  }
  
  .entry-content p,
  .entry-content li,
  .quote-editorial-copy p,
  .quote-costs-grid p,
  .quote-economicos p,
  .quote-accordion p,
  .quote-end p,
  .nb-hero-copy p,
  .nb-paper-row p,
  .nb-size-row p,
  .nb-text-blocks p,
  .nb-form-intro p,
  .ag-hero-copy p,
  .ag-intro p,
  .ag-story-top p,
  .ag-cost-text p,
  .ag-story-mid p,
  .ag-story-bottom p,
  .ag-points p,
  .ag-form-intro p {
    font-size: 15px;
    line-height: 1.52;
  }
}

/* Overrides: enforce 80% layout width and post-grid title size */
.home-page .home-shell {
  width: 80vw;
  max-width: none;
}

.home-page main {
  width: 80vw;
  max-width: none;
}

.notebook-page .notebook-shell {
  width: 80vw;
  max-width: none;
}

.agenda-page .agenda-shell {
  width: 80vw;
  max-width: none;
}

.home-after-hero .home-post-grid {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.home-after-hero .home-post-grid h3 {
  font-size: 30px !important;
  color: #000000 !important;
}

.home-post-grid.home-after-hero h3,
.home-after-hero h3 {
  color: #000000 !important;
  font-size: 30px !important;
}

@media (max-width: 1100px) {
  .home-after-hero .home-post-grid h3 {
    font-size: 25px !important;
  }
}

@media (max-width: 1024px) {
  .home-after-hero .home-post-grid h3 {
    font-size: 22px !important;
  }
}

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

  .agenda-page .ag-hero .home-hero-form {
    margin-top: 24px;
  }

  .agenda-page .quote-end h3 {
    font-size: clamp(30px, 7vw, 40px);
    line-height: 1.05;
  }
}
