/* ===== HISTÓRIA E FORMULÁRIO ===== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* Título principal da história */
h1 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin: 2rem 0;
    color: #FFD966;
    text-shadow: 0 0 8px rgba(255, 200, 100, 0.5);
}

/* Conteúdo da história */
.story-content {
    background: rgba(30, 10, 40, 0.85);
    backdrop-filter: blur(8px);
    border-radius: 48px;
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 217, 102, 0.3);
    color: #FFF0E0;
}

.story-content h2 {
    color: #FFD966;
    border-left: 6px solid #FFB347;
    padding-left: 1rem;
    margin: 1.8rem 0 1rem;
    font-size: 1.6rem;
}

.story-content p {
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 1rem;
}

/* Citação */
.quote {
    background: linear-gradient(135deg, rgba(255, 217, 102, 0.2), rgba(255, 180, 71, 0.2));
    padding: 1.5rem;
    border-radius: 60px;
    font-style: italic;
    text-align: center;
    font-size: 1.1rem;
    margin: 2rem 0;
    border: 1px solid rgba(255, 217, 102, 0.5);
    color: #FFE4B5;
}

/* Formulário */
.contact-form {
    background: rgba(30, 10, 40, 0.9);
    backdrop-filter: blur(8px);
    padding: 2rem;
    border-radius: 32px;
    margin: 2rem 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 217, 102, 0.3);
}

.contact-form h2 {
    text-align: center;
    color: #FFD966;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #FFE0A3;
}

.form-group input {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #FFD9B5;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.9);
    transition: 0.2s;
    font-size: 1rem;
}

.form-group input:focus {
    outline: none;
    border-color: #FFB347;
    box-shadow: 0 0 0 3px rgba(255, 180, 71, 0.3);
    background: white;
}

/* Botão padrão (reaproveitado) */
.btn {
    display: inline-block;
    background: linear-gradient(135deg, #FFB347, #FF8C00);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.4);
    text-decoration: none;
    text-align: center;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 140, 0, 0.6);
    background: linear-gradient(135deg, #FFC04C, #FF9D2E);
}

/* Alinhamento do botão "Ver Personagens" */
main .btn:last-of-type {
    display: block;
    width: fit-content;
    margin: 2rem auto;
}

/* Responsividade */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    h1 {
        font-size: 2rem;
    }
    .story-content {
        padding: 1.5rem;
    }
    .story-content h2 {
        font-size: 1.3rem;
    }
    .quote {
        font-size: 0.95rem;
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    .form-group input {
        padding: 0.6rem;
    }
}
body {
    background: #240236;
    color: #f5efef;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow-x: hidden;
}