/* ══════════════════════════════════════════════════════════════
   CoverCut — Landing pages (SEO) shared stylesheet
   Sistema de design espelhado da home (index.php).
══════════════════════════════════════════════════════════════ */
:root {
    --bg: #03040b;
    --bg-1: #060810;
    --bg-2: #0b0d18;
    --bg-3: #111320;
    --border: rgba(255, 255, 255, 0.07);
    --border-md: rgba(255, 255, 255, 0.12);
    --green: #25D366;
    --green-dk: #1aad52;
    --green-dim: rgba(37, 211, 102, 0.12);
    --green-glo: rgba(37, 211, 102, 0.22);
    --green-txt: #4ade80;
    --text: #e8ecf2;
    --text-2: #8b9ab8;
    --text-3: #4e5a72;
    --red: #f87171;
    --yellow: #fbbf24;
    --blue: #60a5fa;
    --purple: #a78bfa;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
}

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

.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ── Background atmosphere ── */
.bg-grid {
    position: fixed;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-size: 36px 36px;
    pointer-events: none;
    z-index: 0;
}

.orb {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.orb-1 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(37, 211, 102, 0.13) 0%, transparent 70%);
    top: -280px;
    left: -200px;
    animation: orbFloat 18s ease-in-out infinite;
}

.orb-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 211, 102, 0.07) 0%, transparent 70%);
    bottom: 5%;
    right: -180px;
    animation: orbFloat 24s ease-in-out infinite reverse;
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translate(0, 0);
    }

    33% {
        transform: translate(30px, -40px);
    }

    66% {
        transform: translate(-20px, 30px);
    }
}

header,
main,
footer {
    position: relative;
    z-index: 1;
}

/* ══ HEADER ══ */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transition: background 0.3s, border-color 0.3s;
}

header.scrolled {
    background: rgba(3, 4, 11, 0.8);
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    border-bottom: 1px solid var(--border);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-shrink: 0;
}

.logo-mark {
    width: 38px;
    height: 38px;
    object-fit: contain;
    display: block;
}

.logo-text {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: -0.02em;
}

.logo-accent {
    color: var(--green);
}

.nav-center {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-center a {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-2);
    transition: color 0.2s;
    white-space: nowrap;
}

.nav-center a:hover {
    color: var(--text);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-shrink: 0;
}

.btn-ghost {
    padding: 0.5rem 1.1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-2);
    border: 1px solid var(--border);
    border-radius: 8px;
    transition: all 0.2s;
}

.btn-ghost:hover {
    color: var(--text);
    border-color: var(--border-md);
    background: rgba(255, 255, 255, 0.04);
}

.btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
    padding: 0.5rem 0.9rem;
    color: var(--green-txt);
    border-color: rgba(37, 211, 102, 0.25);
}

.btn-contact:hover {
    color: var(--green-txt);
    border-color: rgba(37, 211, 102, 0.5);
    background: rgba(37, 211, 102, 0.08);
}

.btn-solid {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #000;
    background: var(--green);
    border-radius: 8px;
    transition: all 0.2s;
}

.btn-solid:hover {
    background: #2ee872;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-size: 1.15rem;
    cursor: pointer;
    flex-shrink: 0;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    padding: 0.5rem 2rem 1.5rem;
    background: rgba(3, 4, 11, 0.97);
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    border-bottom: 1px solid var(--border);
}

.mobile-nav.open {
    display: flex;
}

.mobile-nav>a {
    padding: 0.9rem 0;
    color: var(--text-2);
    font-size: 0.95rem;
    font-weight: 500;
    border-bottom: 1px solid var(--border);
}

.mobile-nav-actions {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-top: 1.25rem;
}

.mobile-nav-actions .btn-ghost,
.mobile-nav-actions .btn-solid,
.mobile-nav-actions .btn-contact {
    text-align: center;
    justify-content: center;
    padding: 0.8rem;
    font-size: 0.95rem;
}

/* ══ HERO ══ */
.lp-hero {
    padding: 9rem 0 4rem;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.45rem 1rem 0.45rem 0.6rem;
    background: rgba(37, 211, 102, 0.08);
    border: 1px solid rgba(37, 211, 102, 0.25);
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--green-txt);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 1.75rem;
    font-family: 'DM Mono', monospace;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 10px var(--green);
}

.lp-hero h1 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(2.1rem, 4.2vw, 3.4rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.02em;
    margin: 0 auto 1.5rem;
    max-width: 900px;
    background: linear-gradient(160deg, #fff 0%, rgba(255, 255, 255, 0.85) 40%, var(--green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lp-hero .hero-sub {
    font-size: 1.15rem;
    color: var(--text-2);
    max-width: 620px;
    margin: 0 auto 2.25rem;
    line-height: 1.7;
    font-weight: 300;
}

.hero-cta {
    display: flex;
    gap: 0.875rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 2rem;
    background: var(--green);
    color: #000;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 10px;
    transition: all 0.2s;
}

.cta-primary:hover {
    background: #2ee872;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.35);
}

.cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-md);
    color: var(--text-2);
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 10px;
    transition: all 0.2s;
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text);
    border-color: rgba(255, 255, 255, 0.2);
}

/* ══ SECTIONS ══ */
.lp-section {
    padding: 5rem 0;
}

.lp-section.alt {
    background: var(--bg-1);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.section-head {
    text-align: center;
    margin-bottom: 3.25rem;
}

.section-tag {
    display: inline-block;
    font-family: 'DM Mono', monospace;
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--green);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    opacity: 0.85;
}

.section-head h2 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(1.8rem, 3.4vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.015em;
    line-height: 1.1;
    margin-bottom: 0.9rem;
}

.section-head p {
    color: var(--text-2);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto;
    font-weight: 300;
}

/* Prose block */
.prose {
    max-width: 760px;
    margin: 0 auto;
}

.prose h2 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(1.5rem, 2.6vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.015em;
    line-height: 1.15;
    margin: 2.5rem 0 1rem;
}

.prose h3 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 1.75rem 0 0.6rem;
}

.prose p {
    color: var(--text-2);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 1rem;
    font-weight: 300;
}

.prose strong {
    color: var(--text);
    font-weight: 600;
}

.prose a {
    color: var(--green-txt);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Cards grid */
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.card-grid.cols-2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 860px;
    margin: 0 auto;
}

.feat-card {
    background: #0d1022;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 16px;
    padding: 2rem 1.85rem;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.feat-card:hover {
    background: #111428;
    border-color: rgba(37, 211, 102, 0.25);
    transform: translateY(-5px);
}

.feat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--green-dim);
    border: 1px solid rgba(37, 211, 102, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    font-size: 1.15rem;
    margin-bottom: 1.35rem;
}

.feat-card h3 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    letter-spacing: -0.01em;
}

.feat-card p {
    font-size: 0.9rem;
    color: var(--text-2);
    line-height: 1.65;
    font-weight: 300;
}

/* Callout / aviso */
.callout {
    max-width: 820px;
    margin: 2.5rem auto 0;
    display: flex;
    gap: 1.1rem;
    padding: 1.5rem 1.75rem;
    background: rgba(251, 191, 36, 0.06);
    border: 1px solid rgba(251, 191, 36, 0.28);
    border-radius: 14px;
}

.callout i {
    color: var(--yellow);
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.callout p {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.65;
    font-weight: 300;
}

.callout strong {
    font-weight: 600;
}

.callout.green {
    background: rgba(37, 211, 102, 0.06);
    border-color: rgba(37, 211, 102, 0.28);
}

.callout.green i {
    color: var(--green);
}

/* Cost table */
.cost-table {
    max-width: 820px;
    margin: 0 auto;
    width: 100%;
    border-collapse: collapse;
    background: #0d1022;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 16px;
    overflow: hidden;
}

.cost-table th,
.cost-table td {
    padding: 1rem 1.35rem;
    text-align: left;
    font-size: 0.92rem;
    border-bottom: 1px solid var(--border);
}

.cost-table thead th {
    background: rgba(255, 255, 255, 0.03);
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.01em;
}

.cost-table td {
    color: var(--text-2);
    font-weight: 300;
}

.cost-table td strong {
    color: var(--text);
    font-weight: 600;
}

.cost-table tbody tr:last-child td {
    border-bottom: none;
}

.table-scroll {
    overflow-x: auto;
}

/* ══ PRICING ══ */
.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.price-card {
    flex: 1 1 280px;
    max-width: 330px;
    background: #0d1022;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.25rem 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
}

.price-card.featured {
    background: rgba(37, 211, 102, 0.05);
    border-color: rgba(37, 211, 102, 0.35);
    box-shadow: 0 0 40px rgba(37, 211, 102, 0.1), inset 0 1px 0 rgba(37, 211, 102, 0.15);
}

.popular-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--green);
    color: #000;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.3rem 1rem;
    border-radius: 9999px;
    font-family: 'DM Mono', monospace;
}

.price-name {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.price-desc {
    font-size: 0.875rem;
    color: var(--text-2);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.price-amount-row {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
    margin-bottom: 0.4rem;
}

.price-currency {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-2);
}

.price-val {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 2.75rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1;
    color: var(--text);
}

.featured .price-val {
    color: var(--green);
}

.price-period {
    font-size: 0.8rem;
    color: var(--text-3);
}

.price-divider {
    height: 1px;
    background: var(--border);
    margin: 1.5rem 0;
}

.price-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.75rem;
}

.price-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--text-2);
}

.price-list li i {
    width: 18px;
    color: var(--green);
    flex-shrink: 0;
    font-size: 0.8rem;
}

.price-btn {
    display: block;
    width: 100%;
    margin-top: auto;
    text-align: center;
    padding: 0.85rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.price-btn-outline {
    border: 1px solid var(--border-md);
    color: var(--text-2);
}

.price-btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
}

.price-btn-solid {
    background: var(--green);
    color: #000;
}

.price-btn-solid:hover {
    background: #2ee872;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
    transform: translateY(-1px);
}

/* ══ FAQ ══ */
.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.faq-item {
    background: #0d1022;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.25s;
}

.faq-item[open] {
    border-color: rgba(37, 211, 102, 0.3);
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 1.35rem 1.6rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 1.02rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--text);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.8rem;
    color: var(--green);
    flex-shrink: 0;
    transition: transform 0.25s;
}

.faq-item[open] summary::after {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.6rem 1.5rem;
    color: var(--text-2);
    font-size: 0.95rem;
    line-height: 1.7;
    font-weight: 300;
}

.faq-answer strong {
    color: var(--text);
    font-weight: 600;
}

/* ══ CTA BAND ══ */
.cta-band {
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.08) 0%, transparent 50%, rgba(37, 211, 102, 0.05) 100%);
}

.cta-band::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(37, 211, 102, 0.4), transparent);
}

.cta-band h2 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(1.9rem, 3.6vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.015em;
    margin-bottom: 1rem;
    position: relative;
}

.cta-band p {
    color: var(--text-2);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    position: relative;
}

.cta-band .cta-primary {
    position: relative;
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

/* ══ FOOTER ══ */
footer {
    padding: 3rem 0;
    border-top: 1px solid var(--border);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copy {
    font-size: 0.82rem;
    color: var(--text-3);
}

.footer-copy a {
    color: var(--green);
}

.footer-links {
    display: flex;
    gap: 1.75rem;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 0.82rem;
    color: var(--text-3);
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--text-2);
}

/* ══ Breadcrumb ══ */
.breadcrumb {
    max-width: 1160px;
    margin: 0 auto;
    padding: 6.5rem 2rem 0;
    font-size: 0.8rem;
    color: var(--text-3);
    font-family: 'DM Mono', monospace;
}

.breadcrumb a {
    color: var(--text-2);
}

.breadcrumb a:hover {
    color: var(--green-txt);
}

/* ══ Float buttons ══ */
.float-btns {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    z-index: 90;
}

.float-wa {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    color: #fff;
    font-size: 1.7rem;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
    transition: all 0.25s ease;
}

.float-wa:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.55);
}

/* ══ Scroll animations ══ */
.anim {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1), transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.anim.visible {
    opacity: 1;
    transform: none;
}

/* ══ Responsive ══ */
@media (max-width: 1024px) {
    .card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 980px) {

    .nav-center,
    .nav-right {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .lp-hero {
        padding: 8rem 0 3rem;
    }
}

@media (max-width: 680px) {
    .card-grid {
        grid-template-columns: 1fr;
    }

    .card-grid.cols-2 {
        grid-template-columns: 1fr;
    }
}
