/* ============================================
   CRIADOR - PLATAFORMA DE CONTEÚDO
   Design: Vibrante, Neon, Moderno
   Cores: Azul #4CC3FF, Roxo #7C3AED, Magenta #EC4899
   ============================================ */

/* ========== RESET & BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores Primárias */
    --azul-claro: #4CC3FF;
    --azul-medio: #1E8BFF;
    --roxo: #7C3AED;
    --magenta: #EC4899;
    --preto: #0B0C10;
    --branco: #FFFFFF;
    --cinza-fundo: #E6E9EF;
    
    /* Gradientes */
    --gradient-primary: linear-gradient(135deg, var(--azul-claro) 0%, var(--roxo) 50%, var(--magenta) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--roxo) 0%, var(--magenta) 100%);
    --gradient-overlay: linear-gradient(180deg, rgba(11, 12, 16, 0.8) 0%, rgba(11, 12, 16, 0.4) 100%);
    
    /* Sombras */
    --shadow-sm: 0 2px 8px rgba(124, 58, 237, 0.1);
    --shadow-md: 0 8px 24px rgba(124, 58, 237, 0.15);
    --shadow-lg: 0 16px 48px rgba(124, 58, 237, 0.25);
    --shadow-neon: 0 0 20px rgba(76, 195, 255, 0.5);
    
    /* Fontes */
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.landing-body {
    font-family: var(--font-primary);
    background: var(--cinza-fundo);
    color: var(--preto);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ========== ANIMAÇÕES ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(76, 195, 255, 0.5);
    }
    50% {
        box-shadow: 0 0 40px rgba(124, 58, 237, 0.8);
    }
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* ========== HERO SECTION ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    padding: 4rem 6rem;
    background: linear-gradient(135deg, #E6E9EF 0%, #FFFFFF 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: var(--gradient-primary);
    opacity: 0.05;
    border-radius: 50%;
    filter: blur(80px);
    animation: float 8s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, rgba(76, 195, 255, 0.15) 0%, rgba(124, 58, 237, 0.15) 100%);
    border: 1px solid var(--azul-claro);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--roxo);
    margin-bottom: 2rem;
}

.badge-icon {
    font-size: 1.125rem;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--preto);
}

.gradient-text {
    background: var(--gradient-primary);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 5s ease infinite;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    font-weight: 400;
    color: rgba(11, 12, 16, 0.7);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--branco);
    background: var(--gradient-primary);
    background-size: 200% 200%;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-lg);
    animation: gradient-shift 5s ease infinite;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 60px rgba(124, 58, 237, 0.4);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--roxo);
    background: var(--branco);
    border: 2px solid var(--roxo);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--roxo);
    color: var(--branco);
    transform: translateY(-3px);
}

.btn-icon {
    font-size: 1.25rem;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--roxo);
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(11, 12, 16, 0.6);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent 0%, var(--roxo) 50%, transparent 100%);
}

/* Hero Image */
.hero-image {
    position: relative;
    animation: fadeInUp 1.2s ease-out;
}

.hero-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 32px;
    box-shadow: var(--shadow-lg);
}

.hero-float {
    position: absolute;
    background: var(--branco);
    border-radius: 16px;
    padding: 1rem;
    box-shadow: var(--shadow-md);
    animation: float 4s ease-in-out infinite;
}

.hero-float-1 {
    top: 10%;
    right: -10%;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.float-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid var(--magenta);
}

.float-badge {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--roxo);
}

.hero-float-2 {
    bottom: 10%;
    left: -10%;
}

.earnings-card {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.earnings-icon {
    font-size: 2rem;
}

.earnings-text {
    display: flex;
    flex-direction: column;
}

.earnings-value {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--roxo);
}

.earnings-label {
    font-size: 0.75rem;
    color: rgba(11, 12, 16, 0.6);
}

/* ========== SECTIONS ========== */
.section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, rgba(76, 195, 255, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    border: 1px solid var(--magenta);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--magenta);
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.2;
    color: var(--preto);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: rgba(11, 12, 16, 0.6);
}

/* ========== STEPS GRID ========== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.step-card {
    position: relative;
    background: var(--branco);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    overflow: hidden;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
}

.step-icon {
    width: 100%;
    height: 200px;
    margin-bottom: 1.5rem;
    border-radius: 16px;
    overflow: hidden;
}

.step-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.step-number {
    display: inline-block;
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--preto);
    margin-bottom: 0.75rem;
}

.step-text {
    font-size: 1rem;
    color: rgba(11, 12, 16, 0.7);
    line-height: 1.6;
}

/* ========== MONETIZATION CARDS ========== */
.monetization-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
}

.monetization-card {
    background: var(--branco);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.monetization-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.card-subscription:hover {
    border-color: var(--azul-claro);
}

.card-payperpost:hover {
    border-color: var(--roxo);
}

.card-tips:hover {
    border-color: var(--magenta);
}

.monetization-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.monetization-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--preto);
    margin-bottom: 1rem;
}

.monetization-text {
    font-size: 1rem;
    color: rgba(11, 12, 16, 0.7);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.monetization-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.monetization-features li {
    padding: 0.5rem 0;
    font-size: 0.9375rem;
    color: rgba(11, 12, 16, 0.8);
}

.monetization-example {
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(76, 195, 255, 0.08) 0%, rgba(124, 58, 237, 0.08) 100%);
    border-radius: 12px;
    font-size: 0.9375rem;
    color: rgba(11, 12, 16, 0.8);
}

.monetization-example strong {
    color: var(--preto);
}

.highlight {
    font-weight: 900;
    color: var(--roxo);
}

/* ========== FANS SECTION ========== */
.section-fans {
    background: linear-gradient(135deg, var(--preto) 0%, #1a1b1f 100%);
    color: var(--branco);
}

.section-fans .section-badge {
    background: rgba(76, 195, 255, 0.15);
    border-color: var(--azul-claro);
    color: var(--azul-claro);
}

.section-fans .section-title {
    color: var(--branco);
}

.fans-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.fans-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.fans-benefits {
    list-style: none;
    margin-bottom: 2rem;
}

.fans-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.benefit-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.benefit-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.benefit-text strong {
    font-size: 1.125rem;
    color: var(--branco);
}

.benefit-text span {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
}

.fans-showcase {
    position: relative;
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.showcase-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
}

.showcase-img:hover {
    transform: scale(1.05);
}

.showcase-badge {
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 1rem 2rem;
    background: var(--branco);
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--roxo);
    white-space: nowrap;
}

/* ========== FEATURES GRID ========== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--branco);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--preto);
    margin-bottom: 0.75rem;
}

.feature-text {
    font-size: 0.9375rem;
    color: rgba(11, 12, 16, 0.7);
    line-height: 1.6;
}

/* ========== TESTIMONIALS ========== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--branco);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--magenta);
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--preto);
}

.testimonial-role {
    font-size: 0.875rem;
    color: rgba(11, 12, 16, 0.6);
}

.testimonial-stars {
    font-size: 1.125rem;
}

.testimonial-text {
    font-size: 1rem;
    color: rgba(11, 12, 16, 0.8);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.testimonial-earnings {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--roxo);
}

/* ========== CTA SECTION ========== */
.section-cta {
    background: linear-gradient(135deg, var(--preto) 0%, #1a1b1f 100%);
}

.cta-box {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    background: linear-gradient(135deg, rgba(76, 195, 255, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
    border-radius: 32px;
    padding: 4rem;
}

.cta-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 900;
    color: var(--branco);
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.25rem;
}

.cta-note {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.cta-image {
    position: relative;
}

.cta-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

/* ========== FOOTER ========== */
.footer {
    background: var(--preto);
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 0 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 3fr;
    gap: 4rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--branco);
    margin-bottom: 1rem;
}

.logo-icon {
    font-size: 2rem;
}

.footer-tagline {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--branco);
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gradient-primary);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--branco);
    margin-bottom: 1rem;
}

.footer-link {
    display: block;
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--azul-claro);
}

.footer-bottom {
    text-align: center;
}

.footer-copyright {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.5rem;
}

.footer-disclaimer {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.4);
    max-width: 700px;
    margin: 0 auto;
}

/* ========== MODAL ========== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active {
    display: flex;
    opacity: 1;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 12, 16, 0.9);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    z-index: 1;
    background: var(--branco);
    border-radius: 32px;
    padding: 3rem;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.4s ease-out;
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: rgba(11, 12, 16, 0.6);
    font-size: 2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.modal-close:hover {
    background: rgba(11, 12, 16, 0.05);
    color: var(--preto);
}

.modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.modal-title {
    font-size: 2rem;
    font-weight: 900;
    color: var(--preto);
    margin-bottom: 0.5rem;
}

.modal-subtitle {
    font-size: 1rem;
    color: rgba(11, 12, 16, 0.6);
}

/* ========== FORM ========== */
.modal-form,
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--preto);
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    font-family: var(--font-primary);
    color: var(--preto);
    background: var(--cinza-fundo);
    border: 2px solid transparent;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--roxo);
    background: var(--branco);
}

.btn-block {
    width: 100%;
}

.form-note {
    font-size: 0.8125rem;
    color: rgba(11, 12, 16, 0.6);
    text-align: center;
    margin-top: 1rem;
}

.form-note a {
    color: var(--roxo);
    text-decoration: none;
}

.form-feedback {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    font-size: 0.9375rem;
    display: none;
}

.form-feedback.success {
    display: block;
    background: rgba(76, 195, 255, 0.15);
    border: 2px solid var(--azul-claro);
    color: var(--azul-medio);
}

.form-feedback.error {
    display: block;
    background: rgba(236, 72, 153, 0.15);
    border: 2px solid var(--magenta);
    color: #D91656;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 4rem 2rem;
    }
    
    .fans-content,
    .cta-box {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-cta {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: space-between;
    }
    
    .hero-float {
        display: none;
    }
    
    .steps-grid,
    .monetization-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .showcase-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 3rem 1.5rem;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .modal-content {
        padding: 2rem 1.5rem;
    }
    
    .stat-divider {
        display: none;
    }
}

/* ========== ACCESSIBILITY ========== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

:focus-visible {
    outline: 3px solid var(--roxo);
    outline-offset: 2px;
}
