/* =============================================
   AGÊNCIA LOVIE — style.css
   Paleta: #0d1724 | #1a2640 | #2d3d5e | #3a4f78
            #b7d1e8 | #8fb8d8 | #ddeaf5 | #f5f8fc
   Fontes: Playfair Display + Montserrat
   ============================================= */

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

/* ── VARIÁVEIS ── */
:root {
  --navy:       #1a2640;
  --navy-mid:   #2d3d5e;
  --navy-light: #3a4f78;
  --blue:       #b7d1e8;
  --blue-dim:   #8fb8d8;
  --blue-pale:  #ddeaf5;
  --white:      #f5f8fc;
  --pure:       #ffffff;
  --dark:       #0d1724;
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', sans-serif;
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--navy-mid); border-radius: 2px; }

/* ══════════════════════════════════════
   NAV
══════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 0 6%; height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(13, 23, 36, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(183, 209, 232, 0.08);
}

.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-size: .67rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(183, 209, 232, .6);
  text-decoration: none; transition: color .3s;
}
.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: transparent;
  border: 1px solid rgba(183, 209, 232, .25);
  color: var(--blue);
  padding: 9px 22px; border-radius: 3px;
  font-size: .67rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; text-decoration: none;
  transition: all .3s;
}
.nav-cta:hover { background: var(--blue); color: var(--navy); }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: var(--dark);
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 0 6%; padding-top: 68px;
}

.hero-bg-text {
  position: absolute; bottom: -80px; right: -40px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(140px, 20vw, 300px);
  font-weight: 900; font-style: italic;
  color: rgba(183, 209, 232, .025);
  line-height: 1; pointer-events: none; user-select: none;
  letter-spacing: -.03em;
}

.hero-grad {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 55% 75% at 72% 50%, rgba(45, 61, 94, .45) 0%, transparent 70%);
  pointer-events: none;
}

.hero-left { z-index: 2; padding-right: 40px; }

.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .63rem; font-weight: 700; letter-spacing: .25em;
  text-transform: uppercase; color: var(--blue-dim);
  margin-bottom: 26px;
  opacity: 0; animation: fadeUp .8s .3s forwards;
}
.hero-tag::before { content: ''; width: 28px; height: 1px; background: var(--blue-dim); }

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4.2vw, 3.8rem);
  font-weight: 900; line-height: 1.1; color: var(--white);
  margin-bottom: 26px;
  opacity: 0; animation: fadeUp .8s .5s forwards;
}
.hero-title em { font-style: italic; color: var(--blue); display: block; }

.hero-sub {
  font-size: .93rem; font-weight: 300; line-height: 1.85;
  color: rgba(183, 209, 232, .62);
  max-width: 420px; margin-bottom: 42px;
  opacity: 0; animation: fadeUp .8s .7s forwards;
}

.hero-btns {
  display: flex; gap: 12px; flex-wrap: wrap;
  opacity: 0; animation: fadeUp .8s .9s forwards;
}

.btn-hp {
  background: var(--blue); color: var(--navy);
  padding: 14px 34px; border-radius: 3px;
  font-weight: 800; font-size: .73rem; letter-spacing: .12em;
  text-transform: uppercase; text-decoration: none; transition: all .3s;
}
.btn-hp:hover { background: var(--white); transform: translateY(-2px); }

.btn-hg {
  border: 1px solid rgba(183, 209, 232, .22);
  color: rgba(183, 209, 232, .8);
  padding: 14px 34px; border-radius: 3px;
  font-weight: 600; font-size: .73rem; letter-spacing: .12em;
  text-transform: uppercase; text-decoration: none; transition: all .3s;
}
.btn-hg:hover { border-color: var(--blue); color: var(--white); }

.hero-right {
  z-index: 2; position: relative;
  height: 100vh;
  display: flex; align-items: flex-end; justify-content: center;
  opacity: 0; animation: fadeIn 1.2s .4s forwards;
}

.hero-photo-wrap {
  position: relative; width: 100%; max-width: 460px; height: 82vh;
}
.hero-photo-wrap::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, var(--dark) 0%, transparent 45%);
  z-index: 1;
}

.hero-photo-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, var(--navy-mid) 0%, var(--dark) 70%);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 14px;
  border-top-left-radius: 180px;
  border-top-right-radius: 180px;
  overflow: hidden; position: relative;
}
.hero-photo-placeholder::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(183, 209, 232, .07) 0%, transparent 60%);
}
/* Para substituir o placeholder pela foto real:
   .hero-photo-placeholder { background: none; }
   .hero-photo-placeholder img { width: 100%; height: 100%; object-fit: cover; }
*/

.p-icon { font-size: 3.5rem; opacity: .25; }
.p-hint {
  font-size: .65rem; letter-spacing: .15em; text-transform: uppercase;
  color: rgba(183, 209, 232, .25); font-weight: 500;
  text-align: center; padding: 0 20px;
}

.hero-badge {
  position: absolute; bottom: 70px; left: -28px; z-index: 3;
  background: var(--navy-mid);
  border: 1px solid rgba(183, 209, 232, .14);
  border-radius: 10px; padding: 14px 18px;
  backdrop-filter: blur(10px);
}
.badge-l { font-size: .58rem; letter-spacing: .15em; text-transform: uppercase; color: var(--blue-dim); }
.badge-v { font-size: 1.05rem; font-weight: 800; color: var(--white); margin-top: 4px; }

/* ══════════════════════════════════════
   TICKER
══════════════════════════════════════ */
.ticker {
  background: var(--navy-mid);
  padding: 13px 0; overflow: hidden;
  border-top: 1px solid rgba(183, 209, 232, .08);
  border-bottom: 1px solid rgba(183, 209, 232, .08);
}
.ticker-track {
  display: flex; white-space: nowrap;
  animation: ticker 24s linear infinite;
}
.ti {
  flex-shrink: 0; font-size: .63rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--blue); padding: 0 32px;
}
.ts { color: rgba(183, 209, 232, .3); padding: 0 6px; font-size: .63rem; flex-shrink: 0; }

/* ══════════════════════════════════════
   SEÇÕES — BASE
══════════════════════════════════════ */
.section { padding: 110px 6%; }
.section-inner { max-width: 1200px; margin: 0 auto; }

.eyebrow {
  display: flex; align-items: center; gap: 14px;
  font-size: .6rem; font-weight: 700; letter-spacing: .28em;
  text-transform: uppercase; color: var(--blue-dim);
  margin-bottom: 18px;
}
.eyebrow::before { content: ''; width: 26px; height: 1px; background: var(--blue-dim); }

.dtitle {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.8vw, 3.1rem);
  font-weight: 900; line-height: 1.1; margin-bottom: 22px;
}
.dtitle em { font-style: italic; color: var(--blue); }

.btext {
  font-size: .92rem; font-weight: 300; line-height: 1.85;
  color: rgba(183, 209, 232, .62); max-width: 600px;
}

/* ══════════════════════════════════════
   SOBRE
══════════════════════════════════════ */
.sobre-section { background: var(--dark); }

.sobre-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 90px; align-items: center;
}

.sobre-frame {
  width: 100%; aspect-ratio: 4/5;
  background: linear-gradient(160deg, var(--navy-light) 0%, var(--dark) 100%);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 12px;
  overflow: hidden; position: relative;
  border: 1px solid rgba(183, 209, 232, .08);
}
/* Para colocar foto real: coloque um <img> dentro de .sobre-frame com object-fit: cover */

.sobre-float {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--navy-mid);
  border: 1px solid rgba(183, 209, 232, .1);
  border-radius: 10px; padding: 22px 26px;
}
.sf-num { font-size: 2.2rem; font-weight: 900; color: var(--blue); line-height: 1; }
.sf-label { font-size: .68rem; color: rgba(183, 209, 232, .5); letter-spacing: .1em; margin-top: 5px; }

.pillars {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px; margin-top: 36px;
}
.pillar {
  border: 1px solid rgba(183, 209, 232, .09); border-radius: 6px;
  padding: 18px 16px;
  background: rgba(183, 209, 232, .02);
  transition: border-color .3s, background .3s;
}
.pillar:hover { border-color: rgba(183, 209, 232, .22); background: rgba(183, 209, 232, .05); }
.pi { font-size: 1.1rem; margin-bottom: 8px; }
.pt { font-size: .76rem; font-weight: 700; color: var(--white); margin-bottom: 5px; }
.pp { font-size: .7rem; color: rgba(183, 209, 232, .5); line-height: 1.6; font-weight: 300; }

/* ══════════════════════════════════════
   SERVIÇOS
══════════════════════════════════════ */
.servicos-section { background: linear-gradient(180deg, var(--dark) 0%, var(--navy) 100%); }

.serv-header { text-align: center; margin-bottom: 68px; }
.serv-header .btext { margin: 0 auto; }

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

.sc {
  background: rgba(183, 209, 232, .03);
  border: 1px solid rgba(183, 209, 232, .07);
  padding: 36px 28px;
  position: relative; overflow: hidden;
  transition: background .35s, border-color .35s;
}
.sc::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--blue), transparent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s;
}
.sc:hover { background: rgba(183, 209, 232, .07); border-color: rgba(183, 209, 232, .17); }
.sc:hover::after { transform: scaleX(1); }

.sc-num { font-size: .58rem; letter-spacing: .2em; color: rgba(183, 209, 232, .28); margin-bottom: 18px; display: block; }
.sc-name { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 12px; line-height: 1.3; }
.sc-desc { font-size: .75rem; color: rgba(183, 209, 232, .52); line-height: 1.75; font-weight: 300; }

/* ══════════════════════════════════════
   DIFERENCIAIS
══════════════════════════════════════ */
.dif-section {
  background: var(--navy);
  position: relative; overflow: hidden;
}
.dif-section::before {
  content: 'LOVIE';
  position: absolute; bottom: -100px; left: -50px;
  font-family: 'Playfair Display', serif;
  font-size: 28vw; font-weight: 900; font-style: italic;
  color: rgba(183, 209, 232, .022);
  pointer-events: none; user-select: none; line-height: 1;
}

.dif-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}

.dif-quote-block {
  background: var(--dark); border-radius: 8px;
  padding: 48px 44px;
  border: 1px solid rgba(183, 209, 232, .07);
  position: sticky; top: 96px;
}
.qmark {
  font-family: 'Playfair Display', serif;
  font-size: 4.5rem; color: var(--blue);
  line-height: .5; margin-bottom: 26px;
  display: block; opacity: .45;
}
.qtext {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem; font-style: italic; font-weight: 400;
  line-height: 1.65; color: var(--white); margin-bottom: 26px;
}
.qauthor { font-size: .62rem; letter-spacing: .2em; text-transform: uppercase; color: var(--blue-dim); font-weight: 600; }

.dif-list { display: flex; flex-direction: column; gap: 0; }

.dif-item {
  padding: 28px 0;
  border-bottom: 1px solid rgba(183, 209, 232, .07);
  display: flex; gap: 20px; align-items: flex-start;
  transition: padding-left .3s;
}
.dif-item:hover { padding-left: 6px; }
.dif-item:first-child { padding-top: 0; }

.dic {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(183, 209, 232, .05);
  border: 1px solid rgba(183, 209, 232, .1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.dib h4 { font-size: .85rem; font-weight: 700; color: var(--white); margin-bottom: 7px; }
.dib p  { font-size: .75rem; color: rgba(183, 209, 232, .52); line-height: 1.7; font-weight: 300; }

/* ══════════════════════════════════════
   EQUIPE
══════════════════════════════════════ */
.equipe-section { background: var(--dark); }

.equipe-header { text-align: center; margin-bottom: 72px; }

.equipe-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px;
}

.membro { position: relative; overflow: hidden; border-radius: 5px; }

.membro-foto {
  aspect-ratio: 3/4; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 8px;
}
.membro-foto::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, var(--dark) 0%, transparent 50%);
}
/* Para adicionar foto real:
   <div class="membro-foto">
     <img src="foto-nome.jpg" alt="Nome" style="width:100%;height:100%;object-fit:cover;position:absolute;inset:0">
   </div>
*/
.mi { font-size: 2.2rem; opacity: .18; position: relative; z-index: 1; }
.mh { font-size: .56rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(183, 209, 232, .22); position: relative; z-index: 1; text-align: center; padding: 0 8px; }

.membro-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 18px 14px; z-index: 2;
}
.mn { font-size: .82rem; font-weight: 800; color: var(--white); margin-bottom: 3px; }
.mc { font-size: .55rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--blue); margin-bottom: 8px; display: block; }
.mb { font-size: .67rem; color: rgba(183, 209, 232, .58); line-height: 1.6; font-weight: 300; display: none; }
.membro:hover .mb { display: block; }

/* ══════════════════════════════════════
   PROCESSO
══════════════════════════════════════ */
.processo-section { background: linear-gradient(180deg, var(--dark) 0%, var(--navy) 100%); }

.processo-header { text-align: center; margin-bottom: 72px; }

.steps-row {
  display: grid; grid-template-columns: repeat(5, 1fr);
  position: relative;
}
.steps-row::before {
  content: ''; position: absolute; top: 27px; left: 8%; right: 8%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--navy-light) 20%, var(--navy-light) 80%, transparent);
}

.step { text-align: center; padding: 0 14px; position: relative; }

.sc2 {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--dark);
  border: 1px solid rgba(183, 209, 232, .13);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: .72rem; font-weight: 800; color: var(--blue);
  position: relative; z-index: 1;
  transition: background .3s, border-color .3s;
}
.step:hover .sc2 { background: var(--navy-mid); border-color: var(--blue); }

.st  { font-size: .78rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.stx { font-size: .7rem; color: rgba(183, 209, 232, .48); line-height: 1.65; font-weight: 300; }

/* ══════════════════════════════════════
   HUMANIZADO
══════════════════════════════════════ */
.human-section {
  background: var(--navy-mid);
  padding: 96px 6%; text-align: center;
  position: relative; overflow: hidden;
}
.human-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(183, 209, 232, .04) 0%, transparent 70%);
  pointer-events: none;
}
.human-inner { max-width: 780px; margin: 0 auto; position: relative; z-index: 1; }

.htitle {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3.8vw, 2.9rem);
  font-weight: 900; line-height: 1.2; color: var(--white); margin-bottom: 22px;
}
.htitle em { font-style: italic; color: var(--blue); }

.hbody {
  font-size: .93rem; font-weight: 300; line-height: 1.9;
  color: rgba(183, 209, 232, .65); margin-bottom: 44px;
}

.htags { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.htag {
  border: 1px solid rgba(183, 209, 232, .18); color: var(--blue-dim);
  padding: 8px 18px; border-radius: 3px;
  font-size: .65rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
}

/* ══════════════════════════════════════
   CONTATO
══════════════════════════════════════ */
.contato-section { background: var(--dark); padding: 120px 6% 100px; }
.contato-inner { max-width: 1100px; margin: 0 auto; }

.contato-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}

.cform {
  background: rgba(183, 209, 232, .04);
  border: 1px solid rgba(183, 209, 232, .09);
  border-radius: 8px; padding: 44px 38px;
}
.cform-title { font-size: .95rem; font-weight: 700; color: var(--white); margin-bottom: 28px; }

.cbtns { display: flex; flex-direction: column; gap: 12px; }

.btn-wpp {
  display: flex; align-items: center; gap: 12px;
  background: #25d366; color: white;
  padding: 15px 26px; border-radius: 4px;
  font-weight: 800; font-size: .76rem; letter-spacing: .08em; text-transform: uppercase;
  text-decoration: none; transition: all .3s;
}
.btn-wpp:hover { background: #1ebe5d; transform: translateY(-2px); }

.btn-mail {
  display: flex; align-items: center; gap: 12px;
  border: 1px solid rgba(183, 209, 232, .18); color: var(--blue);
  padding: 15px 26px; border-radius: 4px;
  font-weight: 600; font-size: .76rem; letter-spacing: .08em; text-transform: uppercase;
  text-decoration: none; transition: all .3s;
}
.btn-mail:hover { border-color: var(--blue); color: var(--white); background: rgba(183, 209, 232, .05); }

.divider { width: 100%; height: 1px; background: rgba(183, 209, 232, .07); margin: 24px 0; }

.insta-link {
  display: flex; align-items: center; gap: 10px;
  color: rgba(183, 209, 232, .55); text-decoration: none;
  font-size: .75rem; font-weight: 500; transition: color .3s;
}
.insta-link:hover { color: var(--white); }
.insta-btn {
  width: 38px; height: 38px;
  border: 1px solid rgba(183, 209, 232, .13); border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem; transition: border-color .3s;
}
.insta-link:hover .insta-btn { border-color: var(--blue); }

.cinfo { margin-top: 36px; }
.ci { margin-bottom: 20px; }
.ci-l { font-size: .58rem; letter-spacing: .18em; text-transform: uppercase; color: var(--blue-dim); margin-bottom: 3px; }
.ci-v { font-size: .85rem; color: rgba(183, 209, 232, .65); font-weight: 400; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer {
  background: #07111d;
  padding: 36px 6%;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 14px;
  border-top: 1px solid rgba(183, 209, 232, .05);
}
.fl svg { height: 24px; width: auto; opacity: .35; }
.fc  { font-size: .66rem; color: rgba(183, 209, 232, .28); letter-spacing: .05em; }
.ftag { font-family: 'Playfair Display', serif; font-style: italic; font-size: .75rem; color: rgba(183, 209, 232, .22); }

/* ══════════════════════════════════════
   KEYFRAMES
══════════════════════════════════════ */
@keyframes fadeUp  { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn  { from { opacity: 0; } to { opacity: 1; } }
@keyframes ticker  { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ══════════════════════════════════════
   ANIMAÇÕES DE SCROLL (controladas pelo JS)
══════════════════════════════════════ */
.reveal   { opacity: 0; transform: translateY(34px);  transition: opacity .72s ease, transform .72s ease; }
.reveal-l { opacity: 0; transform: translateX(-34px); transition: opacity .72s ease, transform .72s ease; }
.reveal-r { opacity: 0; transform: translateX(34px);  transition: opacity .72s ease, transform .72s ease; }

.reveal.visible,
.reveal-l.visible,
.reveal-r.visible { opacity: 1; transform: translate(0); }

/* ══════════════════════════════════════
   RESPONSIVO
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero                  { grid-template-columns: 1fr; padding-top: 90px; }
  .hero-right            { display: none; }
  .sobre-grid,
  .dif-grid,
  .contato-split         { grid-template-columns: 1fr; gap: 40px; }
  .dif-quote-block       { position: static; }
  .equipe-grid           { grid-template-columns: repeat(3, 1fr); }
  .serv-grid             { grid-template-columns: 1fr 1fr; }
  .steps-row             { grid-template-columns: 1fr 1fr; gap: 28px; }
  .steps-row::before     { display: none; }
}

@media (max-width: 640px) {
  .serv-grid             { grid-template-columns: 1fr; }
  .equipe-grid           { grid-template-columns: 1fr 1fr; }
  .steps-row             { grid-template-columns: 1fr; }
  .pillars               { grid-template-columns: 1fr; }
  nav .nav-links,
  .nav-cta               { display: none; }
}
