* {
    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, rgba(37, 99, 235, 0.05) 0%, #ffffff 50%, rgba(249, 115, 22, 0.05) 100%);
    min-height: 100vh;
}

/* Página Principal */
.container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem;
}

.hero {
    text-align: center;
    max-width: 600px;
}

.icon-container {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563EB, #F97316);
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.title {
    font-size: 3rem;
    font-weight: bold;
    background: linear-gradient(135deg, #2563EB, #F97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.subtitle {
    font-size: 1.25rem;
    color: #6B7280;
    margin-bottom: 2rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    background: linear-gradient(135deg, #2563EB, #F97316);
    border: none;
    border-radius: 0.5rem;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.3s;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    opacity: 0.9;
}

/* Página de Formulário */
.page-container {
    min-height: 100vh;
    padding: 2rem 1rem;
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.header {
    text-align: center;
    margin-bottom: 2rem;
}

.icon-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: #F97316;
    margin-bottom: 1rem;
}

.header h1 {
    font-size: 2.5rem;
    color: #1F2937;
    margin-bottom: 0.5rem;
}

.description {
    color: #6B7280;
    font-size: 1rem;
}

.card {
    background: white;
    border: 2px solid #E5E7EB;
    border-radius: 0.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.card-header {
    padding: 1.5rem;
    border-bottom: 1px solid #E5E7EB;
}

.card-header h2 {
    font-size: 1.5rem;
    color: #1F2937;
    margin-bottom: 0.5rem;
}

.card-header p {
    color: #6B7280;
    font-size: 0.875rem;
}

.card-content {
    padding: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

input[type="text"],
input[type="url"],
select {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border: 2px solid #E5E7EB;
    border-radius: 0.5rem;
    transition: border-color 0.3s;
}

input:focus,
select:focus {
    outline: none;
    border-color: #2563EB;
}

select {
    cursor: pointer;
    background-color: white;
}

.image-preview {
    margin-top: 1rem;
    display: none;
}

.image-preview.show {
    display: block;
}

.image-preview img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 0.5rem;
    border: 1px solid #E5E7EB;
}

.btn-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    background-color: #F97316;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: opacity 0.3s;
}

.btn-submit:hover {
    opacity: 0.9;
}

/* Responsivo */
@media (max-width: 768px) {
    .title {
        font-size: 2rem;
    }
    
    .header h1 {
        font-size: 2rem;
    }
}
