/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.5;
    color: #1a1a1a;
    overflow-x: hidden;
    background: #ffffff;
    font-optical-sizing: auto;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Efeito de fundo sutil */
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(118, 75, 162, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

/* Container principal */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Logo */
.logo-container {
    margin-bottom: 3rem;
    animation: fadeInDown 1s ease-out;
}

.logo {
    max-width: 250px;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

/* Conteúdo */
.content {
    animation: fadeInUp 1s ease-out 0.3s both;
    max-width: 900px;
}

/* Títulos - PP Neue Machina Inktrap Semibold (usando Space Grotesk como alternativa) */
.main-title {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    color: #1a1a1a;
    font-size: 3.333rem; /* 50pts convertido para rem (50/15 = 3.333) */
    font-weight: 600; /* Semibold */
    margin-bottom: 1.5rem;
    line-height: 4rem; /* 60pts = 4rem */
    letter-spacing: 0;
    font-optical-sizing: auto;
}

.main-title .highlight {
    color: #667eea;
    position: relative;
}

/* Subtítulos - PP Neue Machina Inktrap Regular */
.subtitle {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    color: #4a5568;
    font-size: 2rem; /* 30pts = 2rem */
    font-weight: 400; /* Regular */
    margin-bottom: 2rem;
    line-height: 2.667rem; /* 40pts = 2.667rem */
    letter-spacing: 0;
    font-optical-sizing: auto;
}

/* Corpo de texto - Inter Light */
.description {
    font-family: 'Inter', sans-serif;
    color: #718096;
    font-size: 1.333rem; /* 20pts = 1.333rem */
    font-weight: 300; /* Light */
    max-width: 750px;
    margin: 0 auto 3rem;
    line-height: 2rem; /* 30pts = 2rem */
    letter-spacing: 0;
    font-optical-sizing: auto;
}

/* Coming Soon Badge */
.coming-soon {
    margin-top: 3rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #667eea15, #764ba215);
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.coming-soon:hover {
    background: linear-gradient(135deg, #667eea20, #764ba220);
    transform: translateY(-2px);
}

.coming-soon .icon-rocket {
    color: #667eea;
    width: 20px;
    height: 20px;
    animation: rocket 2s ease-in-out infinite;
}

@keyframes rocket {
    0%, 100% {
        transform: translateY(0) rotate(-45deg);
    }
    50% {
        transform: translateY(-5px) rotate(-45deg);
    }
}

.coming-soon p {
    color: #667eea;
    font-weight: 600;
    font-size: 0.95rem;
    margin: 0;
}

/* Footer */
.footer {
    padding: 2rem;
    text-align: center;
    color: #a0aec0;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
    border-top: 1px solid #e2e8f0;
}

/* Animações */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .container {
        padding: 1.5rem;
    }

    .logo {
        max-width: 180px;
    }

    .logo-container {
        margin-bottom: 2rem;
    }

    .main-title {
        font-size: 2.5rem; /* 37.5pts */
        line-height: 3rem; /* 45pts */
    }

    .subtitle {
        font-size: 1.5rem; /* 22.5pts */
        line-height: 2rem; /* 30pts */
        margin-bottom: 1.5rem;
    }

    .description {
        font-size: 1.067rem; /* 16pts */
        line-height: 1.6rem; /* 24pts */
        margin-bottom: 2rem;
    }

    .coming-soon {
        margin-top: 2rem;
        padding: 0.9rem 1.5rem;
    }

    .coming-soon .icon-rocket {
        width: 18px;
        height: 18px;
    }

    .coming-soon p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .logo {
        max-width: 150px;
    }

    .main-title {
        font-size: 2rem; /* 30pts */
        line-height: 2.4rem; /* 36pts */
    }

    .subtitle {
        font-size: 1.2rem; /* 18pts */
        line-height: 1.6rem; /* 24pts */
    }

    .description {
        font-size: 1rem; /* 15pts */
        line-height: 1.5rem; /* 22.5pts */
    }

    .coming-soon {
        padding: 0.8rem 1.3rem;
    }

    .coming-soon .icon-rocket {
        width: 16px;
        height: 16px;
    }

    .coming-soon p {
        font-size: 0.85rem;
    }
}

