/*
Theme Name: MT Assessoria
Theme URI: https://www.assessoriamt.com
Author: Milna Trentin
Author URI: https://www.assessoriamt.com
Description: Tema institucional para MT Assessoria — Milna Trentin. Site one-page sobre comércio internacional, com seções de hero, sobre, serviços, diferenciais e contato. Textos principais editáveis pelo Personalizar.
Version: 1.0.1
Requires at least: 5.8
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mt-assessoria
*/

:root {
  --navy: #0d1b2e;
  --navy-mid: #142540;
  --navy-light: #1e3557;
  --gold: #c9a84c;
  --gold-lt: #e8c97a;
  --gold-dim: #8a6e30;
  --slate: #5b7fa6;
  --white: #f5f0e8;
  --off: #d4cfc5;
  --text: #c8cdd8;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--navy);
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

/* ─── NAV ─── */
nav.mt-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 48px;
  background: rgba(13,27,46,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  transition: padding .3s;
}
nav.mt-nav img.logo { height: 54px; width: auto; }
nav.mt-nav ul { display: flex; gap: 36px; list-style: none; }
nav.mt-nav ul a {
  color: var(--off); text-decoration: none;
  font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  font-weight: 500;
  transition: color .25s;
}
nav.mt-nav ul a:hover { color: var(--gold-lt); }
.nav-cta {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  padding: 9px 22px;
  border-radius: 2px;
  transition: background .25s, color .25s !important;
}
.nav-cta:hover { background: var(--gold); color: var(--navy) !important; }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 70% 50%, rgba(91,127,166,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 120px 64px 80px 80px;
  position: relative; z-index: 2;
}
.hero-eyebrow {
  font-size: .65rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 28px;
  display: flex; align-items: center; gap: 14px;
}
.hero-eyebrow::before {
  content: ''; display: block; width: 40px; height: 1px; background: var(--gold);
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-lt);
}
.hero-sub {
  font-size: .85rem; line-height: 1.9;
  color: var(--text); max-width: 440px;
  margin-bottom: 48px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  background: var(--gold); color: var(--navy);
  padding: 14px 34px; border: none; cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: .72rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  text-decoration: none;
  transition: background .25s, transform .2s;
  display: inline-block;
}
.btn-primary:hover { background: var(--gold-lt); transform: translateY(-2px); }
.btn-ghost {
  background: transparent; color: var(--off);
  padding: 14px 34px;
  border: 1px solid rgba(255,255,255,0.2);
  font-family: 'Montserrat', sans-serif;
  font-size: .72rem; font-weight: 500; letter-spacing: .18em; text-transform: uppercase;
  text-decoration: none;
  transition: border-color .25s, color .25s;
  display: inline-block;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.hero-right {
  position: relative; overflow: hidden;
}
.hero-right img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
  filter: brightness(.85) saturate(0.8);
}
.hero-right::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, var(--navy) 0%, transparent 30%),
              linear-gradient(to top, var(--navy) 0%, transparent 25%);
}

/* ─── SECTION COMMONS ─── */
section.mt-sec { padding: 100px 80px; }
.sec-label {
  font-size: .62rem; letter-spacing: .32em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
  display: flex; align-items: center; gap: 14px;
}
.sec-label::before {
  content: ''; display: block; width: 30px; height: 1px; background: var(--gold);
}
.sec-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 300; color: var(--white);
  line-height: 1.1; margin-bottom: 20px;
}
.sec-title em { font-style: italic; color: var(--gold-lt); }
.divider {
  width: 60px; height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
  margin-bottom: 48px;
}

/* ─── SOBRE ─── */
.sobre { background: var(--navy-mid); }
.sobre-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.sobre-text p {
  font-size: .88rem; line-height: 2; color: var(--text); margin-bottom: 20px;
}
.sobre-text p strong { color: var(--gold-lt); font-weight: 600; }
.sobre-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
}
.stat-card {
  border: 1px solid rgba(201,168,76,0.15);
  padding: 32px 28px;
  background: rgba(201,168,76,0.03);
  transition: border-color .3s, background .3s;
}
.stat-card:hover {
  border-color: rgba(201,168,76,0.4);
  background: rgba(201,168,76,0.06);
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem; font-weight: 300;
  color: var(--gold-lt); line-height: 1;
  margin-bottom: 8px;
}
.stat-label { font-size: .72rem; letter-spacing: .1em; color: var(--off); }

/* ─── SERVIÇOS ─── */
.servicos { background: var(--navy); }
.servicos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 60px;
}
.srv-card {
  background: var(--navy-mid);
  padding: 48px 36px;
  position: relative; overflow: hidden;
  transition: background .3s;
  cursor: default;
}
.srv-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s ease;
}
.srv-card:hover { background: var(--navy-light); }
.srv-card:hover::before { transform: scaleX(1); }
.srv-icon {
  font-size: 2.2rem; margin-bottom: 24px;
  display: block;
}
.srv-num {
  position: absolute; top: 20px; right: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem; font-weight: 300;
  color: rgba(201,168,76,0.06);
  line-height: 1;
}
.srv-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 400;
  color: var(--white); margin-bottom: 14px;
  line-height: 1.2;
}
.srv-desc {
  font-size: .8rem; line-height: 1.9; color: var(--text);
}
.srv-tags {
  margin-top: 20px; display: flex; flex-wrap: wrap; gap: 8px;
}
.srv-tag {
  font-size: .62rem; letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 12px; border: 1px solid rgba(201,168,76,0.45);
  color: var(--gold-lt); border-radius: 1px;
}

/* ─── DIFERENCIAIS ─── */
.diferenciais { background: var(--navy-mid); }
.dif-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px;
  margin-top: 60px;
}
.dif-item {
  text-align: center; padding: 40px 24px;
  border-top: 1px solid rgba(201,168,76,0.15);
  transition: border-color .3s;
}
.dif-item:hover { border-color: var(--gold); }
.dif-icon { font-size: 2.4rem; margin-bottom: 20px; display: block; }
.dif-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; color: var(--white);
  margin-bottom: 12px;
}
.dif-desc { font-size: .78rem; line-height: 1.9; color: var(--text); }

/* ─── CONTATO ─── */
.contato {
  background: var(--navy-light);
  text-align: center;
}
.contato-sub {
  font-size: .88rem; color: var(--text); max-width: 520px;
  margin: 0 auto 56px; line-height: 1.9;
}
.contato-cards {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 20px;
  margin-bottom: 60px;
}
.contato-card {
  display: flex; flex-direction: column; align-items: center;
  gap: 10px; padding: 36px 40px;
  border: 1px solid rgba(201,168,76,0.18);
  background: rgba(201,168,76,0.03);
  text-decoration: none; min-width: 180px;
  transition: border-color .3s, background .3s, transform .2s;
}
.contato-card:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.08);
  transform: translateY(-4px);
}
.cc-icon { font-size: 1.8rem; }
.cc-label {
  font-size: .62rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); font-weight: 500;
}
.cc-val {
  font-size: .82rem; color: var(--white); text-align: center;
  line-height: 1.5;
}

/* ─── FOOTER ─── */
footer.mt-footer {
  background: var(--navy);
  border-top: 1px solid rgba(201,168,76,0.12);
  padding: 32px 80px;
  display: flex; align-items: center; justify-content: space-between;
}
footer.mt-footer img { height: 44px; opacity: .7; }
.footer-copy {
  font-size: .68rem; letter-spacing: .1em; color: rgba(200,205,216,0.4);
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { opacity: 0; animation: fadeUp .8s ease forwards; }
.delay-1 { animation-delay: .15s; }
.delay-2 { animation-delay: .3s; }
.delay-3 { animation-delay: .45s; }
.delay-4 { animation-delay: .6s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  nav.mt-nav { padding: 14px 24px; }
  nav.mt-nav ul { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 120px 28px 60px; }
  .hero-right { height: 50vh; }
  section.mt-sec { padding: 70px 28px; }
  .sobre-inner { grid-template-columns: 1fr; gap: 48px; }
  .servicos-grid { grid-template-columns: 1fr; }
  .dif-grid { grid-template-columns: 1fr 1fr; }
  footer.mt-footer { flex-direction: column; gap: 16px; text-align: center; padding: 28px; }
}
