@font-face {
    font-family: 'MiSans';
    src: url('https://assets-persist.lovart.ai/agent-static-assets/MiSans-Regular.ttf') format('truetype');
    font-weight: 400;
}

@font-face {
    font-family: 'MiSans';
    src: url('https://assets-persist.lovart.ai/agent-static-assets/MiSans-Bold.ttf') format('truetype');
    font-weight: 700;
}

@font-face {
    font-family: 'AlimamaShuHeiTi';
    src: url('https://assets-persist.lovart.ai/agent-static-assets/AlimamaShuHeiTi-Bold.otf') format('opentype');
    font-weight: 700;
}

:root {
    --bg-dark: #0f0f0f;
    --bg-darker: #050505;
    --bg-card: #1a1a1a;
    --primary: #6f45f8;
    --secondary: #f57dff;
    --accent: #d300b1;
    --text-main: #ffffff;
    --text-muted: #e0e0e0;
    --glow: rgba(111, 69, 248, 0.6);
    --gradient-main: linear-gradient(135deg, #6f45f8 0%, #d300b1 100%);
    --gradient-text: linear-gradient(90deg, #f57dff, #6f45f8);
}

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

body {
    font-family: 'MiSans', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

.page-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    background-image:
        radial-gradient(circle, rgba(255, 255, 255, 0.24) 0, rgba(255, 255, 255, 0.24) 1px, transparent 1px);
    background-size: 3px 3px;
    opacity: 0.48;
    animation: pixelNoise 10s steps(4) infinite alternate;
}

@keyframes pixelNoise {
    0% {
        transform: translate3d(0, 0, 0);
        filter: none;
    }
    50% {
        transform: translate3d(-3px, 2px, 0);
        filter: contrast(1.02) brightness(1.02);
    }
    100% {
        transform: translate3d(2px, -2px, 0);
        filter: contrast(1.06) brightness(1.04);
    }
}

html {
    max-width: 100%;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 16px;
    position: relative;
    z-index: 2;
}

.text-gradient {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-cta {
    background: var(--gradient-main);
    color: white;
    padding: 16px 32px;
    font-size: 22px;
    font-weight: 700;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px var(--glow);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-cta-small {
    padding: 10px 25px;
    font-size: 14px;
    box-shadow: 0 0 20px var(--glow);
}

.btn-cta-full {
    width: 100%;
    display: block;
    text-align: center;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px var(--glow), 0 0 20px #f57dff;
}

.btn-cta::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.section-padding {
    padding: 100px 0;
}

.section-title {
    font-family: 'AlimamaShuHeiTi', sans-serif;
    font-size: 48px;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.section-subtitle {
    font-size: 24px;
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

header {
    padding: 20px 0;
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 50px;
}

.hero {
    padding-top: 130px;
    padding-bottom: 80px;
    min-height: 100vh;
    box-sizing: border-box;
    background: radial-gradient(circle at 50% 30%, #2a1a4a 0%, #0f0f0f 70%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(111, 69, 248, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(111, 69, 248, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.2;
    mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    margin-top: 8vh;
}

.hero-video {
    width: 100%;
    aspect-ratio: 9 / 16;
    max-height: 320px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    background-color: black;
    background-size: cover;
    background-position: center;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(111, 69, 248, 0.2);
    border: 1px solid var(--primary);
    border-radius: 30px;
    color: #f57dff;
    font-weight: 700;
    margin-bottom: 30px;
    font-size: 16px;
    letter-spacing: 2px;
}

.hero h1 {
    font-family: 'AlimamaShuHeiTi', sans-serif;
    font-size: 48px;
    line-height: 1.08;
    margin-bottom: 20px;
    text-shadow: 0 0 50px rgba(111, 69, 248, 0.3);
}

.hero-subtitle {
    font-size: 20px;
    max-width: 840px;
    margin: 16px auto 0 auto;
}

.hero-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 24px;
}

.hero-media {
	flex: 0 0 auto;
	max-width: 520px;
}

.hero-video-grid {
    display: flex;
    gap: 16px;
}

.hero-video-grid .hero-video {
	max-width: 160px;
}

.hero-copy {
	max-width: 680px;
	margin: 0 auto;
	text-align: center;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.hero-copy-text {
	font-size: 17px;
	color: #dddddd;
	margin-bottom: 0;
}

.hero-copy .btn-cta {
	width: 100%;
	text-align: center;
}

.hero-brands {
	margin-top: 40px;
	display: flex;
	justify-content: center;
	gap: 20px;
	opacity: 0.6;
	flex-wrap: wrap;
}

@media (min-width: 993px) {
	.hero-copy-text {
		text-align: center;
		white-space: normal;
	}
}

.problem {
    background-color: var(--bg-card);
    position: relative;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px;
}

.pain-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    transition: 0.3s;
}

.pain-card:hover {
    border-color: var(--primary);
    background: rgba(111, 69, 248, 0.05);
    transform: translateY(-5px);
}

.pain-icon {
    font-size: 40px;
    color: var(--secondary);
    margin-bottom: 20px;
}

.pain-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.pain-text {
    color: #ccc;
    font-size: 16px;
}

.solution {
    background: black;
    text-align: center;
    padding: 150px 0;
    position: relative;
}

.solution-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(circle, rgba(111, 69, 248, 0.2) 0%, transparent 70%);
    z-index: 1;
}

.solution h2 {
	font-size: 36px;
	max-width: 1000px;
	margin: 0 auto;
	position: relative;
    z-index: 2;
}

.social-proof {
    background: var(--bg-darker);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.simple-videos {
    background: #05030b;
}

.testimonials-intro {
    background: #0b0b0b;
}

.testimonials-lead {
    max-width: 900px;
    margin: 0 auto 32px auto;
    text-align: center;
    font-size: 28px;
    font-weight: 700;
}

.testimonials-gallery {
    max-width: 900px;
    margin: 24px auto 30px auto;
    column-count: 3;
    column-gap: 16px;
}

.testimonial-item {
    break-inside: avoid;
    margin-bottom: 16px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.testimonial-item img {
    width: 100%;
    display: block;
}

.testimonials-highlight {
    max-width: 700px;
    margin: 24px auto 0 auto;
    padding: 18px 24px;
    border-radius: 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(245,125,255,0.5);
    text-align: center;
    box-shadow: 0 12px 30px rgba(0,0,0,0.6);
}

.testimonials-highlight p {
    margin: 0;
    font-size: 20px;
    color: #ffffff;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: center;
}

.stat-item h3 {
    font-family: 'AlimamaShuHeiTi', sans-serif;
    font-size: 72px;
    color: var(--primary);
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(111, 69, 248, 0.5);
}

.stat-item p {
    font-size: 20px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.benefits {
    background: linear-gradient(180deg, var(--bg-dark) 0%, #150a25 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.benefit-item {
    display: flex;
    align-items: center;
    font-size: 20px;
    background: rgba(255,255,255,0.03);
    padding: 16px 26px;
    border-radius: 12px;
    border-left: 4px solid var(--secondary);
}

.benefit-item i {
    color: var(--secondary);
    font-size: 24px;
    margin-right: 20px;
}

.benefits-visual {
    position: relative;
    height: 500px;
    background: url('../images/og-videos-virais-ia.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(255,255,255,0.1);
}

.deliverables {
    background: var(--bg-dark);
}

.module-grid {
    display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.module-card {
    background: #151515;
    padding: 30px 20px;
    border-radius: 16px;
    border: 1px solid #2a2a2a;
    text-align: center;
    transition: 0.3s;
}

.module-card:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.module-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    color: var(--primary);
    box-shadow: inset 0 0 10px rgba(0,0,0,0.8);
}

.module-title {
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.module-desc {
    font-size: 14px;
    color: #888;
}

.comparison {
    background: #0a0a0a;
    padding-bottom: 50px;
}

.compare-container {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.compare-card {
    padding: 40px;
    border-radius: 20px;
    position: relative;
}

.compare-traditional {
    background: #1a1a1a;
    border: 1px solid #333;
    opacity: 0.7;
}

.compare-ai {
    background: linear-gradient(145deg, #1a0b2e, #0f0f0f);
    border: 1px solid var(--primary);
    box-shadow: 0 0 30px rgba(111, 69, 248, 0.15);
    transform: scale(1.05);
}

.compare-title {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 700;
}

.compare-price {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    font-family: 'MiSans', sans-serif;
}

.compare-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-size: 18px;
}

.compare-list li i {
    margin-right: 15px;
}

.compare-traditional i {
    color: #ff4d4d;
}

.compare-ai i {
    color: #00ff88;
}

.offer {
    background: url('https://a.lovart.ai/artifacts/user/bzoOnF4OsIZv29Zn.png') no-repeat center center;
    background-size: cover;
    position: relative;
    padding: 150px 0;
    text-align: center;
    overflow: hidden;
}

.offer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(5px);
    z-index: 1;
}

.offer-content {
    position: relative;
    z-index: 2;
    background: rgba(20, 20, 20, 0.9);
    border: 1px solid var(--primary);
    padding: 60px;
    border-radius: 30px;
    max-width: 540px;
    margin: 0 auto;
    box-shadow: 0 0 100px rgba(111, 69, 248, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.offer-content h2 {
    font-size: 36px;
    line-height: 1.2;
    text-align: center;
}

.offer-price-old {
    font-size: 24px;
    text-decoration: line-through;
    color: #888;
}

.offer-price {
    font-family: 'AlimamaShuHeiTi';
    font-size: 120px;
    line-height: 1;
    color: white;
    margin: 10px 0 30px;
    text-shadow: 0 0 30px var(--primary);
}

.offer-price span {
    font-size: 40px;
    color: var(--secondary);
}

.author-section {
    padding: 80px 0 100px;
    background: linear-gradient(180deg, #050505 0%, #0f0f0f 100%);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.speaker-box {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.3fr);
    gap: 40px;
    align-items: center;
}

.speaker-img-container {
    display: flex;
    justify-content: center;
}

.speaker-img-full {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.speaker-content {
    background: rgba(21, 21, 21, 0.95);
    border-radius: 24px;
    padding: 32px 32px 28px;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 18px 45px rgba(0,0,0,0.6);
}

.speaker-info h3 {
    font-size: 28px;
    margin-bottom: 6px;
}

.speaker-info h4 {
    font-size: 16px;
    color: var(--text-muted);
    font-weight: 400;
}

.speaker-bio {
    margin-top: 20px;
    font-size: 16px;
    color: #dddddd;
}

.creds-list {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 15px;
}

.creds-list li i {
    color: var(--secondary);
    margin-right: 8px;
}

.speaker-intro {
    margin-top: 24px;
    padding: 14px 18px;
    border-radius: 12px;
    border: 1px dashed rgba(245,125,255,0.6);
    background: rgba(111,69,248,0.1);
    font-size: 15px;
}

footer {
    background: #050505;
    padding: 40px 0;
    border-top: 1px solid #222;
    text-align: center;
    color: #666;
    font-size: 14px;
}

footer a {
    color: #888;
    margin: 0 15px;
    transition: 0.3s;
}

footer a:hover {
    color: white;
}

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

.float {
    animation: float 4s ease-in-out infinite;
}

@media (max-width: 1200px) {
	.section-title {
		font-size: 40px;
	}

	.solution h2 {
		font-size: 32px;
	}

    .hero h1 {
        font-size: 64px;
    }

    .offer-price {
        font-size: 96px;
    }
}

@media (max-width: 992px) {
    .hero h1 {
        font-size: 48px;
    }

	.hero-layout {
		flex-direction: column-reverse;
		align-items: center;
	}

	.hero-copy {
		text-align: center;
	}

    .hero-media {
        max-width: 100%;
    }

    .section-subtitle {
        font-size: 18px;
    }

    .stats-container {
        flex-direction: column;
        gap: 32px;
    }

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

    .module-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pain-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .compare-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    header {
        padding: 20px 0;
    }

    .header-content {
        gap: 16px;
    }

    .logo {
        height: 40px;
    }

    .btn-cta {
        width: 100%;
        max-width: 100%;
        font-size: 18px;
        padding: 14px 24px;
        text-align: center;
        margin-left: 0;
        margin-right: 0;
    }

    .btn-cta-small {
        width: auto;
        font-size: 14px;
        padding: 8px 18px;
    }

    .section-padding {
        padding: 60px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .solution {
        padding: 90px 0;
    }

    .stats-container {
        margin-top: 24px;
    }

    .testimonials-gallery {
        column-count: 1;
        column-gap: 12px;
    }

    .hero {
        min-height: 100vh;
        padding-top: 110px;
        padding-bottom: 30px;
        box-sizing: border-box;
    }

	.hero-content {
		margin-top: 8vh;
	}

    .hero-layout {
        flex-direction: column;
        gap: 24px;
    }

    .hero-media {
        max-width: 100%;
        padding-bottom: 0;
    }

    .hero-video-grid {
        justify-content: center;
    }

    .hero-video-grid .hero-video {
        max-width: 110px;
    }

	.hero-brands {
		margin-top: 24px;
	}

    .hero h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .offer {
        padding: 100px 0;
    }

    .btn-cta:not(.btn-cta-small) {
        margin-top: 16px;
        width: 100%;
        max-width: 360px;
        margin-inline: auto;
    }

    .offer-price {
        font-size: 64px;
        margin: 16px 0 24px;
    }

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

    .speaker-box {
        grid-template-columns: 1fr;
    }

    .speaker-content {
        padding: 24px 20px 22px;
    }

    .compare-ai {
        transform: none;
    }

    .pain-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pain-card {
        padding: 28px;
    }

    .compare-card {
        padding: 28px;
    }

    .offer-content {
        padding: 28px 18px;
        margin: 0 auto;
        width: calc(100% - 32px);
        max-width: 520px;
        box-sizing: border-box;
        gap: 16px;
    }

    .offer-content h2 {
        font-size: 28px;
    }

    .offer-content p {
        font-size: 16px;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }

    .hero-badge {
        font-size: 12px;
        padding: 6px 16px;
    }

    .offer-price {
        font-size: 48px;
    }

    .stat-item h3 {
        font-size: 48px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .offer-content {
        margin: 0 auto;
        width: calc(100% - 24px);
        max-width: 520px;
        padding: 26px 16px;
    }
}

@media (max-width: 480px) {
    .testimonials-gallery {
        column-count: 1;
    }
}

@media (max-width: 360px) {
    .hero h1 {
        font-size: 26px;
    }

    .btn-cta {
        font-size: 16px;
        padding: 12px 20px;
    }

    .offer-price {
        font-size: 40px;
    }

    .offer {
        padding: 70px 0;
    }

    .offer-content {
        padding: 24px 14px;
        margin: 0 auto;
        width: calc(100% - 20px);
    }

    .offer-content h2 {
        font-size: 24px;
    }

    .btn-cta:not(.btn-cta-small) {
        margin-top: 16px;
    }
}
