/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores do Projeto (baseadas em destaques page) */
    --background: #0e0e10;
    --pink-primary: #ec4899;
    --pink-light: #f472b6;
    --pink-dark: #be185d;
    --red-accent: #ff4d00;
    --amber-accent: #ffaa00;
    --purple-accent: #a855f7;
    --white: #ffffff;
    --gray-light: #d1d5db;
    --gray-medium: #6b7280;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--background);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header */
.header {
    padding: 2rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(236, 72, 153, 0.1);
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--white);
}

.logo-accent {
    background: linear-gradient(135deg, var(--pink-primary), var(--red-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.slogan {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    background: linear-gradient(135deg, var(--pink-light), var(--amber-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Hero */
.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.5rem;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.2), rgba(168, 85, 247, 0.2));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(236, 72, 153, 0.3);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    margin-bottom: 2rem;
    color: var(--pink-light);
    font-size: 0.875rem;
    font-weight: 600;
}

.hero-badge svg {
    color: var(--amber-accent);
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-highlight {
    display: block;
    background: linear-gradient(135deg, var(--pink-primary), var(--red-accent), var(--amber-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 0.5rem;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--gray-light);
    margin-bottom: 3rem;
    font-weight: 300;
    line-height: 1.7;
}

/* CTA */
.cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, var(--pink-primary), var(--red-accent));
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(236, 72, 153, 0.4);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    background: linear-gradient(135deg, var(--pink-light), var(--amber-accent));
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(236, 72, 153, 0.6);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid var(--pink-primary);
    color: var(--pink-primary);
}

.cta-button.secondary:hover {
    background: linear-gradient(135deg, var(--pink-primary), var(--red-accent));
    color: var(--white);
    border-color: transparent;
}

.cta-icon {
    display: flex;
    position: relative;
    z-index: 1;
}

.cta-text {
    position: relative;
    z-index: 1;
}

.cta-hint {
    font-size: 0.875rem;
    color: var(--gray-medium);
}

.cta-hint strong {
    color: var(--pink-light);
    font-weight: 600;
}

/* Decoração */
.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.decoration-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.2;
    animation: float 20s infinite ease-in-out;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--pink-primary), transparent);
    top: -10%;
    left: -10%;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--purple-accent), transparent);
    bottom: -10%;
    right: -10%;
    animation-delay: 10s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(30px, -30px);
    }
}

/* Seções */
.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--pink-primary), var(--amber-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Criadoras */
.creators {
    padding: 4rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.creators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.creator-card {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1), rgba(168, 85, 247, 0.1));
    border: 1px solid rgba(236, 72, 153, 0.2);
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: default;
}

.creator-card:hover {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.2), rgba(168, 85, 247, 0.2));
    border-color: var(--pink-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.3);
}

.creator-badge {
    display: inline-block;
    background: rgba(255, 170, 0, 0.2);
    border: 1px solid rgba(255, 170, 0, 0.3);
    border-radius: 50px;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    margin-bottom: 1rem;
    color: var(--amber-accent);
}

.creator-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.creator-stats {
    font-size: 0.875rem;
    color: var(--gray-medium);
}

/* Features */
.features {
    padding: 4rem 1.5rem;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.05), rgba(168, 85, 247, 0.05));
}

.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(236, 72, 153, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(236, 72, 153, 0.1);
    border-color: var(--pink-primary);
    transform: translateY(-5px);
}

.feature-icon {
    display: inline-flex;
    margin-bottom: 1.5rem;
    color: var(--pink-primary);
}

.feature-card:hover .feature-icon {
    color: var(--amber-accent);
    transform: scale(1.1);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--white);
}

.feature-text {
    font-size: 0.9375rem;
    color: var(--gray-light);
    line-height: 1.6;
}

/* Stats */
.stats {
    padding: 4rem 1.5rem;
    background: rgba(14, 14, 16, 0.8);
    border-top: 1px solid rgba(236, 72, 153, 0.1);
    border-bottom: 1px solid rgba(236, 72, 153, 0.1);
}

.stats-container {
    max-width: 900px;
    margin: 0 auto 3rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--pink-primary), var(--amber-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-medium);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(236, 72, 153, 0.2);
}

.final-cta {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.final-cta-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
}

/* Footer */
.footer {
    padding: 3rem 1.5rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(236, 72, 153, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    margin-bottom: 1.5rem;
}

.footer-link {
    color: var(--pink-light);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--amber-accent);
}

.footer-divider {
    color: var(--gray-medium);
    font-size: 0.875rem;
}

.footer-text {
    font-size: 0.875rem;
    color: var(--gray-medium);
    margin-bottom: 0.5rem;
}

.footer-disclaimer {
    font-size: 0.75rem;
    color: var(--gray-medium);
    opacity: 0.8;
    line-height: 1.6;
}

/* Legal Pages */
.legal-page {
    min-height: 80vh;
    padding: 3rem 1.5rem;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(236, 72, 153, 0.1);
    border-radius: 1rem;
    padding: 3rem;
}

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--pink-primary), var(--amber-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-date {
    color: var(--gray-medium);
    font-size: 0.875rem;
    margin-bottom: 2rem;
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.legal-section h3 {
    font-size: 1.125rem;
    color: var(--pink-light);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-section p {
    color: var(--gray-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-section ul {
    list-style: none;
    padding-left: 0;
}

.legal-section ul li {
    color: var(--gray-light);
    line-height: 1.8;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.legal-section ul li::before {
    content: "•";
    color: var(--pink-primary);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.legal-section a {
    color: var(--pink-primary);
    text-decoration: none;
}

.legal-section a:hover {
    color: var(--amber-accent);
    text-decoration: underline;
}

/* Toast */
.toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(150%);
    background: linear-gradient(135deg, var(--pink-primary), var(--purple-accent));
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 10px 40px rgba(236, 72, 153, 0.5);
    font-weight: 600;
    z-index: 1000;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.toast.show {
    transform: translateX(-50%) translateY(0);
}

/* Pulse Animation */
@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(236, 72, 153, 0.4);
    }

    50% {
        box-shadow: 0 4px 30px rgba(236, 72, 153, 0.7);
    }
}

.cta-button:not(.secondary) {
    animation: pulse 3s infinite;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        min-height: 60vh;
    }

    .creators-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .stats-container {
        flex-direction: column;
        gap: 1.5rem;
    }

    .stat-divider {
        width: 60px;
        height: 1px;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}