/*
Theme Name: Guedes Security Theme
Theme URI: https://guedesseguranca.com.br/
Author: Antigravity
Author URI: https://guedesseguranca.com.br/
Description: Tema premium customizado para Guedes Seguranca Privada nas cores preto, dourado e branco.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: guedes-theme
Tags: custom-background, custom-logo, custom-menu, featured-images, translation-ready

Este tema foi desenvolvido sob medida para a Guedes Seguranca Privada, com um design elegante nas cores preto e dourado.
*/

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

:root {
    --color-bg-dark: #0a0a0a;
    --color-bg-card: #121212;
    --color-gold-primary: #D4AF37;
    --color-gold-hover: #b89327;
    --color-text-white: #ffffff;
    --color-text-muted: #a0a0a0;
    --color-border-gold: rgba(212, 175, 55, 0.3);
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-bg-dark);
    color: var(--color-text-white);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Tipografia */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', serif;
    color: var(--color-gold-primary);
    font-weight: 700;
    letter-spacing: 1px;
}

/* Utilitarios de Texto e Elementos */
.text-gold {
    color: var(--color-gold-primary);
}

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

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

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

.border-gold {
    border: 1px solid var(--color-gold-primary);
}

/* Botoes */
.btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-gold-primary);
    color: #000000;
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--color-gold-primary);
}

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

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: var(--color-text-white);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
    border-color: var(--color-gold-primary);
    color: var(--color-gold-primary);
    transform: translateY(-2px);
}

/* Grid e Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Estilos de transicao de secao */
section {
    padding: 5rem 0;
    position: relative;
}
