
:root{
  --gold:#c58d1b;
  --gold-2:#e4b84e;
  --ink:#17191c;
  --ink-2:#25282d;
  --gray:#5e646c;
  --line:#e4e4de;
  --paper:#f7f7f4;
  --white:#fff;
  --shadow:0 18px 48px rgba(20,22,25,.12);
  --page:1400px;
  --gutter:clamp(1rem,4vw,4rem);
}
*{box-sizing:border-box}
html{
  scroll-behavior:smooth;
  scroll-padding-top:88px;
  -webkit-text-size-adjust:100%;
}
body{
  margin:0;
  min-width:320px;
  overflow-x:hidden;
  background:var(--paper);
  color:var(--ink);
  font-family:Arial,Helvetica,sans-serif;
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
}
a{text-decoration:none;color:inherit}
img{display:block;max-width:100%}
button,input,textarea{font:inherit}

/* Header */
.header{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(255,255,255,.97);
  border-bottom:1px solid var(--line);
  backdrop-filter:blur(14px);
}
.header-inner{
  width:min(100%,var(--page));
  min-height:88px;
  margin:auto;
  padding-inline:var(--gutter);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:clamp(1rem,2.2vw,2rem);
}
.logo{
  flex:0 1 255px;
  min-width:150px;
}
.logo img{
  width:100%;
  max-width:255px;
  max-height:70px;
  object-fit:contain;
  object-position:left center;
}
.nav{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:clamp(.75rem,1.8vw,1.75rem);
  min-width:0;
  font-size:clamp(.68rem,.68vw,.81rem);
  font-weight:800;
  text-transform:uppercase;
  white-space:nowrap;
}
.nav a:hover,.nav .active{color:var(--gold)}
.lang{
  border:0;
  padding:.4rem;
  background:transparent;
  font:inherit;
  font-weight:800;
  cursor:pointer;
}
.quote{
  padding:.85rem 1.25rem;
  border-radius:4px;
  background:linear-gradient(135deg,var(--gold),var(--gold-2));
  color:#fff!important;
  text-align:center;
}
.menu-toggle{
  display:none;
  border:0;
  padding:.5rem;
  background:none;
}
.menu-toggle span{
  display:block;
  width:26px;
  height:2px;
  margin:5px;
  background:var(--ink);
}

/* Hero — uses minmax, not fixed percentages, so browser zoom reflows instead of shrinking everything */
.hero{
  width:min(100%,var(--page));
  margin:auto;
  display:grid;
  grid-template-columns:minmax(32rem,44%) minmax(0,1fr);
  background:#fff;
}
.hero-left{
  display:flex;
  align-items:center;
  min-width:0;
}
.hero-content{
  width:100%;
  padding-block:clamp(3.5rem,6vw,6.25rem);
  padding-left:var(--gutter);
  padding-right:clamp(2rem,4vw,4.5rem);
}
.kicker{
  display:flex;
  align-items:center;
  gap:.75rem;
  color:var(--gold);
  font-size:clamp(.66rem,.7vw,.8rem);
  text-transform:uppercase;
  letter-spacing:.06em;
}
.kicker span{
  flex:0 0 34px;
  height:1px;
  background:var(--gold);
}
.kicker.centered{justify-content:center}
.hero h1{
  max-width:760px;
  margin:1.35rem 0 0;
  font-size:clamp(3rem,4.5vw,5.1rem);
  line-height:1.05;
  letter-spacing:-.045em;
  text-wrap:balance;
}
.hero h1 span{display:block}
.hero h1 .gold{color:var(--gold)}
.short-line{
  width:58px;
  height:3px;
  margin:1.65rem 0;
  background:var(--gold);
}
.hero p{
  max-width:590px;
  margin:0;
  color:#4f555d;
  font-size:clamp(.98rem,1.15vw,1.12rem);
}
.hero-buttons{
  display:flex;
  flex-wrap:wrap;
  gap:1rem;
  margin-top:1.75rem;
}
.btn{
  min-height:48px;
  padding:0 1.4rem;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid transparent;
  border-radius:4px;
  font-size:.78rem;
  font-weight:800;
  text-transform:uppercase;
}
.primary{
  background:linear-gradient(135deg,var(--gold),var(--gold-2));
  color:#fff;
}
.secondary{
  border-color:var(--gold);
  background:#fff;
  color:var(--ink);
}

.hero-right{
  position:relative;
  min-width:0;
  min-height:clamp(480px,42vw,620px);
  overflow:hidden;
  background:#111;
}
.hero-right>img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
}
.dark-wedge{
  position:absolute;
  right:-8rem;
  top:-3rem;
  width:17rem;
  height:130%;
  transform:skewX(-24deg);
  background:#202328;
}
.gold-wedge{
  position:absolute;
  top:-8%;
  width:clamp(32px,3vw,48px);
  height:120%;
  transform:skewX(-24deg);
  background:linear-gradient(135deg,var(--gold-2),var(--gold));
}
.gold-a{left:1.25rem}
.gold-b{right:3.5rem}
.human-card{
  position:absolute;
  right:clamp(1.5rem,5vw,4.5rem);
  bottom:clamp(1.5rem,5vw,3.5rem);
  width:min(230px,42%);
  padding:clamp(1rem,2vw,1.5rem);
  border:1px solid rgba(255,255,255,.16);
  background:rgba(18,20,23,.88);
  color:#fff;
  backdrop-filter:blur(8px);
}
.human-icon{
  margin-bottom:.7rem;
  color:var(--gold);
  font-size:1.75rem;
}
.human-card strong{
  display:block;
  font-size:.78rem;
  text-transform:uppercase;
}
.human-card p{
  margin:.5rem 0;
  color:#e3e4e6;
  font-size:.8rem;
}
.human-card i{
  display:block;
  width:36px;
  height:2px;
  background:var(--gold);
}

/* Services */
.services{
  padding:clamp(1.5rem,3vw,2.5rem) var(--gutter) 1rem;
  background:linear-gradient(#fff,#f5f5f2);
}
.section-heading{
  max-width:830px;
  margin:0 auto clamp(1.75rem,3vw,2.5rem);
  text-align:center;
}
.section-heading h2{
  margin:.5rem 0 0;
  font-size:clamp(2rem,3.1vw,3rem);
  line-height:1.12;
  letter-spacing:-.035em;
  text-wrap:balance;
}
.section-heading em{color:var(--gold);font-style:normal}
.cards{
  width:min(100%,1320px);
  margin:auto;
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:clamp(.8rem,1.4vw,1.2rem);
}
.cards article{
  min-width:0;
  padding:clamp(1.15rem,2vw,1.6rem);
  text-align:center;
  border:1px solid #e9e9e4;
  border-radius:9px;
  background:#fff;
  box-shadow:0 8px 22px rgba(20,22,25,.06);
}
.icon{color:var(--gold);font-size:clamp(1.9rem,2.7vw,2.35rem)}
.cards h3{margin:.8rem 0 .4rem;font-size:clamp(.92rem,1.15vw,1.08rem)}
.cards p{
  min-height:6.8rem;
  margin:.4rem 0 1rem;
  color:#555b62;
  font-size:clamp(.78rem,.9vw,.9rem);
}
.cards a{
  color:var(--gold);
  font-size:.72rem;
  font-weight:800;
  text-transform:uppercase;
}

/* Benefits */
.benefits{
  padding:clamp(1.5rem,3vw,2rem) var(--gutter);
  background:linear-gradient(135deg,#292c31,#15171a);
  color:#fff;
}
.benefits-inner{
  width:min(100%,1320px);
  margin:auto;
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:clamp(1rem,2vw,2rem);
}
.benefits-inner>div{
  min-width:0;
  display:flex;
  gap:.9rem;
}
.benefits span{color:var(--gold);font-size:1.8rem}
.benefits h3{margin:0 0 .25rem;font-size:.78rem;text-transform:uppercase}
.benefits p{margin:0;color:#d5d7da;font-size:.78rem}

/* Lower sections */
.about,.process,.contact{
  padding:clamp(4.5rem,7vw,6rem) var(--gutter);
}
.content-grid{
  width:min(100%,1200px);
  margin:auto;
  display:grid;
  grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr);
  gap:clamp(2rem,7vw,5.5rem);
}
.content-grid h2,.contact h2{
  margin:.8rem 0;
  font-size:clamp(2.4rem,4vw,3.6rem);
  line-height:1.06;
  letter-spacing:-.04em;
  text-wrap:balance;
}
.content-grid p{color:#575d65;font-size:clamp(.98rem,1.2vw,1.08rem)}

.process{background:#f0f0ec}
.process-grid{
  width:min(100%,1200px);
  margin:2rem auto 0;
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:clamp(.9rem,1.6vw,1.25rem);
}
.process article{
  min-width:0;
  padding:clamp(1.2rem,2vw,1.75rem);
  border-top:4px solid var(--gold);
  background:#fff;
  box-shadow:0 8px 22px rgba(20,22,25,.06);
}
.process strong{color:var(--gold);font-size:1.8rem}
.process h3{margin:.65rem 0 .25rem}
.process p{margin:0;color:#636970}

.contact-panel{
  width:min(100%,1200px);
  margin:auto;
  padding:clamp(2rem,5vw,3.75rem);
  display:grid;
  grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr);
  gap:clamp(2rem,6vw,4.5rem);
  background:linear-gradient(135deg,#292c31,#15171a);
  color:#fff;
}
.kicker.light{color:var(--gold-2)}
.contact-panel p{color:#c9ccd0}
form{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:.9rem;
}
label{display:grid;gap:.35rem;font-size:.8rem}
label:nth-child(3),label:nth-child(4),form button,form small{grid-column:1/-1}
input,textarea{
  width:100%;
  min-width:0;
  padding:.8rem;
  border:1px solid rgba(255,255,255,.16);
  border-radius:4px;
  background:rgba(255,255,255,.07);
  color:#fff;
}
form small{color:#afb3b8}

footer{padding:2rem var(--gutter);background:#e8e8e3}
.footer-inner{
  width:min(100%,1200px);
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1.5rem;
  color:#666b72;
}


/* Notebook / browser zoom: change layout before elements become tiny */
@media (max-width:1180px){
  .header-inner{min-height:82px}
  .logo{flex-basis:205px}
  .logo img{max-width:205px}
  .nav{gap:.8rem;font-size:.64rem}
  .quote{padding:.7rem .85rem}
  .hero{grid-template-columns:minmax(27rem,48%) minmax(0,1fr)}
  .hero-content{padding-right:2rem}
  .hero h1{font-size:clamp(2.9rem,5vw,4.5rem)}
  .cards{grid-template-columns:repeat(3,minmax(0,1fr))}
  .cards p{min-height:auto}
}

/* Tablet landscape and high browser zoom */
@media (max-width:960px){
  html{scroll-padding-top:78px}
  .header-inner{min-height:76px}
  .menu-toggle{display:block}
  .nav{
    position:absolute;
    top:76px;
    left:1rem;
    right:1rem;
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:.25rem;
    padding:1rem;
    background:#fff;
    box-shadow:var(--shadow);
    font-size:.78rem;
  }
  .nav.open{display:flex}
  .nav a,.nav button{padding:.7rem;text-align:center}
  .quote{display:block}
  .hero{
    width:100%;
    grid-template-columns:1fr;
  }
  .hero-content{
    max-width:800px;
    margin:auto;
    padding-inline:var(--gutter);
  }
  .hero h1{font-size:clamp(3rem,8vw,5rem)}
  .hero-right{
    min-height:clamp(430px,65vw,590px);
  }
  .cards{grid-template-columns:repeat(2,minmax(0,1fr))}
  .benefits-inner,.process-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .content-grid,.contact-panel{grid-template-columns:1fr}
}

/* Phones */
@media (max-width:640px){
  :root{--gutter:1.1rem}
  .header-inner{min-height:70px}
  .logo{flex-basis:175px}
  .logo img{max-width:175px}
  .nav{top:70px}
  .hero-content{padding-block:3.5rem}
  .hero h1{
    font-size:clamp(2.65rem,12.5vw,4rem);
    line-height:1.02;
  }
  .hero-buttons{flex-direction:column}
  .btn{width:100%}
  .hero-right{min-height:430px}
  .gold-a{left:.5rem}
  .gold-b{right:1.2rem}
  .human-card{
    right:1rem;
    bottom:1rem;
    width:min(210px,58%);
  }
  .cards,.benefits-inner,.process-grid{grid-template-columns:1fr}
  .section-heading h2{font-size:clamp(1.9rem,9vw,2.6rem)}
  .content-grid h2,.contact h2{font-size:clamp(2.2rem,10vw,3rem)}
  form{grid-template-columns:1fr}
  label,label:nth-child(3),label:nth-child(4),form button,form small{grid-column:1}
  .footer-inner{flex-direction:column;align-items:flex-start}
}

/* Narrow phones */
@media (max-width:390px){
  .logo{flex-basis:145px}
  .logo img{max-width:145px}
  .hero h1{font-size:2.45rem}
  .human-card{width:66%}
}

/* Accessibility */
@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  *,*::before,*::after{transition:none!important;animation:none!important}
}


/* Rodapé GoldenAx — sem repetição do logotipo */
.site-footer{
  padding:clamp(2.2rem,4vw,3.4rem) var(--gutter, clamp(1rem,4vw,4rem));
  background:#e8e8e3;
  border-top:1px solid rgba(23,25,28,.08);
}
.site-footer .footer-inner{
  width:min(100%,1200px);
  margin:auto;
  display:grid;
  grid-template-columns:1.1fr 1fr auto;
  align-items:start;
  gap:clamp(1.5rem,4vw,4rem);
  color:#62676e;
}
.footer-brand-text,
.footer-location,
.footer-legal{
  display:flex;
  flex-direction:column;
  gap:.35rem;
}
.footer-brand-text strong{
  color:#17191c;
  font-size:clamp(1.35rem,2vw,1.7rem);
  letter-spacing:-.035em;
}
.footer-brand-text span,
.footer-location span,
.footer-legal span{
  font-size:.88rem;
}
.footer-legal{
  text-align:right;
}
@media(max-width:760px){
  .site-footer .footer-inner{
    grid-template-columns:1fr;
    gap:1.3rem;
  }
  .footer-legal{
    text-align:left;
  }
}
