:root {
  --cream: #fffbea;
  --cream-2: #fff6cf;
  --yellow: #efd631;
  --yellow-dark: #c4af2d;
  --brown: #69625d;
  --brown-dark: #4f4843;
  --black: #080808;
  --white: #ffffff;
  --muted: #5d5a55;
  --line: rgba(8, 8, 8, 0.12);
  --radius: 14px;
  --shadow-soft: 0 20px 45px rgba(0, 0, 0, 0.08);
  --max-width: 1040px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--black);
  font-family: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.page-shell {
  width: 100%;
  max-width: none;
  margin: 0;
  background: var(--white);
  border: 0;
  overflow: hidden;
}

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

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 54px;
  padding: 12px clamp(24px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.logo {
  width: 172px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  font-size: 12px;
  font-weight: 500;
}

.nav > a:not(.btn),
.nav-dropdown > button {
  position: relative;
  border: 0;
  background: transparent;
  padding: 8px 0;
  font: inherit;
  color: var(--black);
  cursor: pointer;
}

.nav-dropdown > button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  white-space: nowrap;
}

.nav-dropdown > button span {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  transform: translateY(1px);
}

.nav > a:not(.btn)::after,
.nav-dropdown > button::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 2px;
  background: var(--yellow);
  transition: width 0.25s ease;
}

.nav > a:not(.btn):hover::after,
.nav-dropdown:hover > button::after {
  width: 100%;
}

.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 190px;
  display: grid;
  gap: 4px;
  padding: 10px;
  border-radius: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.2s ease;
}

.dropdown-menu a {
  padding: 10px 12px;
  border-radius: 8px;
}

.dropdown-menu a:hover {
  background: var(--cream);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--black);
  border-radius: 999px;
  transition: 0.2s ease;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 10px 22px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.btn-primary {
  background: var(--yellow);
  border-color: #b99d1f;
  color: var(--black);
}

.btn-primary:hover {
  background: #ffdf38;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.btn-outline {
  background: var(--white);
  border-color: var(--line);
  color: var(--black);
}

.btn-small {
  min-height: 34px;
  padding: 9px 18px;
  border-radius: 10px;
}

.hero {
  position: relative;
  min-height: 660px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #272521;
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-auto-rows: 205px;
  gap: 12px;
  padding: 0 14px 0;
}

.hero-tile,
.image-box {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(239, 214, 49, 0.24), rgba(105, 98, 93, 0.35)),
    #d9d2bd;
}

.hero-tile {
  border-radius: 10px;
}

.hero-tile.tall {
  grid-row: span 2;
}

.hero-tile img,
.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 2;
}

.hero-tile span,
.image-box span {
  position: absolute;
  inset: auto 10px 10px 10px;
  z-index: 1;
  font-size: 11px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.48);
  letter-spacing: 0.02em;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(0, 0, 0, 0.45);
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 620px;
  margin-inline: auto;
  text-align: center;
  color: var(--white);
  padding: 100px 0;
}

.hero h1,
.section h2,
.final-cta h2 {
  margin: 0;
  font-family: "Quicksand", system-ui, sans-serif;
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0.02em;
}

.hero h1 {
  font-size: clamp(3.25rem, 8vw, 5.8rem);
  text-shadow: 0 4px 22px rgba(0, 0, 0, 0.3);
}

.hero p {
  max-width: 620px;
  margin: 22px auto 0;
  font-size: 15px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 24px;
}

.section {
  padding: 88px 0;
}

.services,
.final-cta {
  background: var(--cream);
}

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

.center-heading h2 {
  font-size: clamp(2.5rem, 5vw, 4.1rem);
}

.center-heading p {
  margin: 20px auto 0;
  max-width: 640px;
  font-size: 14px;
}

.card-grid {
  display: grid;
  gap: 24px;
}

.services-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 62px;
}

.service-card {
  display: grid;
  grid-template-rows: auto 150px;
  min-height: 345px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  background: var(--cream-2);
}

.service-copy {
  padding: 20px 18px 18px;
}

.service-card h3,
.trust-item h3 {
  margin: 0;
  font-family: "Quicksand", system-ui, sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.03em;
}

.service-card p,
.trust-item p {
  margin: 12px 0 0;
  font-size: 12px;
}

.service-image {
  border-radius: 0;
}

.portfolio {
  background: var(--brown);
  color: var(--white);
  padding: 92px 0 96px;
}

.light-heading p {
  color: rgba(255, 255, 255, 0.9);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 62px;
}

.portfolio-image {
  height: 405px;
  border-radius: 10px;
}

.portfolio-actions {
  display: flex;
  justify-content: center;
  margin-top: 42px;
}

.testimonials {
  background: var(--yellow);
  padding: 88px 0 84px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 62px;
}

.testimonial-card {
  min-height: 210px;
  padding: 28px;
  border-radius: 10px;
  background: rgba(112, 90, 0, 0.22);
}

.stars {
  font-size: 22px;
  line-height: 1;
  letter-spacing: 1px;
}

.testimonial-card p {
  margin: 22px 0 22px;
  font-size: 14px;
}

.client {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
}

.avatar {
  width: 40px;
  height: 40px;
  position: relative;
  display: inline-grid;
  place-items: center;
  overflow: hidden;
  flex: 0 0 auto;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--black);
  border: 1px solid rgba(0, 0, 0, 0.12);
  font-size: 10px;
  font-weight: 800;
}

.avatar img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
}

.avatar span {
  position: relative;
  z-index: 1;
}

.trust {
  background: #f7f7f7;
  padding-top: 84px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 20px;
  font-size: 12px;
  font-weight: 700;
}

.trust .center-heading h2 {
  max-width: 650px;
  margin: 0 auto;
}

.trust-layout {
  display: grid;
  grid-template-columns: 1fr 1.35fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 66px;
}

.trust-column {
  display: grid;
  gap: 62px;
}

.trust-column-right {
  align-self: center;
}

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

.trust-icon {
  width: 42px;
  height: 42px;
  margin: 0 auto 20px;
  object-fit: contain;
}

.trust-image {
  height: 384px;
  border-radius: 12px;
}

.trust-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 62px;
}

.link-arrow {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
}

.link-arrow span {
  font-size: 22px;
  line-height: 1;
}

.final-cta {
  padding: 84px 0;
}

.final-cta-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.1fr;
  align-items: center;
  gap: 80px;
}

.final-cta h2 {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
}

.final-cta p {
  margin: 28px 0;
  max-width: 430px;
  font-size: 14px;
}

.cta-image {
  height: 286px;
  border-radius: 12px;
}

.footer {
  background: #f3f3f3;
  padding: 58px 0 34px;
}

.footer-card {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 80px;
  padding: 38px;
  border: 1px solid #dadada;
  border-radius: 12px;
  background: var(--white);
}

.footer-brand {
  display: grid;
  gap: 24px;
  align-content: start;
}

.footer-brand img {
  width: 80px;
  height: 45px;
  object-fit: contain;
}

.footer-brand strong {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
}

.footer-brand p,
.footer-brand a {
  margin: 0;
  font-size: 12px;
}

.instagram {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
}

.instagram img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 70px;
  justify-content: end;
  align-content: start;
  padding-top: 12px;
}

.footer-links div {
  display: grid;
  gap: 16px;
}

.footer-links a {
  font-size: 13px;
  font-weight: 600;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 26px;
  font-size: 12px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

@media (max-width: 980px) {
  .page-shell {
    margin: 0;
    border: 0;
  }

  .header {
    padding: 12px 24px;
  }

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

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 70;
  }

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

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

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

  .nav {
    position: fixed;
    inset: 0 0 0 auto;
    z-index: 60;
    width: min(84vw, 380px);
    min-height: 100vh;
    display: grid;
    align-content: start;
    justify-content: stretch;
    gap: 4px;
    padding: 90px 28px 28px;
    background: var(--white);
    box-shadow: -20px 0 40px rgba(0, 0, 0, 0.12);
    transform: translateX(105%);
    transition: transform 0.25s ease;
  }

  .menu-open .nav {
    transform: translateX(0);
  }

  .nav > a:not(.btn),
  .nav-dropdown > button,
  .dropdown-menu a {
    width: 100%;
    padding: 14px 0;
    text-align: left;
    font-size: 16px;
  }

  .nav-dropdown > button {
    justify-content: flex-start;
  }

  .nav .btn {
    margin-top: 16px;
  }

  .nav-dropdown {
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    padding: 0 0 0 14px;
  }

  .hero-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 180px;
  }

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

  .portfolio-grid,
  .trust-layout,
  .final-cta-layout,
  .footer-card {
    grid-template-columns: 1fr;
  }

  .portfolio-image {
    height: 340px;
  }

  .trust-layout,
  .final-cta-layout,
  .footer-card {
    gap: 38px;
  }

  .trust-column {
    gap: 38px;
  }
}

@media (max-width: 640px) {
  .logo {
    width: 148px;
    height: 38px;
  }

  .section {
    padding: 66px 0;
  }

  .hero {
    min-height: 620px;
  }

  .hero-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 150px;
    gap: 8px;
    padding: 8px;
  }

  .hero-content {
    padding: 90px 0;
  }

  .hero p {
    font-size: 14px;
  }

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

  .hero-actions .btn,
  .trust-actions .btn,
  .trust-actions .link-arrow,
  .final-cta .btn {
    width: 100%;
  }

  .services-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
    margin-top: 42px;
  }

  .service-card {
    grid-template-rows: auto 190px;
  }

  .portfolio-grid {
    margin-top: 42px;
  }

  .portfolio-image,
  .trust-image,
  .cta-image {
    height: 300px;
  }

  .footer-card {
    padding: 26px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .footer-bottom div {
    gap: 14px;
  }
}

/* Página Galeria */
.nav > a.active:not(.btn)::after {
  width: 100%;
}

.gallery-intro {
  background: var(--cream);
  padding-top: 86px;
}

.gallery-hero-copy h1 {
  margin: 0;
  font-family: "Quicksand", system-ui, sans-serif;
  font-size: clamp(3rem, 6vw, 5.2rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.02em;
}

.gallery-hero-copy p {
  max-width: 620px;
  margin-top: 22px;
}

.gallery-actions {
  margin-top: 28px;
}

.gallery-actions .btn-outline {
  background: var(--white);
}

.gallery-main-image {
  height: min(48vw, 440px);
  min-height: 300px;
  margin-top: 70px;
  border-radius: 12px;
}

.gallery-showcase {
  background: var(--brown);
  color: var(--white);
}

.gallery-grid-six {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 62px;
}

.gallery-thumb {
  height: 245px;
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0.08)),
    #88817b;
}

.gallery-filters {
  background: #f7f7f7;
}

.gallery-type-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 62px;
}

.type-card {
  min-height: 250px;
  padding: 38px;
  border: 1px solid #d8d8d8;
  border-radius: 12px;
  background: #f4f4f4;
}

.type-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 32px;
  object-fit: contain;
}

.type-card h3 {
  margin: 0;
  font-family: "Quicksand", system-ui, sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1;
}

.type-card p {
  margin: 22px 0 34px;
  max-width: 440px;
  font-size: 13px;
}

.type-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.difference {
  background: var(--cream);
}

.difference .center-heading p {
  max-width: 680px;
}

.difference-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 64px;
}

.difference-large,
.difference-small {
  border-radius: 10px;
}

.difference-large {
  min-height: 520px;
}

.difference-stack {
  display: grid;
  gap: 24px;
}

.difference-small {
  min-height: 248px;
}

.characters {
  background: var(--brown);
  color: var(--white);
}

.character-mosaic {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 142px;
  gap: 22px;
  margin-top: 62px;
}

.mosaic-item {
  min-height: 142px;
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0.08)),
    #837c76;
}

.mosaic-item.tall {
  grid-row: span 2;
  grid-column: span 2;
}

.mosaic-item.wide {
  grid-column: span 2;
}

.mosaic-item:not(.tall):not(.wide) {
  grid-column: span 2;
}

.gallery-final-cta {
  background: var(--yellow);
  padding-bottom: 88px;
}

.gallery-final-cta h2 {
  margin: 0;
  font-family: "Quicksand", system-ui, sans-serif;
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  font-weight: 700;
  line-height: 1;
}

.gallery-final-cta p {
  margin-bottom: 30px;
}

.btn-dark {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.btn-dark:hover {
  background: #1c1c1c;
}

.idea-image {
  height: min(48vw, 420px);
  min-height: 300px;
  margin-top: 64px;
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(112, 90, 0, 0.22), rgba(255, 255, 255, 0.1)),
    #d2bd2f;
}

@media (max-width: 980px) {
  .gallery-grid-six,
  .gallery-type-grid,
  .difference-layout {
    grid-template-columns: 1fr 1fr;
  }

  .character-mosaic {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 130px;
  }

  .mosaic-item.tall,
  .mosaic-item.wide,
  .mosaic-item:not(.tall):not(.wide) {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .gallery-intro {
    padding-top: 64px;
  }

  .gallery-grid-six,
  .gallery-type-grid,
  .difference-layout {
    grid-template-columns: 1fr;
  }

  .gallery-main-image,
  .difference-large,
  .difference-small,
  .idea-image {
    min-height: 280px;
    height: 300px;
  }

  .type-card {
    padding: 28px;
  }

  .type-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .character-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 160px;
    gap: 14px;
  }

  .mosaic-item.tall,
  .mosaic-item.wide,
  .mosaic-item:not(.tall):not(.wide) {
    grid-column: span 1;
    grid-row: span 1;
  }
}


/* Página Amigurumis Personalizados */
.custom-hero {
  background: var(--cream);
  padding: 66px 0 78px;
}

.custom-hero-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  min-height: 440px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 12px;
  background: var(--cream-2);
}

.custom-hero-copy {
  display: grid;
  align-content: center;
  padding: clamp(34px, 6vw, 64px);
}

.custom-hero-copy h1,
.transformation-copy h2,
.miniyou-card h3,
.process h2,
.process-card h3,
.custom-final-cta h2,
.mini-quote blockquote {
  margin: 0;
  font-family: "Quicksand", system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.02em;
}

.custom-hero-copy h1 {
  font-size: clamp(3.1rem, 6vw, 5.2rem);
}

.custom-hero-copy p {
  max-width: 500px;
  margin: 24px 0 0;
  font-size: 14px;
}

.custom-actions {
  justify-content: flex-start;
  margin-top: 26px;
}

.custom-hero-image {
  min-height: 440px;
  border-radius: 0;
  background: #eee8cd;
}

.custom-about {
  background: var(--brown);
  color: var(--white);
  padding-bottom: 96px;
}

.miniyou-cards {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 24px;
  margin-top: 62px;
}

.miniyou-card {
  min-height: 240px;
  display: grid;
  align-content: start;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: var(--brown-dark);
  color: var(--white);
}

.miniyou-card-feature {
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0;
  overflow: hidden;
}

.miniyou-card-feature > div:first-child {
  display: grid;
  align-content: center;
  padding: 32px;
}

.miniyou-card h3 {
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.miniyou-card p {
  margin: 18px 0 28px;
  font-size: 13px;
}

.miniyou-card-image {
  min-height: 240px;
  border-radius: 0;
  background: #77706a;
}

.light-icon {
  filter: invert(1);
}

.transformations {
  background: var(--cream);
  overflow: hidden;
}

.transformation-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.35fr;
  gap: 64px;
  align-items: center;
}

.transformation-copy h2 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
}

.transformation-copy p {
  margin: 18px 0 0;
  font-size: 14px;
}

.mini-carousel {
  position: relative;
  min-width: 0;
  padding: 0 42px 48px;
}

.carousel-viewport {
  overflow: hidden;
  border-radius: 10px;
}

.carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.35s ease;
}

.carousel-slide {
  min-width: min(100%, 420px);
  height: 410px;
  border-radius: 10px;
  background: #eee8d5;
}

.carousel-btn {
  position: absolute;
  top: 44%;
  z-index: 5;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 8px;
  background: var(--cream-2);
  cursor: pointer;
}

.carousel-prev { left: 0; }
.carousel-next { right: 0; }

.carousel-dots {
  position: absolute;
  right: 52px;
  bottom: 4px;
  display: flex;
  gap: 6px;
}

.carousel-dots span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(8, 8, 8, 0.2);
}

.carousel-dots span.active {
  background: var(--black);
}

.mini-testimonial {
  background: #f7f7f7;
}

.mini-testimonial-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.video-placeholder {
  height: 420px;
  border-radius: 10px;
  background: #9a9a9a;
}

.play-button {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 4;
  transform: translate(-50%, -50%);
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--brown);
  cursor: pointer;
}

.mini-quote blockquote {
  margin: 24px 0 28px;
  max-width: 520px;
  font-size: clamp(1.8rem, 3.4vw, 3rem);
}

.quote-author {
  display: grid;
  gap: 3px;
  padding-left: 0;
  font-size: 13px;
}

.quote-author span {
  color: var(--muted);
}

.process {
  background: var(--yellow);
}

.process .center-heading h2 {
  font-size: clamp(2.8rem, 5vw, 4.6rem);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 62px;
}

.process-card {
  min-height: 430px;
  display: grid;
  align-content: end;
  padding: 24px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: rgba(72, 58, 0, 0.58);
  color: var(--white);
}

.process-image {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: 0;
  opacity: 0.38;
  background: transparent;
}

.process-card > span,
.process-card h3,
.process-card p,
.process-card .link-arrow {
  position: relative;
  z-index: 2;
}

.process-card > span {
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 700;
}

.process-card h3 {
  max-width: 310px;
  font-size: clamp(2rem, 3vw, 3rem);
}

.process-card p {
  margin: 20px 0 0;
  max-width: 330px;
  font-size: 13px;
}

.process-card .link-arrow {
  margin-top: 28px;
}

.custom-final-cta {
  background: var(--brown);
  color: var(--white);
  padding: 90px 0;
}

.custom-final-cta h2 {
  font-size: clamp(2.8rem, 5vw, 4.4rem);
}

.custom-final-cta p {
  margin-bottom: 0;
}

.custom-final-cta .custom-actions {
  justify-content: center;
  margin-top: 30px;
}

.custom-final-image {
  height: min(48vw, 420px);
  min-height: 300px;
  margin-top: 64px;
  border-radius: 10px;
  background: #837c76;
}

@media (max-width: 980px) {
  .custom-hero-card,
  .transformation-layout,
  .mini-testimonial-layout {
    grid-template-columns: 1fr;
  }

  .miniyou-cards,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .miniyou-card-feature {
    grid-template-columns: 1fr;
  }

  .custom-hero-image,
  .miniyou-card-image,
  .video-placeholder {
    min-height: 320px;
  }
}

@media (max-width: 640px) {
  .custom-hero {
    padding-top: 42px;
  }

  .custom-hero-copy {
    padding: 30px;
  }

  .custom-actions {
    align-items: stretch;
  }

  .custom-actions .btn {
    width: 100%;
  }

  .mini-carousel {
    padding-inline: 0;
  }

  .carousel-btn {
    top: auto;
    bottom: 0;
  }

  .carousel-prev { left: 0; }
  .carousel-next { right: auto; left: 44px; }

  .carousel-dots {
    right: 0;
  }

  .carousel-slide,
  .video-placeholder,
  .custom-final-image {
    height: 300px;
    min-height: 300px;
  }

  .mini-quote blockquote {
    font-size: 1.8rem;
  }
}


/* Página Como Funciona */
.nav-dropdown > button.active::after {
  width: 100%;
}

.how-hero {
  background: var(--cream);
  padding-top: 86px;
}

.how-hero-copy h1,
.how-process h2,
.how-step-card h3,
.how-checklist h2,
.checklist-copy h3,
.faq-intro h2,
.how-final h2 {
  margin: 0;
  font-family: "Quicksand", system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.02em;
}

.how-hero-copy h1 {
  font-size: clamp(3.2rem, 6.7vw, 6rem);
}

.how-hero-copy p {
  max-width: 640px;
  margin: 24px auto 0;
  font-size: 14px;
}

.how-actions {
  margin-top: 28px;
}

.how-hero-image {
  height: min(48vw, 520px);
  min-height: 320px;
  margin-top: 70px;
  border-radius: 12px;
}

.how-process {
  background: #f7f7f7;
}

.how-process .center-heading h2 {
  font-size: clamp(2.7rem, 5vw, 4.3rem);
}

.how-process-grid {
  display: grid;
  grid-template-columns: 2.1fr 1fr 1fr;
  gap: 24px;
  margin-top: 62px;
}

.how-step-stack {
  display: grid;
  gap: 24px;
}

.how-step-card {
  min-height: 288px;
  display: grid;
  grid-template-rows: auto 120px;
  overflow: hidden;
  border: 1px solid #d7d7d7;
  border-radius: 10px;
  background: #f1f1f1;
}

.how-step-card-large {
  min-height: 600px;
  grid-template-rows: auto 1fr;
}

.how-step-copy {
  padding: 30px;
}

.how-step-stack .how-step-copy {
  padding: 28px 22px;
}

.how-step-copy > span {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 12px;
  font-weight: 700;
}

.how-step-card h3 {
  font-size: clamp(1.9rem, 3.4vw, 3.3rem);
}

.how-step-stack .how-step-card h3 {
  max-width: 100%;
  font-size: clamp(1.55rem, 1.9vw, 2rem);
  line-height: 1.08;
  overflow-wrap: normal;
  word-break: normal;
}

.how-step-card p {
  margin: 20px 0 0;
  font-size: 13px;
}

.how-step-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 26px;
}

.how-step-image {
  min-height: 120px;
  border-radius: 0;
  background: #dedede;
}

.how-step-card-large .how-step-image {
  min-height: 260px;
}

.how-checklist {
  background: var(--brown);
  color: var(--white);
}

.how-checklist .center-heading h2 {
  font-size: clamp(2.7rem, 5vw, 4.2rem);
}

.checklist-panel {
  margin-top: 62px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: var(--brown-dark);
}

.checklist-tabs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.checklist-tabs button {
  min-height: 78px;
  padding: 16px 10px;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font-family: "Quicksand", system-ui, sans-serif;
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  font-weight: 700;
  line-height: 1.05;
  cursor: pointer;
  transition: background 0.2s ease;
}

.checklist-tabs button:last-child {
  border-right: 0;
}

.checklist-tabs button:hover,
.checklist-tabs button.active {
  background: rgba(0, 0, 0, 0.18);
}

.checklist-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 58px;
  align-items: center;
  padding: clamp(32px, 5vw, 64px);
}

.checklist-copy h3 {
  max-width: 460px;
  font-size: clamp(2.1rem, 4.5vw, 4rem);
}

.checklist-copy p {
  max-width: 520px;
  margin: 24px 0 0;
  font-size: 13px;
}

.checklist-image {
  height: 360px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.13);
}

.how-faq {
  background: #f7f7f7;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.25fr;
  gap: 72px;
  align-items: start;
}

.faq-intro h2 {
  font-size: clamp(2.6rem, 5vw, 4.1rem);
}

.faq-intro p {
  margin: 24px 0 32px;
  max-width: 360px;
}

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

.faq-item {
  overflow: hidden;
  border: 1px solid #d7d7d7;
  border-radius: 10px;
  background: #f1f1f1;
}

.faq-item button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 24px;
  border: 0;
  background: transparent;
  color: var(--black);
  font: inherit;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.faq-item button span {
  font-size: 28px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.faq-item.open button span {
  transform: rotate(45deg);
}

.faq-item p {
  display: none;
  margin: 0;
  padding: 0 24px 22px;
  font-size: 13px;
}

.faq-item.open p {
  display: block;
}

.how-final {
  background: var(--yellow);
  padding-bottom: 88px;
}

.how-final h2 {
  font-size: clamp(2.8rem, 5vw, 4.6rem);
}

.how-final p {
  margin-bottom: 0;
}

.how-final-image {
  height: min(48vw, 430px);
  min-height: 300px;
  margin-top: 64px;
  border-radius: 10px;
  background: rgba(112, 90, 0, 0.2);
}

@media (max-width: 980px) {
  .how-process-grid,
  .checklist-content,
  .faq-layout {
    grid-template-columns: 1fr;
  }

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

  .how-step-card-large {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .how-hero {
    padding-top: 64px;
  }

  .how-hero-image,
  .checklist-image,
  .how-final-image {
    height: 300px;
    min-height: 280px;
  }

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

  .checklist-content {
    padding: 28px;
    gap: 32px;
  }

  .how-step-actions,
  .how-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .how-step-actions .btn,
  .how-actions .btn {
    width: 100%;
  }
}

/* Página Conheça a Criadora */
.creator-hero {
  background: var(--cream);
  padding: 74px 0 82px;
}

.creator-hero-layout {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: 64px;
  align-items: center;
}

.creator-hero-copy h1,
.creator-story-copy h2,
.creator-values h2,
.creator-value-card h3,
.creator-journey h2,
.creator-numbers strong,
.creator-testimonial blockquote {
  margin: 0;
  font-family: "Quicksand", system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.02em;
}

.creator-hero-copy h1 {
  max-width: 520px;
  font-size: clamp(3.2rem, 6vw, 5.2rem);
}

.creator-hero-copy p {
  max-width: 540px;
  margin: 26px 0 0;
  font-size: 14px;
}

.creator-hero-image {
  min-height: 430px;
  border-radius: 12px;
  background: #eee8d5;
}

.creator-story {
  background: #f7f7f7;
}

.creator-story-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.creator-story-image {
  height: 420px;
  border-radius: 12px;
  background: #dedede;
}

.creator-story-copy h2 {
  max-width: 560px;
  font-size: clamp(2.5rem, 5vw, 4.2rem);
}

.creator-story-copy p {
  margin: 24px 0 0;
  max-width: 520px;
  font-size: 14px;
}

.creator-story-copy ul {
  margin: 28px 0 0;
  padding-left: 20px;
  display: grid;
  gap: 10px;
  font-size: 13px;
}

.creator-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 32px;
}

.creator-values {
  background: var(--yellow);
}

.creator-values .center-heading h2 {
  max-width: 680px;
  margin-inline: auto;
  font-size: clamp(2.6rem, 5vw, 4.4rem);
}

.creator-values-grid {
  display: grid;
  grid-template-columns: 0.8fr 0.8fr 1.7fr;
  gap: 24px;
  margin-top: 62px;
}

.creator-value-card {
  overflow: hidden;
  display: grid;
  grid-template-rows: 145px 1fr;
  min-height: 360px;
  border-radius: 10px;
  background: rgba(112, 90, 0, 0.28);
}

.creator-value-card-wide {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
}

.value-card-image {
  border-radius: 0;
  background: rgba(92, 77, 0, 0.26);
}

.value-card-copy {
  display: grid;
  align-content: center;
  padding: 28px;
}

.value-card-copy > span {
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 800;
}

.value-card-copy h3 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
}

.value-card-copy p {
  margin: 18px 0 28px;
  font-size: 13px;
}

.creator-journey {
  background: var(--cream);
}

.creator-journey .center-heading h2 {
  font-size: clamp(2.7rem, 5vw, 4.5rem);
}

.creator-journey-layout {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: 72px;
  align-items: center;
  margin-top: 64px;
}

.creator-numbers {
  display: grid;
  gap: 48px;
}

.creator-numbers strong {
  display: block;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 0.9;
}

.creator-numbers p {
  margin: 14px 0 0;
  max-width: 220px;
  font-family: "Quicksand", system-ui, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.08;
}

.creator-video {
  height: min(48vw, 470px);
  min-height: 340px;
  border-radius: 10px;
  background: #9a9a9a;
}

.creator-testimonial {
  background: var(--yellow);
  padding: 84px 0;
}

.creator-testimonial-content {
  max-width: 720px;
  text-align: center;
}

.creator-testimonial blockquote {
  margin: 26px auto 34px;
  max-width: 720px;
  font-size: clamp(1.8rem, 3.5vw, 2.9rem);
}

.creator-testimonial-author {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  text-align: left;
  font-size: 12px;
}

.creator-testimonial-author p {
  margin: 3px 0 0;
}

.testimonial-brand {
  padding-left: 18px;
  border-left: 1px solid rgba(0, 0, 0, 0.24);
  font-family: "Quicksand", system-ui, sans-serif;
  font-weight: 800;
}

@media (max-width: 980px) {
  .creator-hero-layout,
  .creator-story-layout,
  .creator-journey-layout {
    grid-template-columns: 1fr;
  }

  .creator-values-grid,
  .creator-value-card-wide {
    grid-template-columns: 1fr;
  }

  .creator-value-card-wide {
    grid-template-rows: 220px 1fr;
  }
}

@media (max-width: 640px) {
  .creator-hero {
    padding-top: 54px;
  }

  .creator-hero-image,
  .creator-story-image,
  .creator-video {
    height: 300px;
    min-height: 280px;
  }

  .creator-actions,
  .creator-testimonial-author {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .creator-actions .btn,
  .creator-actions .link-arrow,
  .creator-hero .custom-actions .btn {
    width: 100%;
  }

  .creator-values-grid {
    margin-top: 42px;
  }

  .creator-value-card {
    min-height: 320px;
  }

  .testimonial-brand {
    padding-left: 0;
    border-left: 0;
  }
}


/* ===============================
   AJUSTES V12 - PÁGINA PADRÕES EXCLUSIVOS
   Corrige grid/catálogo, imagens e responsividade
================================= */

.patterns-hero {
  background: var(--yellow, #f4d62f);
  padding: 96px 0 72px;
}

.patterns-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 64px;
  align-items: start;
}

.patterns-hero-title h1 {
  max-width: 520px;
  margin: 0;
  font-family: "Quicksand", sans-serif;
  font-size: clamp(3.2rem, 7vw, 6.8rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
  color: #0b0b0b;
}

.patterns-hero-copy {
  max-width: 560px;
  padding-top: 18px;
}

.patterns-hero-copy p {
  margin: 0 0 28px;
  font-size: 1.125rem;
  line-height: 1.7;
  color: #111;
}

.patterns-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.patterns-hero-image {
  grid-column: 1 / -1;
  min-height: 420px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.08);
}

.pattern-included {
  background: #fff;
}

.pattern-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  margin-top: 54px;
}

.pattern-feature-card {
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 16px;
  background: #f1f1f1;
}

.pattern-feature-image {
  min-height: 150px;
  border-radius: 0;
  background: #dedede;
}

.pattern-feature-copy {
  padding: 28px 24px 32px;
}

.pattern-feature-copy span {
  display: block;
  margin-bottom: 14px;
  font-size: .8rem;
  font-weight: 700;
}

.pattern-feature-copy h3 {
  margin: 0 0 14px;
  font-family: "Quicksand", sans-serif;
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.pattern-feature-copy p {
  margin: 0;
  line-height: 1.55;
}

.pattern-catalog {
  background: var(--brown, #665f59);
  color: #fff;
}

.light-heading,
.light-heading h2,
.light-heading p,
.light-heading .eyebrow {
  color: #fff;
}

.pattern-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 56px 44px;
  margin-top: 64px;
}

.pattern-product-card {
  text-align: center;
  color: #fff;
}

.pattern-product-image {
  min-height: 360px;
  margin-bottom: 22px;
  border-radius: 16px;
  background: rgba(255,255,255,.16);
}

.pattern-product-card h3 {
  margin: 0 0 8px;
  font-family: "Quicksand", sans-serif;
  font-size: 1.35rem;
  line-height: 1.1;
  color: #fff;
}

.pattern-product-card p {
  margin: 0 0 16px;
  color: rgba(255,255,255,.9);
}

.pattern-product-card strong {
  display: block;
  margin-bottom: 18px;
  font-size: 1.35rem;
  color: #fff;
}

.pattern-product-card .btn {
  width: 100%;
  justify-content: center;
  color: #fff;
  border-color: rgba(255,255,255,.35);
  background: transparent;
}

.pattern-product-card .btn:hover {
  border-color: #fff;
  background: rgba(255,255,255,.08);
}

.pattern-proof {
  background: #fff;
}

.pattern-review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  margin-top: 52px;
}

.pattern-review-card {
  padding: 34px;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 16px;
  background: #f8f8f8;
}

.pattern-review-card .stars {
  margin-bottom: 24px;
  font-size: 1.25rem;
  letter-spacing: .08em;
}

.pattern-review-card p {
  margin: 0 0 30px;
  font-size: 1.05rem;
  line-height: 1.65;
}

.pattern-faq {
  background: var(--brown, #665f59);
  color: #fff;
}

.pattern-faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, .75fr) minmax(0, 1.25fr);
  gap: 70px;
}

.pattern-faq-intro h2 {
  margin: 0 0 26px;
  color: #fff;
}

.pattern-faq-intro p {
  max-width: 360px;
  color: rgba(255,255,255,.88);
}

.pattern-question-list {
  display: grid;
  gap: 34px;
}

.pattern-question-list h3 {
  margin: 0 0 12px;
  font-family: "Quicksand", sans-serif;
  color: #fff;
}

.pattern-question-list p {
  margin: 0;
  color: rgba(255,255,255,.88);
  line-height: 1.65;
}

.pattern-final {
  background: var(--yellow, #f4d62f);
}

.pattern-final-card {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  border-radius: 16px;
  background: rgba(0,0,0,.45);
  display: grid;
  place-items: center;
  text-align: center;
}

.pattern-final-bg {
  position: absolute;
  inset: 0;
  min-height: 100%;
  border-radius: 16px;
  opacity: .25;
  background: rgba(0,0,0,.22);
}

.pattern-final-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 48px 24px;
  color: #fff;
}

.pattern-final-content h2 {
  margin: 0 0 20px;
  color: #fff;
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  line-height: 1.06;
}

.pattern-final-content p {
  margin: 0 auto 28px;
  max-width: 640px;
  color: rgba(255,255,255,.92);
  line-height: 1.7;
}

/* Garante que placeholders e imagens não quebrem o layout */
.padroes-exclusivos-page .image-box,
.patterns-hero .image-box,
.pattern-included .image-box,
.pattern-catalog .image-box,
.pattern-final .image-box {
  display: grid;
  place-items: center;
  overflow: hidden;
}

.patterns-hero .image-box img,
.pattern-included .image-box img,
.pattern-catalog .image-box img,
.pattern-final .image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 980px) {
  .patterns-hero-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .patterns-hero-image {
    min-height: 320px;
  }

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

  .pattern-faq-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 640px) {
  .patterns-hero {
    padding: 72px 0 52px;
  }

  .pattern-feature-grid,
  .pattern-product-grid,
  .pattern-review-grid {
    grid-template-columns: 1fr;
  }

  .pattern-product-image {
    min-height: 300px;
  }

  .pattern-feature-copy,
  .pattern-review-card {
    padding: 24px 20px;
  }
}


/* ===============================
   AJUSTES V13 - revisões do PDF
================================= */

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

.process-waiting-note {
  margin-top: 28px;
  padding: 34px clamp(24px, 5vw, 56px);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.12);
  text-align: center;
}

.process-waiting-note h3 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.process-waiting-note p {
  max-width: 920px;
  margin: 0 auto;
  line-height: 1.75;
}

.checklist-tabs {
  grid-template-columns: repeat(5, 1fr);
}

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

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

.creator-journey {
  border-top: 0;
}

@media (max-width: 980px) {
  .services-grid,
  .pattern-feature-grid,
  .pattern-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .services-grid,
  .pattern-feature-grid,
  .pattern-product-grid,
  .checklist-tabs {
    grid-template-columns: 1fr;
  }
}


/* ===============================
   AJUSTES V14
   - Remove fotos dos autores dos depoimentos
   - Centraliza a última linha de padrões exclusivos
   - Ajusta card "Seu cabelo, sua cor"
================================= */

.client,
.quote-author,
.creator-testimonial-author {
  gap: 0;
}

.client strong,
.quote-author strong,
.creator-testimonial-author strong {
  display: inline-block;
}

.pattern-product-grid {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
}

.pattern-product-card {
  flex: 0 1 calc((100% - 88px) / 3);
  min-width: 260px;
}

.miniyou-cards .miniyou-card:first-child {
  padding: 34px;
}

.miniyou-cards .miniyou-card:first-child .type-icon {
  margin-bottom: 26px;
}

@media (max-width: 980px) {
  .pattern-product-card {
    flex-basis: calc((100% - 44px) / 2);
  }
}

@media (max-width: 640px) {
  .pattern-product-card {
    flex-basis: 100%;
  }
}


/* ===============================
   AJUSTES V15
   - Menu/rodapé: Amigurumis personalizados -> Mini-You
   - Remove "Saiba mais" dos cards do Mini-You
   - Alinha os 3 cards da seção "O que é um Mini-You?"
================================= */

.miniyou-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  align-items: stretch !important;
}

.miniyou-cards .miniyou-card {
  min-height: 390px;
  height: 100%;
  display: flex !important;
  flex-direction: column;
  justify-content: flex-start;
}

.miniyou-cards .miniyou-card .type-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 34px;
  object-fit: contain;
}

.miniyou-cards .miniyou-card h3 {
  margin-bottom: 22px;
}

.miniyou-cards .miniyou-card p {
  margin-bottom: 0;
}

@media (max-width: 980px) {
  .miniyou-cards {
    grid-template-columns: 1fr !important;
  }

  .miniyou-cards .miniyou-card {
    min-height: auto;
  }
}


/* ===============================
   AJUSTES V17 - HISTÓRIA DA CRIADORA
   Seção editorial com foto da avó
================================= */

.creator-story-editorial {
  background: #f7f7f7;
}

.creator-story-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}

.creator-story-heading h2 {
  max-width: 620px;
  margin: 0;
  font-family: "Quicksand", system-ui, sans-serif;
  font-size: clamp(2.8rem, 5.6vw, 5.4rem);
  line-height: 1.02;
  letter-spacing: 0.01em;
}

.creator-grandma-image {
  min-height: 440px;
  border-radius: 16px;
  background: #dedede;
}

.creator-editorial-text {
  margin-top: clamp(48px, 6vw, 82px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.75fr) minmax(0, 1fr);
  gap: clamp(30px, 4vw, 58px);
  align-items: start;
}

.creator-editorial-column {
  display: grid;
  gap: 18px;
}

.creator-editorial-column p {
  margin: 0;
  color: #111;
  font-size: clamp(0.98rem, 1.1vw, 1.08rem);
  line-height: 1.85;
}

.creator-editorial-column p:first-child {
  font-weight: 800;
}

.creator-story-quote {
  margin: 0;
  padding: clamp(28px, 4vw, 44px);
  border-left: 6px solid var(--yellow);
  border-radius: 14px;
  background: var(--cream);
  font-family: "Quicksand", system-ui, sans-serif;
  font-size: clamp(1.65rem, 2.7vw, 2.55rem);
  font-weight: 700;
  line-height: 1.15;
  color: #111;
}

@media (max-width: 980px) {
  .creator-story-intro,
  .creator-editorial-text {
    grid-template-columns: 1fr;
  }

  .creator-grandma-image {
    min-height: 360px;
  }

  .creator-story-quote {
    order: -1;
  }
}

@media (max-width: 640px) {
  .creator-grandma-image {
    min-height: 280px;
  }

  .creator-editorial-text {
    margin-top: 38px;
  }
}


/* ===============================
   AJUSTES V18 - FRASE DA HISTÓRIA DA CRIADORA
   Move a frase de destaque para baixo das colunas
================================= */

.creator-editorial-text {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: clamp(34px, 5vw, 72px) clamp(42px, 6vw, 90px) !important;
  align-items: start !important;
}

.creator-editorial-text .creator-editorial-column {
  max-width: 560px;
}

.creator-story-quote {
  grid-column: 1 / -1 !important;
  order: 3;
  max-width: 980px;
  margin: clamp(18px, 3vw, 34px) auto 0 !important;
  padding: clamp(28px, 4vw, 46px) clamp(32px, 6vw, 82px) !important;
  border-left: 0 !important;
  border-top: 6px solid var(--yellow);
  border-radius: 18px;
  background: var(--cream);
  text-align: center;
  font-size: clamp(1.65rem, 2.5vw, 2.65rem) !important;
  line-height: 1.18 !important;
}

@media (max-width: 980px) {
  .creator-editorial-text {
    grid-template-columns: 1fr !important;
  }

  .creator-story-quote {
    order: initial;
    margin-top: 14px !important;
  }
}


/* ===============================
   AJUSTES V19 - HERO PARALLAX HOME
   Mosaico fixo somente no Hero da Home
================================= */

.home-page .hero {
  min-height: calc(100vh - 72px);
  clip-path: inset(0);
  isolation: isolate;
  overflow: hidden;
}

.home-page .hero-grid {
  position: fixed;
  inset: 0;
  height: 100vh;
  z-index: 1;
  padding: 92px 14px 18px;
  grid-auto-rows: minmax(185px, 22vh);
  transform: translateZ(0);
  will-change: transform;
}

.home-page .hero-overlay {
  background:
    radial-gradient(circle at center, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.58)),
    rgba(0, 0, 0, 0.34);
}

.home-page .hero-content {
  min-height: calc(100vh - 72px);
  display: grid;
  align-content: center;
  padding-block: 120px;
}

.home-page main > section:not(.hero) {
  position: relative;
  z-index: 5;
}

.home-page .hero + section {
  box-shadow: 0 -24px 50px rgba(0, 0, 0, 0.18);
}

@media (max-width: 980px) {
  .home-page .hero-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(160px, 20vh);
  }
}

@media (max-width: 640px) {
  .home-page .hero {
    min-height: 82vh;
  }

  .home-page .hero-content {
    min-height: 82vh;
    padding-block: 90px;
  }

  .home-page .hero-grid {
    position: absolute;
    height: 100%;
    padding: 12px;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 155px;
  }
}


/* ===============================
   AJUSTES V20 - HERO PARALLAX COM MOSAICO COMPLETO
   - Altura intermediária do Hero
   - Mosaico maior para preencher toda a tela
================================= */

.home-page .hero {
  height: clamp(690px, 78vh, 800px);
  min-height: 0;
  clip-path: inset(0);
  isolation: isolate;
  overflow: hidden;
}

.home-page .hero-grid {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 115vh;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-rows: clamp(135px, 18vh, 205px);
  grid-auto-flow: dense;
  gap: 10px;
  padding: 10px;
  transform: translateZ(0);
  will-change: transform;
  background: #171611;
}

.home-page .hero-tile {
  min-height: 0;
  border-radius: 10px;
}

.home-page .hero-tile.tall {
  grid-row: span 2;
}

.home-page .hero-tile.wide {
  grid-column: span 2;
}

.home-page .hero-tile.large {
  grid-column: span 2;
  grid-row: span 2;
}

.home-page .hero-tile img {
  filter: saturate(0.95) contrast(1.03);
}

.home-page .hero-overlay {
  background:
    radial-gradient(circle at center, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.58)),
    rgba(0, 0, 0, 0.28);
}

.home-page .hero-content {
  min-height: 100%;
  display: grid;
  align-content: center;
  padding-block: 92px;
}

.home-page .hero + section {
  position: relative;
  z-index: 5;
  box-shadow: 0 -18px 42px rgba(0, 0, 0, 0.16);
}

@media (max-width: 1100px) {
  .home-page .hero-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .home-page .hero {
    height: 82vh;
    min-height: 620px;
  }

  .home-page .hero-grid {
    position: absolute;
    height: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 145px;
    padding: 8px;
    gap: 8px;
  }

  .home-page .hero-tile.wide,
  .home-page .hero-tile.large {
    grid-column: span 1;
  }

  .home-page .hero-tile.large,
  .home-page .hero-tile.tall {
    grid-row: span 2;
  }
}


/* ===============================
   AJUSTES V22
   - Dois Dedos de Prosa com ordinais
   - Caixa da história da criadora alinhada e com novo texto
================================= */

.how-step-copy > span {
  text-transform: lowercase;
}

.creator-editorial-text {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  align-items: start !important;
}

.creator-story-quote {
  grid-column: 1 / -1 !important;
  width: 100%;
  max-width: 100% !important;
  box-sizing: border-box;
  margin-top: clamp(28px, 4vw, 48px) !important;
  padding: clamp(28px, 4vw, 42px) clamp(30px, 6vw, 72px) !important;
  border-left: 0 !important;
  border-top: 6px solid var(--yellow);
  text-align: center;
  font-size: clamp(1.45rem, 2.2vw, 2.25rem) !important;
  line-height: 1.25 !important;
}

@media (max-width: 980px) {
  .creator-editorial-text {
    grid-template-columns: 1fr !important;
  }
}


/* ===============================
   AJUSTES V23 - TEXTO CONHEÇA A CRIADORA
   Remove título repetido, negrito e alinha o texto editorial
================================= */

.creator-story-editorial .creator-editorial-column p,
.creator-story-editorial .creator-editorial-column p:first-child {
  font-weight: 400 !important;
  text-align: justify;
  text-align-last: left;
  hyphens: auto;
}

.creator-story-editorial .creator-editorial-column {
  align-self: start;
}

.creator-story-editorial .creator-editorial-text {
  align-items: start !important;
}

@media (max-width: 640px) {
  .creator-story-editorial .creator-editorial-column p {
    text-align: left;
  }
}


/* ===============================
   AJUSTES V24 - PDF 7 + FOTOS .JPEG
================================= */

.header .logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.header .logo .header-yarn-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
  border-radius: 999px;
}

.footer a[href^="mailto:"] {
  color: inherit;
  text-decoration: none;
}

.footer a[href^="mailto:"]:hover {
  text-decoration: underline;
}

.testimonial-photo {
  height: 420px;
  border-radius: 10px;
  background: #9a9a9a;
}

.faq-item:not(.open) p {
  display: none;
}

@media (max-width: 640px) {
  .header .logo .header-yarn-icon {
    width: 24px;
    height: 24px;
  }
}


/* ===============================
   AJUSTES V25 - LOGO DO CABEÇALHO
   Corrige corte do nome Crochetando e do ícone de novelo
================================= */

.header .logo {
  width: auto !important;
  min-width: 220px;
  height: auto !important;
  min-height: 48px;
  overflow: visible !important;
  justify-content: flex-start !important;
  flex: 0 0 auto;
}

.header .logo > img:not(.header-yarn-icon) {
  width: 172px !important;
  height: auto !important;
  max-height: 44px;
  object-fit: contain !important;
  display: block;
  flex: 0 0 auto;
}

.header .logo .header-yarn-icon {
  width: 34px !important;
  height: 34px !important;
  max-width: 34px;
  max-height: 34px;
  object-fit: contain !important;
  flex: 0 0 34px;
  border-radius: 0;
}

@media (max-width: 760px) {
  .header .logo {
    min-width: 180px;
  }

  .header .logo > img:not(.header-yarn-icon) {
    width: 138px !important;
    max-height: 36px;
  }

  .header .logo .header-yarn-icon {
    width: 28px !important;
    height: 28px !important;
    flex-basis: 28px;
  }
}


/* ===============================
   AJUSTES V26 - LOGO FINAL
   Usa a montagem pronta do logo com novelo incluso
================================= */

.header .logo {
  min-width: 280px !important;
  gap: 0 !important;
}

.header .logo > img:not(.header-yarn-icon) {
  width: 260px !important;
  max-height: 58px !important;
  object-fit: contain !important;
}

.footer-logo img,
.footer .logo img {
  object-fit: contain !important;
}

@media (max-width: 980px) {
  .header .logo {
    min-width: 230px !important;
  }

  .header .logo > img:not(.header-yarn-icon) {
    width: 220px !important;
    max-height: 50px !important;
  }
}

@media (max-width: 640px) {
  .header .logo {
    min-width: 190px !important;
  }

  .header .logo > img:not(.header-yarn-icon) {
    width: 180px !important;
    max-height: 42px !important;
  }
}


/* ===============================
   AJUSTES V29 - REFINOS COM FOTOS FINAIS
   - Galeria menos robusta
   - Padrões alinhados
   - Dois Dedos de Prosa alinhado
   - Fotos da criadora menores
   - Jornada sem aparência de vídeo
================================= */

/* Galeria: diminuir seção "O que faz a diferença" */
.difference-layout {
  max-width: 980px;
  margin-top: 44px !important;
  align-items: stretch;
}

.difference-large {
  height: clamp(320px, 34vw, 390px) !important;
  min-height: 0 !important;
}

.difference-small {
  height: clamp(150px, 16vw, 185px) !important;
  min-height: 0 !important;
}

.difference-stack {
  gap: 20px !important;
}

/* Padrões: alinhar fotos e cards */
.pattern-product-grid {
  align-items: stretch;
}

.pattern-product-card {
  display: flex !important;
  flex-direction: column;
  height: 100%;
}

.pattern-product-image {
  width: 100%;
  height: 340px !important;
  min-height: 340px !important;
  max-height: 340px !important;
  display: block;
  overflow: hidden;
}

.pattern-product-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center;
  display: block;
}

.pattern-product-card h3 {
  min-height: 2.9em;
  display: grid;
  place-items: center;
}

.pattern-product-card .btn {
  margin-top: auto;
}

/* Como funciona: alinhar os cards do "Dois dedos de prosa" */
.how-process-grid {
  align-items: stretch !important;
}

.how-step-stack {
  height: 100%;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.how-step-card {
  height: 100%;
  min-height: 300px;
  grid-template-rows: minmax(0, 1fr) 140px;
}

.how-step-card-large {
  height: 100%;
  min-height: 624px;
}

.how-step-copy {
  display: flex;
  flex-direction: column;
}

.how-step-card p {
  margin-bottom: 0;
}

.how-step-actions {
  margin-top: auto;
}

/* Checklist: garantir que a imagem apareça ao trocar os tópicos */
.checklist-image {
  min-height: 360px;
}

.checklist-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center;
  display: block;
}

/* Conheça a criadora: reduzir fotos principais */
.creator-hero-layout {
  grid-template-columns: 1fr 0.78fr !important;
  gap: clamp(34px, 5vw, 58px) !important;
}

.creator-hero-image {
  min-height: 0 !important;
  height: clamp(300px, 34vw, 380px) !important;
  max-width: 440px;
  justify-self: end;
  width: 100%;
}

.creator-story-intro {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.78fr) !important;
  gap: clamp(30px, 5vw, 56px) !important;
}

.creator-grandma-image {
  min-height: 0 !important;
  height: clamp(300px, 34vw, 380px) !important;
  max-width: 460px;
  justify-self: end;
  width: 100%;
}

/* Jornada: imagem sem botão/estilo de vídeo */
.creator-journey-photo,
.creator-journey .creator-video {
  height: clamp(300px, 38vw, 430px) !important;
  min-height: 0 !important;
  border-radius: 14px;
  overflow: hidden;
}

.creator-journey-photo img,
.creator-journey .creator-video img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center;
}

.creator-journey .play-button {
  display: none !important;
}

/* Responsivo */
@media (max-width: 980px) {
  .difference-layout {
    max-width: 720px;
    grid-template-columns: 1fr;
  }

  .difference-large {
    height: 340px !important;
  }

  .difference-small {
    height: 220px !important;
  }

  .pattern-product-image {
    height: 320px !important;
    min-height: 320px !important;
    max-height: 320px !important;
  }

  .how-process-grid {
    grid-template-columns: 1fr !important;
  }

  .how-step-stack {
    grid-template-rows: none;
  }

  .how-step-card,
  .how-step-card-large {
    min-height: 360px !important;
  }

  .creator-hero-layout,
  .creator-story-intro {
    grid-template-columns: 1fr !important;
  }

  .creator-hero-image,
  .creator-grandma-image {
    justify-self: start;
    max-width: 100%;
    height: 340px !important;
  }
}

@media (max-width: 640px) {
  .difference-large,
  .difference-small,
  .creator-hero-image,
  .creator-grandma-image {
    height: 280px !important;
  }

  .pattern-product-image {
    height: 300px !important;
    min-height: 300px !important;
    max-height: 300px !important;
  }
}


/* ===============================
   AJUSTES V30 - IMAGEM MAIOR NO 1º PASSO
   Mantém o alinhamento dos cards, mas aumenta a foto do primeiro card
   para reduzir o espaço vazio no bloco principal.
================================= */

.how-step-card-large {
  grid-template-rows: minmax(0, 1fr) 250px !important;
}

.how-step-card-large .how-step-image {
  min-height: 250px !important;
  height: 250px !important;
}

.how-step-card-large .how-step-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center;
}

@media (max-width: 980px) {
  .how-step-card-large {
    grid-template-rows: minmax(0, 1fr) 230px !important;
  }

  .how-step-card-large .how-step-image {
    min-height: 230px !important;
    height: 230px !important;
  }
}

@media (max-width: 640px) {
  .how-step-card-large {
    grid-template-rows: minmax(0, 1fr) 210px !important;
  }

  .how-step-card-large .how-step-image {
    min-height: 210px !important;
    height: 210px !important;
  }
}


/* ===============================
   AJUSTES V35 - PÁGINAS LEGAIS
   Política de Privacidade, Termos e Cookies
================================= */

.legal-page {
  background: var(--cream);
}

.legal-hero {
  padding-top: 92px;
  padding-bottom: 56px;
  background: var(--cream);
}

.legal-hero-content {
  max-width: 920px;
}

.legal-hero h1 {
  margin: 0;
  max-width: 780px;
  font-family: "Quicksand", system-ui, sans-serif;
  font-size: clamp(3rem, 6vw, 5.4rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0.02em;
  color: var(--black);
}

.legal-hero p {
  margin: 24px 0 0;
  max-width: 760px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.legal-updated {
  display: inline-flex;
  margin-top: 22px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--yellow);
  font-size: 12px;
  font-weight: 800;
  color: var(--black);
}

.legal-content-section {
  padding-top: 0;
  background: var(--cream);
}

.legal-content {
  max-width: 920px;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(0, 0, 0, 0.10);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.06);
}

.legal-note {
  margin: 0 0 34px;
  padding: 18px 20px;
  border-left: 5px solid var(--yellow);
  border-radius: 12px;
  background: var(--cream);
  color: var(--black);
  font-size: 14px;
  line-height: 1.7;
}

.legal-block {
  padding: 26px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.10);
}

.legal-block:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.legal-block h2 {
  margin: 0 0 12px;
  font-family: "Quicksand", system-ui, sans-serif;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.1;
  color: var(--black);
}

.legal-block p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

.legal-block a {
  color: var(--black);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 640px) {
  .legal-hero {
    padding-top: 72px;
  }

  .legal-content {
    padding: 24px;
    border-radius: 14px;
  }
}


/* ===============================
   AJUSTES V36 - REMOÇÃO DO AVISO INFORMATIVO
================================= */

.legal-note {
  display: none !important;
}


/* ===============================
   AJUSTES V38 - VERSÃO MOBILE COMPLETA
   Responsividade geral para hospedagem em celular
================================= */

/* Base mobile segura */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

/* Tablets e celulares grandes */
@media (max-width: 820px) {
  :root {
    --mobile-gutter: 20px;
  }

  body {
    font-size: 15px;
  }

  .page,
  .page-shell {
    width: 100%;
    overflow-x: hidden;
  }

  .container {
    width: min(100% - 40px, var(--max-width)) !important;
  }

  .section {
    padding: 64px 0 !important;
  }

  /* Cabeçalho mobile */
  .header {
    min-height: 66px;
    padding: 10px 18px !important;
    gap: 14px;
  }

  .header .logo,
  .logo {
    width: auto !important;
    min-width: 0 !important;
    height: auto !important;
    max-width: 188px;
    overflow: visible !important;
    justify-content: flex-start !important;
  }

  .header .logo > img,
  .logo > img {
    width: min(178px, 46vw) !important;
    height: auto !important;
    max-height: 48px !important;
    object-fit: contain !important;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    display: grid !important;
    place-content: center;
    gap: 5px;
    border-radius: 999px;
    background: var(--cream);
  }

  .menu-toggle span {
    width: 22px;
    height: 2px;
    display: block;
    border-radius: 999px;
    background: var(--black);
    transition: transform .25s ease, opacity .25s ease;
  }

  body.menu-open::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 55;
    background: rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(2px);
  }

  .nav {
    position: fixed !important;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    z-index: 60;
    width: min(86vw, 360px) !important;
    min-height: 100dvh !important;
    max-height: 100dvh;
    overflow-y: auto;
    display: grid !important;
    align-content: start;
    justify-content: stretch;
    gap: 2px !important;
    padding: 86px 24px 28px !important;
    background: var(--white);
    box-shadow: -18px 0 45px rgba(0, 0, 0, 0.18);
    transform: translateX(106%);
    transition: transform .28s ease;
  }

  .menu-open .nav {
    transform: translateX(0);
  }

  .nav > a:not(.btn),
  .nav-dropdown > button,
  .dropdown-menu a {
    width: 100%;
    min-height: 44px;
    padding: 12px 0 !important;
    font-size: 16px !important;
    text-align: left !important;
  }

  .nav .btn {
    width: 100%;
    justify-content: center;
    margin-top: 14px;
  }

  .nav-dropdown {
    width: 100%;
  }

  .dropdown-menu {
    position: static !important;
    min-width: 0 !important;
    padding: 0 0 0 14px !important;
    border: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
  }

  .dropdown-menu a {
    color: var(--muted);
    border-radius: 0;
  }

  /* Tipografia mobile geral */
  .hero h1,
  .custom-hero-copy h1,
  .how-hero-copy h1,
  .creator-hero-copy h1,
  .patterns-hero-title h1,
  .gallery-intro h1,
  .legal-hero h1 {
    font-size: clamp(2.55rem, 13vw, 4.1rem) !important;
    line-height: 0.98 !important;
    letter-spacing: 0 !important;
  }

  .section h2,
  .center-heading h2,
  .final-cta h2,
  .gallery-final-cta h2,
  .how-final h2,
  .pattern-final h2,
  .custom-final-cta h2 {
    font-size: clamp(2.15rem, 10vw, 3.2rem) !important;
    line-height: 1.02 !important;
  }

  .center-heading p,
  .hero p,
  .custom-hero-copy p,
  .how-hero-copy p,
  .patterns-hero-copy p,
  .creator-hero-copy p,
  .legal-hero p {
    font-size: 15px !important;
    line-height: 1.65 !important;
  }

  .hero-actions,
  .custom-actions,
  .how-actions,
  .trust-actions,
  .patterns-actions,
  .type-actions {
    width: 100%;
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 12px !important;
  }

  .btn,
  .link-arrow {
    width: 100%;
    justify-content: center;
    min-height: 46px;
  }

  /* Home */
  .home-page .hero,
  .hero {
    height: auto !important;
    min-height: 640px !important;
  }

  .home-page .hero-grid {
    position: absolute !important;
    inset: 0;
    height: 100% !important;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    grid-auto-rows: 130px !important;
    grid-template-rows: none !important;
    gap: 8px !important;
    padding: 8px !important;
  }

  .home-page .hero-grid .hero-tile {
    grid-column: auto !important;
    grid-row: auto !important;
    min-height: 0 !important;
    border-radius: 9px;
  }

  .home-page .hero-grid .hero-tile:nth-child(n+16) {
    display: none;
  }

  .home-page .hero-content,
  .hero-content {
    min-height: 640px !important;
    padding: 104px 0 72px !important;
  }

  .services-grid,
  .testimonial-grid,
  .portfolio-grid,
  .trust-layout,
  .final-cta-layout,
  .footer-card {
    grid-template-columns: 1fr !important;
  }

  .services-grid,
  .testimonial-grid,
  .portfolio-grid {
    gap: 20px !important;
    margin-top: 40px !important;
  }

  .service-card {
    min-height: 0 !important;
    grid-template-rows: auto 230px !important;
  }

  .portfolio-image,
  .trust-image,
  .cta-image {
    height: 300px !important;
    min-height: 0 !important;
  }

  .testimonial-card {
    padding: 28px 24px !important;
  }

  .final-cta-layout {
    gap: 28px !important;
  }

  /* Galeria */
  .gallery-intro,
  .custom-hero,
  .how-hero,
  .patterns-hero,
  .creator-hero {
    padding-top: 56px !important;
  }

  .gallery-intro-layout,
  .custom-hero-card,
  .patterns-hero-layout,
  .creator-hero-layout,
  .how-process-grid,
  .checklist-content,
  .faq-layout,
  .mini-testimonial-layout,
  .creator-journey-layout,
  .creator-story-intro {
    grid-template-columns: 1fr !important;
  }

  .gallery-grid-six,
  .gallery-type-grid,
  .difference-layout,
  .character-mosaic,
  .pattern-feature-grid,
  .pattern-product-grid,
  .pattern-review-grid,
  .miniyou-cards,
  .process-grid {
    grid-template-columns: 1fr !important;
  }

  .gallery-main-image,
  .gallery-small-image,
  .difference-large,
  .difference-small,
  .idea-image,
  .custom-hero-image,
  .custom-final-image,
  .how-hero-image,
  .how-final-image,
  .checklist-image,
  .creator-hero-image,
  .creator-grandma-image,
  .creator-video,
  .creator-journey-photo,
  .patterns-hero-image,
  .pattern-final-bg,
  .testimonial-photo {
    width: 100% !important;
    max-width: 100% !important;
    height: 300px !important;
    min-height: 0 !important;
    justify-self: stretch !important;
  }

  .difference-layout {
    max-width: 100% !important;
    gap: 16px !important;
  }

  .difference-stack {
    gap: 16px !important;
  }

  .character-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    grid-auto-rows: 145px !important;
    gap: 12px !important;
  }

  .character-mosaic .mosaic-item,
  .mosaic-item.tall,
  .mosaic-item.wide,
  .mosaic-item:not(.tall):not(.wide) {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
  }

  .character-mosaic .mosaic-item:nth-child(1),
  .character-mosaic .mosaic-item:nth-child(6),
  .character-mosaic .mosaic-item:nth-child(11) {
    grid-column: span 2 !important;
  }

  /* Mini-You */
  .custom-hero-card {
    border-radius: 18px !important;
  }

  .custom-hero-copy,
  .pattern-feature-copy,
  .pattern-review-card,
  .type-card {
    padding: 26px 22px !important;
  }

  .miniyou-card {
    min-height: auto !important;
  }

  .miniyou-card-feature {
    grid-template-columns: 1fr !important;
  }

  .transformations .carousel-track {
    gap: 14px !important;
  }

  .carousel-slide {
    min-width: min(82vw, 320px) !important;
    height: 360px !important;
  }

  .process-card {
    min-height: 420px !important;
  }

  /* Como funciona */
  .how-process-grid {
    gap: 18px !important;
  }

  .how-step-stack {
    height: auto !important;
    grid-template-rows: none !important;
    gap: 18px !important;
  }

  .how-step-card,
  .how-step-card-large {
    min-height: 0 !important;
    height: auto !important;
    grid-template-rows: auto 190px !important;
  }

  .how-step-copy,
  .how-step-stack .how-step-copy {
    padding: 24px 22px !important;
  }

  .how-step-card h3,
  .how-step-stack .how-step-card h3 {
    font-size: clamp(1.75rem, 9vw, 2.35rem) !important;
  }

  .how-step-card p {
    font-size: 14px !important;
  }

  .how-step-image,
  .how-step-card-large .how-step-image {
    height: 190px !important;
    min-height: 0 !important;
  }

  .checklist-tabs {
    display: flex !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .checklist-tabs button {
    min-width: 158px;
    scroll-snap-align: start;
    font-size: 1.05rem !important;
  }

  .checklist-content {
    padding: 24px !important;
    gap: 24px !important;
  }

  .faq-layout {
    gap: 30px !important;
  }

  /* Padrões */
  .pattern-product-grid {
    display: grid !important;
    gap: 34px !important;
  }

  .pattern-product-card {
    width: 100% !important;
    flex-basis: auto !important;
  }

  .pattern-product-image {
    height: 320px !important;
    min-height: 320px !important;
    max-height: 320px !important;
  }

  .pattern-final-card {
    grid-template-columns: 1fr !important;
  }

  .pattern-final-content {
    padding: 28px 22px !important;
  }

  /* Conheça a criadora */
  .creator-editorial-text {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    margin-top: 34px !important;
  }

  .creator-story-quote {
    padding: 24px 20px !important;
    font-size: clamp(1.3rem, 7vw, 1.85rem) !important;
    text-align: left !important;
  }

  .creator-numbers {
    grid-template-columns: 1fr !important;
    gap: 26px !important;
  }

  .creator-numbers strong {
    font-size: clamp(2.75rem, 15vw, 4.2rem) !important;
  }

  .creator-numbers p {
    font-size: 18px !important;
  }

  .creator-testimonial-content {
    text-align: left !important;
  }

  .creator-testimonial blockquote {
    font-size: clamp(1.45rem, 8vw, 2rem) !important;
  }

  /* Páginas legais */
  .legal-hero {
    padding-top: 56px !important;
    padding-bottom: 34px !important;
  }

  .legal-content {
    padding: 24px 20px !important;
    border-radius: 14px !important;
  }

  .legal-block {
    padding: 22px 0 !important;
  }

  /* Rodapé */
  .footer {
    padding-top: 0;
  }

  .footer-card {
    gap: 30px !important;
    padding: 26px 22px !important;
  }

  .footer-brand {
    gap: 20px !important;
  }

  .footer-brand > img {
    max-width: 210px !important;
  }

  .footer-links {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .footer-links a,
  .footer-bottom a {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
  }

  .footer-bottom {
    gap: 18px !important;
    align-items: flex-start !important;
    text-align: left !important;
  }

  .footer-bottom > div {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 8px !important;
  }
}

/* Celulares pequenos */
@media (max-width: 480px) {
  .container {
    width: min(100% - 30px, var(--max-width)) !important;
  }

  .header {
    padding-inline: 14px !important;
  }

  .header .logo > img,
  .logo > img {
    width: min(158px, 50vw) !important;
    max-height: 42px !important;
  }

  .nav {
    width: min(90vw, 340px) !important;
    padding-inline: 22px !important;
  }

  .section {
    padding: 54px 0 !important;
  }

  .hero h1,
  .custom-hero-copy h1,
  .how-hero-copy h1,
  .creator-hero-copy h1,
  .patterns-hero-title h1,
  .gallery-intro h1,
  .legal-hero h1 {
    font-size: clamp(2.3rem, 15vw, 3.35rem) !important;
  }

  .section h2,
  .center-heading h2,
  .final-cta h2,
  .gallery-final-cta h2,
  .how-final h2,
  .pattern-final h2,
  .custom-final-cta h2 {
    font-size: clamp(2rem, 12vw, 2.75rem) !important;
  }

  .home-page .hero,
  .hero {
    min-height: 610px !important;
  }

  .home-page .hero-content,
  .hero-content {
    min-height: 610px !important;
    padding-top: 96px !important;
  }

  .home-page .hero-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    grid-auto-rows: 120px !important;
  }

  .home-page .hero-grid .hero-tile:nth-child(n+13) {
    display: none;
  }

  .service-card {
    grid-template-rows: auto 210px !important;
  }

  .portfolio-image,
  .trust-image,
  .cta-image,
  .gallery-main-image,
  .gallery-small-image,
  .difference-large,
  .difference-small,
  .idea-image,
  .custom-hero-image,
  .custom-final-image,
  .how-hero-image,
  .how-final-image,
  .checklist-image,
  .creator-hero-image,
  .creator-grandma-image,
  .creator-video,
  .creator-journey-photo,
  .patterns-hero-image,
  .pattern-final-bg,
  .testimonial-photo {
    height: 260px !important;
  }

  .pattern-product-image {
    height: 295px !important;
    min-height: 295px !important;
    max-height: 295px !important;
  }

  .character-mosaic {
    grid-auto-rows: 130px !important;
  }

  .how-step-card,
  .how-step-card-large {
    grid-template-rows: auto 170px !important;
  }

  .how-step-image,
  .how-step-card-large .how-step-image {
    height: 170px !important;
  }

  .checklist-tabs button {
    min-width: 145px;
    min-height: 64px;
  }

  .custom-hero-copy,
  .pattern-feature-copy,
  .pattern-review-card,
  .type-card,
  .checklist-content,
  .pattern-final-content {
    padding: 22px 18px !important;
  }

  .footer-card {
    padding: 24px 18px !important;
  }
}


/* ===============================
   AJUSTES V39 - CORREÇÃO DO MENU MOBILE
   Remove a camada de opacidade que bloqueava os cliques
   e garante que o menu lateral fique acima do conteúdo.
================================= */

@media (max-width: 820px) {
  body.menu-open::before {
    display: none !important;
    content: none !important;
    pointer-events: none !important;
  }

  .nav {
    z-index: 9999 !important;
    pointer-events: auto !important;
    opacity: 1 !important;
    filter: none !important;
    backdrop-filter: none !important;
    background: var(--white) !important;
  }

  .menu-open .nav {
    transform: translateX(0) !important;
  }

  .nav *,
  .nav a,
  .nav button {
    pointer-events: auto !important;
  }

  .menu-toggle {
    z-index: 10000 !important;
    pointer-events: auto !important;
  }
}


/* ===============================
   AJUSTES V40 - FOTOS SEM CORTE NO MOBILE
   Padrões Exclusivos e Conheça a Criadora
   Evita cortar partes importantes das imagens em telas menores.
================================= */

@media (max-width: 820px) {
  /* Padrões exclusivos: fotos dos produtos e imagem principal sem corte */
  .padroes-exclusivos-page .patterns-hero-image,
  .padroes-exclusivos-page .pattern-product-image,
  .padroes-exclusivos-page .pattern-final-bg {
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    background: var(--cream) !important;
  }

  .padroes-exclusivos-page .patterns-hero-image img,
  .padroes-exclusivos-page .pattern-product-image img,
  .padroes-exclusivos-page .pattern-final-bg img {
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    object-fit: contain !important;
    object-position: center center !important;
  }

  /* Conheça a Criadora: mantém a foto inteira visível */
  .creator-hero-image,
  .creator-grandma-image,
  .creator-journey-photo,
  .creator-video {
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    background: var(--cream) !important;
  }

  .creator-hero-image img,
  .creator-grandma-image img,
  .creator-journey-photo img,
  .creator-video img {
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    object-fit: contain !important;
    object-position: center center !important;
  }
}

@media (max-width: 480px) {
  .padroes-exclusivos-page .patterns-hero-image,
  .padroes-exclusivos-page .pattern-product-image,
  .padroes-exclusivos-page .pattern-final-bg,
  .creator-hero-image,
  .creator-grandma-image,
  .creator-journey-photo,
  .creator-video {
    height: auto !important;
    min-height: 0 !important;
  }
}


/* ===============================
   AJUSTES V41 - REFINOS MOBILE FINAIS
   - Remove botão "Saiba mais" no Mini-You pelo HTML
   - Esconde última imagem isolada da galeria de personagens apenas no mobile
   - Faz a imagem final de Padrões preencher o quadro no mobile
================================= */

@media (max-width: 820px) {
  /* Galeria: evita última foto sozinha no mosaico de personagens */
  .character-mosaic .mosaic-item:last-child {
    display: none !important;
  }

  /* Padrões exclusivos: apenas a imagem final deve preencher o quadro no mobile */
  .padroes-exclusivos-page .pattern-final-bg {
    height: 320px !important;
    min-height: 320px !important;
    max-height: 320px !important;
    overflow: hidden !important;
    background: transparent !important;
  }

  .padroes-exclusivos-page .pattern-final-bg img {
    width: 100% !important;
    height: 100% !important;
    min-height: 100% !important;
    max-height: none !important;
    object-fit: cover !important;
    object-position: center center !important;
    display: block !important;
  }

  .padroes-exclusivos-page .pattern-final-card {
    overflow: hidden !important;
  }
}

@media (max-width: 480px) {
  .padroes-exclusivos-page .pattern-final-bg {
    height: 300px !important;
    min-height: 300px !important;
    max-height: 300px !important;
  }
}
