:root {
      --marrom-900: #3c2115;
      --marrom-800: #55301d;
      --marrom-700: #7b4426;
      --marrom-600: #965b37;
      --caramelo: #c98245;
      --creme: #fff7ea;
      --bege: #f4e5cf;
      --bege-escuro: #e8cfaf;
      --verde: #48634c;
      --vermelho: #b4473f;
      --branco: #ffffff;
      --texto: #322820;
      --texto-suave: #6b5b50;
      --sombra: 0 18px 50px rgba(76, 40, 20, 0.13);
      --raio: 24px;
      --largura: 1180px;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--texto);
      background: var(--creme);
      line-height: 1.6;
    }

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

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

    button,
    input {
      font: inherit;
    }

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

    .tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      width: fit-content;
      padding: 8px 14px;
      border-radius: 999px;
      background: rgba(123, 68, 38, 0.1);
      color: var(--marrom-700);
      font-size: 0.82rem;
      font-weight: 800;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    .section-header {
      max-width: 760px;
      margin-bottom: 34px;
    }

    .section-header h2 {
      margin-top: 13px;
      font-size: clamp(2rem, 4vw, 3.25rem);
      line-height: 1.05;
      color: var(--marrom-900);
      letter-spacing: -0.04em;
    }

    .section-header p {
      margin-top: 16px;
      color: var(--texto-suave);
      font-size: 1.05rem;
    }

    .btn {
      display: inline-flex;
      justify-content: center;
      align-items: center;
      gap: 10px;
      min-height: 50px;
      padding: 13px 22px;
      border-radius: 14px;
      border: 1px solid transparent;
      font-weight: 800;
      transition: 0.2s ease;
      cursor: pointer;
    }

    .btn:hover {
      transform: translateY(-2px);
    }

    .btn-primary {
      background: var(--marrom-700);
      color: var(--branco);
      box-shadow: 0 10px 24px rgba(123, 68, 38, 0.25);
    }

    .btn-primary:hover {
      background: var(--marrom-800);
    }

    .btn-secondary {
      background: var(--branco);
      border-color: var(--bege-escuro);
      color: var(--marrom-800);
    }

    .btn-secondary:hover {
      border-color: var(--caramelo);
    }

    /* Header */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 100;
      backdrop-filter: blur(14px);
      background: rgba(255, 247, 234, 0.9);
      border-bottom: 1px solid rgba(123, 68, 38, 0.09);
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      min-height: 76px;
      gap: 24px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      color: var(--marrom-900);
      font-weight: 900;
      letter-spacing: -0.03em;
      font-size: 1.1rem;
      white-space: nowrap;
    }

    .site-header .brand {
      width: 270px;
      height: 58px;
      flex: 0 0 270px;
      background: url('../img/logo-clube-do-salsicha-horizontal.webp') center / contain no-repeat;
    }

    .site-header .brand > * {
      opacity: 0;
    }

    .brand-mark {
      display: grid;
      place-items: center;
      width: 43px;
      height: 43px;
      border-radius: 50%;
      background: var(--marrom-700);
      color: var(--branco);
      font-size: 1.35rem;
      box-shadow: 0 8px 18px rgba(123, 68, 38, 0.23);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 26px;
      font-size: 0.93rem;
      font-weight: 700;
      color: var(--texto-suave);
    }

    .nav-links a:hover {
      color: var(--marrom-700);
    }

    .nav-links a[aria-current="page"] {
      color: var(--marrom-800);
      text-decoration: underline;
      text-decoration-color: var(--caramelo);
      text-decoration-thickness: 3px;
      text-underline-offset: 7px;
    }

    .header-social-links {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-left: auto;
    }

    .header-social-links a {
      display: inline-grid;
      place-items: center;
      position: relative;
      isolation: isolate;
      width: 42px;
      height: 42px;
      padding: 4px;
      border: 0;
      border-radius: 12px;
      background: transparent;
      box-shadow: none;
      transition: transform 0.2s ease, background 0.2s ease;
    }

    .header-social-links a:hover {
      transform: scale(1.08);
      background: rgba(201, 130, 69, 0.1);
    }

    .header-social-links a:active {
      transform: scale(0.96);
    }

    .social-link--instagram {
      color: var(--verde);
    }

    .social-link--tiktok {
      color: var(--marrom-700);
    }

    .social-icon {
      display: block;
      position: relative;
      z-index: 1;
      width: 100%;
      height: 100%;
    }

    .footer-social-links .social-link--instagram {
      color: #c9e1cc;
    }

    .footer-social-links .social-link--tiktok {
      color: #ffd19c;
    }

    .menu-button {
      display: none;
      border: 0;
      background: transparent;
      font-size: 1.65rem;
      color: var(--marrom-900);
      cursor: pointer;
    }

    /* Hero */
    .hero {
      position: relative;
      overflow: hidden;
      padding: 76px 0 68px;
      background:
        radial-gradient(circle at 8% 12%, rgba(201, 130, 69, 0.16), transparent 28%),
        radial-gradient(circle at 92% 12%, rgba(72, 99, 76, 0.12), transparent 26%),
        var(--creme);
    }

    .hero::after {
      content: "";
      position: absolute;
      left: -80px;
      bottom: -120px;
      width: 280px;
      height: 280px;
      border-radius: 50%;
      background: rgba(123, 68, 38, 0.06);
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 58px;
      align-items: center;
    }

    .hero-copy h1 {
      margin-top: 18px;
      max-width: 760px;
      font-size: clamp(2.8rem, 6vw, 5.6rem);
      line-height: 0.96;
      letter-spacing: -0.065em;
      color: var(--marrom-900);
    }

    .hero-copy h1 span {
      color: var(--marrom-700);
    }

    .hero-copy > p {
      max-width: 650px;
      margin-top: 24px;
      color: var(--texto-suave);
      font-size: clamp(1.05rem, 2vw, 1.25rem);
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 30px;
    }

    .hero-proof {
      display: flex;
      flex-wrap: wrap;
      gap: 18px;
      margin-top: 30px;
      color: var(--texto-suave);
      font-size: 0.9rem;
      font-weight: 700;
    }

    .hero-proof span {
      display: inline-flex;
      align-items: center;
      gap: 7px;
    }

    .hero-visual {
      position: relative;
      min-height: 460px;
    }

    .hero-feature-link {
      position: absolute;
      z-index: 1;
      inset: 18px 28px 82px 0;
      border-radius: 36px;
    }

    .photo-card {
      position: absolute;
      inset: 18px 28px 82px 0;
      overflow: hidden;
      border-radius: 36px;
      background:
        linear-gradient(180deg, rgba(53, 30, 18, 0.04), rgba(53, 30, 18, 0.34)),
        image-set(
          url("../img/dachshund-home.webp") type("image/webp"),
          url("../img/dachshund-home.jpg") type("image/jpeg")
        ) center/cover no-repeat,
        linear-gradient(145deg, #e5b37d, #8f5734);
      box-shadow: var(--sombra);
      transition: opacity 220ms ease;
    }

    .photo-card.is-portrait {
      background-color: #d9b58d;
      background-size: contain !important;
      background-repeat: no-repeat;
    }

    .hero-visual.is-changing .photo-card,
    .hero-visual.is-changing .floating-card {
      opacity: 0.35;
    }

    .photo-card::before {
      content: "Adicione aqui a foto principal do seu salsicha";
      position: absolute;
      inset: 0;
      display: grid;
      place-items: center;
      padding: 40px;
      text-align: center;
      color: rgba(255, 255, 255, 0.92);
      font-weight: 900;
      font-size: 1.2rem;
      background: rgba(65, 37, 22, 0.23);
    }

    .photo-card.has-image::before {
      display: none;
    }

    .floating-card {
      position: absolute;
      z-index: 2;
      right: 28px;
      bottom: 82px;
      left: 0;
      max-width: none;
      padding: 74px 26px 22px;
      border-radius: 0 0 36px 36px;
      background: linear-gradient(180deg, transparent 0%, rgba(43, 23, 13, 0.74) 48%, rgba(43, 23, 13, 0.94) 100%);
      box-shadow: none;
      text-decoration: none;
      transition: opacity 220ms ease, background 220ms ease;
    }

    .floating-card:hover,
    .floating-card:focus-visible {
      background: linear-gradient(180deg, transparent 0%, rgba(43, 23, 13, 0.8) 45%, rgba(43, 23, 13, 0.98) 100%);
    }

    .floating-card strong {
      display: block;
      max-width: 92%;
      color: #fffaf3;
      font-size: clamp(1.05rem, 1.8vw, 1.32rem);
      line-height: 1.2;
      text-shadow: 0 2px 12px rgba(26, 13, 7, 0.35);
    }

    .floating-card p {
      margin-top: 5px;
      max-width: 90%;
      color: rgba(255, 250, 243, 0.86);
      font-size: 0.84rem;
      display: -webkit-box;
      overflow: hidden;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 2;
    }

    .floating-card .icon {
      display: none;
    }

    .hero-feature-cta {
      display: inline-block;
      margin-top: 8px;
      color: #ffe2bd;
      font-size: 0.82rem;
      font-weight: 900;
    }

    .hero-feature-controls {
      position: absolute;
      z-index: 3;
      top: 32px;
      left: 14px;
      bottom: auto;
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 7px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.94);
      box-shadow: 0 8px 24px rgba(53, 30, 18, 0.18);
    }

    .hero-feature-arrow,
    .hero-feature-dot {
      display: grid;
      place-items: center;
      border: 0;
      color: var(--marrom-900);
      background: transparent;
      cursor: pointer;
    }

    .hero-feature-arrow {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      font-size: 1rem;
    }

    .hero-feature-arrow:hover,
    .hero-feature-arrow:focus-visible {
      background: var(--bege);
    }

    .hero-feature-dots {
      display: flex;
      gap: 6px;
    }

    .hero-feature-dot {
      width: 9px;
      height: 9px;
      padding: 0;
      border-radius: 50%;
      background: #d7b99f;
    }

    .hero-feature-dot.is-active {
      background: var(--marrom-700);
      transform: scale(1.25);
    }

    /* Categories */
    .categories {
      padding: 86px 0;
      background: var(--branco);
    }

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

    .category-card {
      min-height: 220px;
      padding: 24px;
      border-radius: var(--raio);
      border: 1px solid #f0dfca;
      background: #fffdf9;
      transition: 0.2s ease;
    }

    .category-card:hover {
      transform: translateY(-5px);
      border-color: var(--caramelo);
      box-shadow: 0 16px 35px rgba(86, 47, 27, 0.1);
    }

    .category-icon {
      display: grid;
      place-items: center;
      width: 52px;
      height: 52px;
      border-radius: 16px;
      background: var(--bege);
      font-size: 1.5rem;
    }

    .category-card h3 {
      margin-top: 22px;
      color: var(--marrom-900);
      font-size: 1.18rem;
    }

    .category-card p {
      margin-top: 9px;
      color: var(--texto-suave);
      font-size: 0.93rem;
    }

    .category-card .link {
      display: inline-flex;
      margin-top: 18px;
      color: var(--marrom-700);
      font-weight: 800;
      font-size: 0.9rem;
    }

    /* Value */
    .value-section {
      padding: 90px 0;
      background: var(--creme);
    }

    .value-grid {
      display: grid;
      grid-template-columns: 0.85fr 1.15fr;
      gap: 56px;
      align-items: center;
    }

    .value-visual {
      min-height: 470px;
      border-radius: 34px;
      background:
        linear-gradient(145deg, rgba(123, 68, 38, 0.2), rgba(72, 99, 76, 0.16)),
        image-set(
          url("../img/dachshund-cuidados.webp") type("image/webp"),
          url("../img/dachshund-cuidados.jpg") type("image/jpeg")
        ) center/cover no-repeat,
        #d9b28a;
      box-shadow: var(--sombra);
      position: relative;
      overflow: hidden;
    }

    .value-visual::before {
      content: "Foto para a seção de cuidados";
      position: absolute;
      inset: 0;
      display: grid;
      place-items: center;
      color: rgba(255, 255, 255, 0.93);
      background: rgba(63, 36, 21, 0.22);
      font-weight: 900;
      text-align: center;
      padding: 30px;
    }

    .value-list {
      display: grid;
      gap: 18px;
      margin-top: 30px;
    }

    .value-item {
      display: grid;
      grid-template-columns: 46px 1fr;
      gap: 15px;
      align-items: start;
    }

    .value-item .check {
      display: grid;
      place-items: center;
      width: 42px;
      height: 42px;
      border-radius: 14px;
      background: rgba(72, 99, 76, 0.12);
      color: var(--verde);
      font-weight: 900;
    }

    .value-item h3 {
      color: var(--marrom-900);
      font-size: 1.02rem;
    }

    .value-item p {
      margin-top: 3px;
      color: var(--texto-suave);
      font-size: 0.93rem;
    }

    /* Ebook */
    .ebook-section {
      padding: 88px 0;
      background: var(--marrom-900);
      color: var(--branco);
      overflow: hidden;
    }

    .ebook-grid {
      display: grid;
      grid-template-columns: 0.85fr 1.15fr;
      gap: 64px;
      align-items: center;
    }

    .book-wrap {
      display: grid;
      place-items: center;
      min-height: 430px;
      position: relative;
    }

    .book-cover {
      width: min(300px, 78%);
      aspect-ratio: 0.72;
      padding: 28px;
      border-radius: 12px 23px 23px 12px;
      background:
        radial-gradient(circle at 72% 22%, rgba(255, 255, 255, 0.16), transparent 22%),
        linear-gradient(145deg, #c98245, #6e351e);
      box-shadow: 24px 28px 48px rgba(0, 0, 0, 0.33);
      transform: rotate(-4deg);
      border-left: 11px solid rgba(57, 27, 15, 0.45);
      position: relative;
    }

    .book-cover small {
      display: inline-block;
      padding: 6px 10px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.14);
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .book-cover h3 {
      margin-top: 28px;
      font-size: 2.05rem;
      line-height: 1.02;
      letter-spacing: -0.04em;
    }

    .book-cover p {
      margin-top: 18px;
      color: rgba(255, 255, 255, 0.78);
      font-size: 0.95rem;
    }

    .book-cover .dog {
      position: absolute;
      right: 24px;
      bottom: 22px;
      font-size: 4.2rem;
      filter: drop-shadow(0 12px 10px rgba(0, 0, 0, 0.24));
    }

    .ebook-copy .tag {
      background: rgba(255, 255, 255, 0.12);
      color: #ffd9ad;
    }

    .ebook-copy h2 {
      margin-top: 16px;
      font-size: clamp(2.25rem, 5vw, 4.2rem);
      line-height: 1;
      letter-spacing: -0.055em;
    }

    .ebook-copy > p {
      margin-top: 21px;
      color: rgba(255, 255, 255, 0.76);
      font-size: 1.05rem;
      max-width: 650px;
    }

    .ebook-benefits {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px 18px;
      margin-top: 26px;
      color: rgba(255, 255, 255, 0.86);
      font-size: 0.93rem;
      font-weight: 700;
    }

    .ebook-benefits span::before {
      content: "✓";
      margin-right: 8px;
      color: #ffd19c;
      font-weight: 900;
    }

    .ebook-price {
      display: flex;
      flex-wrap: wrap;
      align-items: end;
      gap: 10px 18px;
      margin-top: 30px;
    }

    .ebook-price strong {
      font-size: 2.2rem;
      line-height: 1;
    }

    .ebook-price small {
      color: rgba(255, 255, 255, 0.62);
    }

    .ebook-section .btn-primary {
      margin-top: 22px;
      background: var(--caramelo);
      color: #2d180e;
    }

    .ebook-section .btn-primary:hover {
      background: #dda163;
    }

    .ebook-note {
      margin-top: 14px;
      color: rgba(255, 255, 255, 0.54);
      font-size: 0.78rem;
    }

    /* Products */
    .products-section {
      padding: 90px 0;
      background: var(--branco);
    }

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

    .product-card {
      overflow: hidden;
      border: 1px solid #efdfca;
      border-radius: var(--raio);
      background: #fffdf9;
      transition: 0.2s ease;
    }

    .product-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 38px rgba(75, 42, 24, 0.1);
    }

    .product-image {
      display: grid;
      place-items: center;
      aspect-ratio: 1.35;
      background: var(--bege);
      color: var(--marrom-700);
      font-size: 3.2rem;
    }

    .product-content {
      padding: 22px;
    }

    .product-content small {
      color: var(--caramelo);
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    .product-content h3 {
      margin-top: 8px;
      color: var(--marrom-900);
      font-size: 1.15rem;
    }

    .product-content p {
      margin-top: 8px;
      color: var(--texto-suave);
      font-size: 0.91rem;
    }

    .product-content .link {
      display: inline-flex;
      margin-top: 18px;
      font-weight: 900;
      color: var(--marrom-700);
    }

    .affiliate-disclosure {
      margin-top: 20px;
      color: var(--texto-suave);
      font-size: 0.78rem;
    }

    /* Games */
    .games-promo {
      padding: 88px 0;
      overflow: hidden;
      background: var(--marrom-900);
      color: var(--branco);
    }

    .games-promo-grid {
      display: grid;
      grid-template-columns: 1fr 0.9fr;
      gap: 54px;
      align-items: center;
    }

    .games-promo .tag {
      background: rgba(255, 255, 255, 0.11);
      color: #ffd5a5;
    }

    .games-promo h2 {
      max-width: 650px;
      margin-top: 14px;
      font-size: clamp(2.2rem, 5vw, 4.4rem);
      line-height: 0.98;
      letter-spacing: -0.055em;
    }

    .games-promo-copy > p {
      max-width: 620px;
      margin-top: 18px;
      color: rgba(255, 255, 255, 0.74);
      font-size: 1.04rem;
    }

    .games-promo .btn-primary {
      background: var(--caramelo);
      color: var(--marrom-900);
    }

    .games-promo .games-promo-note {
      margin-top: 18px;
      font-size: 0.86rem;
      font-weight: 800;
    }

    .games-promo-visual {
      min-height: 350px;
      display: grid;
      place-items: center;
      position: relative;
      border: 1px solid rgba(255, 218, 173, 0.25);
      border-radius: 32px;
      background: radial-gradient(circle at 50% 45%, rgba(201, 130, 69, 0.22), transparent 48%), #29170f;
    }

    .games-promo-mascot {
      width: min(92%, 430px);
      aspect-ratio: 1;
      background: url('../../jogos/shared/assets/mascot/salsicha-sprites-official.png') 33.333% 0 / 400% 200% no-repeat;
      filter: drop-shadow(0 18px 18px rgba(0, 0, 0, 0.24));
    }

    .games-promo-visual strong {
      position: absolute;
      right: 22px;
      bottom: 22px;
      padding: 9px 14px;
      border-radius: 999px;
      background: var(--caramelo);
      color: var(--marrom-900);
      font-size: 0.82rem;
    }

    /* Articles */
    .articles-section {
      padding: 90px 0;
      background: var(--creme);
    }

    .articles-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      grid-auto-flow: dense;
      gap: 20px;
    }

    .article-card {
      min-height: 370px;
      padding: 24px;
      display: flex;
      flex-direction: column;
      justify-content: end;
      border-radius: var(--raio);
      overflow: hidden;
      position: relative;
      isolation: isolate;
      background: #3d2114;
      color: var(--branco);
      box-shadow: var(--sombra);
    }

    .article-card::before {
      content: "";
      position: absolute;
      inset: 0 0 42% 0;
      z-index: -2;
      background: var(--article-image, linear-gradient(145deg, #d4a476, #76513a));
      background-size: cover;
      background-position: center;
    }

    .article-card::after {
      content: "";
      position: absolute;
      inset: 42% 0 0;
      z-index: -1;
      background: linear-gradient(180deg, rgba(61, 33, 20, 0) 0%, rgba(61, 33, 20, 0.94) 18%, #3d2114 34%);
    }

    .article-card.featured {
      min-height: 470px;
      grid-column: span 2;
    }

    .article-card small {
      position: relative;
      z-index: 1;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.07em;
      color: #ffd4a4;
    }

    .article-card h3 {
      position: relative;
      z-index: 1;
      margin-top: 8px;
      font-size: clamp(1.35rem, 2.5vw, 2.25rem);
      line-height: 1.08;
      letter-spacing: -0.03em;
      display: -webkit-box;
      overflow: hidden;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 3;
    }

    .article-card p {
      position: relative;
      z-index: 1;
      margin-top: 10px;
      color: rgba(255, 255, 255, 0.75);
      font-size: 0.9rem;
      display: -webkit-box;
      overflow: hidden;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 2;
    }

    .articles-footer,
    .home-articles-load-more {
      margin-top: 28px;
    }

    .home-articles-load-more {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 14px;
    }

    .home-articles-status {
      margin: 0;
      color: var(--texto-suave);
      font-size: 0.86rem;
    }

    .home-articles-sentinel {
      width: 100%;
      height: 1px;
    }

    .article-card-entering {
      animation: article-card-enter 420ms ease both;
    }

    @keyframes article-card-enter {
      from {
        opacity: 0;
        transform: translateY(18px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .article-card-entering {
        animation: none;
      }
    }

    /* Social CTA */
    .social-section {
      padding: 84px 0;
      background: var(--branco);
    }

    .social-box {
      display: grid;
      grid-template-columns: 1.25fr 0.75fr;
      gap: 40px;
      align-items: center;
      padding: clamp(30px, 6vw, 64px);
      border-radius: 32px;
      color: var(--branco);
      background:
        radial-gradient(circle at 90% 18%, rgba(255, 255, 255, 0.12), transparent 25%),
        linear-gradient(135deg, var(--marrom-700), var(--marrom-900));
      box-shadow: var(--sombra);
    }

    .social-box h2 {
      font-size: clamp(2rem, 4vw, 3.5rem);
      line-height: 1;
      letter-spacing: -0.05em;
    }

    .social-box p {
      margin-top: 16px;
      color: rgba(255, 255, 255, 0.76);
      max-width: 660px;
    }

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

    .social-actions a {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 18px;
      border-radius: 14px;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.15);
      font-weight: 800;
      transition: 0.2s ease;
    }

    .social-actions a:hover {
      background: rgba(255, 255, 255, 0.17);
    }

    /* Newsletter */
    .newsletter-section {
      padding: 76px 0;
      background: var(--bege);
    }

    .newsletter-box {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 34px;
      align-items: center;
    }

    .newsletter-box h2 {
      color: var(--marrom-900);
      font-size: clamp(1.8rem, 4vw, 3rem);
      line-height: 1.05;
      letter-spacing: -0.04em;
    }

    .newsletter-box p {
      margin-top: 10px;
      color: var(--texto-suave);
    }

    .newsletter-form {
      display: flex;
      gap: 10px;
      min-width: min(100%, 460px);
    }

    .newsletter-form input {
      flex: 1;
      min-width: 0;
      padding: 14px 16px;
      border: 1px solid #d8b994;
      border-radius: 13px;
      background: var(--branco);
      outline: none;
    }

    .newsletter-form input:focus {
      border-color: var(--marrom-700);
      box-shadow: 0 0 0 3px rgba(123, 68, 38, 0.12);
    }

    /* Footer */
    .site-footer {
      padding: 55px 0 25px;
      background: #2c190f;
      color: rgba(255, 255, 255, 0.72);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.3fr repeat(3, 0.7fr);
      gap: 38px;
    }

    .footer-brand .brand {
      color: var(--branco);
    }

    .footer-brand p {
      max-width: 410px;
      margin-top: 16px;
      font-size: 0.9rem;
    }

    .footer-column h3 {
      margin-bottom: 14px;
      color: var(--branco);
      font-size: 0.95rem;
    }

    .footer-column a {
      display: block;
      padding: 5px 0;
      font-size: 0.88rem;
    }

    .footer-column a:hover {
      color: #ffd4a4;
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 20px;
      margin-top: 45px;
      padding-top: 22px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      font-size: 0.78rem;
    }

    .footer-social-links {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 18px;
    }

    .footer-social-links a {
      display: inline-grid;
      place-items: center;
      position: relative;
      isolation: isolate;
      width: 64px;
      height: 64px;
      padding: 9px;
      border: 0;
      border-radius: 18px;
      background: transparent;
      box-shadow: none;
      line-height: 1;
      transition: transform 0.2s ease, background 0.2s ease;
    }

    .footer-social-links a:hover {
      transform: scale(1.08);
      background: rgba(255, 247, 234, 0.12);
    }

    .footer-social-links a:active {
      transform: scale(0.96);
    }

    .footer-social-links .social-icon {
      filter: brightness(0) saturate(100%) invert(94%) sepia(28%) saturate(447%) hue-rotate(319deg) brightness(105%) contrast(103%);
    }

    .cookie-consent {
      position: fixed;
      z-index: 1000;
      right: 20px;
      bottom: 20px;
      width: min(420px, calc(100vw - 40px));
      padding: 20px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 18px;
      background: #4a2816;
      color: #fff7ea;
      box-shadow: 0 16px 40px rgba(45, 24, 13, 0.35);
      font-size: 0.92rem;
      line-height: 1.5;
    }

    .cookie-consent p { margin: 0; }
    .cookie-consent a { color: #ffe0aa; text-decoration: underline; }
    .cookie-consent-actions { display: flex; justify-content: flex-end; gap: 10px; margin-top: 16px; }
    .cookie-consent button { min-height: 40px; padding: 8px 16px; border-radius: 10px; font: inherit; font-weight: 700; cursor: pointer; }
    .cookie-consent-reject { border: 1px solid rgba(255, 247, 234, 0.7); background: transparent; color: #fff7ea; }
    .cookie-consent-accept { border: 1px solid #ffe0aa; background: #ffe0aa; color: #4a2816; }

    @media (max-width: 560px) {
      .cookie-consent { right: 12px; bottom: 12px; width: calc(100vw - 24px); }
      .cookie-consent-actions { flex-direction: column-reverse; }
      .cookie-consent button { width: 100%; }
    }


    /* Accessibility */
    .skip-link {
      position: absolute;
      left: -999px;
      top: 8px;
      z-index: 999;
      padding: 10px 14px;
      background: var(--branco);
      color: var(--marrom-900);
      border-radius: 8px;
    }

    .skip-link:focus {
      left: 8px;
    }

    /* Responsive */
    @media (max-width: 980px) {
      .nav-links,
      .nav .btn,
      .header-social-links {
        display: none;
      }

      .menu-button {
        display: block;
      }

      .nav-links.open {
        position: absolute;
        top: 76px;
        left: 16px;
        right: 16px;
        display: grid;
        gap: 0;
        padding: 12px;
        border-radius: 16px;
        background: var(--branco);
        box-shadow: var(--sombra);
      }

      .nav-links.open a {
        padding: 13px 10px;
      }

      .hero-grid,
      .value-grid,
      .ebook-grid,
      .games-promo-grid,
      .social-box,
      .newsletter-box {
        grid-template-columns: 1fr;
      }

      .hero-visual {
        min-height: 440px;
      }

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

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

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

      .article-card.featured {
        grid-column: 1 / -1;
      }

      .articles-grid > .article-card:not(.featured):last-child:nth-child(even) {
        grid-column: 1 / -1;
      }

      .newsletter-form {
        min-width: 0;
        width: 100%;
      }

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

    @media (max-width: 640px) {
      .site-header .brand {
        width: 235px;
        height: 56px;
        flex-basis: 235px;
      }

      .hero {
        padding-top: 52px;
      }

      .hero-copy h1 {
        font-size: clamp(2.7rem, 15vw, 4rem);
      }

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

      .hero-visual {
        min-height: 440px;
      }

      .photo-card {
        inset: 0 0 92px;
        right: 0;
      }

      .hero-feature-link {
        inset: 0 0 92px;
        right: 0;
      }

      .hero-feature-controls {
        top: 14px;
        right: 14px;
        bottom: auto;
        left: auto;
      }

      .floating-card {
        left: 0;
        right: 0;
        bottom: 92px;
        max-width: none;
        padding: 62px 20px 18px;
        border-radius: 0 0 36px 36px;
      }

      .floating-card p {
        -webkit-line-clamp: 2;
      }

      .category-grid,
      .products-grid,
      .articles-grid,
      .ebook-benefits,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .article-card.featured {
        grid-column: auto;
      }

      .articles-grid > .article-card:not(.featured):last-child {
        grid-column: auto;
      }

      .value-visual {
        min-height: 340px;
      }

      .games-promo-visual {
        min-height: 285px;
      }

      .newsletter-form {
        flex-direction: column;
      }

      .footer-bottom {
        flex-direction: column;
      }
    }

    /* Interactive states and progressive enhancement */
    :focus-visible {
      outline: 3px solid var(--caramelo);
      outline-offset: 4px;
    }

    .btn:focus-visible,
    .category-card:focus-visible,
    .article-card:focus-visible,
    .social-actions a:focus-visible {
      border-radius: 14px;
    }

    .btn:disabled {
      cursor: not-allowed;
      opacity: 0.65;
      transform: none;
    }

    .value-visual.has-image::before {
      display: none;
    }

    .form-status {
      min-height: 1.5em;
      margin-top: 10px;
      color: var(--texto-suave);
      font-size: 0.84rem;
    }

    .form-status.is-warning {
      color: var(--marrom-800);
      font-weight: 700;
    }

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

    @media (max-width: 980px) {
      body.menu-open {
        overflow: hidden;
      }
    }

    @media (max-width: 640px) {
      .hero-copy h1 {
        font-size: clamp(2.45rem, 13vw, 3.5rem);
      }
    }

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

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