/* ====================================================
   ADZEP LEAD MAGNETS — Public Styles  v1.6
   Fiel ao design: materiais-gratuitos-ebooks.html
   ==================================================== */

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
    --brand-purple:       #612D91;
    --brand-purple-deep:  #0B0413;
    --brand-purple-light: #F4EFF9;
    --brand-green:        #0AA04A;
    --brand-green-light:  #16D166;
    --text-header:        #334155;
    --text-body:          #475569;
    --text-muted:         #94a3b8;
    --border:             rgba(15, 23, 42, 0.08);
    --border-solid:       #E2E8F0;
    --bg-page:            #F8FAFC;
    --radius-md:          16px;
    --radius-lg:          24px;
    --shadow-sm:          0 4px 6px -1px rgba(0,0,0,0.05);
    --shadow-md:          0 10px 25px -5px rgba(0,0,0,0.05);
    --shadow-lg:          0 20px 40px -10px rgba(97, 45, 145, 0.1);
    --shadow-card:        0 2px 8px rgba(0,0,0,0.05);
}

/* ====================================================
   ARCHIVE PAGE — body background
   ==================================================== */
body.adzep-archive-page {
    background-color: var(--bg-page);
}
.adzep-archive-page,
.adzep-archive-page #main,
.adzep-archive-page .site-main {
    padding: 0 !important;
    margin-top: 0 !important;
    max-width: 100% !important;
    background-color: var(--bg-page);
}

/* ====================================================
   FULL-BLEED helper (hero sai do container do tema)
   ==================================================== */
.adzep-fullbleed {
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
}
.adzep-fullbleed .adzep-materials-hero { width: 100%; }

/* ====================================================
   ARCHIVE CONTAINER — max-width 1240px
   ==================================================== */
.adzep-archive-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* ====================================================
   HERO
   ==================================================== */
.adzep-materials-hero {
    background: linear-gradient(135deg, var(--brand-purple-deep) 0%, #1a0b2e 100%);
    color: #fff;
    padding: 100px 0 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.adzep-materials-hero::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    top: -240px; right: -80px;
    background: radial-gradient(circle, rgba(97,45,145,.45), transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}
.adzep-materials-hero::after {
    content: '';
    position: absolute;
    width: 360px; height: 360px;
    bottom: -140px; left: -60px;
    background: radial-gradient(circle, rgba(139,79,192,.3), transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}
.adzep-materials-hero h1 {
    font-family: 'Quicksand', sans-serif;
    color: #fff;
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 800;
    margin: 0 0 20px;
    position: relative; z-index: 1;
    line-height: 1.15;
}
.adzep-materials-hero p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    max-width: 700px;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
    position: relative; z-index: 1;
    line-height: 1.65;
}

/* ====================================================
   FILTER PILLS
   ==================================================== */
.adzep-filter-section {
    margin-top: -45px;
    position: relative;
    z-index: 10;
    margin-bottom: 60px;
    text-align: center;
}
.adzep-filter-bar {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    background: #fff;
    padding: 12px;
    border-radius: 50px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}
.adzep-filter-btn {
    padding: 12px 25px;
    border-radius: 40px;
    border: none;
    background: transparent;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    color: var(--text-header);
    cursor: pointer;
    transition: background .25s, color .25s;
    font-size: .9rem;
    white-space: nowrap;
    line-height: 1;
}
.adzep-filter-btn.active {
    background: var(--brand-purple);
    color: #fff;
}
.adzep-filter-btn:not(.active):hover {
    background: var(--brand-purple-light);
    color: var(--brand-purple);
}

/* ====================================================
   MATERIALS GRID — 3 cols → 2 → 1
   ==================================================== */
.adzep-materials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 100px;
}

/* ====================================================
   MATERIAL CARD
   ==================================================== */
.adzep-material-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
                border-color 0.3s,
                box-shadow 0.4s;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-card);
}
.adzep-material-card:hover {
    transform: translateY(-10px);
    border-color: var(--brand-purple);
    box-shadow: var(--shadow-lg);
}

/* Image wrapper */
.adzep-card-image-link {
    display: block;
    text-decoration: none;
    flex-shrink: 0;
}
.adzep-card-image-wrapper {
    position: relative;
    height: 240px;
    background: #e2e8f0;
    overflow: hidden;
}
.adzep-card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.adzep-material-card:hover .adzep-card-image-wrapper img {
    transform: scale(1.05);
}
.adzep-card-no-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--brand-purple-deep) 0%, #3b1070 100%);
    color: rgba(255,255,255,0.2);
}

/* Category badge — verde claro, texto escuro (fiel ao modelo) */
.adzep-cat-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--brand-green-light);
    color: var(--brand-purple-deep);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    z-index: 2;
    font-family: 'Quicksand', sans-serif;
}

/* Card content */
.adzep-card-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Title */
.adzep-card-title-link {
    text-decoration: none;
    display: block;
    margin-bottom: 0;
}
.adzep-card-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--brand-purple-deep);
    margin: 0 0 15px;
    line-height: 1.35;
    transition: color .2s;
}
.adzep-card-title-link:hover .adzep-card-title {
    color: var(--brand-purple);
}

/* Description */
.adzep-card-desc {
    font-family: 'Inter', sans-serif;
    font-size: .925rem;
    color: var(--text-body);
    line-height: 1.7;
    flex: 1;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Card footer — meta + link */
.adzep-card-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    margin-top: 20px;
    gap: 12px;
}
.adzep-card-meta {
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    color: var(--text-muted);
    white-space: nowrap;
}

/* Download link — texto + ícone, fiel ao modelo */
.adzep-card-download-link {
    font-family: 'Quicksand', sans-serif;
    font-weight: 800;
    color: var(--brand-purple);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .9rem;
    text-decoration: none;
    transition: color .2s, gap .2s;
    white-space: nowrap;
    flex-shrink: 0;
}
.adzep-card-download-link svg {
    transition: transform .2s;
}
.adzep-card-download-link:hover {
    color: var(--brand-purple-deep);
    gap: 10px;
}
.adzep-card-download-link:hover svg {
    transform: translateY(2px);
}

/* ====================================================
   PAGINAÇÃO
   ==================================================== */
.adzep-pagination-wrap {
    margin: -60px 0 80px;
    text-align: center;
}
.adzep-pagination-wrap .nav-links {
    display: inline-flex;
    gap: 6px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}
.adzep-pagination-wrap .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 10px;
    border-radius: 10px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: .9rem;
    border: 1.5px solid var(--border-solid);
    color: var(--text-body);
    text-decoration: none;
    background: #fff;
    transition: border-color .2s, color .2s, background .2s;
}
.adzep-pagination-wrap .page-numbers:hover {
    border-color: var(--brand-purple);
    color: var(--brand-purple);
}
.adzep-pagination-wrap .page-numbers.current {
    background: var(--brand-purple);
    border-color: var(--brand-purple);
    color: #fff;
}

/* ====================================================
   EMPTY STATE
   ==================================================== */
.adzep-empty-state {
    padding: 80px 0 120px;
    text-align: center;
    color: var(--text-muted);
}
.adzep-empty-state svg {
    margin: 0 auto 16px;
    display: block;
    opacity: .4;
}
.adzep-empty-state p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
}

/* ====================================================
   MODAL DE CAPTURA (mantido para shortcodes)
   ==================================================== */
.adzep-modal-overlay {
    position: fixed; inset: 0;
    background: rgba(11,4,19,.85);
    z-index: 99999;
    display: flex; align-items: center; justify-content: center;
    padding: 20px;
    opacity: 0; pointer-events: none;
    transition: opacity .3s;
    backdrop-filter: blur(5px);
}
.adzep-modal-overlay.open { opacity: 1; pointer-events: all; }
.adzep-modal-box {
    background: #fff; width: 100%; max-width: 900px;
    border-radius: var(--radius-lg); overflow: hidden;
    display: grid; grid-template-columns: 1fr 1.2fr;
    transform: translateY(40px); opacity: 0;
    transition: transform .4s cubic-bezier(.23,1,.32,1), opacity .35s;
    box-shadow: 0 30px 60px -12px rgba(0,0,0,.5);
}
.adzep-modal-overlay.open .adzep-modal-box { transform: translateY(0); opacity: 1; }
.adzep-modal-visual {
    background: var(--brand-purple-light);
    padding: 40px; text-align: center;
    display: flex; flex-direction: column;
    justify-content: center; align-items: center;
}
.adzep-modal-visual img {
    width: 100%; border-radius: 12px; margin-bottom: 20px;
    box-shadow: var(--shadow-md); max-height: 280px; object-fit: cover;
}
.adzep-modal-visual .modal-material-title {
    font-family: 'Quicksand', sans-serif; font-weight: 800;
    font-size: 1.1rem; color: var(--brand-purple-deep); margin: 0 0 6px;
}
.adzep-modal-visual .modal-lib-label { font-size: .8rem; color: var(--text-muted); }
.adzep-modal-form-area { padding: 50px; position: relative; }
.adzep-modal-close {
    position: absolute; top: 20px; right: 20px;
    background: #f1f5f9; border: none;
    width: 36px; height: 36px; border-radius: 50%;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    color: var(--text-body); transition: .2s;
}
.adzep-modal-close:hover { background: #e2e8f0; }
.adzep-modal-form-area h2 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.6rem; font-weight: 800;
    color: var(--brand-purple-deep); margin: 0 0 10px;
}
.adzep-modal-form-area .form-intro {
    font-size: .9rem; color: var(--text-body);
    margin-bottom: 25px; line-height: 1.6;
}

/* ====================================================
   FORM ELEMENTS (modal + detail page)
   ==================================================== */
.adzep-form-group { margin-bottom: 18px; }
.adzep-form-label {
    display: block; font-size: .75rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .06em;
    color: var(--text-muted); margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
}
.adzep-form-input {
    width: 100%; padding: 14px 18px;
    border: 1px solid var(--border-solid);
    border-radius: 10px; font-size: 14px;
    color: var(--brand-purple-deep); font-family: 'Inter', sans-serif;
    background: #fff;
    transition: border-color .2s, box-shadow .2s;
    box-sizing: border-box; appearance: none; outline: none;
}
.adzep-form-input:focus {
    border-color: var(--brand-purple);
    box-shadow: 0 0 0 4px var(--brand-purple-light);
}
.adzep-btn-submit {
    width: 100%; padding: 16px; border: none; border-radius: 12px;
    background: var(--brand-purple); color: #fff;
    font-family: 'Quicksand', sans-serif; font-weight: 800; font-size: 1rem;
    cursor: pointer; display: flex; align-items: center;
    justify-content: center; gap: 8px;
    transition: background .2s, transform .2s, box-shadow .2s;
    margin-top: 4px;
}
.adzep-btn-submit:hover {
    background: var(--brand-purple-deep);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(97,45,145,.25);
}
.adzep-btn-submit:disabled { opacity: .7; cursor: not-allowed; transform: none; }
.adzep-form-privacy {
    display: flex; align-items: center; gap: 6px;
    justify-content: center; text-align: center;
    font-size: .75rem; color: var(--text-muted);
    margin-top: 14px; font-family: 'Inter', sans-serif;
}
.adzep-form-error {
    background: #fee2e2; color: #991b1b;
    border: 1px solid #fecaca; border-radius: 8px;
    padding: 10px 14px; font-size: 13px;
    margin-bottom: 14px; display: none;
    font-family: 'Inter', sans-serif;
}
.adzep-spin {
    display: inline-block; width: 16px; height: 16px;
    border: 2px solid rgba(255,255,255,.4); border-top-color: #fff;
    border-radius: 50%; animation: lm-spin .7s linear infinite;
}
@keyframes lm-spin { to { transform: rotate(360deg); } }

/* ====================================================
   MODAL DE SUCESSO
   ==================================================== */
.adzep-success-overlay {
    position: fixed; inset: 0;
    background: rgba(11,4,19,.85); z-index: 999999;
    display: flex; align-items: center; justify-content: center;
    padding: 20px; opacity: 0; pointer-events: none;
    transition: opacity .3s; backdrop-filter: blur(5px);
}
.adzep-success-overlay.open { opacity: 1; pointer-events: all; }
.adzep-success-box {
    background: #fff; border-radius: var(--radius-lg);
    padding: 52px 44px 44px; max-width: 460px; width: 100%;
    text-align: center; position: relative;
    transform: scale(.92) translateY(20px);
    transition: transform .35s cubic-bezier(.23,1,.32,1);
    box-shadow: 0 30px 60px -12px rgba(0,0,0,.4);
}
.adzep-success-overlay.open .adzep-success-box { transform: scale(1) translateY(0); }
.adzep-success-icon {
    width: 76px; height: 76px; background: #dcfce7;
    border-radius: 50%; display: flex; align-items: center;
    justify-content: center; margin: 0 auto 24px;
    color: var(--brand-green); animation: lm-pop .45s .08s both;
}
@keyframes lm-pop { from { transform: scale(0); } to { transform: scale(1); } }
.adzep-success-box h3 {
    font-family: 'Quicksand', sans-serif; font-size: 1.8rem;
    font-weight: 800; color: var(--brand-purple-deep); margin: 0 0 12px;
}
.adzep-success-box p {
    font-family: 'Inter', sans-serif; color: var(--text-body);
    line-height: 1.65; margin: 0 0 28px;
}
.adzep-success-btn {
    display: flex; align-items: center; justify-content: center;
    gap: 8px; padding: 16px 32px;
    background: var(--brand-green); color: #fff;
    border-radius: 12px; font-family: 'Quicksand', sans-serif;
    font-weight: 800; font-size: 1rem; text-decoration: none;
    transition: .2s; width: 100%; border: none; cursor: pointer;
}
.adzep-success-btn:hover {
    background: var(--brand-green-light); color: #fff;
    transform: translateY(-2px); box-shadow: 0 10px 24px rgba(10,160,74,.3);
}
.adzep-success-email-note {
    font-size: .8rem; color: var(--text-muted); margin-top: 14px;
    font-family: 'Inter', sans-serif; display: none;
}
.adzep-success-close {
    position: absolute; top: 16px; right: 16px;
    background: #f1f5f9; border: none; border-radius: 50%;
    width: 34px; height: 34px; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-body); transition: .2s;
}
.adzep-success-close:hover { background: #e2e8f0; }

/* ====================================================
   SINGLE / DETAIL PAGE — HERO
   ==================================================== */
.adzep-lp-page-wrap {
    padding-top: 0;
    margin-top: 0;
}
.adzep-lp-hero {
    padding: 72px 0 80px;
    background: radial-gradient(ellipse at top right, var(--brand-purple-light) 0%, #fff 55%);
}
.adzep-lp-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 28px;
    margin-top: 50px;
}
.adzep-lp-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 64px;
    align-items: start;
}
.adzep-lp-badge {
    display: inline-block;
    background: var(--brand-purple);
    color: #fff;
    padding: 5px 16px;
    border-radius: 50px;
    font-size: .72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 22px;
    font-family: 'Quicksand', sans-serif;
}
.adzep-lp-title {
    font-family: 'Quicksand', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--brand-purple-deep);
    line-height: 1.15;
    margin: 0 0 20px;
}
.adzep-lp-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    color: var(--text-body);
    line-height: 1.72;
    margin: 0 0 28px;
}

/* 3D book mockup */
.adzep-mockup-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 36px 20px 0;
    perspective: 2000px;
}
.adzep-ebook-3d {
    width: 260px; height: 356px;
    position: relative;
    transform-style: preserve-3d;
    transform: rotateY(-25deg) rotateX(10deg);
    transition: transform .6s cubic-bezier(.23,1,.32,1);
    box-shadow: 24px 24px 48px rgba(0,0,0,.22);
}
.adzep-ebook-3d:hover { transform: rotateY(-14deg) rotateX(5deg) scale(1.03); }
.adzep-book-cover {
    position: absolute; width: 100%; height: 100%;
    background: var(--brand-purple-deep);
    border-radius: 2px 5px 5px 2px;
    overflow: hidden; z-index: 2; backface-visibility: hidden;
}
.adzep-book-cover img {
    width: 100%; height: 100%; object-fit: cover; filter: brightness(.92);
}
.adzep-book-cover::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(90deg,rgba(255,255,255,.08) 0%,transparent 5%,transparent 95%,rgba(0,0,0,.18) 100%);
}
.adzep-book-spine {
    position: absolute; width: 40px; height: 100%;
    background: #1a0533; left: 0;
    transform: rotateY(-90deg); transform-origin: left; z-index: 1;
}
.adzep-book-pages {
    position: absolute; width: 100%; height: 98%; top: 1%;
    background: #fff; right: -38px; transform: translateZ(-1px);
    border: 1px solid #e2e8f0;
    box-shadow: inset 10px 0 20px rgba(0,0,0,.04);
}

/* Form card */
.adzep-form-card {
    background: #fff;
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: 0 20px 40px -10px rgba(97,45,145,.15);
    position: sticky;
    top: 100px;
}
.adzep-form-card h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.45rem; font-weight: 800;
    color: var(--brand-purple-deep); margin: 0 0 8px;
}
.adzep-form-card .form-card-desc {
    font-family: 'Inter', sans-serif;
    font-size: .88rem; color: var(--text-body);
    margin: 0 0 26px; line-height: 1.6;
}

/* ====================================================
   SINGLE — CONTENT SECTION
   ==================================================== */
.adzep-content-section {
    padding: 80px 0 96px;
    border-top: 1px solid var(--border-solid);
}
.adzep-content-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 72px;
    align-items: start;
}
.adzep-content-grid h2 {
    font-family: 'Quicksand', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800; color: var(--brand-purple-deep); margin: 0 0 16px;
}
.adzep-content-grid .section-intro {
    font-family: 'Inter', sans-serif;
    font-size: .93rem; color: var(--text-body);
    margin: 0 0 32px; line-height: 1.75;
}
.adzep-benefits-list { display: flex; flex-direction: column; gap: 20px; }
.adzep-benefit-item { display: flex; gap: 14px; align-items: flex-start; }
.adzep-benefit-icon {
    width: 32px; height: 32px;
    background: var(--brand-purple-light); color: var(--brand-purple);
    border-radius: 50%; display: flex; align-items: center;
    justify-content: center; flex-shrink: 0;
}
.adzep-benefit-text h4 {
    font-family: 'Quicksand', sans-serif; font-size: 1.02rem;
    font-weight: 700; color: var(--brand-purple-deep); margin: 0 0 4px;
}
.adzep-benefit-text p {
    font-family: 'Inter', sans-serif; font-size: .875rem;
    color: var(--text-body); margin: 0; line-height: 1.65;
}
.adzep-about-box {
    background: var(--brand-purple-deep); color: #fff;
    padding: 40px; border-radius: var(--radius-lg);
}
.adzep-about-box h3 {
    font-family: 'Quicksand', sans-serif; color: #fff;
    font-size: 1.25rem; font-weight: 800; margin: 0 0 16px;
}
.adzep-about-box p {
    font-family: 'Inter', sans-serif;
    color: rgba(255,255,255,.72); font-size: .9rem;
    line-height: 1.72; margin: 0;
}
.adzep-about-box hr {
    border: none; border-top: 1px solid rgba(255,255,255,.1); margin: 22px 0;
}
.adzep-about-box .quote {
    font-style: italic; font-size: .86rem; color: rgba(255,255,255,.48);
}

/* ====================================================
   SINGLE PAGE — integração com tema
   ==================================================== */
.single-lead_magnet .content-area,
.single-lead_magnet .site-main,
.single-lead_magnet #primary,
.single-lead_magnet #main {
    padding: 0 !important; margin: 0 !important;
    max-width: 100% !important; width: 100% !important;
    float: none !important;
}
.single-lead_magnet #secondary,
.single-lead_magnet .widget-area,
.single-lead_magnet aside.sidebar { display: none !important; }
.single-lead_magnet .entry-header,
.single-lead_magnet .post-header { display: none !important; }
.single-lead_magnet .entry-content,
.single-lead_magnet .post-content,
.single-lead_magnet .hentry {
    padding: 0 !important; margin: 0 !important;
    max-width: 100% !important;
}

/* Espaçamento do topo quando usa header do tema (modo 'theme') */
body.single-lead_magnet:not(.adzep-lp-minimal):not(.adzep-lp-blank) .adzep-lp-hero {
    padding-top: 80px;
    padding-bottom: 80px;
}

/* ====================================================
   LAYOUT MODES — Minimal / Blank (single)
   ==================================================== */
body.adzep-lp-minimal,
body.adzep-lp-blank {
    margin: 0; padding: 0; background: #fff;
    font-family: 'Inter', -apple-system, sans-serif;
}
.adzep-lp-minimal-header {
    padding: 24px 0;
    border-bottom: 1px solid rgba(15,23,42,.08);
    background: #fff;
}
.adzep-lp-minimal-header .adzep-lp-container {
    display: flex; align-items: center;
}
.adzep-lp-logo {
    display: inline-flex; align-items: center; text-decoration: none;
}
.adzep-lp-logo img { height: 38px; width: auto; display: block; }
.adzep-lp-minimal-footer {
    padding: 48px 0;
    background: #F8FAFC;
    border-top: 1px solid rgba(15,23,42,.08);
    text-align: center;
}
.adzep-lp-minimal-footer p {
    font-size: .875rem; color: var(--text-muted);
    line-height: 1.7; margin: 0; font-family: 'Inter', sans-serif;
}
.adzep-lp-minimal-footer a { color: var(--brand-purple); text-decoration: none; }
.adzep-lp-minimal-footer a:hover { text-decoration: underline; }

/* ====================================================
   RESPONSIVE
   ==================================================== */
@media (max-width: 1024px) {
    .adzep-materials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}
@media (max-width: 960px) {
    .adzep-lp-grid,
    .adzep-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .adzep-lp-hero { padding: 52px 0 72px; }
    .adzep-form-card { position: static; }
    .adzep-mockup-wrap { padding: 20px 20px 0; order: -1; }
    .adzep-content-section { padding: 56px 0 72px; }
}
@media (max-width: 680px) {
    .adzep-materials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .adzep-materials-hero { padding: 70px 0 100px; }
    .adzep-filter-section { margin-bottom: 40px; }
    .adzep-filter-bar { border-radius: 16px; padding: 10px; }
    .adzep-filter-btn { padding: 10px 16px; font-size: .85rem; }
}
@media (max-width: 720px) {
    .adzep-modal-box { grid-template-columns: 1fr; }
    .adzep-modal-visual { display: none; }
    .adzep-modal-form-area { padding: 36px 24px; }
    .adzep-success-box { padding: 44px 24px 36px; }
    .adzep-about-box { padding: 28px 24px; }
}

html, body { overflow-x: hidden; }
