/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Variáveis de cores */
:root {
    --color-bg-start: hsl(262, 52%, 47%, 0.05);
    --color-bg-end: hsl(220, 25%, 97%);
    --color-text-primary: hsl(224, 15%, 25%);
    --color-text-muted: hsl(224, 10%, 50%);
    --color-primary: hsl(262, 52%, 47%);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
        'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
        sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: linear-gradient(135deg, var(--color-bg-start), var(--color-bg-end));
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.container {
    max-width: 48rem;
    width: 100%;
}

.content {
    text-align: center;
    animation: fadeIn 0.7s ease-out;
}

/* Logo */
.logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.logo {
    width: 12rem;
    height: auto;
    animation: fadeInZoom 0.5s ease-out;
}

/* Texto Principal */
.text-content {
    margin: 2rem 0;
}

.title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-text-primary);
    letter-spacing: -0.025em;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.description {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    max-width: 28rem;
    margin: 0 auto;
    line-height: 1.75;
}

/* Footer */
.footer-text {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-top: 2rem;
    padding-top: 2rem;
}

/* Animações */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(1rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInZoom {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsivo */
@media (max-width: 768px) {
    .logo {
        width: 10rem;
    }
    
    .title {
        font-size: 2rem;
    }
    
    .description {
        font-size: 1rem;
    }
}

@media (min-width: 768px) {
    .logo {
        width: 16rem;
    }
    
    .title {
        font-size: 3rem;
    }
    
    .description {
        font-size: 1.25rem;
    }
}
