/**
 * =======================================================================
 * ESTILOS BASE E RESET (TEMA CLARO ARTESANAL)
 * =======================================================================
 */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--cor-fundo-principal);
    color: var(--cor-texto-principal);
    font-family: var(--fonte-principal);
    line-height: 1.5;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 0 36px 0; /* Capa encosta nas bordas no topo */
    background-image: 
        radial-gradient(at 0% 0%, rgba(217, 119, 87, 0.05) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(184, 107, 50, 0.06) 0px, transparent 50%);
    background-attachment: fixed;
}

/* Container central que simula o formato de tela de smartphone */
.container-principal {
    width: 100%;
    max-width: var(--largura-maxima);
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 0 auto;
    padding: 0 16px; /* Espaçamento lateral seguro dos cards */
}

/* Títulos com toque artesanal e serifa elegante */
h1, h2, h3 {
    font-family: var(--fonte-serifa);
    font-weight: 600;
    letter-spacing: -0.01em;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}
