@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --azul-claro: #d8e2f0;
    --azul-medio: #a8b6c3;
    --offwhite: #f9f9f6;
    --terracota: #e5c8b0;
    --cinza: #8c8c8c;
    --branco: #ffffff;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--offwhite);
    color: var(--cinza);
    line-height: 1.6;
    padding: 1rem;
}

.topo {
    background-color: var(--offwhite);
    padding: 1.2rem 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    position: sticky;
    top: 0;
    z-index: 10;
}

.container-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.logo {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--azul-medio);
    letter-spacing: 0.5px;
}

.menu {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.menu a {
    text-decoration: none;
    color: var(--cinza);
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.menu a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--terracota);
    transition: width 0.3s ease;
}

.menu a:hover {
    color: var(--terracota);
}

.menu a:hover::after {
    width: 100%;
}

.banner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 4rem 2rem;
    gap: 2rem;
    background-color: var(--azul-claro);
    border-radius: 1rem;
    margin: 2rem 0;
}

.banner img {
    max-width: 100%;
    border-radius: 1rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.banner-texto h2 {
    font-size: 2.5rem;
    color: var(--azul-medio);
    margin-bottom: 1.5rem;
}

.banner-texto p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.botao {
    background-color: var(--terracota);
    color: var(--branco);
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    transition: backgroud 0.3s ease;
}

.botao:hover {
    background-color: #d3ae96;
}

.sobre {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background-color: var(--branco);
    padding: 4rem 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    margin-bottom: 3rem;
}

.sobre-texto h2 {
    font-size: 2rem;
    color: var(--azul-medio);
    margin-bottom: 1rem;
}

.sobre-texto p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--cinza);
    max-width: 90%;
}

.sobre img {
    width: 100%;
    border-radius: 1rem;
    object-fit: cover;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.produtos {
    padding: 4rem 2rem;
    background-color: var(--offwhite);
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    max-width: 1100px;
    margin: 0 auto 4rem;
}

.produtos h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--azul-medio);
    margin-bottom: 2rem;
}

.grade-produtos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    justify-content: center;
}

.produto {
    background-color: var(--branco);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.produto:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.produto img {
    max-width: 100%;
    height: auto;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
}

.produto h3 {
    font-size: 1.2rem;
    color: var(--azul-medio);
    margin-bottom: 0.5rem;
}

.preco {
    font-weight: 600;
    color: var(--terracota);
    margin-bottom: 1rem;
}

.produto button {
    background-color: var(--terracota);
    color: var(--branco);
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.3s ease;
}

.produto button:hover {
    background-color: #d3ae96;
}

.rodape {
    background-color: var(--azul-medio);
    color: var(--offwhite);
    padding: 2rem;
    margin-top: 4rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.container-rodape {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    align-items: center;
}

.rodape p {
    font-size: 0.9rem;
}

.rodape-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    padding: 0;
}

.rodape-links a {
    color: var(--offwhite);
    text-decoration: none;
    font-size: 0.95rem;
    transition: opacity 0.3s;
}

.rodape-links a:hover {
    opacity: 0.7;
}

a:focus, button:focus {   /* Acessibilidade, navegação com Tab */
    outline: 2px solid var(--azul-medio);
    outline-offset: 4px;
}