/*
Theme Name: GPM Software Theme
Theme URI: https://gpmsoftware.com.br
Author: GPM Software
Author URI: https://gpmsoftware.com.br
Description: Tema personalizado para GPM Software - Ajudando você a construir o futuro
Version: 1.0
License: GPL v2 or later
Text Domain: gpm-theme
*/

:root {
    --primary-color: #ff9300;
    --primary-dark: #e67e00;
    --primary-light: #ffab33;
    --secondary-color: #1a1a2e;
    --secondary-dark: #0f0f1e;
    --text-dark: #333333;
    --text-light: #ffffff;
    --gray-light: #f5f5f5;
    --gray-medium: #e0e0e0;
    --shadow-color: rgba(255, 147, 0, 0.15);
    --gradient-primary: linear-gradient(135deg, #ff9300 0%, #ffab33 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a2e 0%, #2d2d4a 100%);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #ffffff;
    overflow-x: hidden;
}

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

.btn-primary {
    display: inline-block;
    padding: 15px 35px;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px var(--shadow-color);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px var(--shadow-color);
}

.btn-secondary {
    display: inline-block;
    padding: 15px 35px;
    background: transparent;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    cursor: pointer;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px var(--shadow-color);
}

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

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

.section {
    padding: 80px 0;
}

.text-center {
    text-align: center;
}

.text-white {
    color: var(--text-light);
}

.bg-dark {
    background: var(--gradient-dark);
}

.bg-light {
    background: var(--gray-light);
}

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    h4 { font-size: 1.25rem; }
    
    .section {
        padding: 60px 0;
    }
}