/*
Theme Name: TEATia Theme
Theme URI: https://teatia.local
Author: TEATia Team
Author URI: https://teatia.local
Description: Tema profissional e moderno para TEATia - Materiais educacionais para crianças neurodivergentes
Version: 1767716164
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: teatia-theme
Tags: education, woocommerce, accessibility, custom-colors, custom-menu, featured-images, theme-options

TEATia Theme - Design profissional e acessível
*/

/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #2d3748;
    line-height: 1.6;
    background: linear-gradient(135deg, #faf8fc 0%, #f0f4f8 50%, #fef9f3 100%);
    background-attachment: fixed;
    position: relative;
}

/* Padrão decorativo de fundo para todas as páginas */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(198, 163, 213, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(178, 205, 214, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255, 193, 7, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* Container padrão */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Links */
a {
    text-decoration: none;
    transition: all 0.3s ease;
}

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