/*
Theme Name: Consultoria GJØA
Theme URI: https://gjoa.com.br
Author: Consultoria GJØA
Description: Tema personalizado para a Consultoria GJØA - Consultoria financeira generalista para pequenas e médias empresas.
Version: 1.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 {
  --teal-dark: #022B3D;
  --teal-medium: #236F65;
  --teal-light: #8FCDE2;
  --green-light: #B0DEBA;
  --gold: #F8D313;
  --gold-dark: #c4a50f;
  --white: #ffffff;
  --background: #e0f0e4;
  --foreground: #022B3D;
  --muted: #6b8a7a;
  --border: #c5dcc9;
  --card-bg: #ffffff;
  --radius: 0.5rem;
}

body {
  font-family: 'Sitka', Georgia, 'Times New Roman', serif;
  color: var(--foreground);
  background-color: var(--background);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Sitka', Georgia, 'Times New Roman', serif;
  font-weight: 700;
  line-height: 1.2;
}

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 1rem;
}

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

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

.site-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.site-logo .label {
  font-size: 10.5px;
  letter-spacing: 0.35em;
  text-transform: none;
  color: var(--green-light);
}

.site-logo .name {
  font-size: 2.5rem;
  font-weight: 450;
  color: var(--white);
  letter-spacing: 0.05em;
}

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

.main-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}

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

.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--foreground);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius);
  transition: filter 0.3s;
  border: none;
  cursor: pointer;
}

.btn-gold:hover {
  filter: brightness(1.1);
}

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

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

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

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  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: 64px;
    left: 0;
    right: 0;
    background: var(--teal-dark);
    border-top: 1px solid rgba(35, 111, 101, 0.2);
    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.7);
}

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

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

.hero h1 {
  font-size: 3.5rem;
  color: var(--white);
  margin-bottom: 1.5rem;
}

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

.hero-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
}

.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(--teal-medium);
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 2rem;
  color: var(--foreground);
}

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

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

/* ===== SERVICES ===== */
.services {
  padding: 6rem 0;
  background: var(--background);
}

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

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

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

.service-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;
}

.service-card:hover {
  border-color: rgba(35, 111, 101, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.service-icon {
  width: 48px;
  height: 48px;
  background: rgba(35, 111, 101, 0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--teal-medium);
  font-size: 1.5rem;
}

.service-card:hover .service-icon {
  background: rgba(35, 111, 101, 0.2);
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--foreground);
}

.service-card p {
  color: var(--muted);
  line-height: 1.7;
}

/* ===== ABOUT ===== */
.about {
  padding: 6rem 0;
  background: rgba(176, 222, 186, 0.3);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

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

.about-text p {
  color: var(--muted);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.about-text strong {
  color: var(--foreground);
}

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

.stat-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}

.stat-card .number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--teal-medium);
  margin-bottom: 0.5rem;
}

.stat-card .label {
  font-size: 0.875rem;
  color: var(--muted);
}

/* ===== CTA ===== */
.cta {
  padding: 6rem 0;
  background: var(--teal-dark);
  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(80px);
  opacity: 0.1;
  transform: translate(50%, -50%);
}

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

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

.cta h2 {
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 1.5rem;
}

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

/* ===== FOOTER ===== */
.site-footer {
  background: var(--teal-dark);
  padding: 3rem 0;
}

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

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

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

.footer-grid .heading {
  font-weight: 600;
  color: var(--white);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.footer-links a {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  padding: 0.25rem 0;
}

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

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

.footer-bottom p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
}

/* ===== 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;
}
