 /* ---------- HERO / BANNER ---------- */
.hero{
  height: 80vh;
  background: var(--espresso);
  color: var(--cream);
  padding: 70px;
  overflow: hidden;
}
.hero-content{
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
  width: 80%;
  height: 100%;
}
.hero-text{
  flex: 1 1 400px;
  max-width: 600px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 10px;
}

.hero-text h2{
  font-weight: 500;
  color: var(--olive-dark);
  font-family: var(--font-display);
}
.hero-illustration{
  flex: 0 1 300px;
  max-width: 300px;
}
.hero-illustration svg{ width: 100%; height: auto; display: block; }
 
.hero-photo{
  position: relative;
  width: 100%;
  max-width: 300px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
}
.hero-photo-frame{
  position: absolute;
  inset: 0;
  border-radius: 50%;
  overflow: hidden;
  border: 8px solid var(--mustard);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  z-index: 2;
}
.hero-photo-frame img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
}
.hero-photo-ring{
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 2.5px dashed var(--olive);
  opacity: .7;
  animation: spin-ring 40s linear infinite;
}
@keyframes spin-ring{
  from{ transform: rotate(0deg); }
  to{ transform: rotate(360deg); }
}
.hero-photo-dot{
  position: absolute;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--rust);
  bottom: -6px;
  left: -6px;
  z-index: 3;
  border: 3px solid var(--cream);
}

.hero h1{
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.2rem, 5.4vw, 3.6rem);
  margin: 0;
  letter-spacing: .5px;
  line-height: 1.1;
}
 
@media (max-width: 1080px){
    .hero{
        padding: 0px;
    }
}
 
@media (max-width: 950px){
    .hero{
        padding: 30px;
        height: 70vh;
        text-align: center;
    }
    .hero-illustration{
        display: none;
    }
    .hero-text{ text-align: center; }
}

@media (max-width: 760px){
  .hero-content{ text-align: center; justify-content: center; }
  .hero-text{ text-align: center; }
}
 

 
/* ---------- CTA APOIO ---------- */
.support-section{
  position: relative;
  padding: 60px;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}

.support-card{
  position: relative;
  z-index: 2;
  max-width: 920px;
  margin: 0 auto 100px;
  background: var(--cream);
  border-radius: var(--r-card);
  padding: 54px 44px 46px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(36,16,8,0.35);
  border: 3px solid var(--mustard);
}

.support-card .eyebrow{
  color: var(--rust);
  position: relative;
  z-index: 2;
}
.support-card h2{
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--espresso);
  font-size: clamp(1.5rem, 3.4vw, 2.15rem);
  margin: 0 auto 14px;
  line-height: 1.3;
  max-width: 720px;
}
.support-card-desc{
  position: relative;
  z-index: 2;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--plum-brown);
  max-width: 480px;
  margin: 0 auto 30px;
}
 
.support-buttons{
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.support-btn{
  position: relative;
  overflow: hidden;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: .96rem;
  color: var(--espresso);
  text-decoration: none;
  padding: 13px 26px;
  border-radius: 999px;
  border: 2px solid var(--accent);
  z-index: 1;
  transition: all .5s ease;
}


.support-btn:hover{
    background: var(--accent);
    color: var(--cream);
}
 
.support-chain-bg{
  position: absolute;
  right: 18px; top: 0;
  height: 100%;
  width: auto;
  opacity: .07;
  pointer-events: none;
}
 
.btn-pill{
  position: relative;
  overflow: hidden;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: .98rem;
  color: var(--cream);
  text-decoration: none;
  padding: 14px 30px;
  border-radius: 999px;
  border: 2px solid var(--cream);
  z-index: 1;
  transition: color .35s ease;
}
.btn-pill::before{
  content:"";
  position:absolute; inset:0;
  background: var(--cream);
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s cubic-bezier(.22,1,.36,1);
  z-index: -1;
}
.btn-pill:hover::before{ transform: scaleX(1); }
.btn-pill:hover{ color: var(--rust-dark); }
 

/* ---------- IMAGEM DE DESTAQUE ---------- */
.feature-image-section{
  position: relative;
  background: var(--cream);
  padding: 40px 24px 100px;
  background-color: var(--rust-dark);
}
.feature-image-frame{
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--r-card);
  overflow: hidden;
  border: 3px solid var(--rust);
  box-shadow: 0 18px 40px rgba(51, 24, 15, 0.453);
}
.feature-image-frame img{ width: 100%; height: 450px; display:block; object-fit: cover; object-position: center;}
 


/* ---------- CONTEUDO / TEXTO ---------- */
.content-section{
  position: relative;
  background: var(--cream);
  padding: 90px 24px 40px;
}
.content-section .wrap{ max-width: 880px; }
.content-section p{
  font-size: 1.2rem;
  line-height: 1.75;
  color: var(--text);
  margin: 0 0 22px;
}
.content-section p b, .content-section p strong{ color: var(--rust); }
 

/* ---------- GALERIA DE FOTOS ---------- */
.gallery-section{
  position: relative;
  background: var(--cream);
  padding: 40px 24px 100px;
}
.gallery-head{
  text-align: center;
  max-width: 620px;
  margin: 0 auto 46px;
}

.gallery-head h3{
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--espresso);
  font-size: clamp(1.5rem, 3.2vw, 2rem);
  margin: 0;
}
 
.gallery-grid{
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 130px;
  grid-auto-flow: dense;
  gap: 14px;
}
.gallery-tile.g-big{ grid-column: span 2; grid-row: span 2; }
.gallery-tile.g-wide{ grid-column: span 2; grid-row: span 1; }
.gallery-tile.g-tall{ grid-column: span 1; grid-row: span 2; }
.gallery-tile.g-small{ grid-column: span 1; grid-row: span 1; }
 
.gallery-placeholder{
  width: 100%;
  height: 100%;
  background: var(--cream2);
  border-radius: var(--r-card);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(51,24,15,0.06);
  box-shadow: 0 6px 14px rgba(51,24,15,0.06);
  transition: box-shadow .35s ease, border-color .35s ease;
}
.gallery-tile:hover .gallery-placeholder{
  box-shadow: 0 16px 28px rgba(51,24,15,0.16);
  border-color: var(--accent);
}
.gallery-placeholder svg{
  width: 32%;
  height: 32%;
  transition: transform .4s ease;
}
.gallery-tile:hover .gallery-placeholder svg{ transform: scale(1.1); }
 
@media (max-width: 640px){
  .gallery-grid{ grid-template-columns: repeat(2, 1fr); grid-auto-rows: 130px; }
}
 
/* ---------- CTA TRABALHE CONOSCO ---------- */
.jobs-section{
  position: relative;
  background: var(--olive-deep);
  padding: 90px 24px 120px;
  text-align: center;
  overflow: hidden;
}
.jobs-section h2{
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--cream);
  font-size: clamp(1.5rem, 3.4vw, 2.1rem);
  max-width: 560px;
  margin: 0 auto 30px;
  line-height: 1.3;
}
.jobs-section .btn-pill{ border-color: var(--mustard); background: transparent; }
.jobs-section .btn-pill::before{ background: var(--mustard); }
.jobs-section .btn-pill:hover{ color: var(--espresso); }
 

@media (max-width: 640px){
  .hero{ padding: calc(var(--nav-h) + 40px) 20px 90px; }
  .content-section, .welcome-section, .support-section, .gallery-section, .jobs-section{ padding-left: 20px; padding-right: 20px; }
}