/*
Theme Name: Avenger Ultra
Theme URI: https://caue.one/avenger-ultra
Description: O tema mais moderno e de alta conversão para marketing digital de 2026. Com Design System "Forest & Earth", Glassmorphism e Dark Mode nativo.
Author: Antigravity & Josué Caetano
Author URI: https://caue.one
Version: 1.0.0
Text Domain: avenger-ultra
Tags: premium, marketing, conversion, modern, dark-mode, glassmorphism
*/

/* 
 * Reset e Variáveis de Design (Tokens)
 */
:root {
    --primary: #2d5a27;      /* Verde Floresta Profundo */
    --primary-light: #4c8a42;
    --accent: #d4af37;       /* Ouro Soft */
    --background: #fdfaf5;   /* Bege Terra Suave */
    --surface: rgba(255, 255, 255, 0.7);
    --text: #1a1c19;
    --text-light: #545f6c;
    --glass: rgba(255, 255, 255, 0.2);
    --glass-border: rgba(255, 255, 255, 0.1);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (prefers-color-scheme: dark) {
    :root {
        --background: #0d110d;
        --surface: rgba(26, 30, 26, 0.7);
        --text: #f0f3f0;
        --text-light: #a3abad;
        --shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--background);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.5s ease;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

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

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