/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #f5f5dc, #deb887);
    color: #333;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    max-width: 800px;
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    animation: fadeIn 2s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: #8b4513;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

header p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #555;
}

.craft-icon {
    margin: 30px 0;
}

.description {
    font-size: 1.1rem;
    margin: 20px 0;
}

footer {
    margin-top: 30px;
    font-size: 0.9rem;
    color: #777;
}

#developer {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

#developer:hover {
    color: black;
}

/* Responsive */
@media (max-width: 600px) {
    header h1 {
        font-size: 2rem;
    }
    #newsletterForm {
        flex-direction: column;
        align-items: center;
    }
    #email {
        width: 100%;
        max-width: 300px;
    }
}