/*
Theme Name: Sistema Afiliados ML
Theme URI: https://seusite.com
Description: Tema WordPress para sistema de afiliados do Mercado Livre com painel administrativo
Version: 1.0.0
Author: Gabriel
Author URI: https://seusite.com
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ml-afiliados
*/

/* ===================================
   Reset e Base
   =================================== */

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

html {
    height: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f5f5f5;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

/* ===================================
   Variáveis CSS
   =================================== */

:root {
    --primary-color: #3483fa;
    --secondary-color: #fff159;
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #f5f5f5;
    --bg-white: #ffffff;
    --border-radius: 8px;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 16px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

/* ===================================
   Utilitários
   =================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

/* ===================================
   Loading/Mensagens
   =================================== */

.no-produtos {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-light);
    font-size: 18px;
}
