/*
Theme Name: SAAE WebService Sistemas
Theme URI: https://ruthes.dev/temas/saae-webservice-sistemas
Description: Tema personalizado para SAAEs com foco em serviços web e sistemas integrados
Author: Ruthes
Author URI: https://ruthes.dev
Version: 1.2.10
Requires at least: 5.9
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: saae-webservice-sistemas-theme
*/

:root {
    /* Cores principais */
    --primary: #006494;
    --secondary: #00a6fb;
    --text: #2c3e50;
    --bg: #ffffff;

    /* Variações de cores */
    --primary-rgb: 0, 100, 148;
    --secondary-rgb: 0, 166, 251;
    --text-light: #666666;
    --text-muted: #999999;
    --bg-alt: #f8f9fa;

    /* Sombras */
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);

    /* Bordas */
    --border-radius: 8px;
    --border-color: #e0e0e0;

    /* Espaçamentos */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --transition: all 0.3s ease;
}

/* Reset e Estilos Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary);
}

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

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Utilitários */
.text-center {
    text-align: center;
}

.text-primary {
    color: var(--primary);
}

.text-secondary {
    color: var(--secondary);
}

.bg-primary {
    background-color: var(--primary);
    color: #fff;
}

.bg-secondary {
    background-color: var(--secondary);
    color: #fff;
}

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

/* Botões Globais */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
}

.btn-primary:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

/* Header */
.site-header {
    background: var(--bg);
    box-shadow: var(--shadow);
    padding: var(--spacing-sm) 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: block;
    max-width: 200px;
}

.logo img {
    display: block;
    width: 100%;
    height: auto;
}

.site-title {
    font-size: 1.5rem;
    margin: 0;
}

.site-title a {
    color: var(--primary);
    text-decoration: none;
}

/* Navegação */
.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--spacing-md);
}

.nav-menu a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--primary);
}

/* Footer */
.site-footer {
    background: var(--primary);
    color: white;
    padding: var(--spacing-lg) 0 var(--spacing-sm);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-info h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

.footer-info p,
.footer-info address {
    margin-bottom: var(--spacing-sm);
    opacity: 0.9;
}

.footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-menu a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: var(--transition);
}

.footer-menu a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    opacity: 0.7;
    font-size: 0.875rem;
}

.footer-bottom a {
    color: white;
    text-decoration: none;
}

/* Responsivo Global */
@media (max-width: 768px) {
    :root {
        --spacing-lg: 3rem;
    }

    .nav-menu {
        display: none; /* Menu mobile será implementado via JavaScript */
    }

    .container {
        padding: 0 1.5rem;
    }
} 