@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background-color: #0a0f1e;
  color: #f0ece3;
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── VARIÁVEIS ── */
:root {
  --navy:        #0a0f1e;
  --navy-mid:    #111827;
  --navy-light:  #1a2540;
  --gold:        #c9a84c;
  --gold-light:  #e8c97a;
  --gold-dim:    rgba(201,168,76,0.12);
  --gold-border: rgba(201,168,76,0.25);
  --white:       #f0ece3;
  --grey:        #8a9ab5;
  --grey-light:  #b0bdd0;
  --green:       #25D366;
  --radius:      8px;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ── TIPOGRAFIA ── */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; color: var(--white); }
h1 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; }
h3 { font-size: clamp(1rem, 2vw, 1.2rem); font-weight: 600; }
p  { color: var(--grey); font-size: 0.95rem; line-height: 1.8; }
em { font-style: normal; color: var(--gold); }

/* ── LAYOUT ── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 5rem 0; }
.section-dark  { background-color: var(--navy-mid); }
.section-light { background-color: var(--navy-light); }

/* ── LABEL ── */
.label {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.8rem;
}
.label::before { content: ''; width: 26px; height: 1px; background: var(--gold); }

.section-lead { color: var(--grey); max-width: 560px; margin-bottom: 2.5rem; font-size: 0.95rem; }

/* ── BOTÕES ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.8rem 1.8rem; border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif; font-size: 0.8rem;
  font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase;
  cursor: pointer; border: none; transition: all 0.25s ease; white-space: nowrap;
}
.btn-gold    { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(201,168,76,0.3); }
.btn-outline { background: transparent; color: var(--gold); border: 1px solid var(--gold-border); }
.btn-outline:hover { background: var(--gold-dim); border-color: var(--gold); transform: translateY(-2px); }
.btn-whatsapp { background: var(--green); color: #fff; }
.btn-whatsapp:hover { background: #1ebe5d; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(37,211,102,0.3); }
.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.btn-full { width: 100%; justify-content: center; }

/* ── HEADER ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,15,30,0.96);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gold-border);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.9rem 2rem; max-width: 1300px; margin: 0 auto;
}
.site-logo { display: flex; align-items: center; gap: 0.7rem; }
.site-logo img { height: 38px; width: auto; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name { font-family:'Playfair Display',serif; font-weight:900; font-size:1.3rem; color:var(--gold); letter-spacing:0.06em; }
.logo-sub  { font-size:0.55rem; color:var(--grey); letter-spacing:0.2em; text-transform:uppercase; }

.site-nav { display: flex; align-items: center; gap: 0.1rem; }
.site-nav a {
  color: var(--grey); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.07em; text-transform: uppercase;
  padding: 0.4rem 0.7rem; border-radius: 5px;
  transition: color 0.2s, background 0.2s;
}
.site-nav a:hover, .site-nav a.active { color: var(--gold); background: var(--gold-dim); }
.nav-cta { background: var(--gold) !important; color: var(--navy) !important; font-weight: 700 !important; margin-left: 0.5rem; }
.nav-cta:hover { background: var(--gold-light) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; z-index: 1100; }
.hamburger span { width: 24px; height: 2px; background: var(--gold); border-radius: 2px; transition: all 0.3s; display: block; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ── HERO ── */
.hero-section {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: center;
  overflow: hidden;
  background-color: var(--navy);
}
.hero-section.hero-sm { min-height: 55vh; }

.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(10,15,30,0.97) 0%, rgba(10,15,30,0.82) 55%, rgba(10,15,30,0.55) 100%);
}

.hero-grid {
  position: absolute; inset: 0; z-index: 1;
  background-image: linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-content {
  position: relative; z-index: 2;
  width: 100%; max-width: 1200px; margin: 0 auto;
  padding: 9rem 2rem 5rem;
}
.hero-inner { max-width: 680px; }

.hero-tag {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem;
}
.hero-tag::before { content: ''; width: 28px; height: 1px; background: var(--gold); }

.hero-title { font-family:'Playfair Display',serif; font-size:clamp(2.4rem,5.5vw,4.2rem); font-weight:700; line-height:1.1; margin-bottom:1.2rem; }
.hero-line  { width:60px; height:2px; background:linear-gradient(90deg,var(--gold),transparent); margin-bottom:1.5rem; }
.hero-desc  { font-size:1rem; color:var(--grey-light); max-width:500px; margin-bottom:2.5rem; line-height:1.8; }

.hero-stats { display:flex; gap:2.5rem; flex-wrap:wrap; padding:2rem 0 0; border-top:1px solid var(--gold-border); margin-top:1.5rem; }
.stat { display:flex; flex-direction:column; }
.stat-num   { font-family:'Playfair Display',serif; font-size:2rem; font-weight:900; color:var(--gold); line-height:1; }
.stat-label { font-size:0.7rem; color:var(--grey); letter-spacing:0.06em; margin-top:0.25rem; }

/* ── CARDS ── */
.cards-grid   { display:grid; grid-template-columns:repeat(auto-fill, minmax(280px,1fr)); gap:1.5rem; }
.cards-grid-2 { display:grid; grid-template-columns:repeat(2,1fr); gap:1.5rem; }
.cards-grid-3 { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; }
.cards-grid-4 { display:grid; grid-template-columns:repeat(4,1fr); gap:1.5rem; }

.card {
  background:var(--navy-mid); border:1px solid var(--gold-border);
  border-radius:var(--radius); padding:2rem;
  transition:transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  position:relative; overflow:hidden;
}
.card::before {
  content:''; position:absolute; top:0; left:0; right:0; height:2px;
  background:linear-gradient(90deg,var(--gold),transparent);
  transform:scaleX(0); transform-origin:left; transition:transform 0.3s ease;
}
.card:hover { transform:translateY(-5px); border-color:rgba(201,168,76,0.5); box-shadow:0 12px 32px rgba(0,0,0,0.3); }
.card:hover::before { transform:scaleX(1); }
a.card { display:flex; flex-direction:column; }

.card-icon {
  width:50px; height:50px; background:var(--gold-dim); border-radius:var(--radius);
  display:flex; align-items:center; justify-content:center;
  font-size:1.3rem; color:var(--gold); margin-bottom:1.2rem; flex-shrink:0;
}
.card h3 { margin-bottom:0.6rem; }
.card p  { font-size:0.87rem; flex:1; }
.card-arrow {
  display:flex; align-items:center; gap:0.4rem;
  font-size:0.7rem; font-weight:600; color:var(--gold);
  letter-spacing:0.08em; text-transform:uppercase; margin-top:1rem;
  transition:gap 0.2s;
}
a.card:hover .card-arrow { gap:0.7rem; }

/* ── TWO COL ── */
.two-col { display:grid; grid-template-columns:1fr 1fr; gap:4rem; align-items:center; }
.two-col.reverse > :first-child { order:2; }
.two-col.reverse > :last-child  { order:1; }

/* ── STYLED LIST ── */
.styled-list { display:flex; flex-direction:column; gap:0.75rem; }
.styled-list li { display:flex; align-items:flex-start; gap:0.75rem; color:var(--grey); font-size:0.9rem; }
.styled-list li::before { content:'◆'; color:var(--gold); font-size:0.45rem; margin-top:0.6rem; flex-shrink:0; }

/* ── HIGHLIGHT BOX ── */
.highlight-box {
  background:var(--navy-light); border:1px solid var(--gold-border);
  border-left:3px solid var(--gold); border-radius:0 var(--radius) var(--radius) 0;
  padding:1.5rem 2rem; margin:1.5rem 0;
}
.highlight-box p { font-size:0.9rem; }

/* ── IMG BOX ── */
.img-box {
  position:relative; border-radius:var(--radius);
  overflow:visible; flex-shrink:0;
}
.img-box img {
  width:100%; aspect-ratio:4/3; object-fit:cover;
  border-radius:var(--radius); border:1px solid var(--gold-border);
  display:block;
}
.img-float {
  position:absolute; bottom:-1.2rem; right:-1.2rem;
  background:var(--gold); border-radius:var(--radius);
  padding:1.1rem 1.4rem; text-align:center;
  box-shadow:0 4px 24px rgba(0,0,0,0.4);
}
.img-float .num { font-family:'Playfair Display',serif; font-size:1.8rem; font-weight:900; color:var(--navy); line-height:1; display:block; }
.img-float .lbl { font-size:0.6rem; color:var(--navy-mid); font-weight:700; text-transform:uppercase; letter-spacing:0.08em; }

/* ── IMAGEM DIAGRAMA ── */
.diagram-img { width:100%; border-radius:var(--radius); border:1px solid var(--gold-border); }

/* ── CONTATO ── */
.contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:4rem; align-items:start; }
.contact-item { display:flex; align-items:flex-start; gap:1rem; padding:1rem 0; border-bottom:1px solid var(--gold-border); }
.contact-item:last-of-type { border-bottom:none; }
.contact-icon { width:40px; height:40px; background:var(--gold-dim); border-radius:6px; display:flex; align-items:center; justify-content:center; color:var(--gold); flex-shrink:0; }
.contact-item strong { display:block; color:var(--white); font-size:0.82rem; margin-bottom:0.15rem; }
.contact-item span { color:var(--grey); font-size:0.85rem; }

.wa-form { background:var(--navy-light); border:1px solid var(--gold-border); border-radius:12px; padding:2.5rem; }
.wa-form h3 { margin-bottom:0.4rem; }
.form-subtitle { display:flex; align-items:center; gap:0.5rem; color:var(--grey); font-size:0.82rem; margin-bottom:1.8rem; }
.wa-badge { background:var(--green); color:#fff; font-size:0.6rem; font-weight:700; letter-spacing:0.06em; padding:0.2rem 0.5rem; border-radius:3px; text-transform:uppercase; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
.form-group { display:flex; flex-direction:column; gap:0.4rem; margin-bottom:1rem; }
.form-group label { font-size:0.75rem; color:var(--grey); font-weight:500; }
.form-group input,
.form-group textarea,
.form-group select {
  background:var(--navy); border:1px solid var(--gold-border);
  border-radius:6px; padding:0.72rem 1rem; color:var(--white);
  font-family:'DM Sans',sans-serif; font-size:0.88rem;
  transition:border-color 0.2s, box-shadow 0.2s; outline:none; width:100%;
  -webkit-appearance:none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color:var(--grey); opacity:0.6; }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color:var(--gold); box-shadow:0 0 0 3px rgba(201,168,76,0.1); }
.form-group select option { background:var(--navy-mid); }
.form-group textarea { resize:vertical; min-height:110px; }

/* ── FOOTER ── */
.site-footer { background:var(--navy); border-top:1px solid var(--gold-border); padding:4rem 0 2rem; }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:3rem; margin-bottom:3rem; }
.footer-brand img { height:40px; width:auto; margin-bottom:1rem; }
.footer-brand p { font-size:0.85rem; max-width:260px; line-height:1.7; }
.footer-col h4 { font-family:'DM Sans',sans-serif; font-size:0.65rem; letter-spacing:0.2em; text-transform:uppercase; color:var(--gold); margin-bottom:1.2rem; }
.footer-col a { display:block; color:var(--grey); font-size:0.85rem; margin-bottom:0.5rem; transition:color 0.2s; }
.footer-col a:hover { color:var(--white); }
.footer-bottom { border-top:1px solid var(--gold-border); padding-top:1.5rem; display:flex; justify-content:space-between; align-items:center; gap:1rem; flex-wrap:wrap; }
.footer-bottom p { color:var(--grey); font-size:0.78rem; }
.social-links { display:flex; gap:0.6rem; }
.social-link { width:36px; height:36px; background:var(--navy-light); border:1px solid var(--gold-border); border-radius:6px; display:flex; align-items:center; justify-content:center; color:var(--grey); font-size:0.85rem; transition:all 0.2s; }
.social-link:hover { border-color:var(--gold); color:var(--gold); }
.social-link.wa { color:var(--green); border-color:rgba(37,211,102,0.3); }
.social-link.wa:hover { border-color:var(--green); }

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position:fixed; bottom:1.8rem; right:1.8rem;
  width:56px; height:56px; background:var(--green); border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:1.5rem; color:#fff; z-index:999;
  box-shadow:0 4px 20px rgba(37,211,102,0.45);
  transition:transform 0.25s, box-shadow 0.25s;
}
.wa-float:hover { transform:scale(1.1); box-shadow:0 6px 28px rgba(37,211,102,0.65); }

/* ── FADE-UP ── */
.fade-up { opacity:0; transform:translateY(28px); transition:opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity:1; transform:translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width:1024px) {
  .cards-grid-3 { grid-template-columns:repeat(2,1fr); }
  .cards-grid-4 { grid-template-columns:repeat(2,1fr); }
  .footer-grid  { grid-template-columns:1fr 1fr; gap:2rem; }
}
@media (max-width:768px) {
  .site-nav {
    display:none; position:fixed; inset:0;
    background:var(--navy); flex-direction:column; justify-content:center;
    align-items:center; gap:0.5rem; z-index:1050; padding:2rem;
  }
  .site-nav.open { display:flex; }
  .site-nav a { font-size:1rem; padding:0.9rem 1.5rem; width:100%; text-align:center; border-radius:8px; }
  .nav-cta { margin-left:0; margin-top:0.5rem; }
  .hamburger { display:flex; }
  .hero-content { padding:7rem 1.5rem 4rem; }
  .hero-stats { gap:1.5rem; }
  .two-col { grid-template-columns:1fr; gap:2.5rem; }
  .two-col.reverse > :first-child { order:0; }
  .two-col.reverse > :last-child  { order:0; }
  .section { padding:3.5rem 0; }
  .container { padding:0 1.5rem; }
  .contact-grid { grid-template-columns:1fr; gap:2.5rem; }
  .form-row { grid-template-columns:1fr; }
  .cards-grid-2 { grid-template-columns:1fr; }
  .cards-grid-3 { grid-template-columns:1fr; }
  .cards-grid-4 { grid-template-columns:1fr 1fr; }
  .footer-grid  { grid-template-columns:1fr; gap:2rem; }
  .footer-bottom { flex-direction:column; text-align:center; }
  .img-float { position:static; margin-top:1rem; display:inline-block; }
}
@media (max-width:480px) {
  .cards-grid-4 { grid-template-columns:1fr; }
  .hero-stats { flex-direction:column; gap:1rem; }
  .btn-group { flex-direction:column; }
  .btn-group .btn { width:100%; justify-content:center; }
}
