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

  :root {
    --rose:       #C2687A;
    --rose-light: #E8A0B4;
    --rose-pale:  #F9E4EA;
    --rose-faint: #FDF5F7;
    --cream:      #FFFBF9;
    --blush:      #F4D4DC;
    --text-dark:  #2D1820;
    --text-mid:   #7A5563;
    --text-light: #B08A96;
    --white:      #FFFFFF;
  }

  html { scroll-behavior: smooth; }
  body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--text-dark); font-size: 16px; line-height: 1.7; }

  /* ─── NAV ─── */
  nav {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255,251,249,0.93);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--blush);
    padding: 0 2.5rem;
    display: flex; align-items: center; justify-content: space-between;
    height: 64px;
  }
  .logo { font-family: 'Dancing Script', cursive; font-size: 1.9rem; color: var(--rose); text-decoration: none; cursor: pointer; }
  nav ul { list-style: none; display: flex; gap: 2rem; }
  nav ul a {
    font-size: 0.82rem; font-weight: 500; letter-spacing: 0.09em;
    text-transform: uppercase; color: var(--text-mid); text-decoration: none;
    cursor: pointer; transition: color 0.2s; border: none; background: none; font-family: inherit;
  }
  nav ul a:hover { color: var(--rose); }
  nav ul a.active { color: var(--rose); }
  .nav-cta { background: var(--rose) !important; color: white !important; padding: 0.45rem 1.2rem; border-radius: 40px; }
  .nav-cta:hover { background: var(--text-dark) !important; }


  /* ─── BUTTONS ─── */
  .btn-primary { background: var(--rose); color: white; padding: 0.85rem 2rem; border-radius: 50px; text-decoration: none; font-size: 0.9rem; font-weight: 500; cursor: pointer; border: none; font-family: inherit; transition: background 0.2s, transform 0.15s; display: inline-block; }
  .btn-primary:hover { background: var(--text-dark); transform: translateY(-2px); }
  .btn-outline { background: transparent; color: var(--text-dark); padding: 0.85rem 2rem; border-radius: 50px; border: 1.5px solid var(--blush); text-decoration: none; font-size: 0.9rem; font-weight: 500; cursor: pointer; font-family: inherit; transition: border-color 0.2s, transform 0.15s; display: inline-block; }
  .btn-outline:hover { border-color: var(--rose); transform: translateY(-2px); }
  .btn-white { background: white; color: var(--rose); padding: 0.9rem 2rem; border-radius: 50px; text-decoration: none; font-size: 0.9rem; font-weight: 500; cursor: pointer; border: none; font-family: inherit; transition: opacity 0.2s, transform 0.15s; display: inline-block; }
  .btn-white:hover { opacity: 0.9; transform: translateY(-2px); }
  .btn-ghost { background: transparent; color: white; padding: 0.9rem 2rem; border-radius: 50px; border: 1.5px solid rgba(255,255,255,0.5); text-decoration: none; font-size: 0.9rem; font-weight: 500; cursor: pointer; font-family: inherit; transition: border-color 0.2s, transform 0.15s; display: inline-block; }
  .btn-ghost:hover { border-color: white; transform: translateY(-2px); }

  /* ─── SECTION HEADER ─── */
  .section-header { text-align: center; margin-bottom: 3rem; }
  .section-tag { display: inline-block; font-size: 0.72rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--rose); margin-bottom: 0.75rem; }
  .section-header h2 { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 400; color: var(--text-dark); line-height: 1.25; }
  .section-header h2 em { font-style: italic; color: var(--rose); }

  .divider { text-align: center; color: var(--rose-light); font-family: 'Dancing Script', cursive; font-size: 1.4rem; padding: 0.5rem 0; letter-spacing: 0.2em; opacity: 0.6; }

  /* ══════════════════════════════════════
     HOME PAGE
  ══════════════════════════════════════ */

  /* HERO */
  .hero { min-height: 92vh; display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; align-items: stretch; background: var(--cream); }
  .hero-text { padding: 5rem 4rem 5rem 6rem; display: flex; flex-direction: column; justify-content: center; position: relative; z-index: 3; }
  .hero-tag { display: inline-block; font-size: 0.72rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--rose); background: var(--rose-pale); padding: 0.35rem 0.9rem; border-radius: 40px; margin-bottom: 1.5rem; width: fit-content; }
  .hero-script { font-family: 'Dancing Script', cursive; font-size: 1.6rem; color: var(--rose-light); margin-bottom: 0.5rem; }
  .hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.8rem, 5vw, 4.2rem); font-weight: 400; line-height: 1.12; color: var(--text-dark); margin-bottom: 1.5rem; }
  .hero h1 em { font-style: italic; color: var(--rose); }
  .hero p { font-size: 1.05rem; color: var(--text-mid); max-width: 460px; margin-bottom: 2.5rem; line-height: 1.8; }
  .hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
  .hero-image { height: 92vh; position: relative; overflow: visible; display: flex; align-items: center; justify-content: center; background: var(--cream); padding: 2rem 3rem; }
  .hero-frame { position: relative; width: 100%; max-width: 480px; display: flex; align-items: center; justify-content: center; }
  .hero-frame::after {
    content: "✨"; position: absolute;
    font-size: 2.4rem;
    top: -2.5rem; right: -1rem;
    color: #F0B36A;
    z-index: 5;
    transform: rotate(-12deg);
    text-shadow: 0 4px 12px rgba(194,104,122,0.18);
  }
  .photo-placeholder { width: 100%; aspect-ratio: 3/4; height: auto; background: var(--cream); border-radius: 240px 240px 0 0; border: 7px solid var(--rose-light); display: flex; flex-direction: column; align-items: center; justify-content: center; color: rgba(255,255,255,0.85); font-size: 0.9rem; gap: 0.5rem; overflow: hidden; position: relative; z-index: 2; box-shadow: 0 24px 60px rgba(194,104,122,0.18); }
  .photo-placeholder img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; display: block; border-radius: inherit; }
  .photo-icon { font-size: 3rem; opacity: 0.7; }
  .hero-floating-tag { position: absolute; bottom: 14%; left: -2.5rem; background: white; border-radius: 18px; padding: 0.95rem 1.4rem; box-shadow: 0 16px 44px rgba(194,104,122,0.22); font-size: 0.88rem; font-weight: 500; color: var(--text-dark); white-space: nowrap; z-index: 6; display: flex; align-items: center; gap: 0.75rem; }
  .hero-floating-tag::before { content: "🌸"; font-size: 1.3rem; }
  .hero-floating-tag-text strong { display: block; font-size: 0.9rem; font-weight: 500; color: var(--text-dark); line-height: 1.2; }
  .hero-floating-tag-text span { display: block; font-size: 0.74rem; color: var(--text-light); font-weight: 400; margin-top: 3px; }
  .hero-stat-card { position: absolute; top: 22%; right: -2.2rem; background: white; border-radius: 18px; padding: 0.95rem 1.2rem; box-shadow: 0 16px 44px rgba(194,104,122,0.2); z-index: 6; text-align: center; min-width: 92px; }
  .hero-stat-card .stat-big { font-family: 'Playfair Display', serif; font-size: 1.7rem; color: var(--rose); line-height: 1; font-weight: 600; }
  .hero-stat-card .stat-label-mini { font-size: 0.7rem; color: var(--text-mid); letter-spacing: 0.04em; margin-top: 5px; }

  /* CATEGORIAS */
  .categories { padding: 5rem 6rem; background: var(--white); }
  .categories-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; max-width: 640px; margin: 0 auto; }
  .cat-card { background: var(--rose-faint); border-radius: 20px; padding: 2rem 1rem; text-align: center; text-decoration: none; cursor: pointer; transition: transform 0.2s, background 0.2s; border: 1px solid transparent; }
  .cat-card:hover { transform: translateY(-4px); background: var(--rose-pale); border-color: var(--rose-light); }
  .cat-icon { font-size: 2.4rem; margin-bottom: 0.75rem; display: block; }
  .cat-icon.has-image {
    width: 88px; height: 88px;
    margin: 0 auto 0.75rem;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--rose-pale), var(--blush));
    overflow: hidden;
    padding: 6px;
    display: flex; align-items: center; justify-content: center;
    transition: transform 0.25s;
  }
  .cat-card:hover .cat-icon.has-image { transform: scale(1.04) rotate(-1.5deg); }
  .cat-icon.has-image img {
    width: 100%; height: 100%;
    object-fit: contain; object-position: center;
    display: block;
  }
  .cat-card:nth-child(1) .cat-icon.has-image { background: linear-gradient(135deg, #FCE9D8, #F4C7A1); }
  .cat-card:nth-child(2) .cat-icon.has-image { background: linear-gradient(135deg, #F9D8E3, #E8A0B4); }
  .cat-name { font-size: 0.85rem; font-weight: 500; color: var(--text-dark); }
  .cat-count { font-size: 0.75rem; color: var(--text-light); margin-top: 0.25rem; }

  /* POSTS */
  .featured { padding: 5rem 6rem; background: var(--rose-faint); }
  .posts-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 1.5rem; }
  .post-card { background: var(--white); border-radius: 20px; overflow: hidden; text-decoration: none; cursor: pointer; transition: transform 0.2s; border: 1px solid var(--blush); }
  .post-card:hover { transform: translateY(-5px); }
  .post-thumb-placeholder { width: 100%; aspect-ratio: 16/9; background: linear-gradient(135deg, var(--rose-pale), var(--blush)); display: flex; align-items: center; justify-content: center; font-size: 2.5rem; overflow: hidden; padding: 0.5rem; }
  .post-card.featured-main .post-thumb-placeholder { aspect-ratio: 4/3; font-size: 4rem; padding: 0.75rem; }
  .post-thumb-placeholder img { width: 100%; height: 100%; object-fit: contain; object-position: center; display: block; }
  .post-body { padding: 1.5rem; }
  .post-cat { display: inline-block; font-size: 0.7rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--rose); background: var(--rose-pale); padding: 0.25rem 0.7rem; border-radius: 40px; margin-bottom: 0.75rem; }
  .post-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 400; color: var(--text-dark); line-height: 1.4; margin-bottom: 0.75rem; }
  .featured-main .post-title { font-size: 1.5rem; }
  .post-excerpt { font-size: 0.88rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 1rem; }
  .post-meta { display: flex; align-items: center; gap: 0.5rem; font-size: 0.78rem; color: var(--text-light); }
  .post-meta-dot { opacity: 0.4; }

  /* ABOUT PREVIEW */
  .about-home { padding: 6rem; background: var(--white); display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
  .about-img { width: 100%; aspect-ratio: 3/4; background: linear-gradient(160deg, #F9D8E3 0%, #EDB8C8 40%, #D4849A 100%); border-radius: 200px 200px 20px 200px; display: flex; align-items: center; justify-content: center; font-size: 5rem; flex-direction: column; gap: 0.5rem; color: rgba(255,255,255,0.85); overflow: hidden; position: relative; }
  .about-img span { font-family: 'DM Sans', sans-serif; font-size: 0.9rem; opacity: 0.8; }
  .about-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .about-img-wrap { position: relative; }
  .about-badge { position: absolute; bottom: 2rem; right: -1.5rem; background: var(--white); border: 1px solid var(--blush); border-radius: 20px; padding: 1.2rem 1.5rem; box-shadow: 0 12px 40px rgba(194,104,122,0.15); text-align: center; }
  .about-badge-num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 600; color: var(--rose); }
  .about-badge-label { font-size: 0.78rem; color: var(--text-light); margin-top: 2px; }
  .about-text h2 { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 400; line-height: 1.2; margin-bottom: 1.5rem; color: var(--text-dark); }
  .about-text h2 em { color: var(--rose); font-style: italic; }
  .about-text p { color: var(--text-mid); margin-bottom: 1.25rem; font-size: 1rem; line-height: 1.8; }
  .about-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1.5rem 0 2rem; }
  .about-tag { background: var(--rose-pale); color: var(--rose); font-size: 0.8rem; font-weight: 500; padding: 0.4rem 1rem; border-radius: 40px; }

  /* AFILIADOS */
  .affiliates { padding: 5rem 6rem; background: var(--rose-faint); }
  .affiliates-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
  .aff-card { background: var(--white); border-radius: 20px; overflow: hidden; border: 1px solid var(--blush); transition: transform 0.2s; text-decoration: none; cursor: pointer; }
  .aff-card:hover { transform: translateY(-4px); }
  .aff-img { width: 100%; aspect-ratio: 1; background: linear-gradient(135deg, var(--rose-pale), var(--blush)); display: flex; align-items: center; justify-content: center; font-size: 3.5rem; }
  .aff-body { padding: 1.25rem; }
  .aff-tag { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--rose-light); margin-bottom: 0.4rem; }
  .aff-name { font-size: 0.95rem; font-weight: 500; color: var(--text-dark); margin-bottom: 0.5rem; }
  .aff-price { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--rose); margin-bottom: 0.75rem; }
  .aff-btn { display: block; text-align: center; background: var(--rose-pale); color: var(--rose); padding: 0.55rem; border-radius: 12px; font-size: 0.8rem; font-weight: 500; transition: background 0.2s, color 0.2s; }
  .aff-btn:hover { background: var(--rose); color: white; }

  /* NEWSLETTER */
  .newsletter { padding: 6rem; background: var(--rose); text-align: center; position: relative; overflow: hidden; }
  .newsletter::before { content: ''; position: absolute; top: -60px; left: -60px; width: 300px; height: 300px; background: rgba(255,255,255,0.08); border-radius: 50%; }
  .newsletter::after { content: ''; position: absolute; bottom: -80px; right: -40px; width: 350px; height: 350px; background: rgba(255,255,255,0.06); border-radius: 50%; }
  .newsletter-inner { position: relative; z-index: 1; max-width: 560px; margin: 0 auto; }
  .newsletter h2 { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 400; color: white; margin-bottom: 1rem; line-height: 1.2; }
  .newsletter p { color: rgba(255,255,255,0.8); margin-bottom: 2rem; font-size: 1rem; }
  .nl-form { display: flex; gap: 0.75rem; max-width: 440px; margin: 0 auto; }
  .nl-input { flex: 1; padding: 0.9rem 1.25rem; border-radius: 50px; border: none; font-family: 'DM Sans', sans-serif; font-size: 0.9rem; outline: none; background: white; color: var(--text-dark); }
  .nl-btn { background: var(--text-dark); color: white; padding: 0.9rem 1.75rem; border-radius: 50px; border: none; font-family: 'DM Sans', sans-serif; font-size: 0.9rem; font-weight: 500; cursor: pointer; white-space: nowrap; transition: opacity 0.2s; }
  .nl-btn:hover { opacity: 0.85; }

  /* ══════════════════════════════════════
     SOBRE MIM PAGE
  ══════════════════════════════════════ */

  .page-hero { background: var(--rose-pale); padding: 5rem 6rem; display: grid; grid-template-columns: 1fr 1.1fr; gap: 5rem; align-items: center; border-bottom: 1px solid var(--blush); }
  .page-hero-text .eyebrow { display: inline-block; font-size: 0.72rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--rose); background: white; border: 1px solid var(--blush); padding: 0.35rem 0.9rem; border-radius: 40px; margin-bottom: 1.5rem; }
  .page-hero-text h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.4rem, 4vw, 3.6rem); font-weight: 400; line-height: 1.15; color: var(--text-dark); margin-bottom: 1.5rem; }
  .page-hero-text h1 em { font-style: italic; color: var(--rose); }
  .page-hero-text p { font-size: 1.1rem; color: var(--text-mid); line-height: 1.85; max-width: 480px; }
  .hero-photo-wrap { position: relative; }
  .hero-photo { width: 100%; aspect-ratio: 3/4; background: linear-gradient(160deg, #F9D8E3 0%, #EDB8C8 40%, #D4849A 100%); border-radius: 200px 200px 120px 200px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.85); font-size: 4rem; flex-direction: column; gap: 0.5rem; overflow: hidden; position: relative; box-shadow: 0 24px 64px rgba(194,104,122,0.22); }
  .hero-photo span { font-family: 'DM Sans', sans-serif; font-size: 0.9rem; opacity: 0.8; }
  .hero-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .float-card { position: absolute; bottom: 2.5rem; left: -2rem; background: white; border-radius: 20px; padding: 1.1rem 1.5rem; box-shadow: 0 16px 48px rgba(194,104,122,0.18); display: flex; align-items: center; gap: 1rem; }
  .float-card-icon { font-size: 2rem; }
  .float-card-text strong { display: block; font-size: 0.92rem; font-weight: 500; color: var(--text-dark); }
  .float-card-text span { font-size: 0.78rem; color: var(--text-light); }

  .story { padding: 6rem; background: var(--white); max-width: 860px; margin: 0 auto; }
  .story-eyebrow { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--rose); margin-bottom: 0.75rem; display: block; }
  .story h2 { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 400; color: var(--text-dark); margin-bottom: 2rem; line-height: 1.3; }
  .story h2 em { font-style: italic; color: var(--rose); }
  .story p { font-size: 1.05rem; color: var(--text-mid); line-height: 1.9; margin-bottom: 1.5rem; }
  .story p strong { color: var(--text-dark); font-weight: 500; }
  .story blockquote { border-left: 3px solid var(--rose-light); margin: 2.5rem 0; padding: 1.25rem 2rem; background: var(--rose-faint); border-radius: 0 16px 16px 0; }
  .story blockquote p { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-style: italic; color: var(--text-dark); margin: 0; line-height: 1.6; }

  .pillars { padding: 5rem 6rem; background: var(--rose-faint); }
  .pillars-header { text-align: center; margin-bottom: 3rem; }
  .pillars-header span { display: block; font-size: 0.72rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--rose); margin-bottom: 0.75rem; }
  .pillars-header h2 { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 400; color: var(--text-dark); }
  .pillars-header h2 em { font-style: italic; color: var(--rose); }
  .pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 960px; margin: 0 auto; }
  .pillar-card { background: white; border-radius: 24px; padding: 2.5rem 2rem; text-align: center; border: 1px solid var(--blush); transition: transform 0.2s; }
  .pillar-card:hover { transform: translateY(-4px); }
  .pillar-icon { font-size: 2.8rem; margin-bottom: 1rem; display: block; }
  .pillar-icon.has-image {
    width: 110px; height: 110px;
    margin: 0 auto 1rem;
    border-radius: 22px;
    overflow: hidden;
    padding: 8px;
    display: flex; align-items: center; justify-content: center;
    transition: transform 0.3s ease;
  }
  .pillar-icon.has-image img {
    width: 100%; height: 100%;
    object-fit: contain; object-position: center;
    display: block;
  }
  .pillar-card:hover .pillar-icon.has-image { transform: scale(1.05) rotate(-2deg); }
  .pillar-card:nth-child(1) .pillar-icon.has-image { background: linear-gradient(135deg, #F9D8E3, #E8A0B4); }
  .pillar-card:nth-child(2) .pillar-icon.has-image { background: linear-gradient(135deg, #FCE9D8, #F4C7A1); }
  .pillar-card:nth-child(3) .pillar-icon.has-image { background: linear-gradient(135deg, #EDE2F1, #C5A7DC); }
  .pillar-card h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 400; color: var(--text-dark); margin-bottom: 0.75rem; }
  .pillar-card p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.7; }

  .facts { padding: 5rem 6rem; background: var(--white); display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
  .facts-text span { display: block; font-size: 0.72rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--rose); margin-bottom: 0.75rem; }
  .facts-text h2 { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 400; color: var(--text-dark); margin-bottom: 2rem; }
  .facts-text h2 em { font-style: italic; color: var(--rose); }
  .facts-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
  .facts-list li { display: flex; align-items: flex-start; gap: 1rem; padding: 1rem 1.25rem; background: var(--rose-faint); border-radius: 16px; border: 1px solid var(--blush); }
  .facts-list li .fact-icon { font-size: 1.4rem; flex-shrink: 0; }
  .facts-list li .fact-text strong { display: block; font-size: 0.9rem; font-weight: 500; color: var(--text-dark); margin-bottom: 0.15rem; }
  .facts-list li .fact-text span { font-size: 0.82rem; color: var(--text-mid); }
  .facts-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
  .stat-card { background: var(--rose-pale); border-radius: 24px; padding: 2rem; text-align: center; border: 1px solid var(--blush); }
  .stat-num { font-family: 'Playfair Display', serif; font-size: 2.8rem; font-weight: 400; color: var(--rose); display: block; line-height: 1; }
  .stat-label { font-size: 0.82rem; color: var(--text-mid); margin-top: 0.5rem; display: block; }

  .cta-section { padding: 6rem; background: var(--rose); text-align: center; position: relative; overflow: hidden; }
  .cta-section::before { content: ''; position: absolute; top: -80px; left: -80px; width: 360px; height: 360px; background: rgba(255,255,255,0.07); border-radius: 50%; }
  .cta-section::after { content: ''; position: absolute; bottom: -60px; right: -60px; width: 300px; height: 300px; background: rgba(255,255,255,0.05); border-radius: 50%; }
  .cta-inner { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
  .cta-inner h2 { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 400; color: white; margin-bottom: 1rem; line-height: 1.25; }
  .cta-inner p { color: rgba(255,255,255,0.78); font-size: 1rem; margin-bottom: 2rem; }
  .cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

  /* ══════════════════════════════════════
     PÁGINAS DE CATEGORIA
  ══════════════════════════════════════ */

  .cat-hero {
    background: linear-gradient(180deg, var(--rose-pale) 0%, var(--rose-faint) 100%);
    padding: 5rem 6rem 4rem;
    text-align: center;
    border-bottom: 1px solid var(--blush);
  }
  .cat-hero .cat-emoji { font-size: 3.4rem; display: block; margin-bottom: 1rem; }
  .cat-hero .cat-eyebrow {
    display: inline-block; font-size: 0.72rem; font-weight: 500;
    letter-spacing: 0.18em; text-transform: uppercase; color: var(--rose);
    background: white; border: 1px solid var(--blush);
    padding: 0.4rem 1rem; border-radius: 40px; margin-bottom: 1rem;
  }
  .cat-hero h1 {
    font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 400; color: var(--text-dark); line-height: 1.2;
    margin-bottom: 1.25rem;
  }
  .cat-hero h1 em { font-style: italic; color: var(--rose); }
  .cat-hero p {
    max-width: 600px; margin: 0 auto;
    font-size: 1.05rem; color: var(--text-mid); line-height: 1.85;
  }
  .cat-hero .cat-meta {
    margin-top: 1.5rem; display: inline-flex; align-items: center; gap: 0.5rem;
    font-size: 0.82rem; color: var(--text-light);
  }
  .cat-hero .cat-meta-dot { opacity: 0.4; }

  /* Cat hero com imagem editorial (2 colunas) */
  .cat-hero.has-feature {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 3.5rem;
    align-items: center;
    text-align: left;
    padding: 4.5rem 6rem 4.5rem;
    position: relative;
    overflow: hidden;
  }
  .cat-hero.has-feature::before {
    content: '✦'; position: absolute;
    top: 2rem; right: 3rem;
    font-size: 1.6rem; color: var(--rose-light);
    opacity: 0.55;
  }
  .cat-hero.has-feature .cat-hero-text { max-width: 480px; }
  .cat-hero.has-feature .cat-emoji {
    display: inline-block;
    margin-bottom: 0.5rem;
    font-size: 2.4rem;
  }
  .cat-hero.has-feature p {
    max-width: 100%; margin: 0;
  }
  .cat-hero.has-feature .cat-meta {
    margin-top: 1.5rem;
  }
  .cat-hero-image-wrap {
    position: relative;
    display: flex; align-items: center; justify-content: center;
  }
  .cat-hero-image {
    position: relative; width: 100%; max-width: 540px;
    aspect-ratio: 16/9;
    border-radius: 32px;
    overflow: hidden;
    background: linear-gradient(160deg, var(--rose-pale) 0%, var(--blush) 100%);
    box-shadow: 0 30px 70px rgba(194,104,122,0.22);
    border: 6px solid var(--white);
    transition: transform 0.4s ease;
  }
  .cat-hero-image:hover { transform: translateY(-4px) rotate(-0.6deg); }
  .cat-hero-image img {
    width: 100%; height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    padding: 0.5rem;
  }
  .cat-hero-image-wrap::after {
    content: '';
    position: absolute;
    width: 120px; height: 120px;
    border-radius: 50%;
    background: var(--white);
    opacity: 0.35;
    bottom: -2rem; left: -2rem;
    z-index: 0;
  }
  .cat-hero-image-wrap::before {
    content: '✦';
    position: absolute;
    top: -0.5rem; right: -0.5rem;
    font-size: 1.8rem;
    color: var(--rose);
    z-index: 4;
    opacity: 0.9;
    text-shadow: 0 4px 12px rgba(194,104,122,0.25);
  }

  .cat-listing { padding: 5rem 6rem; background: var(--cream); }
  .cat-listing-inner { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 4rem; }

  .cat-post {
    background: var(--white); border: 1px solid var(--blush); border-radius: 24px;
    overflow: hidden; box-shadow: 0 4px 24px rgba(194,104,122,0.06);
  }
  .cat-post-cover {
    width: 100%; aspect-ratio: 16/8;
    background: linear-gradient(135deg, var(--rose-pale), var(--blush));
    display: flex; align-items: center; justify-content: center;
    font-size: 4rem;
  }
  .cat-post-body { padding: 2.5rem 2.5rem 2.75rem; }
  .cat-post-meta {
    display: flex; align-items: center; gap: 0.6rem; flex-wrap: wrap;
    font-size: 0.78rem; color: var(--text-light); margin-bottom: 1rem;
  }
  .cat-post-meta .post-cat-pill {
    display: inline-block; font-size: 0.7rem; font-weight: 500;
    letter-spacing: 0.12em; text-transform: uppercase; color: var(--rose);
    background: var(--rose-pale); padding: 0.25rem 0.75rem; border-radius: 40px;
  }
  .cat-post-body h2 {
    font-family: 'Playfair Display', serif; font-size: 1.85rem; font-weight: 400;
    line-height: 1.25; color: var(--text-dark); margin-bottom: 1.25rem;
  }
  .cat-post-body h2 em { font-style: italic; color: var(--rose); }
  .cat-post-lead {
    font-size: 1.05rem; color: var(--text-mid); line-height: 1.85;
    margin-bottom: 1.5rem; font-weight: 400;
  }
  .cat-post-content p {
    font-size: 0.98rem; color: var(--text-mid); line-height: 1.85;
    margin-bottom: 1.1rem;
  }
  .cat-post-content p strong { color: var(--text-dark); font-weight: 500; }
  .cat-post-content h3 {
    font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 500;
    color: var(--text-dark); margin: 1.5rem 0 0.85rem;
  }
  .cat-post-content h3.major-heading {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.55rem, 2.6vw, 2rem);
    font-weight: 400;
    line-height: 1.25;
    color: var(--text-dark);
    margin: 4rem auto 2rem;
    padding-top: 3rem;
    max-width: 640px;
    position: relative;
  }
  .cat-post-content h3.major-heading::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 56px; height: 1px;
    background: var(--rose-light);
  }
  .cat-post-content h3.major-heading::after {
    content: attr(data-eyebrow);
    position: absolute;
    top: 0.75rem; left: 50%;
    transform: translateX(-50%);
    font-family: 'Dancing Script', cursive;
    font-size: 1.25rem;
    color: var(--rose);
    font-weight: 600;
    letter-spacing: 0.04em;
    white-space: nowrap;
  }
  .cat-post-content h3.major-heading em {
    font-style: italic;
    color: var(--rose);
  }
  .cat-post-content ul {
    list-style: none; margin: 0.5rem 0 1.25rem; padding: 0;
    display: flex; flex-direction: column; gap: 0.5rem;
  }
  .cat-post-content ul li {
    position: relative; padding-left: 1.5rem;
    font-size: 0.98rem; color: var(--text-mid); line-height: 1.7;
  }
  .cat-post-content ul li::before {
    content: '✦'; position: absolute; left: 0; top: 0.05rem;
    color: var(--rose-light); font-size: 0.85rem;
  }
  .cat-post-content blockquote {
    border-left: 3px solid var(--rose-light); margin: 1.5rem 0;
    padding: 1rem 1.5rem; background: var(--rose-faint); border-radius: 0 14px 14px 0;
  }
  .cat-post-content blockquote p {
    font-family: 'Playfair Display', serif; font-style: italic;
    font-size: 1.05rem; color: var(--text-dark); margin: 0;
  }
  .cat-post-content a {
    color: var(--rose); text-decoration: none; font-weight: 500;
    border-bottom: 1px solid var(--rose-pale); transition: border-color 0.2s, color 0.2s;
  }
  .cat-post-content a:hover { color: var(--text-dark); border-bottom-color: var(--rose); }
  .cat-post-cover.has-image {
    font-size: 0;
    padding: 1rem 1.5rem;
    aspect-ratio: 16/7;
    position: relative;
  }
  .cat-post-cover.has-image::before {
    content: '✦'; position: absolute;
    top: 1rem; left: 1.5rem;
    font-size: 1.4rem; color: var(--rose);
    opacity: 0.5; z-index: 2;
  }
  .cat-post-cover.has-image::after {
    content: '✦'; position: absolute;
    bottom: 1rem; right: 1.5rem;
    font-size: 1.4rem; color: var(--rose);
    opacity: 0.5; z-index: 2;
  }
  .cat-post-cover img {
    width: 100%; height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    position: relative; z-index: 1;
  }
  .article-figure {
    margin: 2.5rem 0; position: relative;
    display: flex; flex-direction: column; align-items: center;
  }
  .article-figure::before {
    content: '✦'; position: absolute;
    font-size: 1.6rem; color: var(--rose-light);
    top: -0.4rem; z-index: 3;
    text-shadow: 0 4px 12px rgba(194,104,122,0.18);
  }
  .article-figure.alt::before { right: 14%; }
  .article-figure:not(.alt)::before { left: 14%; }
  .article-figure-img {
    width: 100%; max-width: 440px;
    aspect-ratio: 4/5;
    overflow: hidden;
    background: var(--rose-faint);
    box-shadow: 0 24px 56px rgba(194,104,122,0.20);
    border: 6px solid var(--white);
    position: relative; z-index: 2;
    transition: transform 0.4s ease;
  }
  .article-figure-img:hover { transform: translateY(-4px); }
  .article-figure-img.shape-petal {
    border-radius: 220px 32px 220px 32px;
  }
  .article-figure-img.shape-petal-alt {
    border-radius: 32px 220px 32px 220px;
  }
  .article-figure-img img {
    width: 100%; height: 100%; object-fit: cover; display: block;
  }
  .article-figure figcaption {
    font-size: 0.85rem; color: var(--text-light); font-style: italic;
    text-align: center; margin-top: 1rem; max-width: 420px; line-height: 1.5;
  }
  .topic-thumb.has-image { padding: 4px; overflow: hidden; }
  .topic-thumb.has-image img {
    width: 100%; height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
  }
  .read-next {
    margin: 2.5rem 0 0.5rem; padding: 1.5rem 1.75rem;
    background: var(--rose-faint); border-radius: 18px;
    border-left: 4px solid var(--rose-light);
    display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
    cursor: pointer; text-decoration: none; color: inherit;
    transition: background 0.2s, transform 0.15s;
    font-family: inherit; border-top: none; border-right: none; border-bottom: none;
    width: 100%; text-align: left;
  }
  .read-next:hover { background: var(--rose-pale); transform: translateX(4px); }
  .read-next-left { display: flex; flex-direction: column; gap: 0.25rem; }
  .read-next-eyebrow {
    font-family: 'Dancing Script', cursive; font-size: 1rem;
    color: var(--rose); letter-spacing: 0.03em;
  }
  .read-next h4 {
    font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 500;
    color: var(--text-dark); line-height: 1.35; margin: 0;
  }
  .read-next h4 em { font-style: italic; color: var(--rose); }
  .read-next-arrow {
    flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%;
    background: var(--rose); color: white; display: flex; align-items: center;
    justify-content: center; font-size: 1.1rem; transition: transform 0.2s;
  }
  .read-next:hover .read-next-arrow { transform: translateX(3px); }
  .cat-post-tag-list {
    display: flex; flex-wrap: wrap; gap: 0.5rem;
    margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--blush);
  }
  .cat-post-tag-list span {
    background: var(--rose-faint); color: var(--rose); font-size: 0.75rem;
    font-weight: 500; padding: 0.3rem 0.85rem; border-radius: 40px;
  }

  /* ─── PÁGINA LANDING /CATEGORIAS ─── */
  .categorias-hero {
    background: linear-gradient(180deg, var(--rose-pale) 0%, var(--rose-faint) 100%);
    padding: 5rem 6rem 4rem; text-align: center; border-bottom: 1px solid var(--blush);
  }
  .categorias-hero .eyebrow {
    display: inline-block; font-size: 0.72rem; font-weight: 500;
    letter-spacing: 0.18em; text-transform: uppercase; color: var(--rose);
    background: white; border: 1px solid var(--blush);
    padding: 0.4rem 1rem; border-radius: 40px; margin-bottom: 1rem;
  }
  .categorias-hero h1 {
    font-family: 'Playfair Display', serif; font-size: clamp(2.4rem, 4vw, 3.4rem);
    font-weight: 400; color: var(--text-dark); line-height: 1.2; margin-bottom: 1rem;
  }
  .categorias-hero h1 em { font-style: italic; color: var(--rose); }
  .categorias-hero p {
    max-width: 620px; margin: 0 auto;
    font-size: 1.05rem; color: var(--text-mid); line-height: 1.85;
  }

  /* Categorias hero com imagem editorial (2 colunas) */
  .categorias-hero.has-feature {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 3.5rem;
    align-items: center;
    text-align: left;
    padding: 4.5rem 6rem;
    position: relative;
    overflow: hidden;
  }
  .categorias-hero.has-feature::before {
    content: '✦'; position: absolute;
    top: 2rem; left: 3rem;
    font-size: 1.4rem; color: var(--rose-light);
    opacity: 0.55;
  }
  .categorias-hero.has-feature .categorias-hero-text { max-width: 480px; }
  .categorias-hero.has-feature h1 { margin-bottom: 1.25rem; }
  .categorias-hero.has-feature p { margin: 0; max-width: 100%; }
  .categorias-hero-image-wrap {
    position: relative; display: flex; align-items: center; justify-content: center;
  }
  .categorias-hero-image {
    position: relative; width: 100%; max-width: 580px;
    aspect-ratio: 16/9;
    border-radius: 32px;
    overflow: hidden;
    background: linear-gradient(160deg, var(--rose-pale) 0%, var(--blush) 100%);
    box-shadow: 0 30px 70px rgba(194,104,122,0.22);
    border: 6px solid var(--white);
    transition: transform 0.4s ease;
  }
  .categorias-hero-image:hover { transform: translateY(-4px) rotate(0.6deg); }
  .categorias-hero-image img {
    width: 100%; height: 100%;
    object-fit: contain; object-position: center;
    display: block; padding: 0.5rem;
  }
  .categorias-hero-image-wrap::after {
    content: ''; position: absolute;
    width: 110px; height: 110px; border-radius: 50%;
    background: var(--white); opacity: 0.35;
    top: -1.5rem; right: -1.5rem; z-index: 0;
  }
  .categorias-hero-image-wrap::before {
    content: '✦'; position: absolute;
    bottom: -0.5rem; left: -0.5rem;
    font-size: 1.8rem; color: var(--rose);
    z-index: 4; opacity: 0.9;
    text-shadow: 0 4px 12px rgba(194,104,122,0.25);
  }

  .categorias-grid-section { padding: 4rem 6rem 5rem; background: var(--cream); }
  .categorias-grid {
    max-width: 720px; margin: 0 auto;
    display: flex; flex-direction: column; gap: 1rem;
  }
  .big-cat-card {
    background: var(--white); border-radius: 18px; overflow: hidden;
    border: 1px solid var(--blush); cursor: pointer; text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    display: grid; grid-template-columns: 90px 1fr auto;
    align-items: center; gap: 1.5rem; padding: 1rem 1.5rem 1rem 1rem;
  }
  .big-cat-card:hover {
    transform: translateY(-3px); box-shadow: 0 12px 32px rgba(194,104,122,0.14);
    border-color: var(--rose-light);
  }
  .big-cat-cover {
    width: 90px; height: 90px; border-radius: 14px;
    background: linear-gradient(135deg, var(--rose-pale), var(--blush));
    display: flex; align-items: center; justify-content: center;
    font-size: 2.6rem;
  }
  .big-cat-card:nth-child(1) .big-cat-cover { background: linear-gradient(135deg, #FCE9D8, #F4C7A1); }
  .big-cat-card:nth-child(2) .big-cat-cover { background: linear-gradient(135deg, #F9D8E3, #E8A0B4); }
  .big-cat-card:nth-child(3) .big-cat-cover { background: linear-gradient(135deg, #EDE2F1, #C5A7DC); }
  .big-cat-card:nth-child(4) .big-cat-cover { background: linear-gradient(135deg, #FBE0DC, #F2A6A0); }
  .big-cat-card:nth-child(5) .big-cat-cover { background: linear-gradient(135deg, #F9E4EA, #C2687A); }
  .big-cat-cover.has-image {
    padding: 6px;
    overflow: hidden;
  }
  .big-cat-cover.has-image img {
    width: 100%; height: 100%;
    object-fit: contain; object-position: center;
    display: block;
  }
  .big-cat-body { padding: 0; }
  .big-cat-body .cat-eyebrow-tag {
    display: inline-block; font-size: 0.66rem; font-weight: 500;
    letter-spacing: 0.12em; text-transform: uppercase; color: var(--rose);
    margin-bottom: 0.4rem;
  }
  .big-cat-body h3 {
    font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 400;
    color: var(--text-dark); margin-bottom: 0.35rem; line-height: 1.3;
  }
  .big-cat-body h3 em { font-style: italic; color: var(--rose); }
  .big-cat-body p {
    font-size: 0.86rem; color: var(--text-mid); line-height: 1.55;
    margin-bottom: 0;
  }
  .big-cat-link {
    font-size: 1.4rem; color: var(--rose-light);
    transition: transform 0.2s, color 0.2s;
  }
  .big-cat-card:hover .big-cat-link { transform: translateX(4px); color: var(--rose); }

  /* ─── LISTA DE TÓPICOS NA SUBCATEGORIA ─── */
  .topic-grid {
    max-width: 820px; margin: 0 auto;
    display: flex; flex-direction: column; gap: 1.25rem;
  }
  .topic-card {
    background: var(--white); border: 1px solid var(--blush); border-radius: 20px;
    padding: 1.5rem 1.75rem;
    display: grid; grid-template-columns: 80px 1fr auto; gap: 1.5rem;
    align-items: center; cursor: pointer; text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  }
  .topic-card:hover {
    transform: translateY(-3px); box-shadow: 0 12px 32px rgba(194,104,122,0.14);
    border-color: var(--rose-light);
  }
  .topic-thumb {
    width: 80px; height: 80px; border-radius: 18px;
    background: linear-gradient(135deg, var(--rose-pale), var(--blush));
    display: flex; align-items: center; justify-content: center;
    font-size: 2.4rem;
  }
  .topic-body .post-cat-pill {
    display: inline-block; font-size: 0.68rem; font-weight: 500;
    letter-spacing: 0.12em; text-transform: uppercase; color: var(--rose);
    background: var(--rose-pale); padding: 0.2rem 0.7rem; border-radius: 40px;
    margin-bottom: 0.5rem;
  }
  .topic-body h3 {
    font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 400;
    line-height: 1.3; color: var(--text-dark); margin-bottom: 0.4rem;
  }
  .topic-body h3 em { font-style: italic; color: var(--rose); }
  .topic-excerpt {
    font-size: 0.88rem; color: var(--text-mid); line-height: 1.55;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
    overflow: hidden; margin-bottom: 0.55rem;
  }
  .topic-meta { font-size: 0.76rem; color: var(--text-light); }
  .topic-arrow {
    font-size: 1.4rem; color: var(--rose-light);
    transition: transform 0.2s, color 0.2s;
  }
  .topic-card:hover .topic-arrow { transform: translateX(4px); color: var(--rose); }

  /* (regras de SPA removidas — cada página agora é HTML independente) */

  .cat-back-bar {
    background: var(--white); padding: 1.25rem 6rem;
    border-bottom: 1px solid var(--blush);
    display: flex; align-items: center; justify-content: space-between;
  }
  .cat-back {
    font-size: 0.85rem; color: var(--text-mid); cursor: pointer;
    text-decoration: none; transition: color 0.2s;
    background: none; border: none; font-family: inherit;
  }
  .cat-back:hover { color: var(--rose); }
  .cat-other-cats { display: flex; gap: 0.5rem; flex-wrap: wrap; }
  .cat-other-cats a {
    font-size: 0.78rem; color: var(--text-light); cursor: pointer;
    padding: 0.3rem 0.85rem; border-radius: 40px; background: var(--rose-faint);
    transition: background 0.2s, color 0.2s; text-decoration: none;
  }
  .cat-other-cats a:hover { background: var(--rose-pale); color: var(--rose); }

  /* ─── FIM DO POST: VOLTAR ─── */
  .post-end-back {
    text-align: center;
    padding: 3.5rem 2rem 4rem;
    background: var(--cream);
    border-top: 1px solid var(--blush);
  }
  .post-end-eyebrow {
    font-family: 'Dancing Script', cursive;
    font-size: 1.25rem;
    color: var(--rose);
    margin-bottom: 1.25rem;
    display: block;
    letter-spacing: 0.03em;
  }
  .post-end-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    background: var(--rose);
    color: white;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    border: none;
    font-family: inherit;
    font-size: 0.92rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 10px 30px rgba(194,104,122,0.18);
  }
  .post-end-btn:hover {
    background: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(45,24,32,0.22);
  }
  .post-end-arrow {
    display: inline-flex;
    transition: transform 0.2s;
  }
  .post-end-btn:hover .post-end-arrow { transform: translateX(-3px); }

  /* ─── FOOTER ─── */
  footer { background: var(--text-dark); color: rgba(255,255,255,0.55); padding: 3rem 6rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
  footer .logo { color: var(--rose-light); font-size: 1.6rem; }
  .footer-links { display: flex; gap: 1.5rem; list-style: none; }
  .footer-links a { color: rgba(255,255,255,0.45); text-decoration: none; font-size: 0.82rem; cursor: pointer; transition: color 0.2s; }
  .footer-links a:hover { color: var(--rose-light); }
  .footer-social { display: flex; gap: 0.75rem; }
  .social-pill { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.65); padding: 0.4rem 1rem; border-radius: 40px; font-size: 0.8rem; cursor: pointer; transition: background 0.2s; text-decoration: none; display: inline-block; }
  .social-pill:hover { background: var(--rose); color: white; }

  /* ══════════════════════════════════════
     RESPONSIVO — TABLET (≤1024px)
  ══════════════════════════════════════ */
  @media (max-width: 1024px) {
    nav { padding: 0 1.5rem; }
    nav ul { gap: 1.25rem; }
    .hero-text { padding: 4rem 2rem 4rem 3rem; }
    .hero-image { padding: 1.5rem 2rem; }
    .categories, .featured, .affiliates, .pillars { padding: 4rem 2rem; }
    .about-home { padding: 4rem 2rem; gap: 3rem; }
    .newsletter, .cta-section { padding: 4rem 2rem; }
    .page-hero { padding: 4rem 2rem; gap: 3rem; }
    .story { padding: 4rem 2rem; }
    .facts { padding: 4rem 2rem; gap: 3rem; }
    .categorias-hero { padding: 4rem 2rem 3rem; }
    .categorias-hero.has-feature { padding: 3.5rem 2rem; gap: 2.5rem; }
    .categorias-grid-section { padding: 3rem 2rem 4rem; }
    .cat-back-bar { padding: 1.25rem 2rem; }
    .cat-hero { padding: 4rem 2rem 3rem; }
    .cat-hero.has-feature { padding: 3.5rem 2rem; gap: 2.5rem; }
    .cat-listing { padding: 4rem 2rem; }
    footer { padding: 2.5rem 2rem; }
    .posts-grid { grid-template-columns: 1fr 1fr; }
    .affiliates-grid { grid-template-columns: repeat(2, 1fr); }
  }

  /* ══════════════════════════════════════
     RESPONSIVO — MOBILE (≤768px)
  ══════════════════════════════════════ */
  @media (max-width: 768px) {
    /* NAV */
    nav { padding: 0 1.25rem; height: 58px; }
    .logo { font-size: 1.6rem; }
    nav ul { gap: 0.75rem; }
    nav ul li:not(:last-child) a { font-size: 0.72rem; letter-spacing: 0.06em; }
    .nav-cta { padding: 0.35rem 0.85rem; font-size: 0.72rem; }

    /* SECTION HEADER */
    .section-header { margin-bottom: 2rem; }
    .section-header h2 { font-size: 1.7rem; }

    /* HERO */
    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-text { padding: 3rem 1.5rem 1rem; order: 2; text-align: left; }
    .hero-image { height: auto; padding: 2.5rem 1.5rem 1rem; order: 1; }
    .hero-frame { max-width: 320px; }
    .hero h1 { font-size: clamp(2rem, 8vw, 2.6rem); }
    .hero p { font-size: 1rem; }
    .hero-floating-tag { left: 0.5rem; bottom: 8%; padding: 0.75rem 1.1rem; font-size: 0.78rem; }
    .hero-stat-card { right: -0.5rem; top: 8%; padding: 0.85rem 1.2rem; }
    .hero-stat-card .stat-big { font-size: 1.8rem; }
    .hero-frame::after { font-size: 1.8rem; top: -1.5rem; right: 0.5rem; }

    /* CATEGORIES (HOME) */
    .categories, .featured, .affiliates, .pillars { padding: 3rem 1.25rem; }
    .categories-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
    .cat-card { padding: 1.25rem 0.75rem; }
    .cat-icon { font-size: 2rem; }
    .cat-name { font-size: 0.95rem; }

    /* FEATURED POSTS */
    .posts-grid { grid-template-columns: 1fr; gap: 1.25rem; }
    .featured-main { grid-column: auto; }
    .post-title { font-size: 1.15rem; }

    /* ABOUT HOME */
    .about-home { padding: 3rem 1.25rem; grid-template-columns: 1fr; gap: 2.5rem; }
    .about-img-wrap { max-width: 360px; margin: 0 auto; }
    .about-text h2 { font-size: 1.9rem; }
    .about-badge { right: -0.5rem; bottom: -0.5rem; padding: 0.85rem 1.2rem; }

    /* AFFILIATES */
    .affiliates-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }

    /* NEWSLETTER */
    .newsletter { padding: 3.5rem 1.25rem; }
    .newsletter h2 { font-size: 1.7rem; }
    .nl-form { flex-direction: column; gap: 0.65rem; }
    .nl-input, .nl-btn { width: 100%; }

    /* FOOTER */
    footer {
      padding: 2.5rem 1.25rem; flex-direction: column;
      align-items: center; text-align: center; gap: 1.25rem;
    }
    .footer-links { flex-wrap: wrap; justify-content: center; gap: 1rem; }
    .footer-social { flex-wrap: wrap; justify-content: center; }

    /* SOBRE PAGE */
    .page-hero {
      padding: 3rem 1.25rem; grid-template-columns: 1fr;
      gap: 2.5rem; text-align: center;
    }
    .page-hero-text h1 { font-size: clamp(2rem, 7vw, 2.6rem); }
    .hero-photo-wrap { max-width: 340px; margin: 0 auto; }
    .float-card { left: 0.5rem; bottom: 1rem; padding: 0.85rem 1.1rem; }
    .story { padding: 3rem 1.25rem; }
    .story h2 { font-size: 1.75rem; }
    .pillars { padding: 3rem 1.25rem; }
    .pillars-grid { grid-template-columns: 1fr; gap: 1rem; }
    .facts { padding: 3rem 1.25rem; grid-template-columns: 1fr; gap: 2.5rem; }
    .facts-stats { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
    .stat-card { padding: 1.25rem 0.75rem; }
    .stat-num { font-size: 1.8rem; }
    .cta-section { padding: 3.5rem 1.25rem; }
    .cta-inner h2 { font-size: 1.7rem; }
    .cta-btns { flex-direction: column; align-items: stretch; gap: 0.75rem; }
    .cta-btns .btn-white, .cta-btns .btn-ghost { width: 100%; text-align: center; }

    /* CATEGORIAS LANDING */
    .categorias-hero { padding: 3rem 1.25rem 2.5rem; }
    .categorias-hero.has-feature {
      grid-template-columns: 1fr;
      gap: 2rem;
      padding: 2.5rem 1.25rem 3rem;
      text-align: center;
    }
    .categorias-hero.has-feature::before { top: 1rem; left: 1rem; font-size: 1.2rem; }
    .categorias-hero.has-feature .categorias-hero-text { max-width: 100%; margin: 0 auto; }
    .categorias-hero.has-feature p { max-width: 540px; margin: 0 auto; }
    .categorias-hero-image { max-width: 100%; aspect-ratio: 16/9; border-width: 4px; border-radius: 24px; }
    .categorias-hero-image-wrap::after { width: 80px; height: 80px; }
    .categorias-grid-section { padding: 2.5rem 1.25rem 3.5rem; }
    .big-cat-card {
      grid-template-columns: 60px 1fr auto;
      gap: 1rem; padding: 0.85rem 1rem;
    }
    .big-cat-cover { width: 60px; height: 60px; font-size: 1.9rem; border-radius: 12px; }
    .big-cat-body h3 { font-size: 1.05rem; }
    .big-cat-body p { font-size: 0.8rem; line-height: 1.5; }
    .big-cat-link { font-size: 1.2rem; }

    /* CATEGORIA (Dieta / Treino) */
    .cat-back-bar {
      padding: 1rem 1.25rem; flex-direction: column;
      align-items: flex-start; gap: 0.75rem;
    }
    .cat-hero { padding: 3rem 1.25rem 2.5rem; }
    .cat-hero h1 { font-size: clamp(1.9rem, 7vw, 2.5rem); }
    .cat-hero .cat-emoji { font-size: 2.6rem; }
    .cat-hero.has-feature {
      grid-template-columns: 1fr;
      gap: 2rem;
      padding: 2.5rem 1.25rem 3rem;
      text-align: center;
    }
    .cat-hero.has-feature::before { top: 1rem; right: 1rem; font-size: 1.2rem; }
    .cat-hero.has-feature .cat-hero-text { max-width: 100%; margin: 0 auto; }
    .cat-hero.has-feature .cat-emoji { font-size: 2.2rem; }
    .cat-hero.has-feature p { max-width: 540px; margin: 0 auto; }
    .cat-hero.has-feature .cat-meta { display: inline-flex; }
    .cat-hero-image { max-width: 100%; aspect-ratio: 16/9; border-width: 4px; border-radius: 24px; }
    .cat-hero-image-wrap::after { width: 80px; height: 80px; bottom: -1rem; left: -1rem; }
    .cat-listing { padding: 3rem 1.25rem; }
    .cat-listing-inner { gap: 2.5rem; }

    /* TOPIC GRID + CARDS */
    .topic-card {
      grid-template-columns: 60px 1fr;
      grid-template-rows: auto auto;
      gap: 0.85rem 1rem; padding: 1.25rem 1.25rem 1.4rem;
    }
    .topic-thumb { width: 60px; height: 60px; font-size: 1.8rem; border-radius: 14px; }
    .topic-body { grid-column: 2; grid-row: 1 / span 2; }
    .topic-body h3 { font-size: 1.05rem; }
    .topic-excerpt { font-size: 0.85rem; -webkit-line-clamp: 3; }
    .topic-arrow {
      grid-column: 1 / -1; grid-row: 3;
      justify-self: end; font-size: 1.2rem; margin-top: 0.25rem;
    }

    /* ARTICLE */
    .cat-post-cover { aspect-ratio: 16/9; font-size: 3rem; }
    .cat-post-body { padding: 1.75rem 1.5rem 2rem; }
    .cat-post-body h2 { font-size: 1.5rem; line-height: 1.3; }
    .cat-post-lead { font-size: 0.98rem; }
    .cat-post-content p, .cat-post-content ul li { font-size: 0.94rem; }
    .cat-post-content h3 { font-size: 1.1rem; }
    .cat-post-content h3.major-heading {
      font-size: clamp(1.4rem, 5.5vw, 1.7rem);
      margin: 3rem auto 1.5rem;
      padding-top: 2.5rem;
    }
    .cat-post-content h3.major-heading::after { font-size: 1.1rem; }
    .cat-post-content blockquote { padding: 0.85rem 1.25rem; }
    .cat-post-content blockquote p { font-size: 0.98rem; }

    /* ARTICLE FIGURES (pétala) */
    .article-figure { margin: 2rem 0; }
    .article-figure-img { max-width: 100%; border-width: 4px; }
    .article-figure-img.shape-petal { border-radius: 140px 24px 140px 24px; }
    .article-figure-img.shape-petal-alt { border-radius: 24px 140px 24px 140px; }
    .article-figure::before { font-size: 1.3rem; top: -0.25rem; }
    .article-figure figcaption { font-size: 0.8rem; }

    /* READ NEXT */
    .read-next {
      padding: 1.25rem 1.25rem; flex-direction: row;
      gap: 1rem; align-items: center;
    }
    .read-next h4 { font-size: 1rem; }
    .read-next-eyebrow { font-size: 0.92rem; }
    .read-next-arrow { width: 34px; height: 34px; font-size: 0.95rem; }
  }

  /* ══════════════════════════════════════
     RESPONSIVO — MOBILE PEQUENO (≤420px)
  ══════════════════════════════════════ */
  @media (max-width: 420px) {
    nav ul li:not(.nav-cta-li):not(:last-child) a { font-size: 0.68rem; }
    nav ul { gap: 0.5rem; }
    .nav-cta { padding: 0.3rem 0.7rem; }
    .hero-frame { max-width: 260px; }
    .hero h1 { font-size: 2rem; }
    .categories-grid { grid-template-columns: 1fr; }
    .affiliates-grid { grid-template-columns: 1fr 1fr; }
    .topic-thumb { width: 52px; height: 52px; font-size: 1.6rem; }
    .topic-card { grid-template-columns: 52px 1fr; padding: 1.1rem; }
    .cat-post-body h2 { font-size: 1.35rem; }
    .stat-num { font-size: 1.6rem; }
    .stat-card { padding: 1rem 0.5rem; }
  }