/*
Theme Name: GJØA Consultoria — Marca 2026
Theme URI: https://gjoa.com.br
Author: GJØA Consultoria
Description: Tema clássico da GJØA com hero atualizado conforme o Manual de Marca.
Version: 3.0.0
License: GNU General Public License v2 or later
Text Domain: consultoria-gjoa
*/

/* ===== RESET & BASE ===== */
*, *::before, *::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}

:root {
--primary: #022B3D;
--primary-light: rgba(2, 43, 61, 0.56);
--gold: #F8D313;
--secondary: #A0CEB2;
--background: #FFFFFF;
--foreground: #333333;
--muted: #E8E8E8;
--muted-foreground: #333333;
--border: #E8E8E8;
--card-bg: #ffffff;
--radius: 0.5rem;
--font-heading: 'Source Serif 4', Georgia, 'Times New Roman', serif;
--font-body: 'Source Serif 4', Georgia, 'Times New Roman', serif;
}

body {
font-family: var(--font-body);
color: var(--foreground);
background-color: var(--background);
line-height: 1.65;
}

h1, h2, h3, h4, h5, h6 {
font-family: var(--font-heading);
font-weight: 700;
line-height: 1.2;
color: var(--primary);
}

a {
text-decoration: none;
color: inherit;
transition: color 0.3s ease;
}

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

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

/* ===== NAVBAR ===== */
.site-header {
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 50;
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(8px);
border-bottom: 1px solid var(--border);
}

.site-header .container {
display: flex;
align-items: center;
justify-content: space-between;
height: 76px;
}

.site-logo img {
height: 52px;
width: auto;
display: block;
}

.main-nav {
display: flex;
align-items: center;
gap: 2rem;
}

.main-nav a {
font-size: 0.9rem;
font-weight: 600;
color: var(--primary);
letter-spacing: 0.02em;
}

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

.btn-gold {
display: inline-block;
background: var(--gold);
color: var(--primary);
font-weight: 700;
font-size: 0.9rem;
padding: 0.7rem 1.5rem;
border-radius: var(--radius);
transition: filter 0.3s, transform 0.2s;
border: none;
cursor: pointer;
}

.btn-gold:hover {
filter: brightness(1.08);
transform: translateY(-1px);
}

.btn-gold-lg {
font-size: 1.1rem;
padding: 1rem 2.5rem;
}

.btn-outline {
display: inline-block;
border: 2px solid var(--primary-light);
color: var(--white, #fff);
font-weight: 600;
font-size: 1.1rem;
padding: 0.875rem 2rem;
border-radius: var(--radius);
transition: border-color 0.3s, color 0.3s;
background: transparent;
cursor: pointer;
}

.hero .btn-outline {
border-color: rgba(255,255,255,0.4);
color: #fff;
}

.hero .btn-outline:hover {
border-color: var(--gold);
color: var(--gold);
}

.menu-toggle {
display: none;
background: none;
border: none;
color: var(--primary);
font-size: 1.5rem;
cursor: pointer;
}

@media (max-width: 768px) {
.main-nav { display: none; }
.menu-toggle { display: block; }
.main-nav.open {
display: flex;
flex-direction: column;
position: absolute;
top: 76px;
left: 0;
right: 0;
background: #fff;
border-top: 1px solid var(--border);
padding: 1rem;
gap: 0;
}
.main-nav.open a {
display: block;
padding: 0.75rem 0;
}
}

/* ===== HERO ===== */
.hero {
position: relative;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
text-align: center;
}

.hero-bg {
position: absolute;
inset: 0;
background-size: cover;
background-position: center;
}

.hero-overlay {
position: absolute;
inset: 0;
background: rgba(2, 43, 61, 0.56);
}

.hero-content {
position: relative;
z-index: 10;
max-width: 760px;
padding: 0 1rem;
}

.hero-subtitle {
color: var(--gold);
font-size: 0.875rem;
letter-spacing: 0.3em;
text-transform: uppercase;
margin-bottom: 1rem;
font-weight: 600;
}

.hero h1 {
font-size: 3.75rem;
color: #fff;
margin-bottom: 1.5rem;
}

.hero h1 span {
color: var(--gold);
}

.hero-description {
color: rgba(255, 255, 255, 0.85);
font-size: 1.15rem;
margin-bottom: 2.5rem;
line-height: 1.6;
}

.hero-buttons {
display: flex;
gap: 1rem;
justify-content: center;
flex-wrap: wrap;
}

@media (max-width: 768px) {
.hero h1 { font-size: 2.25rem; }
.hero-description { font-size: 1rem; }
}

/* ===== SECTION HEADINGS ===== */
.section-label {
font-size: 0.875rem;
letter-spacing: 0.2em;
text-transform: uppercase;
color: var(--secondary-dark, #4a8f68);
margin-bottom: 0.5rem;
font-weight: 600;
}

.section-title {
font-size: 2.25rem;
color: var(--primary);
}

.section-bar {
width: 4rem;
height: 3px;
background: var(--gold);
border-radius: 2px;
margin-top: 1rem;
}

.section-bar-center {
margin-left: auto;
margin-right: auto;
}

.section-intro {
max-width: 700px;
margin: 1.5rem auto 0;
color: var(--muted-foreground);
font-size: 1.1rem;
}

/* ===== SERVIÇOS ===== */
.services {
padding: 6rem 0;
background: var(--muted);
}

.services .section-header {
text-align: center;
margin-bottom: 3.5rem;
}

.service-families {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 2rem;
margin-bottom: 3rem;
}

@media (max-width: 992px) { .service-families { grid-template-columns: 1fr; } }

.family-card {
background: var(--card-bg);
border: 1px solid var(--border);
border-radius: var(--radius);
padding: 2rem;
transition: border-color 0.3s, box-shadow 0.3s;
}

.family-card:hover {
border-color: var(--secondary);
box-shadow: 0 10px 30px rgba(2, 43, 61, 0.08);
}

.family-card h3 {
font-size: 1.4rem;
margin-bottom: 0.5rem;
}

.family-card .family-desc {
color: var(--muted-foreground);
margin-bottom: 1.25rem;
font-style: italic;
}

.family-card ul {
list-style: none;
}

.family-card li {
padding: 0.5rem 0;
border-top: 1px solid var(--border);
color: var(--foreground);
}

.family-card li:first-child {
border-top: none;
}

.services-note {
text-align: center;
color: var(--muted-foreground);
font-size: 0.95rem;
margin-bottom: 2.5rem;
}

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

/* ===== SOBRE / INSPIRAÇÃO ===== */
.about {
padding: 6rem 0;
background: var(--background);
}

.about-grid {
display: grid;
grid-template-columns: 1.1fr 0.9fr;
gap: 4rem;
align-items: start;
}

@media (max-width: 992px) {
.about-grid { grid-template-columns: 1fr; }
}

.about-text p {
color: var(--muted-foreground);
font-size: 1.05rem;
line-height: 1.75;
margin-bottom: 1.25rem;
}

.about-quote {
border-left: 4px solid var(--gold);
padding: 0.5rem 0 0.5rem 1.5rem;
margin: 1.5rem 0;
font-style: italic;
font-size: 1.1rem;
color: var(--primary);
}

.about-quote-footer {
font-weight: 600;
color: var(--secondary-dark, #2c6b4a);
margin-top: 1.5rem;
}

.mission-box {
background: var(--muted);
border-radius: var(--radius);
padding: 2rem;
margin-top: 2rem;
}

.mission-box h3 {
font-size: 1.2rem;
margin-bottom: 0.75rem;
}

.mission-box p {
color: var(--muted-foreground);
line-height: 1.7;
}

.stats-grid {
display: grid;
grid-template-columns: 1fr;
gap: 1.5rem;
}

.stat-card {
background: var(--primary);
border-radius: var(--radius);
padding: 1.75rem;
text-align: center;
}

.stat-card .number {
font-size: 2.5rem;
font-weight: 700;
color: var(--gold);
margin-bottom: 0.35rem;
font-family: var(--font-heading);
}

.stat-card .label {
font-size: 1rem;
color: #fff;
font-weight: 600;
margin-bottom: 0.35rem;
}

.stat-card .desc {
font-size: 0.85rem;
color: rgba(255,255,255,0.7);
}

/* ===== VALORES ===== */
.values {
padding: 6rem 0;
background: var(--muted);
}

.values .section-header {
text-align: center;
margin-bottom: 3.5rem;
}

.values-grid {
display: grid;
grid-template-columns: repeat(5, 1fr);
gap: 1.5rem;
}

@media (max-width: 992px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .values-grid { grid-template-columns: 1fr; } }

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

.value-number {
width: 44px;
height: 44px;
border-radius: 50%;
background: var(--gold);
color: var(--primary);
font-weight: 700;
font-size: 1.1rem;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 1rem;
}

.value-card h3 {
font-size: 1.15rem;
margin-bottom: 0.5rem;
}

.value-card p {
color: var(--muted-foreground);
font-size: 0.95rem;
}

/* ===== CTA ===== */
.cta {
padding: 6rem 0;
background: var(--primary);
position: relative;
overflow: hidden;
text-align: center;
}

.cta-glow-1 {
position: absolute;
top: 0;
right: 0;
width: 24rem;
height: 24rem;
background: var(--gold);
border-radius: 50%;
filter: blur(90px);
opacity: 0.12;
transform: translate(50%, -50%);
}

.cta-glow-2 {
position: absolute;
bottom: 0;
left: 0;
width: 16rem;
height: 16rem;
background: var(--secondary);
border-radius: 50%;
filter: blur(90px);
opacity: 0.12;
transform: translate(-50%, 50%);
}

.cta-content {
position: relative;
z-index: 10;
}

.cta h2 {
font-size: 2.25rem;
color: #fff;
margin-bottom: 1.5rem;
}

.cta p {
color: rgba(255, 255, 255, 0.75);
font-size: 1.1rem;
max-width: 600px;
margin: 0 auto 2.5rem;
}

.cta-contacts {
display: flex;
justify-content: center;
gap: 2.5rem;
flex-wrap: wrap;
margin-top: 3rem;
padding-top: 2.5rem;
border-top: 1px solid rgba(255,255,255,0.15);
}

.cta-contact-item {
text-align: center;
}

.cta-contact-item .label {
color: var(--gold);
font-size: 0.8rem;
text-transform: uppercase;
letter-spacing: 0.1em;
margin-bottom: 0.4rem;
}

.cta-contact-item .value {
color: #fff;
font-size: 1rem;
}

/* ===== FOOTER ===== */
.site-footer {
background: var(--primary);
padding: 3.5rem 0 2rem;
}

.footer-grid {
display: grid;
grid-template-columns: 1.2fr 1fr 1fr;
gap: 2.5rem;
margin-bottom: 2.5rem;
}

.footer-logo img {
display: block;
width: 200px;
max-width: 100%;
height: auto;
margin-bottom: 20px;
}

@media (max-width: 768px) {
.footer-grid { grid-template-columns: 1fr; }
.footer-logo img { width: 165px; }
}

.footer-grid p {
color: rgba(255, 255, 255, 0.55);
font-size: 0.9rem;
line-height: 1.7;
}

.footer-grid .heading {
font-weight: 700;
color: #fff;
font-size: 0.85rem;
text-transform: uppercase;
letter-spacing: 0.05em;
margin-bottom: 0.9rem;
font-family: var(--font-heading);
}

.footer-links a, .footer-list a {
display: block;
color: rgba(255, 255, 255, 0.55);
font-size: 0.9rem;
padding: 0.3rem 0;
}

.footer-links a:hover, .footer-list a:hover {
color: var(--gold);
}

.footer-bottom {
border-top: 1px solid rgba(255, 255, 255, 0.12);
padding-top: 1.5rem;
text-align: center;
}

.footer-bottom p {
color: rgba(255, 255, 255, 0.45);
font-size: 0.8rem;
margin-bottom: 0.3rem;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in-up {
animation: fadeInUp 0.6s ease forwards;
opacity: 0;
}
