/* Reset e estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #FFFFFF;
    color: #000000;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Efeito do cursor personalizado */
.cursor-effect {
    position: fixed;
    width: 30px;
    height: 30px;
    border: 2px solid #000000;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: all 0.2s ease;
    background-color: rgba(0, 0, 0, 0.1);
}

.cursor-effect::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background-color: #000;
    border-radius: 50%;
    transition: all 0.2s ease;
}

/* Efeitos de hover e clique no cursor */
.cursor-effect.hover {
    width: 50px;
    height: 50px;
    border-color: #000000;
    background-color: rgba(0, 0, 0, 0.2);
}

.cursor-effect.hover::after {
    width: 8px;
    height: 8px;
}

.cursor-effect.click {
    width: 20px;
    height: 20px;
    border-color: #000000;
    background-color: rgba(0, 0, 0, 0.3);
}

.cursor-effect.click::after {
    width: 4px;
    height: 4px;
}

/* Container principal */
.container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

/* Conteúdo centralizado */
.content {
    text-align: center;
    padding: 2rem;
    opacity: 0;
    animation: fadeIn 1s ease-in-out forwards;
    position: relative;
}

/* Logo */
.logo {
    width: 200px;
    height: auto;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeIn 1s ease-in-out forwards;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

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

/* Headline */
.headline {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.line-1 {
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 1s ease-in-out 1s forwards;
}

.line-2 {
    opacity: 0;
    border-right: 2px solid #000;
    white-space: nowrap;
    overflow: hidden;
    width: 0;
    animation: typing 3s steps(40) 2s forwards;
}

/* Em breve */
.coming-soon {
    font-size: 1.2rem;
    font-weight: 500;
    color: #666;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 1s ease-in-out 4s forwards;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

/* Partículas */
#tsparticles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

/* Animações */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes typing {
    from {
        width: 0;
        opacity: 1;
    }
    to {
        width: 100%;
        opacity: 1;
    }
}

/* Media Queries */
@media (max-width: 768px) {
    .headline {
        font-size: 1.8rem;
    }
    
    .logo {
        width: 150px;
    }
    
    .cursor-effect {
        display: none;
    }

    .coming-soon {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .headline {
        font-size: 1.5rem;
    }
    
    .logo {
        width: 120px;
    }

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