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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #ffb3d9 0%, #ff99cc 50%, #ff80b3 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 800px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 100%;
    animation: fadeIn 0.8s ease-in;
}

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

.logo-container {
    margin-bottom: 40px;
}

.logo {
    max-width: 250px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.message {
    margin-bottom: 50px;
}

h1 {
    color: #d63384;
    font-size: 2.5rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.main-text {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
}

.sub-text {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 25px 40px;
    border-radius: 15px;
    transition: all 0.3s ease;
    min-width: 180px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.social-link i {
    font-size: 3rem;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.social-link span {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
}

.social-link.instagram {
    background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
}

.social-link.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.social-link:hover i {
    transform: scale(1.1);
}

/* Responsividade */
@media (max-width: 768px) {
    .content {
        padding: 40px 30px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .main-text {
        font-size: 1.3rem;
    }
    
    .sub-text {
        font-size: 1.1rem;
    }
    
    .logo {
        max-width: 200px;
    }
    
    .social-link {
        min-width: 150px;
        padding: 20px 30px;
    }
    
    .social-link i {
        font-size: 2.5rem;
    }
    
    .social-link span {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .content {
        padding: 30px 20px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    .main-text {
        font-size: 1.1rem;
    }
    
    .sub-text {
        font-size: 1rem;
    }
    
    .social-links {
        flex-direction: column;
        gap: 20px;
    }
    
    .social-link {
        width: 100%;
    }
}

