/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Quicksand', sans-serif;
    color: #333;
    background-color: #fefefe;
    line-height: 1.6;
}

/* Cores principais */
:root { --lilas: #c8a2c8; --turquesa: #40e0d0;}

/* Cabeçalho */
header {
    background-color: var(--lilas);
    color: white;
    padding: 1rem;
    text-align: center;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}
nav a:hover {
    text-decoration: underline;
}

/* Banner principal */
.banner {
    position: relative;
    text-align: center;
}

.banner img {
    width: 100%;
    height: auto;
    display: block;
}

.banner-texto {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(64, 224, 208, 0.7);
    color: white;
    padding: 1rem 2rem;
    border-radius: 10px;
}

/* Seções */
section {
    padding: 2rem 1rem;
    max-width: 800px;
    margin: auto;
}
section h2 {
    color: var(--lilas);
    margin-bottom: 1rem;
}

/* Botão padrão */
.btn {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: var(--lilas);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.btn:hover {
    background-color: var(--turquesa);
}

/* Links de redes sociais */
.social {
    display: inline-block;
    margin: 0.5rem 0;
    color: var(--turquesa);
    text-decoration: none;
    font-size: 1.2rem;
}
.social i {
    margin-right: 0.5rem;
}

.social:hover {
    color: var(--lilas);
}

/* Formulário de contato */
form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

form input, form textarea {
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: inherit;
    width: 100%;
}

form textarea {
    resize: vertical;
    min-height: 100px;
}

form button {
    cursor: pointer;
}

/* Banners pequenos de novidades */
.banners-pequenos {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.banner-item img {
    width: 200px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.banner-item img:hover {
    transform: scale(1.05);
}

/* Botão voltar ao topo */
.topo {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--turquesa);
    color: white;
    padding: 0.5rem 0.7rem;
    border-radius: 50%;
    text-align: center;
    text-decoration: none;
    font-size: 1.2rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: background 0.3s ease;
}

.topo:hover {
    background-color: var(--lilas);
}

/* Rodapé */
footer {
    background-color: var(--lilas);
    color: white;
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
}

/* Responsivo */
@media (max-width: 600px) {
    nav ul {
        flex-direction: column;
    }

    .banner-texto {
        padding: 0.5rem 1rem;
    }

    .banner-item img {
        width: 100%;
        max-width: 300px;
    }
}