/* ============================================
   LP-1 — A23 Digital
   ============================================ */

#lp1 * { box-sizing: border-box; }

#lp1 {
    background-color: #0a0a0a;
    color: #fff;
    font-family: "Inter", sans-serif;
    -webkit-font-smoothing: antialiased;
    --accent: #FDAC57;
    --accent-dim: rgba(253,172,87,0.08);
    --border: rgba(255,255,255,0.07);
    --surface: #111;
    --muted: #555;
    --radius: 10px;
    --max: 960px;
}

#lp1 section { display: flex; justify-content: center; }
#lp1 section:not(:first-of-type) { padding: 48px 24px; }
#lp1 .inner  { width: 100%; max-width: var(--max); }
#lp1 hr      { border: none; border-top: 1px solid var(--border); margin: 0; }

#lp1 h1, #lp1 h2, #lp1 h3 {
    font-family: "Poppins", sans-serif;
    color: #fff;
    line-height: 1.12;
    letter-spacing: -0.02em;
}
#lp1 p { color: var(--muted); line-height: 1.7; font-size: 15px; }

.lp1-label {
    display: inline-block;
    font-family: "Poppins", sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
    margin-bottom: 14px;
}

/* BOTÃO */
.lp1-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent);
    color: #000;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 15px 30px;
    border-radius: var(--radius);
    text-decoration: none;
    transition: opacity .15s;
    letter-spacing: .01em;
}
.lp1-btn:hover { opacity: .85; }
.lp1-btn svg   { width: 18px; height: 18px; fill: #000; flex-shrink: 0; }

/* ============================================
   HERO
   ============================================ */
#lp1-hero {
    background: #0a0a0a;
    border-bottom: 1px solid var(--border);
    padding: 0 20px;
}

#lp1-hero .inner {
    padding: 36px 0 52px;
    display: flex;
    flex-direction: column;
}

#lp1-hero .hero-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 60px;
}

#lp1-hero .hero-top img.logo {
    height: 28px;
    width: auto;
}

#lp1-hero .badge-partner {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 10px;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    color: #444;
    text-transform: uppercase;
    letter-spacing: .08em;
    white-space: nowrap;
}
#lp1-hero .badge-partner img { height: 20px; width: auto; }

#lp1-hero h1 {
    font-size: clamp(34px, 5vw, 54px);
    font-weight: 800;
    max-width: 700px;
    margin-bottom: 20px;
}
#lp1-hero h1 em { font-style: normal; color: var(--accent); }

#lp1-hero .hero-sub {
    font-size: 16px;
    color: #555;
    max-width: 580px;
    line-height: 1.65;
    margin-bottom: 12px;
}

#lp1-hero .hero-rules {
    font-size: 13px;
    color: #3a3a3a;
    max-width: 520px;
    line-height: 1.6;
    margin-bottom: 32px;
}

#lp1-hero .hero-cta {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
#lp1-hero .hero-hint { font-size: 12px; color: #333; }

#lp1-hero .hero-metrics {
    display: flex;
    margin-top: 60px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}
#lp1-hero .hero-metrics .m {
    flex: 1;
    padding: 24px 28px;
    border-right: 1px solid var(--border);
}
#lp1-hero .hero-metrics .m:last-child { border-right: none; }
#lp1-hero .hero-metrics strong {
    display: block;
    font-family: "Poppins", sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -0.02em;
    margin-bottom: 4px;
}
#lp1-hero .hero-metrics span {
    font-size: 11px;
    color: #333;
    text-transform: uppercase;
    letter-spacing: .06em;
    font-weight: 600;
}

/* ============================================
   CERTIFICAÇÕES
   ============================================ */
#lp1-certs {
    background: #0a0a0a;
    border-bottom: 1px solid var(--border);
}
#lp1-certs .inner { display: flex; flex-direction: column; gap: 48px; }

#lp1-certs h2 { font-size: clamp(24px, 3.5vw, 36px); font-weight: 800; margin-bottom: 10px; }
#lp1-certs .certs-sub { max-width: 540px; }

#lp1-certs .certs-body {
    display: flex;
    gap: 48px;
    align-items: flex-start;
}

#lp1-certs .badge-block {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
#lp1-certs .badge-block a img { height: 88px; width: auto; }
#lp1-certs .badge-note { font-size: 11px; color: #333; text-transform: uppercase; letter-spacing: .07em; font-weight: 600; }

#lp1-certs .certs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    flex: 1;
}
#lp1-certs .cert-card {
    background: var(--surface);
    padding: 18px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
#lp1-certs .cert-card img { width: 44px; height: auto; }
#lp1-certs .cert-card span { font-size: 11px; color: #444; line-height: 1.4; font-weight: 500; }

/* ============================================
   O QUE FAZEMOS
   ============================================ */
#lp1-diff {
    background: #0a0a0a;
    border-bottom: 1px solid var(--border);
}
#lp1-diff .inner { display: flex; flex-direction: column; gap: 40px; }
#lp1-diff h2 { font-size: clamp(24px, 3.5vw, 36px); font-weight: 800; max-width: 560px; }
#lp1-diff .diff-sub { max-width: 520px; }

#lp1-diff .diff-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}
#lp1-diff .diff-card {
    background: var(--surface);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
#lp1-diff .card-num {
    font-size: 10px;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--accent);
}
#lp1-diff .diff-card h3 { font-size: 15px; font-weight: 700; line-height: 1.3; }
#lp1-diff .diff-card p  { font-size: 13px; color: #444; line-height: 1.6; }
#lp1-diff .card-tags    { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 4px; }
#lp1-diff .card-tag {
    font-size: 9px;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: 3px 7px;
    border-radius: 4px;
    background: var(--accent-dim);
    color: var(--accent);
    border: 1px solid rgba(253,172,87,.2);
}

/* ============================================
   CASES
   ============================================ */
#lp1-cases {
    background: #0a0a0a;
    border-bottom: 1px solid var(--border);
}
#lp1-cases .inner { display: flex; flex-direction: column; gap: 40px; }
#lp1-cases h2 { font-size: clamp(24px, 3.5vw, 36px); font-weight: 800; }
#lp1-cases .cases-sub { max-width: 440px; }

.case-cards {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}
.case-card {
    background: var(--surface);
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.case-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.case-tag {
    font-size: 10px;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    padding: 4px 10px;
    border-radius: 4px;
    background: var(--accent-dim);
    color: var(--accent);
    border: 1px solid rgba(253,172,87,.2);
}
.case-result {
    font-family: "Poppins", sans-serif;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--accent);
}
.case-card h3 { font-size: 18px; font-weight: 700; }
.case-card > p { font-size: 14px; color: #555; line-height: 1.7; max-width: 700px; }

.case-metrics {
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    align-items: flex-end;
}
.case-metric { display: flex; flex-direction: column; gap: 4px; }
.case-metric strong {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: #fff;
}
.case-metric span { font-size: 11px; color: #444; text-transform: uppercase; letter-spacing: .06em; font-weight: 600; }
.case-link {
    font-size: 12px;
    color: #2a2a2a;
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    letter-spacing: .02em;
    margin-left: auto;
    transition: color .15s;
}
.case-link:hover { color: #444; }

/* ============================================
   PARA QUEM É
   ============================================ */
#lp1-audience {
    background: #0a0a0a;
    border-bottom: 1px solid var(--border);
}
#lp1-audience .inner { display: flex; flex-direction: column; gap: 40px; }
#lp1-audience h2 { font-size: clamp(24px, 3.5vw, 36px); font-weight: 800; }

#lp1-audience .checks {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}
#lp1-audience .check-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    border-bottom: 1px solid var(--border);
    background: var(--surface);
}
#lp1-audience .check-item:last-child { border-bottom: none; }

#lp1-audience .dot {
    width: 18px; height: 18px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--accent-dim);
    border: 1px solid rgba(253,172,87,.3);
    display: flex; align-items: center; justify-content: center;
}
#lp1-audience .dot svg { width: 9px; height: 9px; stroke: var(--accent); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

#lp1-audience .check-item p { font-size: 14px; color: #666; }
#lp1-audience .check-item p strong { color: #ccc; font-weight: 600; }

#lp1-audience .aud-cta { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
#lp1-audience .no-lock  { font-size: 12px; color: #333; }

/* ============================================
   CLIENTES
   ============================================ */
#lp1-clients {
    background: #0a0a0a;
    border-bottom: 1px solid var(--border);
    padding: 56px 0;
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
}
#lp1-clients .inner { padding: 0 24px; }
#lp1-clients .clients-label {
    font-size: 10px; color: #2a2a2a;
    text-transform: uppercase; letter-spacing: .12em;
    font-weight: 700; font-family: "Poppins", sans-serif;
}

.lp1-marquee {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.lp1-marquee-track {
    display: flex;
    align-items: center;
    gap: 56px;
    animation: lp1-marquee 22s linear infinite;
    width: max-content;
    padding: 0 28px;
}
.lp1-marquee-track img {
    height: 22px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.2;
    flex-shrink: 0;
    transition: opacity .2s;
}
.lp1-marquee-track img:hover { opacity: .5; }
@keyframes lp1-marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ============================================
   CTA FINAL
   ============================================ */
#lp1-cta { background: #0a0a0a; }
#lp1-cta .cta-box {
    width: 100%;
    max-width: var(--max);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 56px 48px;
    background: var(--surface);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 28px;
}
#lp1-cta .cta-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
#lp1-cta h2 { font-size: clamp(24px, 3.5vw, 38px); font-weight: 800; max-width: 560px; }
#lp1-cta h2 em { font-style: normal; color: var(--accent); }
#lp1-cta .cta-contact { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
#lp1-cta .cta-contact a { font-size: 12px; color: #2a2a2a; text-decoration: none; transition: color .15s; }
#lp1-cta .cta-contact a:hover { color: #555; }

/* ============================================
   FOOTER LP
   ============================================ */
#lp1-footer {
    background: #0a0a0a;
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 32px 24px;
    display: flex;
    justify-content: center;
    font-family: "Inter", sans-serif;
    -webkit-font-smoothing: antialiased;
    box-sizing: border-box;
}
.lp1-footer-inner {
    width: 100%;
    max-width: 960px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    box-sizing: border-box;
}
.lp1-footer-inner img {
    height: 22px;
    width: auto;
    opacity: 0.4;
}
.lp1-footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
.lp1-footer-links a {
    font-size: 12px;
    color: #2a2a2a;
    text-decoration: none;
    transition: color .15s;
}
.lp1-footer-links a:hover { color: #444; }
.lp1-footer-copy {
    font-size: 11px;
    color: #1a1a1a;
}

/* ============================================
   RESPONSIVO
   ============================================ */
@media (max-width: 640px) {
    #lp1 section:not(:first-of-type) { padding: 56px 20px; }
    #lp1-clients  { padding: 40px 0; }

    #lp1-hero .hero-top { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 36px; }
    #lp1-hero .hero-metrics { flex-direction: column; margin-top: 40px; }
    #lp1-hero .hero-metrics .m { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
    #lp1-hero .hero-metrics .m:last-child { border-bottom: none; }
    #lp1-hero .hero-cta { flex-direction: column; align-items: flex-start; }

    #lp1-certs .certs-body { flex-direction: column; gap: 28px; }
    #lp1-certs .certs-grid { grid-template-columns: repeat(2, 1fr); }

    #lp1-diff .diff-cards { grid-template-columns: 1fr; }

    .case-card { padding: 24px; }
    .case-header { flex-direction: column; }
    .case-link { margin-left: 0; }

    #lp1-cta .cta-box { padding: 36px 24px; }

    .lp1-footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
}
