/*
Theme Name: Dantonelli Consultoria
Theme URI: https://dantonelli.com.br
Description: Tema premium para Dantonelli Consultoria - Design sofisticado com identidade visual exclusiva
Version: 1.0
Author: Manus AI
Author URI: https://manus.im
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: dantonelli-theme
Domain Path: /languages
*/

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

:root {
    --color-copper: #B87333;
    --color-copper-light: #D4A574;
    --color-copper-dark: #8B5A2B;
    --color-black: #000000;
    --color-white: #FFFFFF;
    --color-gray: #333333;
    --color-light-gray: #f5f5f5;
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Open Sans', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    color: var(--color-gray);
    background-color: var(--color-white);
    line-height: 1.6;
}

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

a:hover {
    color: var(--color-copper-light);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 15px;
}

h1 {
    font-size: 48px;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 28px;
}

p {
    margin-bottom: 15px;
}

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

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

/* Header */
.site-header {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(184, 115, 51, 0.1);
}

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

.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-logo img {
    height: 50px;
    width: auto;
}

.site-logo a {
    color: var(--color-white);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-logo a:hover {
    color: var(--color-copper-light);
}

/* Navegação */
.site-nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.site-nav a {
    color: var(--color-white);
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    transition: color 0.3s ease;
}

.site-nav a:hover,
.site-nav a.active {
    color: var(--color-copper);
}

.site-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-copper);
    transition: width 0.3s ease;
}

.site-nav a:hover::after,
.site-nav a.active::after {
    width: 100%;
}

.cta-button {
    background: transparent;
    border: 2px solid var(--color-copper);
    color: var(--color-copper);
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: var(--color-copper);
    color: var(--color-white);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(184, 115, 51, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    color: var(--color-copper);
    font-family: var(--font-primary);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.hero-title {
    color: var(--color-black);
    margin-bottom: 20px;
    font-size: 48px;
}

.hero-description {
    color: #666;
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-copper) 0%, var(--color-copper-light) 100%);
    margin: 20px auto 40px;
}

/* Seção de Botões */
.buttons-section {
    padding: 60px 0;
    background: var(--color-white);
}

.buttons-section-title {
    text-align: center;
    margin-bottom: 50px;
    color: var(--color-black);
}

.buttons-section-title h2 {
    margin-bottom: 15px;
}

.buttons-section-subtitle {
    color: #666;
    font-size: 16px;
}

/* Rodapé */
.site-footer {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: var(--color-white);
    padding: 60px 0 20px;
    margin-top: 80px;
}

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

.footer-section h3 {
    color: var(--color-copper);
    margin-bottom: 20px;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.8;
    color: #ccc;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--color-copper);
}

.footer-bottom {
    border-top: 1px solid rgba(184, 115, 51, 0.2);
    padding-top: 20px;
    text-align: center;
    color: #999;
    font-size: 14px;
}

/* Responsividade */
@media (max-width: 768px) {
    .site-nav {
        flex-direction: column;
        gap: 15px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-description {
        font-size: 16px;
    }

    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 28px;
    }

    h3 {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .site-header-inner {
        flex-direction: column;
        gap: 20px;
    }

    .site-nav {
        width: 100%;
        flex-direction: column;
        gap: 10px;
    }

    .hero-section {
        padding: 40px 0;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-description {
        font-size: 14px;
    }
}

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

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

.mt-40 {
    margin-top: 40px;
}

.mb-40 {
    margin-bottom: 40px;
}

.py-60 {
    padding: 60px 0;
}
