html { scroll-behavior: smooth; }
* { box-sizing: border-box; }
body {
  margin: 0;
  background: #FFFFFF;
  font-family: 'Raleway', Arial, sans-serif;
}
::selection { background: #F0BB75; color: #342010; }
a { color: #A2754A; text-decoration: none; }
a:hover { color: #342010; }
img { max-width: 100%; display: block; }
h1, h2, h3 { font-family: 'Raleway', Arial, sans-serif; font-weight: 700; margin: 0; }

/* Placeholder image slots */
.img-placeholder {
  position: relative;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(135deg, #EFE3CB, #EFE3CB 10px, #E7D9BC 10px, #E7D9BC 20px);
  border: 1px dashed rgba(52,32,16,0.35);
  border-radius: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #7A5E42;
  font-size: 13px;
  font-weight: 600;
  padding: 12px;
}
.img-placeholder::before { content: attr(data-placeholder); max-width: 80%; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(37,23,13,0.92);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(240,187,117,0.22), 0 10px 30px rgba(0,0,0,0.16);
}
.header-inner { max-width: 1320px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 22px clamp(18px,5vw,52px); }
.logo { height: 38px; width: auto; }
.nav-desktop { display: flex; align-items: center; gap: clamp(14px,2vw,32px); }
.nav-desktop a { position: relative; color: #FFFDF8; font-family: 'Raleway', sans-serif; font-weight: 600; font-size: 15px; padding: 8px 0; }
.nav-desktop a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px; background: #F0BB75; transition: right 220ms cubic-bezier(.4,0,.2,1); }
.nav-desktop a:hover { color: #F0BB75; }
.nav-desktop a:hover::after { right: 0; }
.btn-whatsapp { display: inline-flex; align-items: center; gap: 9px; background: #25D366; color: #0A2A17; border-radius: 8px; padding: 13px 36px; font-family: 'Raleway', sans-serif; font-weight: 700; font-size: 14.5px; box-shadow: 0 4px 14px rgba(37,211,102,0.35); transition: transform 200ms ease, filter 200ms ease; }
.btn-whatsapp:hover { color: #0A2A17; filter: brightness(0.96); transform: translateY(-1px); }
.btn-whatsapp--block { margin-top: 8px; justify-content: center; padding: 15px 18px; font-size: 15px; }
.mobile-toggle { display: none; align-items: center; justify-content: center; width: 46px; height: 46px; border: 1px solid rgba(240,187,117,0.4); background: transparent; border-radius: 8px; cursor: pointer; }
.mobile-panel { display: flex; flex-direction: column; gap: 4px; padding: 8px clamp(18px,5vw,52px) 20px; border-top: 1px solid rgba(240,187,117,0.15); }
.mobile-panel a { color: #FFFDF8; font-family: 'Raleway', sans-serif; font-weight: 500; font-size: 16px; padding: 12px 0; }
.mobile-panel[hidden] { display: none; }

@media (max-width: 900px) {
  .nav-desktop { display: none !important; }
  .mobile-toggle { display: inline-flex !important; }
}
@media (min-width: 901px) {
  .mobile-toggle { display: none !important; }
  .mobile-panel { display: none !important; }
}

/* Hero */
.hero { position: relative; min-height: min(84vh, 680px); display: flex; align-items: flex-end; overflow: hidden; }
.hero-slider { position: absolute; inset: 0; z-index: 0; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 900ms ease; overflow: hidden; }
.hero-slide.is-active { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.1); transition: transform 7s ease-out; }
.hero-slide.is-active img { transform: scale(1); }
.hero-overlay { position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(180deg, rgba(30,18,9,0.15) 0%, rgba(30,18,9,0.3) 45%, rgba(24,14,7,0.88) 100%); }
.hero-content {
  position: relative; z-index: 2; max-width: 640px; width: 100%;
  margin: 0 clamp(18px,5vw,52px) clamp(56px,8vw,84px);
  background: rgba(28,17,9,0.5);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border: 1px solid rgba(240,187,117,0.22);
  border-radius: 18px;
  padding: clamp(30px,4.5vw,46px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.eyebrow { font-size: clamp(12px,2.6vw,14px); letter-spacing: 0.14em; text-transform: uppercase; color: #A2754A; font-weight: 700; margin-bottom: 14px; }
.eyebrow--light { color: #F0BB75; font-size: clamp(12px,2.6vw,14px); }
.hero-content h1 { color: #FFFDF8; font-size: clamp(32px,5.2vw,50px); line-height: 1.1; margin: 0 0 16px; letter-spacing: -0.01em; }
.hero-content p { color: rgba(255,253,248,0.92); font-size: clamp(15px,2.1vw,17px); line-height: 1.6; margin: 0 0 26px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-dots { position: absolute; z-index: 2; right: clamp(18px,5vw,52px); bottom: clamp(24px,4vw,36px); display: flex; gap: 8px; }
.hero-dot { width: 28px; height: 4px; border-radius: 999px; border: none; background: rgba(255,253,248,0.35); cursor: pointer; padding: 0; transition: background 200ms ease; }
.hero-dot.is-active { background: #F0BB75; }

.btn { display: inline-flex; align-items: center; justify-content: center; border-radius: 8px; padding: 15px 30px; font-family: 'Raleway', sans-serif; font-weight: 600; font-size: 15px; transition: all 240ms cubic-bezier(.4,0,.2,1); }
.btn-primary { background: #A2754A; color: #FFFDF8; }
.btn-primary:hover { background: #5C4836; color: #FFFDF8; }
.btn-outline { background: transparent; color: #FFFDF8; border: 1.5px solid rgba(255,253,248,0.8); }
.btn-outline:hover { background: #FFFDF8; color: #342010; }
.btn-outline--light:hover { background: #FFF7E8; color: #5C4836; }

/* Sections */
.section { padding: clamp(48px,8vw,100px) clamp(18px,5vw,52px); }
.section--light { background: #FFFFFF; }
.section--brand { background: #B18654; }
.section--dark { background: #342010; }
.section-inner { max-width: 1320px; margin: 0 auto; }
.two-col { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px,1fr)); gap: clamp(36px,5vw,72px); align-items: center; }
.body-text { color: #342010; font-weight: 500; font-size: clamp(16px,2.2vw,18px); line-height: 1.75; margin: 0 0 20px; }
.tag-row { display: flex; flex-wrap: wrap; gap: 10px; }
.tag { background: #F7EEDB; color: #5C4836; font-size: 14px; font-weight: 600; padding: 9px 16px; border-radius: 999px; }
.section h2 { color: #342010; font-size: clamp(26px,4.2vw,42px); line-height: 1.1; margin: 0 0 22px; letter-spacing: -0.01em; }
.section h2.light { color: #FFFDF8; }
.about-photo { position: relative; aspect-ratio: 4/5; border-radius: 10px; overflow: hidden; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }

.gallery-grid { columns: 4 220px; column-gap: clamp(12px,2vw,18px); }
.gallery-grid img { width: 100%; display: block; margin-bottom: clamp(12px,2vw,18px); border-radius: 10px; break-inside: avoid; }
@media (max-width: 640px) { .gallery-grid { columns: 2 160px; } }

.section-heading { text-align: center; max-width: 720px; margin: 0 auto clamp(36px,5vw,56px); }
.section-heading h2 { margin-bottom: 16px; }
.lead { color: #342010; font-weight: 500; font-size: clamp(16px,2.4vw,19px); line-height: 1.6; margin: 0; }
.lead--light { color: rgba(255,253,248,0.92); }

.card-grid { display: grid; gap: clamp(16px,2.6vw,22px); }
.card-grid--4 { grid-template-columns: repeat(auto-fit, minmax(min(100%,260px),1fr)); }
.card-grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%,280px),1fr)); gap: clamp(16px,2.5vw,22px); }

.team-card { background: #FFF7E8; border-radius: 10px; padding: clamp(24px,3vw,32px); display: flex; flex-direction: column; gap: 12px; }
.team-card h3 { color: #342010; font-size: clamp(18px,2.4vw,21px); line-height: 1.2; }
.team-card p { color: #342010; font-weight: 500; font-size: 16px; line-height: 1.65; margin: 0; }

.notice { max-width: 900px; margin: 0 auto clamp(32px,4vw,44px); background: #FFF7E8; border-left: 4px solid #885F38; border-radius: 6px; padding: 16px 20px; display: flex; gap: 14px; align-items: flex-start; }
.notice svg { flex: none; margin-top: 2px; }
.notice div { color: #5C4836; font-size: 15px; line-height: 1.55; }
.notice strong { color: #342010; }
.notice--dark { background: rgba(240,187,117,0.1); border-left-color: #F0BB75; }
.notice--dark div { color: rgba(255,253,248,0.85); }
.notice--dark strong { color: #F0BB75; }

.benefit-card { background: #fff; border: 1px solid #E7DCC6; border-radius: 10px; padding: clamp(22px,3vw,30px); display: flex; flex-direction: column; gap: 10px; }
.benefit-card h3 { color: #342010; font-size: 19px; }
.benefit-card p { color: #342010; font-weight: 500; font-size: 16px; line-height: 1.6; margin: 0; }

.testimonial-card { background: #FFF7E8; border-radius: 10px; padding: clamp(24px,3vw,30px); margin: 0; display: flex; flex-direction: column; gap: 18px; }
.testimonial-card blockquote { color: #342010; font-family: 'Raleway', sans-serif; font-weight: 500; font-size: clamp(16px,2.2vw,18px); line-height: 1.5; margin: 0; }
.testimonial-card figcaption { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.avatar { width: 52px; height: 52px; border-radius: 999px; overflow: hidden; flex: none; font-size: 10px; }
.avatar-initials { width: 52px; height: 52px; border-radius: 999px; flex: none; background: #A2754A; color: #FFFDF8; display: flex; align-items: center; justify-content: center; font-family: 'Raleway', sans-serif; font-weight: 700; font-size: 17px; }
.testimonial-card .name { font-weight: 700; color: #342010; font-size: 16px; }
.testimonial-card .role { color: #5C4836; font-weight: 500; font-size: 14px; }

/* Vagas */
.vagas-controls { display: flex; flex-direction: column; gap: clamp(14px,2.4vw,18px); margin-bottom: clamp(24px,3.5vw,36px); }
.search-box { display: flex; align-items: center; gap: 12px; background: #FFF7E8; border-radius: 10px; padding: 0 18px; width: 100%; max-width: 540px; margin: 0 auto; }
.search-box input { flex: 1; border: none; background: transparent; outline: none; font-family: 'Raleway', Arial, sans-serif; font-size: 15px; color: #342010; padding: 15px 0; min-width: 0; }
.search-box svg { flex: none; }
.search-box button { flex: none; border: none; background: rgba(52,32,16,0.08); width: 26px; height: 26px; border-radius: 999px; cursor: pointer; color: #5C4836; font-size: 15px; line-height: 1; display: flex; align-items: center; justify-content: center; }
.search-box button[hidden] { display: none; }

.chip-row { display: flex; gap: 10px; overflow-x: auto; padding: 4px 2px 8px; scroll-snap-type: x proximity; justify-content: center; scrollbar-width: none; -ms-overflow-style: none; }
.chip-row::-webkit-scrollbar { display: none; }
.chip { padding: 11px 20px; border-radius: 999px; border: 1px solid rgba(255,247,232,0.55); background: #FFF7E8; color: #5C4836; font-family: 'Raleway', sans-serif; font-weight: 600; font-size: 14px; white-space: nowrap; cursor: pointer; flex: none; scroll-snap-align: start; transition: background 240ms cubic-bezier(.4,0,.2,1), color 240ms cubic-bezier(.4,0,.2,1); }
.chip.active { border-color: #342010; background: #342010; color: #F0BB75; }

.count-label { text-align: center; color: rgba(255,253,248,0.9); font-size: 14px; font-weight: 600; letter-spacing: 0.02em; min-height: 20px; }

.vagas-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%,290px),1fr)); gap: clamp(16px,2.6vw,24px); }
.vaga-card { background: #FFF7E8; border-radius: 10px; overflow: hidden; display: flex; flex-direction: column; border: 1px solid rgba(52,32,16,0.08); }
.vaga-photo { position: relative; aspect-ratio: 16/11; background: #e6d8bd; }
.vaga-photo img { width: 100%; height: 100%; object-fit: cover; }
.vaga-photo--clickable { cursor: pointer; }
.vaga-sector-badge { position: absolute; top: 12px; left: 12px; background: rgba(52,32,16,0.82); color: #F0BB75; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; }
.vaga-body { padding: clamp(18px,2.6vw,22px); display: flex; flex-direction: column; gap: 6px; flex: 1; }
.vaga-body h3 { color: #342010; font-size: clamp(18px,2.6vw,21px); line-height: 1.2; margin-bottom: 8px; }
.vaga-title-link { cursor: pointer; }
.vaga-title-link:hover { color: #A2754A; }
.vaga-body p { color: #342010; font-weight: 500; font-size: 15.5px; line-height: 1.6; margin: 0 0 14px; flex: 1; }
.read-more-link { background: none; border: none; padding: 0; margin-left: 4px; font-family: 'Raleway', sans-serif; font-weight: 700; font-size: 14px; color: #A2754A; cursor: pointer; text-decoration: underline; white-space: nowrap; }
.read-more-link:hover { color: #342010; }
.vaga-apply { margin-top: 8px; display: flex; align-items: center; justify-content: center; gap: 9px; background: #25D366; color: #0A2A17; border-radius: 8px; padding: 13px 16px; font-family: 'Raleway', sans-serif; font-weight: 700; font-size: 15px; transition: filter 240ms cubic-bezier(.4,0,.2,1); }
.vaga-apply:hover { filter: brightness(0.93); color: #0A2A17; }
.vaga-apply-lead { margin-top: 14px; font-family: 'Raleway', sans-serif; font-weight: 600; font-size: 13.5px; color: #7A5E42; text-align: center; }
.vaga-apply--secondary { margin-top: 8px; background: transparent; border: 1.5px solid #25D366; color: #1B7A44; }
.vaga-apply--secondary:hover { background: rgba(37,211,102,0.1); color: #1B7A44; }

/* Botão flutuante de WhatsApp */
.chat-fab {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  width: 58px; height: 58px; border-radius: 999px; background: #25D366; color: #0A2A17;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25); transition: transform 200ms ease, filter 200ms ease;
}
.chat-fab:hover { transform: scale(1.06); filter: brightness(0.96); color: #0A2A17; }
@media (max-width: 640px) { .chat-fab { right: 16px; bottom: 16px; width: 52px; height: 52px; } }

/* Popup de detalhes da vaga */
.vaga-details-modal { position: fixed; inset: 0; background: rgba(52,32,16,0.55); display: flex; align-items: center; justify-content: center; padding: 20px; z-index: 100; overflow-y: auto; }
.vaga-details-modal[hidden] { display: none; }
.vaga-details-box { position: relative; background: #FFFDF8; border-radius: 12px; max-width: 560px; width: 100%; margin: auto; max-height: calc(100vh - 40px); overflow-y: auto; }
.vaga-details-close { position: absolute; top: 14px; right: 14px; z-index: 2; width: 34px; height: 34px; border-radius: 999px; border: none; background: rgba(52,32,16,0.08); color: #5C4836; font-size: 15px; cursor: pointer; }
.vaga-details-close:hover { background: rgba(52,32,16,0.16); }
.vaga-details-photo { aspect-ratio: 16/9; }
.vaga-details-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
#vagaDetailsBody { padding: clamp(22px,4vw,32px); }
.vaga-details-photo + .vaga-sector-badge--static { margin-top: 20px; }
.vaga-sector-badge--static { display: inline-block; position: static; margin-bottom: 14px; }
#vagaDetailsBody h2 { color: #342010; font-size: clamp(22px,3.6vw,28px); line-height: 1.2; margin: 0 0 16px; }
.vaga-details-desc { color: #342010; font-size: 16px; line-height: 1.75; font-weight: 500; margin: 0 0 26px; }
.vaga-details-list { display: flex; flex-direction: column; gap: 22px; margin-bottom: 30px; padding-top: 22px; border-top: 1px solid #EEE1C6; }
.vaga-detail-row { display: flex; flex-direction: column; gap: 6px; }
#vagaDetailsBody .vaga-apply { margin-top: 6px; }
#vagaDetailsBody .vaga-apply-lead { margin-top: 20px; margin-bottom: 2px; }
.vaga-detail-label { font-family: 'Raleway', sans-serif; font-weight: 700; font-size: 12.5px; letter-spacing: 0.06em; text-transform: uppercase; color: #A2754A; }
.vaga-detail-value { color: #342010; font-size: 15.5px; font-weight: 500; line-height: 1.8; }
.vaga-details-desc p, .vaga-detail-value p { margin: 0 0 10px; }
.vaga-details-desc p:last-child, .vaga-detail-value p:last-child { margin-bottom: 0; }
.vaga-details-desc ul, .vaga-details-desc ol, .vaga-detail-value ul, .vaga-detail-value ol { margin: 0 0 10px; padding-left: 22px; }
.vaga-details-desc li, .vaga-detail-value li { margin-bottom: 6px; }
.vaga-details-desc li:last-child, .vaga-detail-value li:last-child { margin-bottom: 0; }

.no-results { text-align: center; padding: clamp(36px,7vw,64px) 20px; max-width: 440px; margin: 0 auto; }
.no-results[hidden] { display: none; }
.no-results-icon { width: 68px; height: 68px; margin: 0 auto 20px; border-radius: 999px; background: rgba(255,247,232,0.16); display: flex; align-items: center; justify-content: center; }
.no-results h3 { color: #FFFDF8; font-size: clamp(20px,4vw,26px); margin: 0 0 12px; }
.no-results p { color: rgba(255,253,248,0.82); font-size: 15px; line-height: 1.6; margin: 0 0 24px; }
.no-results strong { color: #F0BB75; }
.no-results button { cursor: pointer; }

/* Footer */
.site-footer { background: #342010; padding: clamp(44px,6vw,72px) clamp(18px,5vw,52px) 30px; }
.footer-inner { max-width: 1320px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: clamp(28px,4vw,48px); }
.footer-logo { height: 44px; width: auto; margin-bottom: 20px; }
.footer-inner p { color: rgba(255,253,248,0.72); font-size: 14px; line-height: 1.7; margin: 0; }
.footer-heading { color: #F0BB75; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; margin-bottom: 16px; }
.footer-inner a { color: rgba(255,253,248,0.82); font-size: 15px; display: block; margin-bottom: 10px; word-break: break-word; }
.footer-inner a:hover { color: #F0BB75; }
.social-row { display: flex; gap: 12px; }
.social-btn { width: 42px; height: 42px; border: 1px solid rgba(240,187,117,0.4); border-radius: 999px; display: flex; align-items: center; justify-content: center; margin-bottom: 0; padding: 0; line-height: 0; }
.social-btn svg { display: block; flex: none; }
.footer-bottom { max-width: 1320px; margin: clamp(32px,4.5vw,48px) auto 0; padding-top: 22px; border-top: 1px solid rgba(255,253,248,0.14); color: rgba(255,253,248,0.5); font-size: 13px; }
