/* ────── VARIÁVEIS & RESET ────── */
:root {
  --azul:      #0d1f3c;
  --azul-md:   #162d55;
  --azul-lt:   #1e3d70;
  --dourado:   #b8965a;
  --dourado-lt:#d4b07a;
  --creme:     #f7f4ef;
  --branco:    #ffffff;
  --cinza:     #7a7a7a;
  --cinza-lt:  #ebebeb;
  --texto:     #1a1a1a;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--creme);
  color: var(--texto);
  overflow-x: hidden;
}

/* ────── NAV ────── */
nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6%;
  background: rgba(13,31,60,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(184,150,90,.2);
  transition: box-shadow .3s;
}
nav.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,.35); }

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--branco);
  letter-spacing: .04em;
}
.logo-sub {
  font-size: .65rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--dourado);
}

.nav-links {
  display: flex;
  gap: 1rem;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,.7);
  text-decoration: none;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .05em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
  transition: color .2s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--dourado);
  transition: width .25s;
}
.nav-links a:hover { color: var(--dourado); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--dourado);
  color: var(--azul) !important;
  padding: .5rem 1.3rem;
  border-radius: 3px;
  font-weight: 600 !important;
  transition: background .2s !important;
}
.nav-cta:hover { background: var(--dourado-lt) !important; }
.nav-cta::after { display: none !important; }

/* ────── HERO ────── */
#inicio {
  min-height: 100vh;
  background: var(--azul);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 7rem 6% 5rem;
  position: relative;
  overflow: hidden;
  gap: 4rem;
}

.hero-bg-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hbc1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(184,150,90,.1) 0%, transparent 70%);
  top: -200px; right: -100px;
}
.hbc2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(30,61,112,.6) 0%, transparent 70%);
  bottom: -100px; left: -80px;
}

.hero-left { position: relative; z-index: 2; }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  border: 1px solid rgba(184,150,90,.4);
  padding: .4rem 1rem;
  border-radius: 2rem;
  margin-bottom: 2rem;
  animation: fadeUp .7s ease both;
}
.hero-tag-dot {
  width: 6px; height: 6px;
  background: var(--dourado);
  border-radius: 50%;
}
.hero-tag span {
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--dourado);
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  color: var(--branco);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-weight: 600;
  animation: fadeUp .8s .1s ease both;
}
.hero-title em {
  color: var(--dourado);
  font-style: normal;
  display: block;
}

.hero-desc {
  color: rgba(255,255,255,.58);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 2.5rem;
  animation: fadeUp .9s .2s ease both;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 1s .3s ease both;
}
.btn-gold {
  background: var(--dourado);
  color: var(--azul);
  padding: .85rem 2rem;
  border-radius: 3px;
  font-weight: 600;
  font-size: .9rem;
  text-decoration: none;
  letter-spacing: .04em;
  transition: background .2s, transform .15s;
}
.btn-gold:hover { background: var(--dourado-lt); transform: translateY(-2px); }

.btn-outline {
  border: 1px solid rgba(255,255,255,.25);
  color: var(--branco);
  padding: .85rem 2rem;
  border-radius: 3px;
  font-size: .9rem;
  text-decoration: none;
  letter-spacing: .04em;
  transition: border-color .2s, background .2s;
}
.btn-outline:hover { border-color: var(--dourado); background: rgba(184,150,90,.07); }

.hero-right {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  animation: fadeUp .9s .25s ease both;
}

.hero-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(184,150,90,.15);
  border-radius: 8px;
}
.hero-logo img {
  height: 350px;
  width: auto;
  object-fit: contain;
}

.stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.stat-box {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(184,150,90,.15);
  border-radius: 6px;
  padding: 1.6rem 1.4rem;
  transition: border-color .25s, background .25s;
}
.stat-box:hover {
  border-color: rgba(184,150,90,.4);
  background: rgba(255,255,255,.07);
}
.stat-box .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  color: var(--dourado);
  display: block;
  line-height: 1;
  margin-bottom: .35rem;
}
.stat-box .lbl {
  font-size: .78rem;
  color: rgba(255,255,255,.45);
  letter-spacing: .06em;
}

/* ────── SEÇÕES COMUNS ────── */
section { padding: 6rem 6%; }

.sec-label {
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--dourado);
  margin-bottom: .7rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}
.sec-label::before {
  content: '';
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--dourado);
}
.sec-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 4vw, 3rem);
  color: var(--azul);
  line-height: 1.15;
  margin-bottom: 1.2rem;
  font-weight: 600;
}
.sec-desc {
  color: var(--cinza);
  line-height: 1.8;
  font-size: .97rem;
}

/* ────── QUEM SOMOS ────── */
#quem-somos {
  background: var(--branco);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 6rem;
  align-items: center;
}

.qs-visual { position: relative; }

.qs-card {
  background: var(--azul);
  border-radius: 6px;
  padding: 3.5rem 3rem;
  position: relative;
  overflow: hidden;
}
.qs-card::before {
  content: '"';
  position: absolute;
  font-family: 'Cormorant Garamond', serif;
  font-size: 14rem;
  color: rgba(184,150,90,.08);
  top: -30px; left: 20px;
  line-height: 1;
  pointer-events: none;
}
.qs-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--branco);
  line-height: 1.7;
  font-weight: 500;
  position: relative;
  z-index: 1;
  margin-bottom: 1.5rem;
}
.qs-quote-author {
  font-size: .8rem;
  color: var(--dourado);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.qs-badge {
  position: absolute;
  bottom: -18px; right: 30px;
  background: var(--dourado);
  color: var(--azul);
  padding: 1rem 1.5rem;
  border-radius: 4px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 8px 24px rgba(184,150,90,.35);
}

.qs-content { padding-top: 1rem; }
.qs-paragraphs {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 1.5rem;
}
.qs-paragraphs p {
  color: #555;
  line-height: 1.85;
  font-size: .95rem;
}

.qs-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .8rem;
  margin-top: 2rem;
}
.pillar {
  display: flex;
  align-items: center;
  gap: .7rem;
  background: var(--creme);
  padding: .75rem 1rem;
  border-radius: 4px;
  border-left: 3px solid var(--dourado);
}
.pillar span { font-size: .88rem; color: var(--azul); font-weight: 500; }

/* ────── SERVIÇOS ────── */
#servicos { background: var(--creme); }

.services-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 3.5rem;
}

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

.srv-card {
  background: var(--branco);
  border: 1px solid rgba(13,31,60,.08);
  border-radius: 8px;
  padding: 2.2rem 2rem;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  position: relative;
  overflow: hidden;
}
.srv-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: var(--dourado);
  transition: width .35s;
}
.srv-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(13,31,60,.1);
  border-color: rgba(184,150,90,.3);
}
.srv-card:hover::after { width: 100%; }

.srv-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}
.srv-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  color: var(--azul);
  font-weight: 600;
  margin-bottom: 1rem;
  padding-bottom: .8rem;
  border-bottom: 1px solid var(--cinza-lt);
}
.srv-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.srv-list li {
  font-size: .87rem;
  color: #555;
  padding-left: 1.1rem;
  position: relative;
  line-height: 1.5;
}
.srv-list li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--dourado);
  font-weight: 700;
  font-size: 1rem;
}

/* ────── CONTATO ────── */
#contato {
  background: var(--azul);
  color: var(--branco);
}

.contato-header {
  text-align: center;
  margin-bottom: 4rem;
}
.contato-header .sec-title { color: var(--branco); }
.contato-header .sec-desc {
  color: rgba(255,255,255,.55);
  max-width: 520px;
  margin: 0 auto;
}

.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3rem;
  align-items: start;
}

.contato-cards { display: flex; flex-direction: column; gap: 1.2rem; }

.contato-card {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(184,150,90,.15);
  border-radius: 6px;
  padding: 1.4rem 1.5rem;
  text-decoration: none;
  transition: border-color .2s, background .2s;
}
.contato-card:hover {
  border-color: var(--dourado);
  background: rgba(184,150,90,.07);
}
.cc-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.cc-icon.wpp { background: rgba(37,211,102,.15); }
.cc-icon.ig  { background: rgba(228,64,95,.15); }
.cc-icon.map { background: rgba(66,133,244,.15); }
.cc-icon.hora { background: rgba(184,150,90,.15); }

.cc-icon i { font-size: 1.2rem; }
.cc-icon.wpp i { color: #25d366; }
.cc-icon.ig  i { color: #e4405f; }
.cc-icon.map i { color: #4285f4; }
.cc-icon.hora i { color: var(--dourado); }

.cc-text h5 {
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--dourado);
  margin-bottom: .3rem;
}
.cc-text p { font-size: .9rem; color: rgba(255,255,255,.75); }

/* ────── MAPA ────── */
.map-wrapper {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(184,150,90,.2);
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
}
.map-wrapper iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: none;
  filter: grayscale(20%) contrast(1.05);
}
.map-caption {
  background: rgba(255,255,255,.04);
  padding: .9rem 1.2rem;
  font-size: .8rem;
  color: rgba(255,255,255,.45);
  display: flex;
  align-items: center;
  gap: .5rem;
}

/* ────── FOOTER ────── */
footer {
  background: #070f1f;
  padding: 2rem 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  border-top: 1px solid rgba(184,150,90,.12);
}
.ft-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--branco);
}
.ft-logo span { color: var(--dourado); }
footer p { font-size: .78rem; color: rgba(255,255,255,.3); }
.ft-nav { display: flex; gap: 1.8rem; }
.ft-nav a {
  font-size: .78rem;
  color: rgba(255,255,255,.35);
  text-decoration: none;
  transition: color .2s;
}
.ft-nav a:hover { color: var(--dourado); }

/* ────── ÁREA DO CLIENTE ────── */
.nav-cliente {
  border: 1px solid rgba(184,150,90,.5);
  color: var(--dourado) !important;
  padding: .45rem 1.1rem;
  border-radius: 3px;
  transition: background .2s, border-color .2s !important;
}
.nav-cliente:hover {
  background: rgba(184,150,90,.12) !important;
  border-color: var(--dourado) !important;
}
.nav-cliente::after { display: none !important; }

/* ────── IMAGENS NOS CARDS DE SERVIÇOS ────── */
.srv-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

/* ────── IMAGENS NOS ÍCONES DE CONTATO ────── */
.cc-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

/* ────── ANIMAÇÕES ────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ────── RESPONSIVO ────── */
@media (max-width: 960px) {
  #inicio { grid-template-columns: 1fr; padding-top: 8rem; }
  .hero-right { display: none; }
  #quem-somos { grid-template-columns: 1fr; gap: 3rem; }
  .qs-badge { position: static; display: inline-block; margin-top: 1.5rem; }
  .services-intro { grid-template-columns: 1fr; gap: 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .contato-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nav-links { gap: 1.2rem; }
  .nav-links a { font-size: .74rem; letter-spacing: .06em; }
  .stat-row { grid-template-columns: 1fr 1fr; }
  .qs-pillars { grid-template-columns: 1fr; }
}
