/* ═══════════════════════════════════════════════════════════
   Missangas Jane — Landing Page Styles
   ═══════════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&family=Nunito:wght@400;600;700;800;900&display=swap');

:root {
    --pink:        #EC4899;
    --pink-hover:  #DB2777;
    --pink-light:  #FBCFE8;
    --pink-bg:     #FFF0F7;
    --cyan:        #22D3EE;
    --yellow:      #FCD34D;
    --orange:      #F97316;
    --purple:      #7C3AED;
    --purple-dark: #4C1D95;

    --bg-primary:     #FFF0F7;
    --text-primary:   #3B0764;
    --text-secondary: #6B4F8A;

    --shadow-light:   0 4px 20px rgba(236, 72, 153, 0.10);
    --shadow-medium:  0 8px 30px rgba(147, 51, 234, 0.16);
    --radius-default: 20px;
    --radius-sm:      14px;
    --radius-full:    999px;
}

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

body {
    font-family: 'Nunito', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main { flex: 1; }

a {
    color: var(--pink);
    text-decoration: none;
}
a:hover { text-decoration: underline; }

h1, h2, h3 {
    font-family: 'Fredoka One', cursive;
    color: var(--purple-dark);
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); line-height: 1.15; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.2rem; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--pink), var(--purple));
    color: #fff;
    padding: 0.8rem 1.8rem;
    border-radius: var(--radius-full);
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: var(--shadow-medium);
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.25s, box-shadow 0.25s;
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(147, 51, 234, 0.30);
    text-decoration: none;
    color: #fff;
}
.btn-primary i { width: 18px; height: 18px; stroke-width: 2.5; flex-shrink: 0; }

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff;
    color: var(--purple);
    padding: 0.75rem 1.7rem;
    border-radius: var(--radius-full);
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    border: 2px solid var(--pink-light);
    text-decoration: none;
    box-shadow: var(--shadow-light);
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.btn-secondary:hover {
    transform: translateY(-3px);
    border-color: var(--pink);
    box-shadow: var(--shadow-medium);
    text-decoration: none;
    color: var(--purple);
}
.btn-secondary i { width: 18px; height: 18px; stroke-width: 2.5; flex-shrink: 0; }

.btn-coming-soon {
    display: inline-block;
    background: #E5E7EB;
    color: #9CA3AF;
    padding: 0.8rem 1.8rem;
    border-radius: var(--radius-full);
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: not-allowed;
    user-select: none;
}

/* ── Header ───────────────────────────────────────────────── */
.landing-header {
    background: linear-gradient(135deg, #F9A8D4 0%, #EC4899 45%, #9333EA 100%);
    padding: 0.85rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 24px rgba(147, 51, 234, 0.32);
    position: sticky;
    top: 0;
    z-index: 1000;
    gap: 1rem;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}
.logo-img {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.28));
}
.logo-title {
    font-family: 'Fredoka One', cursive;
    font-size: 1.7rem;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.22);
}

.landing-header nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.landing-header nav a {
    color: rgba(255,255,255,0.92);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.3rem 0.75rem;
    border-radius: var(--radius-full);
    transition: color 0.2s, background 0.2s;
    text-decoration: none;
}
.landing-header nav a:hover {
    color: var(--yellow);
    background: rgba(255,255,255,0.10);
    text-decoration: none;
}

.btn-nav-cta {
    background: rgba(255,255,255,0.22) !important;
    border: 2px solid rgba(255,255,255,0.60);
    color: #fff !important;
    padding: 0.4rem 1.1rem !important;
    font-size: 0.9rem;
    margin-left: 0.5rem;
    transition: background 0.2s, border-color 0.2s !important;
}
.btn-nav-cta:hover {
    background: rgba(255,255,255,0.36) !important;
    border-color: #fff;
    color: #fff !important;
    text-decoration: none;

}

/* ── Hero ─────────────────────────────────────────────────── */
.hero-section {
    padding: 5rem 2rem 4.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-content {
    flex: 1 1 440px;
    max-width: 560px;
}

.hero-tag {
    display: inline-block;
    background: var(--pink-light);
    color: var(--pink-hover);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 0.28rem 0.9rem;
    border-radius: var(--radius-full);
    margin-bottom: 1.1rem;
}

.hero-content h1 {
    margin-bottom: 1.1rem;
}

.hero-gradient-text {
    background: linear-gradient(135deg, var(--pink), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 480px;
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* ── Hero Visual ──────────────────────────────────────────── */
.hero-visual {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-splash-img {
    width: min(380px, 88vw);
    filter: drop-shadow(0 24px 48px rgba(147, 51, 234, 0.28));
    animation: hero-float 4s ease-in-out infinite;
}

@keyframes hero-float {
    0%, 100% { transform: translateY(0px);  }
    50%       { transform: translateY(-12px); }
}

.bead-preview-card {
    background: #fff;
    border-radius: var(--radius-default);
    box-shadow: 0 16px 48px rgba(147, 51, 234, 0.20);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    border: 2px solid var(--pink-light);
    position: relative;
}
.bead-preview-card::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 26px;
    background: linear-gradient(135deg, var(--pink-light), #EDE9FE);
    z-index: -1;
    opacity: 0.5;
    filter: blur(8px);
}

.bead-preview-label {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.bead-preview {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.bead-row {
    display: flex;
    gap: 3px;
}
.bead {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: inline-block;
    box-shadow:
        inset 0 -2px 4px rgba(0,0,0,0.20),
        inset 0 1px 3px rgba(255,255,255,0.50),
        0 1px 2px rgba(0,0,0,0.12);
}

/* Bead colors */
.b-P  { background: #EC4899; }
.b-C  { background: #22D3EE; }
.b-Y  { background: #FCD34D; }
.b-O  { background: #F97316; }
.b-Pu { background: #7C3AED; }

/* ── Story Section ────────────────────────────────────────── */
.story-section {
    background: linear-gradient(135deg, #fff 0%, #EDE9FE 100%);
    padding: 4.5rem 2rem;
    border-top: 1px solid rgba(236, 72, 153, 0.08);
}

.story-inner {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 2.5rem;
}

.story-icon {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--pink), var(--purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(236, 72, 153, 0.38);
}
.story-heart {
    width: 42px;
    height: 42px;
    filter: drop-shadow(0 2px 6px rgba(190, 24, 93, 0.40));
}

.story-text h2 {
    text-align: left;
    margin-bottom: 1rem;
    font-size: 1.9rem;
}
.story-text p {
    color: var(--text-secondary);
    font-size: 1.02rem;
    margin-bottom: 0.8rem;
    line-height: 1.65;
}
.story-text p:last-child { margin-bottom: 0; }
.story-text strong { color: var(--purple-dark); }

/* ── Features Section ─────────────────────────────────────── */
.features-section {
    padding: 5rem 2rem;
    background: #fff;
}

.features-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}
.features-header h2 { margin-bottom: 0.6rem; }
.features-header p {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-item {
    background: #FAFAFA;
    padding: 1.6rem 1.4rem;
    border-radius: var(--radius-default);
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(236, 72, 153, 0.08);
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    transition: transform 0.25s, box-shadow 0.25s;
}
.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(147, 51, 234, 0.14);
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-sm);
    background-color: var(--ic-bg, #FFF0F7);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.feature-icon i {
    width: 22px;
    height: 22px;
    color: var(--ic, #EC4899);
    stroke-width: 2.5;
}

.feature-item h3 {
    color: var(--purple-dark);
    font-size: 1.08rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    line-height: 1.3;
}
.feature-item p {
    color: var(--text-secondary);
    font-size: 0.91rem;
    line-height: 1.55;
    margin: 0;
}

.badge-web {
    display: inline-block;
    background: #E0F2FE;
    color: #0284C7;
    font-size: 0.66rem;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 0.15rem 0.5rem;
    border-radius: var(--radius-full);
    vertical-align: middle;
    flex-shrink: 0;
}

/* ── Download Section ─────────────────────────────────────── */
.download-section {
    padding: 5rem 2rem;
    background: var(--bg-primary);
}

.download-header {
    text-align: center;
    margin-bottom: 3rem;
}
.download-header h2 { margin-bottom: 0.5rem; }
.download-header p {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.download-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 860px;
    margin: 0 auto;
    justify-content: center;
}

.download-card {
    flex: 1 1 320px;
    max-width: 400px;
    background: #fff;
    border-radius: var(--radius-default);
    box-shadow: var(--shadow-medium);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    border: 2px solid transparent;
    transition: transform 0.25s, box-shadow 0.25s;
}
.download-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 48px rgba(147, 51, 234, 0.20);
}

.download-card--web     { border-color: var(--pink-light); }
.download-card--android { border-color: #D1FAE5; }

.download-card-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}
.download-card--web .download-card-icon {
    background: linear-gradient(135deg, var(--pink), var(--purple));
}
.download-card--android .download-card-icon {
    background: linear-gradient(135deg, #34D399, #059669);
}
.download-card-icon i {
    width: 32px;
    height: 32px;
    color: #fff;
    stroke-width: 2;
}

.download-card h3 {
    font-size: 1.4rem;
    margin: 0;
}
.download-card p {
    color: var(--text-secondary);
    font-size: 0.97rem;
    line-height: 1.55;
}

/* ── CTA Section ──────────────────────────────────────────── */
.cta-section {
    padding: 5.5rem 2rem;
    background: linear-gradient(135deg, var(--pink-light) 0%, #E0F2FE 100%);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.cta-section h2 { margin-bottom: 0; }
.cta-section p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}
.btn-cta {
    background: linear-gradient(135deg, var(--orange), var(--yellow)) !important;
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.30) !important;
}
.btn-cta:hover {
    box-shadow: 0 14px 32px rgba(249, 115, 22, 0.44) !important;
}

/* ── Footer ───────────────────────────────────────────────── */
footer {
    background: var(--purple-dark);
    padding: 2.5rem 2rem;
    margin-top: auto;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.9rem;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}
.footer-logo-img {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    object-fit: contain;
    filter: drop-shadow(0 1px 4px rgba(0,0,0,0.30));
}
.footer-logo-name {
    font-family: 'Fredoka One', cursive;
    font-size: 1.25rem;
    color: #fff;
}

.footer-copy {
    color: rgba(255,255,255,0.55);
    font-size: 0.87rem;
}
.footer-copy a {
    color: var(--yellow);
    font-weight: 700;
}
.footer-copy a:hover { text-decoration: underline; }

/* ── Seletor de idioma (landing) ──────────────────────────── */
.landing-lang-picker {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.landing-lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(255,255,255,0.15);
    border: 1.5px solid rgba(255,255,255,0.40);
    border-radius: 8px;
    color: #fff;
    font-family: inherit;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 0.3rem 0.65rem;
    cursor: pointer;
    transition: background 0.18s;
}
.landing-lang-btn:hover { background: rgba(255,255,255,0.28); }
.landing-lang-btn .lucide { width: 14px; height: 14px; }

.landing-lang-dropdown {
    position: absolute;
    top: calc(100% + 7px);
    right: 0;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 300;
    min-width: 72px;
}
.landing-lang-dropdown.hidden { display: none; }

.landing-lang-option {
    background: none;
    border: none;
    padding: 0.45rem 1rem;
    font-family: inherit;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #6b7280;
    cursor: pointer;
    text-align: center;
    transition: background 0.15s, color 0.15s;
}
.landing-lang-option:hover { background: #EDE9FE; color: #6D28D9; }
.landing-lang-option[data-lang="ja"] { letter-spacing: 0; font-size: 0.75rem; }

/* ── Nav active state ─────────────────────────────────────── */
.landing-header nav a.nav-active {
    color: var(--yellow);
    background: rgba(255,255,255,0.15);
}

/* ── Página de Parceiros ──────────────────────────────────── */

/* Page hero (sem imagem) */
.page-hero-section {
    background: linear-gradient(135deg, var(--pink-light) 0%, #EDE9FE 100%);
    padding: 4.5rem 2rem 3.5rem;
    text-align: center;
}
.page-hero-inner {
    max-width: 640px;
    margin: 0 auto;
}
.page-hero-inner .hero-tag { margin-bottom: 1rem; }
.page-hero-inner h1        { margin-bottom: 1rem; }
.page-hero-inner .hero-desc { max-width: 100%; margin: 0 auto; }

/* Estrutura de seção genérica */
.section-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}
.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}
.section-header h2 { margin-bottom: 0.5rem; }
.section-header p  { color: var(--text-secondary); font-size: 1.02rem; }

/* Featured partners */
.featured-partners-section {
    padding: 4.5rem 0 3.5rem;
    background: #fff;
}
.featured-partners-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

/* Base card */
.partner-card { border-radius: var(--radius-default); transition: transform 0.25s, box-shadow 0.25s; }

/* Card destaque */
.partner-card--featured {
    flex: 1 1 340px;
    max-width: 460px;
    background: #fff;
    border: 2px solid var(--pink-light);
    box-shadow: var(--shadow-medium);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}
.partner-card--featured:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 48px rgba(147, 51, 234, 0.20);
}
.partner-card--featured h3 { font-size: 1.6rem; margin: 0; }

/* Badge destaque */
.partner-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: linear-gradient(135deg, #FCD34D, #F97316);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.25rem 0.85rem;
    border-radius: var(--radius-full);
}
.partner-badge i { width: 11px; height: 11px; stroke-width: 2.5; fill: rgba(255,255,255,0.5); }

/* Logo placeholder */
.partner-logo-placeholder {
    width: 88px;
    height: 88px;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--pc, #EC4899), var(--pc2, #7C3AED));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Fredoka One', cursive;
    font-size: 1.6rem;
    color: #fff;
    box-shadow: 0 8px 24px rgba(0,0,0,0.16);
    flex-shrink: 0;
}
.partner-logo--sm {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    font-size: 1.05rem;
}

/* Descrição e tags */
.partner-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}
.partner-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    justify-content: center;
}
.partner-tag {
    background: var(--pink-bg);
    color: var(--pink-hover);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.2rem 0.65rem;
    border-radius: var(--radius-full);
}

/* Botões dos cards */
.partner-btn { align-self: stretch; justify-content: center; margin-top: auto; }
.partner-btn-sm {
    flex-shrink: 0;
    align-self: center;
    padding: 0.5rem 1rem !important;
    font-size: 0.82rem !important;
}
.partner-btn-sm i { width: 14px !important; height: 14px !important; }

/* Grid de listagem regular */
.partners-listing-section {
    padding: 3.5rem 0 4.5rem;
    background: var(--bg-primary);
}
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.25rem;
}
.partner-card--regular {
    background: #fff;
    border: 1px solid rgba(236, 72, 153, 0.10);
    box-shadow: var(--shadow-light);
    padding: 1.4rem 1.25rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.partner-card--regular:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(147, 51, 234, 0.14);
}
.partner-card--regular .partner-tags { justify-content: flex-start; }
.partner-card-body { flex: 1; min-width: 0; }
.partner-card-body h3 { font-size: 1.1rem; margin-bottom: 0.3rem; }
.partner-card-body p  { color: var(--text-secondary); font-size: 0.87rem; line-height: 1.5; margin-bottom: 0.55rem; }

/* Seção "Seja um Parceiro" */
.partner-join-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #fff 0%, #EDE9FE 100%);
    border-top: 1px solid rgba(236, 72, 153, 0.08);
}
.partner-join-inner {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 2.5rem;
}
.partner-join-icon {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--orange), var(--yellow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.35);
}
.partner-join-icon i { width: 30px; height: 30px; color: #fff; stroke-width: 2; }
.partner-join-text h2 { text-align: left; margin-bottom: 0.8rem; font-size: 1.9rem; }
.partner-join-text > p { color: var(--text-secondary); font-size: 1.02rem; line-height: 1.65; margin-bottom: 1.5rem; }

/* Tiers de parceria */
.partner-tiers {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}
.partner-tier {
    flex: 1 1 180px;
    background: #fff;
    border: 1.5px solid var(--pink-light);
    border-radius: var(--radius-sm);
    padding: 1rem 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.partner-tier strong { color: var(--purple-dark); font-size: 1rem; font-family: 'Fredoka One', cursive; }
.partner-tier span   { color: var(--text-secondary); font-size: 0.85rem; }
.partner-tier--featured {
    border-color: #FCD34D;
    background: linear-gradient(135deg, #FFFBEB, #FEF3C7);
}
.partner-tier--featured strong { color: #92400E; }
.tier-star {
    width: 14px;
    height: 14px;
    color: #F97316;
    fill: #FCD34D;
    stroke-width: 2;
}

/* ── Responsive — parceiros ──────────────────────────────── */
@media (max-width: 900px) {
    .featured-partners-grid { gap: 1.5rem; }
    .partner-join-inner     { flex-direction: column; align-items: center; text-align: center; gap: 1.5rem; }
    .partner-join-text h2   { text-align: center; }
    .partner-tiers          { justify-content: center; }
}

@media (max-width: 600px) {
    .partners-grid { grid-template-columns: 1fr; }
    .partner-card--regular { flex-direction: column; align-items: flex-start; }
    .partner-btn-sm { align-self: flex-start; margin-top: 0.5rem; }
}

/* ── Aside fixo de parceiros (home, só em telas largas) ───── */
.partners-aside { display: none; }

@media (min-width: 1440px) {
    .partners-aside {
        display: flex;
        flex-direction: column;
        gap: 0.7rem;
        position: fixed;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
        width: 168px;
        background: #fff;
        border: 1.5px solid var(--pink-light);
        border-radius: var(--radius-default);
        box-shadow: var(--shadow-medium);
        padding: 1rem 0.85rem;
        z-index: 500;
    }
}

.partners-aside-label {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-secondary);
    padding-bottom: 0.4rem;
    border-bottom: 1px solid rgba(236, 72, 153, 0.12);
}
.partners-aside-label i { width: 11px; height: 11px; color: #FCD34D; fill: #FCD34D; stroke-width: 2; }

.partner-aside-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.45rem;
    text-align: center;
    padding: 0.7rem 0.5rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(236, 72, 153, 0.10);
    background: #FAFAFA;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.partner-aside-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(147, 51, 234, 0.13);
    border-color: var(--pink-light);
    text-decoration: none;
}
.partner-aside-card strong {
    display: block;
    font-size: 0.83rem;
    color: var(--purple-dark);
    font-family: 'Fredoka One', cursive;
    line-height: 1.2;
}
.partner-aside-card span {
    display: block;
    font-size: 0.72rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.partner-logo--aside {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    font-size: 0.95rem;
}

.partners-aside-more {
    font-size: 0.73rem;
    font-weight: 700;
    color: var(--pink);
    text-align: center;
    padding-top: 0.4rem;
    border-top: 1px solid rgba(236, 72, 153, 0.12);
    text-decoration: none;
    transition: color 0.2s;
}
.partners-aside-more:hover { color: var(--pink-hover); text-decoration: none; }

/* CJK na landing */
:lang(ja) .hero-section h1,
:lang(ja) .story-text h2,
:lang(ja) .features-header h2,
:lang(ja) .download-header h2,
:lang(ja) .cta-section h2 { letter-spacing: 0; }
:lang(ja) { word-break: break-all; }

/* ── Responsive — tablet ──────────────────────────────────── */
@media (max-width: 900px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
        padding: 3.5rem 1.5rem 3rem;
    }
    .hero-content { max-width: 100%; flex-basis: auto; }
    .hero-desc    { max-width: 100%; }
    .hero-actions { justify-content: center; }
    .story-inner  { flex-direction: column; align-items: center; text-align: center; gap: 1.5rem; }
    .story-text h2 { text-align: center; }
}

@media (max-width: 768px) {
    .landing-header {
        flex-direction: column;
        align-items: center;
        padding: 1rem 1.25rem;
        gap: 0.65rem;
    }
    .landing-header nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.1rem;
    }

    .features-grid { grid-template-columns: 1fr 1fr; gap: 1.1rem; }
    .feature-item  { padding: 1.2rem 1rem; }

    .bead { width: 15px; height: 15px; }

    .download-cards { gap: 1.25rem; }
}

@media (max-width: 500px) {
    .landing-header .logo-title { font-size: 1.4rem; }
    .landing-header .logo-img   { width: 36px; height: 36px; }

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

    .download-cards { flex-direction: column; align-items: stretch; }
    .download-card  { max-width: 100%; flex-basis: auto; }

    .bead     { width: 13px; height: 13px; }
    .bead-row { gap: 2px; }
    .bead-preview { gap: 2px; }

    .hero-actions .btn-primary,
    .hero-actions .btn-secondary { width: 100%; justify-content: center; }
}
