/* Mara Castro - Site Pessoal
   Estilo simples, pessoal e informativo */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */
header {
    text-align: center;
    padding: 2.5rem 1.5rem 2rem;
    border-bottom: 1px solid #eee;
}

header img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

header h1 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 0.25rem;
}

header .subtitle {
    font-size: 1rem;
    color: #666;
}

/* Sections */
section {
    padding: 1.75rem 0;
    border-bottom: 1px solid #eee;
}

section:last-of-type {
    border-bottom: none;
}

h2 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 0.75rem;
}

ul {
    list-style: none;
}

ul li {
    padding: 0.25rem 0;
    padding-left: 1.25rem;
    position: relative;
}

ul li::before {
    content: "–";
    position: absolute;
    left: 0;
    color: #888;
}

ul.products li {
    padding: 0.75rem 0;
    padding-left: 0;
}

ul.products li::before {
    content: none;
}

p {
    margin-bottom: 0.5rem;
}

a {
    color: #1976D2;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    text-align: center;
    padding: 1.5rem;
    font-size: 0.875rem;
    color: #888;
    border-top: 1px solid #eee;
}

/* Responsivo */
@media (max-width: 480px) {
    header img {
        width: 120px;
        height: 120px;
    }

    header h1 {
        font-size: 1.5rem;
    }
}
