/* =========================
   styles.css (Landing Page)
   Paleta: preto / dourado / bege
   ========================= */

:root{
  --black:#0b0b0b;
  --beige:#f3e7cf;
  --beige-2:#f8f1de;
  --gold:#d4af37;
  --gold-2:#f1d070;
  --muted:rgba(243,231,207,.72);
  --border:rgba(243,231,207,.18);
  --shadow: 0 25px 60px rgba(0,0,0,.55);
  --radius:24px;
  --radius2:18px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}

body{
  margin:0;
  background:
    radial-gradient(1200px 800px at 10% 10%, rgba(212,175,55,.10), transparent 60%),
    radial-gradient(900px 700px at 70% 30%, rgba(243,231,207,.12), transparent 55%),
    linear-gradient(180deg, #050505, #0b0b0b 40%, #070707);
  color:var(--beige);
  font-family:Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

a{color:inherit; text-decoration:none}
img{max-width:100%; display:block}

.container{width:min(1120px, 92vw); margin:0 auto}

/* Noise overlay */
.bg-noise{
  position:fixed; inset:0;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
  mix-blend-mode:overlay;
  opacity:.35;
  pointer-events:none;
  z-index:0;
}

.bg-glow{
  position:fixed; inset:-30%;
  background:radial-gradient(circle at 30% 20%, rgba(212,175,55,.18), transparent 55%);
  filter:blur(25px);
  pointer-events:none;
  z-index:0;
}

/* =========================
   TOPBAR
   ========================= */
.topbar{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(14px);
  background:rgba(11,11,11,.45);
  border-bottom:1px solid rgba(243,231,207,.10);
}

.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0
}

.brand{
  display:flex;
  align-items:center;
  gap:10px
}

.brand__logo{
  display:grid;
  place-items:center;
  width:38px;
  height:38px;
  border-radius:12px;
  background:linear-gradient(135deg, rgba(212,175,55,.25), rgba(243,231,207,.10));
  border:1px solid rgba(212,175,55,.35);
  box-shadow: 0 10px 24px rgba(0,0,0,.35)
}

.brand__text{font-weight:600}

.nav{
  display:flex;
  align-items:center;
  gap:18px
}

.nav__link{
  opacity:.85;
  font-weight:500
}

.nav__link:hover{opacity:1}

.nav__cta{
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(212,175,55,.35);
  background:rgba(212,175,55,.12)
}

.hamb{
  display:none;
  background:transparent;
  border:0;
  cursor:pointer
}

.hamb span{
  display:block;
  width:24px;
  height:2px;
  background:var(--beige);
  margin:5px 0;
  opacity:.9
}

.mobile{
  display:none;
  flex-direction:column;
  gap:12px;
  padding:14px 0;
  border-top:1px solid rgba(243,231,207,.10)
}

.mobile__link{
  padding:10px 0;
  opacity:.9
}

@media (max-width: 820px){
  .nav{display:none}
  .hamb{display:block}
  .mobile.show{display:flex}
}

/* =========================
   BUTTONS
   ========================= */
.btn{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 18px;
  border-radius:999px;
  border:1px solid transparent;
  cursor:pointer;
  font-weight:700;
  letter-spacing:.2px;
  transition:.2s ease;
  user-select:none;
}

.btn--primary{
  color:var(--black);
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  box-shadow: 0 18px 45px rgba(212,175,55,.18);
}

.btn--primary:hover{transform: translateY(-1px)}

.btn--ghost{
  color:var(--beige);
  background:rgba(243,231,207,.06);
  border:1px solid rgba(243,231,207,.18);
}

.btn--ghost:hover{background:rgba(243,231,207,.10)}

.btn--small{padding:10px 14px; font-weight:700}

/* button shine */
.btn__shine{
  position:absolute;
  inset:0;
  border-radius:999px;
  overflow:hidden
}

.btn__shine:before{
  content:"";
  position:absolute;
  inset:-40% -60%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.55), transparent);
  transform: rotate(20deg) translateX(-120%);
  animation: shine 3.2s ease-in-out infinite;
}

@keyframes shine{
  0%,55%{transform: rotate(20deg) translateX(-140%);}
  100%{transform: rotate(20deg) translateX(140%);}
}

/* =========================
   TYPOGRAPHY
   ========================= */
.kicker{
  color:rgba(212,175,55,.95);
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:2.6px;
  font-size:12px
}

.lead{
  color:rgba(243,231,207,.82);
  line-height:1.6
}

.muted{
  color:rgba(243,231,207,.70);
  line-height:1.75
}

.gold{color:var(--gold)}

/* =========================
   HERO (split screen)
   ========================= */
.hero{
  min-height:calc(100vh - 70px);
  display:grid;
  grid-template-columns: 1fr 1fr;
  position:relative;
  z-index:1
}

.hero__left{
  position:relative;
  overflow:hidden;
  border-right:1px solid rgba(243,231,207,.10)
}

.hero__photo{
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.70)),
    url("assets/cliente.png") center/cover no-repeat;
  transform: scale(1.02);
}

.hero__overlay{
  position:absolute;
  left:18px;
  bottom:18px;
  right:18px;
  display:flex;
  flex-direction:column;
  gap:14px
}

.tag{
  display:inline-flex;
  width:max-content;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(11,11,11,.45);
  border:1px solid rgba(243,231,207,.14);
  backdrop-filter: blur(12px);
  font-weight:700;
  font-size:13px
}

.hero__overlayText{
  padding:18px;
  border-radius:var(--radius);
  background:rgba(11,11,11,.45);
  border:1px solid rgba(212,175,55,.20);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow)
}

.hero__overlayText h2{
  font-family:"Playfair Display", serif;
  margin:0 0 6px;
  font-size:26px
}

.hero__overlayText p{
  margin:0;
  color:rgba(243,231,207,.75)
}

.hero__right{
  display:grid;
  place-items:center;
  padding:26px
}

.hero__content{width:min(520px, 100%)}

.hero__content h1{
  font-family:"Playfair Display", serif;
  font-size:58px;
  line-height:1.02;
  margin:10px 0 12px
}

.hero__actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin:22px 0
}

.hero__stats{
  display:grid;
  grid-template-columns: repeat(3,1fr);
  gap:12px;
  margin-top:10px
}

.stat{
  padding:14px;
  border-radius:18px;
  background:rgba(243,231,207,.06);
  border:1px solid rgba(243,231,207,.12)
}

.stat strong{display:block; font-size:18px}
.stat span{font-size:13px; opacity:.8}

.scrollHint{
  margin-top:26px;
  display:flex;
  align-items:center;
  gap:10px;
  opacity:.8
}

.scrollHint__dot{
  width:22px;
  height:34px;
  border-radius:999px;
  border:1px solid rgba(243,231,207,.25);
  position:relative
}

.scrollHint__dot:after{
  content:"";
  width:6px;
  height:6px;
  border-radius:50%;
  background:var(--gold);
  position:absolute;
  left:50%;
  top:8px;
  transform:translateX(-50%);
  animation: dot 1.6s ease-in-out infinite
}

@keyframes dot{
  0%,100%{transform:translate(-50%,0)}
  50%{transform:translate(-50%,12px)}
}

@media (max-width: 980px){
  .hero{grid-template-columns:1fr; min-height:auto}
  .hero__left{height:64vh; border-right:0; border-bottom:1px solid rgba(243,231,207,.10)}
  .hero__content h1{font-size:44px}
}

/* =========================
   SECTIONS
   ========================= */
.section{
  padding:92px 0;
  position:relative;
  z-index:1
}

.grid2{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:26px;
  align-items:stretch
}

@media (max-width: 980px){
  .grid2{grid-template-columns:1fr}
}

.bullets{
  margin:20px 0 0;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px
}

.bullet{
  padding:12px 14px;
  border-radius:16px;
  border:1px solid rgba(243,231,207,.14);
  background:rgba(243,231,207,.06)
}

@media (max-width: 700px){
  .bullets{grid-template-columns:1fr}
}

.about__cta{
  display:flex;
  gap:12px;
  margin-top:18px;
  flex-wrap:wrap
}

/* About card */
.aboutCard{
  border-radius:var(--radius);
  padding:18px;
  border:1px solid rgba(212,175,55,.22);
  background:linear-gradient(180deg, rgba(243,231,207,.06), rgba(11,11,11,.35));
  box-shadow: var(--shadow)
}

.aboutCard__top{
  display:flex;
  align-items:center;
  gap:12px
}

.avatar{
  width:54px;
  height:54px;
  border-radius:18px;

  background:
    url("assets/foto_cliente.jpeg") center/cover no-repeat;

  border:1px solid rgba(212,175,55,.35);
  box-shadow: 0 10px 24px rgba(0,0,0,.35);
}


.aboutCard__name{font-weight:800}
.aboutCard__role{opacity:.75; font-size:13px}

.aboutCard__body{
  margin:16px 0 12px;
  color:rgba(243,231,207,.76);
  line-height:1.8
}

.aboutCard__chips{
  display:flex;
  gap:10px;
  flex-wrap:wrap
}

.chip{
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(243,231,207,.14);
  background:rgba(11,11,11,.20);
  font-weight:700;
  font-size:13px
}

.aboutCard__footer{
  display:flex;
  gap:12px;
  margin-top:16px;
  flex-wrap:wrap
}

/* Highlights */
.sectionHeader{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:18px;
  margin-bottom:18px
}

.highlightGrid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px
}

@media (max-width: 980px){
  .highlightGrid{grid-template-columns:1fr 1fr}
}

@media (max-width: 620px){
  .highlightGrid{grid-template-columns:1fr}
}

.card{
  border-radius:22px;
  border:1px solid rgba(243,231,207,.16);
  background:rgba(243,231,207,.06);
  overflow:hidden;
  cursor:pointer;
  transition:.18s ease;
}

.card:hover{
  transform:translateY(-3px);
  border-color: rgba(212,175,55,.35)
}

.card__img{
  height:190px;
  background:
    linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.68)),
    var(--img) center/cover no-repeat
}

.card__body{padding:14px}
.card__title{font-weight:900}

.card__desc{
  opacity:.78;
  font-size:13px;
  line-height:1.55;
  margin-top:6px
}

/* Contact */
.contact{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:18px;
  align-items:center
}

@media (max-width: 980px){
  .contact{grid-template-columns:1fr}
}

.contact__card{
  border-radius:var(--radius);
  padding:22px;
  border:1px solid rgba(243,231,207,.14);
  background:linear-gradient(180deg, rgba(243,231,207,.06), rgba(11,11,11,.35));
  box-shadow: var(--shadow)
}

.contact__actions{
  display:flex;
  gap:12px;
  margin-top:18px;
  flex-wrap:wrap
}

.contact__mini{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:16px;
  opacity:.82;
  font-size:13px
}

.contact__decor{
  position:relative;
  height:360px;
  border-radius:var(--radius);
  border:1px solid rgba(212,175,55,.20);
  background:
    radial-gradient(circle at 30% 20%, rgba(212,175,55,.16), transparent 50%),
    rgba(243,231,207,.05);
  overflow:hidden
}

.ring{
  position:absolute;
  inset:20%;
  border-radius:999px;
  border:1px solid rgba(212,175,55,.25);
  filter:blur(.2px)
}

.ring:nth-child(2){
  inset:30%;
  border-color:rgba(243,231,207,.20)
}

.ring:nth-child(3){
  inset:40%;
  border-color:rgba(212,175,55,.18)
}

/* Footer */
.footer{
  padding:26px 0;
  border-top:1px solid rgba(243,231,207,.10);
  background:rgba(11,11,11,.55)
}

.footer__inner{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  opacity:.9;
  font-size:14px
}

.footer__inner a{opacity:.9}
.footer__inner a:hover{opacity:1}
.sep{opacity:.3}

/* =========================
   Reveal (IntersectionObserver)
   ========================= */
.reveal{
  opacity:0;
  transform: translateY(12px);
  transition: opacity .6s ease, transform .6s cubic-bezier(.2,.9,.2,1);
}

.reveal.is-visible{
  opacity:1;
  transform: translateY(0);
}

/* =========================
   Categories slider
   ========================= */
.catSlider{
  margin-top:18px;
  display:grid;
  grid-template-columns: 46px 1fr 46px;
  gap:12px;
  align-items:center;
}

.sliderBtn{
  width:46px;
  height:46px;
  border-radius:16px;
  border:1px solid rgba(212,175,55,.25);
  background:rgba(243,231,207,.06);
  color:var(--gold);
  font-size:22px;
  cursor:pointer;
  transition:.2s ease;
}

.sliderBtn:hover{
  border-color: rgba(212,175,55,.55);
  transform: translateY(-1px);
}

.catTrack{
  display:flex;
  gap:12px;
  overflow:auto;
  scroll-behavior:smooth;
  padding:6px 2px;
}

.catTrack::-webkit-scrollbar{height:8px}
.catTrack::-webkit-scrollbar-thumb{
  background: rgba(212,175,55,.18);
  border-radius:999px;
}

.catItem{
  min-width: 170px;
  border-radius:22px;
  border:1px solid rgba(212,175,55,.18);
  background:rgba(243,231,207,.06);
  padding:16px 16px;
  display:flex;
  align-items:center;
  gap:10px;
  transition:.18s ease;
}

.catItem span{font-size:22px}
.catItem strong{color:var(--gold); letter-spacing:.2px}

.catItem:hover{
  transform: translateY(-2px);
  border-color: rgba(212,175,55,.45);
}

/* =========================
   Extra contact links
   ========================= */
.contactLinks{
  margin-top:18px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.contactLink{
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(212,175,55,.18);
  background:rgba(243,231,207,.06);
  color:var(--gold);
  font-weight:900;
  font-size:13px;
}

.contactLink:hover{
  border-color: rgba(212,175,55,.55);
}