/* --------------------- RESET BÁSICO --------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* --------------------- BODY & GERAL --------------------- */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('../images/loja.jfif') no-repeat center center fixed;
    background-size: cover;
    color: #333;
}

/* --------------------- TÍTULO --------------------- */
.header-title {
    text-align: center;
    font-size: 2.5em;
    margin: 20px 0;
    color: #ffffff;
}

/* --------------------- FORMULÁRIO --------------------- */
.form-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    margin: 40px auto;
}

.form-section h2 {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: #007bff;
    text-align: center;
    width: 100%;
}

.form-group {
    width: 100%;
    margin-bottom: 15px;
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 1em;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #007bff;
    outline: none;
}

.submit-button {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 12px 20px;
    cursor: pointer;
    font-size: 1em;
    border-radius: 5px;
    transition: background-color 0.3s;
    width: 100%;
}

.submit-button:hover {
    background-color: #218838;
}

/* --------------------- FOOTER --------------------- */
.footer {
    background-color: #343a40;
    color: #adb5bd;
    text-align: center;
    padding: 20px 0;
    width: 100%;
    position: relative;
    margin-top: auto;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 10px 20px;
}

.contact-info p,
.social-media p {
    margin: 5px 0;
    font-size: 1em;
}

.contact-info a,
.social-media a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info a:hover,
.social-media a:hover {
    color: #0056b3;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icons a {
    color: #ffffff;
    font-size: 1.5em;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #f5f5f5;
}

.footer-quote {
    font-style: italic;
    color: #868e96;
    margin-top: 20px;
    text-align: center;
    width: 100%;
}

/* --------------------- RESPONSIVIDADE --------------------- */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
    }

    .contact-info,
    .social-media {
        margin-bottom: 20px;
    }

    .form-section {
        padding: 30px 20px;
        margin: 30px 20px;
    }
}


