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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    background: #d9a7b2;
    color: #fff9f9;
    overflow-x: hidden;
    cursor: none;
    min-height: 100vh;
}

.cursor-follower {
    position: fixed;
    width: 20px;
    height: 20px;
    background: rgba(255, 249, 249, 0.8);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
    mix-blend-mode: difference;
}

.container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
}

.content {
    text-align: center;
    max-width: 600px;
    z-index: 2;
    position: relative;
}

.logo-container {
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out;
}

.logo {
    max-width: 200px;
    height: auto;
    transition: transform 0.3s ease;
}

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

.main-title {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.subtitle {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    font-style: italic;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.coming-soon {
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 249, 249, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 249, 249, 0.2);
    animation: fadeInUp 1s ease-out 0.6s both;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.coming-soon:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.coming-soon h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.coming-soon p {
    font-size: 1.1rem;
    opacity: 0.8;
}

.features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    border-radius: 15px;
    background: rgba(255, 249, 249, 0.05);
    transition: transform 0.3s ease, background 0.3s ease;
}

.feature:hover {
    transform: translateY(-3px);
    background: rgba(255, 249, 249, 0.1);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.feature span {
    font-size: 0.9rem;
    text-align: center;
}

.contact-info {
    animation: fadeInUp 1s ease-out 1s both;
}

.contact-info p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.social-link {
    color: #fff9f9;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border: 2px solid rgba(255, 249, 249, 0.3);
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.social-link:hover {
    background: rgba(255, 249, 249, 0.1);
    border-color: #fff9f9;
    transform: translateY(-2px);
}

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

/* Responsividade para tablets */
@media (max-width: 768px) {
    .container {
        padding: 1.5rem;
    }
    
    .main-title {
        font-size: 2.5rem;
    }
    
    .coming-soon h2 {
        font-size: 2rem;
    }
    
    .features {
        gap: 1rem;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

/* Responsividade para celulares */
@media (max-width: 480px) {
    body {
        cursor: auto;
    }
    
    .cursor-follower {
        display: none;
    }
    
    .container {
        padding: 1rem;
    }
    
    .logo {
        max-width: 150px;
    }
    
    .main-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .coming-soon {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .coming-soon h2 {
        font-size: 1.8rem;
    }
    
    .coming-soon p {
        font-size: 1rem;
    }
    
    .features {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .feature {
        flex-direction: row;
        justify-content: center;
        padding: 0.8rem;
    }
    
    .feature-icon {
        font-size: 1.5rem;
        margin-bottom: 0;
        margin-right: 0.5rem;
    }
    
    .social-link {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* Animações de hover para desktop */
@media (min-width: 769px) {
    .content > * {
        transition: transform 0.3s ease;
    }
    
    .content > *:hover {
        transform: scale(1.02);
    }
}

