/*
Theme Name: Landing Page Lumina
Author: Andrey Wilmsen
Description: Fundação mínima: Reset, Tipografia e Cores.
Version: 1.0
*/

/* 1. Variáveis (Onde você define a identidade) */
:root {
    --primary: #004d40;
    --accent: #00bfa5;
    --bg: #f8fafc;
    --text: #1a202c;
    --text-light: #718096;
    --radius: 12px;
    --transition: 0.3s ease;
}

/* 2. Reset Universal */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 3. Base do Documento */
body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* 4. Tipografia e Links Básicos */
h1, h2, h3, h4, h5, h6 {
    color: var(--primary);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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