/* Montieri Global — design system v2 (linguagem visual inspirada em consco.ca,
   paleta oficial Montieri).
   Verde Montieri #0F2B22 · Verde Listrado #1E4235 · Bege Montieri #E8DFCB · Branco #FFFFFF
   Dourado de apoio (pin do mapa / bandeirola): #B8862E
*/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&display=swap');

:root {
  --verde-montieri: #0F2B22;
  --verde-listrado: #1E4235;
  --bege-montieri: #E8DFCB;
  --bege-claro: #F4EFE6;
  --branco: #FFFFFF;
  --dourado: #B8862E;
  --dourado-claro: #D8A94A;
  --texto-claro: #F4EFE6;
  --texto-escuro: #17241E;

  /* fonte única (pedido do Pedro): Cormorant Garamond em tudo, inclusive logo */
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Cormorant Garamond', Georgia, serif;

  --max-width: 1200px;
  --raio-bloco: 64px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; max-width: 100%; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--texto-escuro);
  background: var(--bege-claro);
  line-height: 1.55;
  font-size: 19px;      /* Cormorant é mais delicada: sobe um pouco p/ leitura */
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.14;
  margin: 0 0 .5em;
}
p { margin: 0 0 1em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 700;
}

.btn {
  display: inline-block;
  padding: 15px 32px;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid currentColor;
  border-radius: 2px;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.btn-bege { color: var(--verde-montieri); background: var(--bege-montieri); border-color: var(--bege-montieri); }
.btn-bege:hover { background: var(--branco); }
.btn-outline-claro { color: var(--texto-claro); background: transparent; }
.btn-outline-claro:hover { background: rgba(244,239,230,.12); }
.btn-verde { color: var(--bege-claro); background: var(--verde-montieri); border-color: var(--verde-montieri); }
.btn-verde:hover { background: var(--verde-listrado); }

/* ---------- listra (motivo da marca) — verde e bege intercalados, blocos iguais ---------- */
.listra {
  height: 5px;
  background-image: repeating-linear-gradient(90deg,
    var(--verde-montieri) 0 7px, var(--bege-montieri) 7px 14px);
  background-size: 14px 100%;
  animation: listra-esteira 1s linear infinite;
}
/* esteira: os blocos correm continuamente para a esquerda (containers em movimento) */
@keyframes listra-esteira { to { background-position-x: -14px; } }
@media (prefers-reduced-motion: reduce) { .listra { animation: none; } }

/* ---------- wallpaper de listras (textura sutil de fundo nas seções claras) ---------- */
.section-clara, .section-bege { position: relative; }
.section-clara::before, .section-bege::before {
  content: ''; position: absolute; inset: 0;
  background: url('assets/listras-site.jpg') repeat;
  background-size: 520px auto;
  opacity: .06;
  pointer-events: none;
}
.section-clara > .container, .section-bege > .container { position: relative; z-index: 1; }

/* ---------- motivo das montanhas (marca) ---------- */
/* divisor: linha — montanha — linha */
.divisor-monte {
  display: flex; align-items: center; justify-content: center;
  gap: 20px; margin: 0 auto 40px; max-width: 340px;
  color: var(--dourado);
}
.divisor-monte::before, .divisor-monte::after {
  content: ''; height: 1px; flex: 1;
  background: currentColor; opacity: .4;
}
.divisor-monte svg { width: 46px; height: auto; }
.section-verde .divisor-monte, .mercados .divisor-monte { color: var(--dourado-claro); }

/* marca d'água grande de montanha atrás de uma seção */
.marca-dagua {
  position: absolute; left: 50%; bottom: 0; transform: translateX(-50%);
  width: min(880px, 92%); pointer-events: none; z-index: 0;
  opacity: .05;
}
.marca-dagua svg { width: 100%; height: auto; display: block; }

/* ---------- header ---------- */
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: var(--verde-montieri);
  color: var(--texto-claro);
}
.topbar .container {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; padding-bottom: 16px;
}
.topbar .marca {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--serif); font-size: 20px; letter-spacing: .04em;
}
.topbar .marca img { height: 30px; width: auto; }
.nav { display: flex; align-items: center; gap: 26px; }
.nav-links { display: flex; align-items: center; gap: 22px; }
.nav a.link {
  font-size: 13px; letter-spacing: .1em; text-transform: uppercase;
  opacity: .85; white-space: nowrap;
}
.nav a.link:hover { opacity: 1; }
.nav .btn { white-space: nowrap; }
.idiomas { display: flex; gap: 6px; font-size: 12px; letter-spacing: .06em; white-space: nowrap; }
.idiomas a { opacity: .55; padding: 2px 4px; }
.idiomas a.ativo, .idiomas a:hover { opacity: 1; }

@media (max-width: 900px) { .nav-links { display: none; } }
@media (max-width: 560px) {
  .topbar .marca { font-size: 15px; gap: 8px; }
  .topbar .marca img { height: 22px; }
  .nav { gap: 10px; }
  .idiomas { display: none; }
  .nav .btn { padding: 11px 16px; font-size: 11px; }
}

/* ---------- HERO (bloco verde com video + canto arredondado + bandeirola) ---------- */
.hero-wrap { position: relative; background: var(--bege-claro); }
.hero {
  position: relative;
  min-height: 88vh;
  background: var(--verde-montieri);
  color: var(--texto-claro);
  overflow: hidden;
  border-bottom-left-radius: var(--raio-bloco);
  border-bottom-right-radius: var(--raio-bloco);
}
.hero video, .hero .hero-fallback {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,43,34,.55) 0%, rgba(15,43,34,.78) 70%, rgba(15,43,34,.92) 100%);
}
.hero .container {
  position: relative; z-index: 2;
  min-height: 88vh;
  display: flex; flex-direction: column; justify-content: center;
  max-width: 820px; margin-left: max(28px, calc((100vw - var(--max-width)) / 2));
  padding-top: 120px; padding-bottom: 120px;
}
.hero h1 { font-size: clamp(30px, 6vw, 68px); color: var(--branco); margin-bottom: .35em; overflow-wrap: break-word; }
.hero .lead { font-size: 20px; max-width: 560px; opacity: .92; overflow-wrap: break-word; }
.hero .eyebrow { overflow-wrap: break-word; }
.hero .ctas { display: flex; gap: 16px; margin-top: 30px; flex-wrap: wrap; }

/* botao-bandeirola (ribbon), sobrepondo a borda inferior do hero */
.bandeirola {
  position: absolute; z-index: 5;
  right: 8%; bottom: -26px;
  background: var(--dourado);
  color: #2A1D06;
  padding: 20px 22px 30px;
  width: 120px; text-align: center;
  font-family: var(--sans); font-weight: 600;
  font-size: 13px; letter-spacing: .12em; text-transform: uppercase;
  line-height: 1.3;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 84%, 0 100%);
  box-shadow: 0 12px 28px rgba(0,0,0,.28);
  transition: background .2s ease;
}
.bandeirola:hover { background: var(--dourado-claro); }
@media (max-width: 560px) {
  .hero { min-height: 78vh; }
  .hero .container { min-height: 78vh; margin-left: 0; padding: 96px 22px; }
  .hero .lead { font-size: 17px; }
  .hero .eyebrow { letter-spacing: .12em; }
  .bandeirola { right: 20px; width: 96px; font-size: 11px; padding: 16px 14px 26px; }
}

/* ---------- secoes gerais ---------- */
section { padding: 104px 0; }
.section-bege { background: var(--bege-montieri); }
.section-clara { background: var(--bege-claro); }
.section-verde { background: var(--verde-montieri); color: var(--texto-claro); position: relative; overflow: hidden; }
.section-verde > .container { position: relative; z-index: 1; }
.section-verde h2, .section-verde h3 { color: var(--branco); }

/* seção de contato com a foto de montanhas de fundo (tema da marca) + overlay verde */
.contato-montanha {
  background:
    linear-gradient(rgba(15,43,34,.86), rgba(15,43,34,.93)),
    url('assets/hero-montanhas.jpg') center/cover no-repeat;
}
.section-branco { background: var(--branco); }

.section-head { max-width: 660px; margin-bottom: 56px; }
.section-head .eyebrow { color: var(--dourado); margin-bottom: 14px; display: block; }
.section-verde .section-head .eyebrow { color: var(--dourado-claro); }
.section-head h2 { font-size: clamp(30px, 4.2vw, 44px); }

/* ---------- sobre (2 colunas) ---------- */
.sobre { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.sobre .foto {
  border-radius: 20px; overflow: hidden;
  aspect-ratio: 4/5; box-shadow: 0 20px 50px rgba(15,43,34,.18);
}
.sobre .foto img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 900px) { .sobre { grid-template-columns: 1fr; gap: 40px; } }

/* ---------- O que fazemos: tira de fotos com cantos arredondados ---------- */
.fotos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
@media (max-width: 900px) { .fotos-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; } }
.foto-card {
  border-radius: 18px; overflow: hidden; position: relative;
  background: var(--verde-montieri);
  box-shadow: 0 16px 40px rgba(15,43,34,.16);
}
.foto-card .img {
  aspect-ratio: 4/3; overflow: hidden;
}
.foto-card .img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.foto-card:hover .img img { transform: scale(1.04); }
.foto-card .txt { padding: 24px 24px 28px; background: var(--branco); }
.foto-card h3 { font-size: 21px; margin-bottom: 8px; }
.foto-card p { font-size: 14.5px; opacity: .82; margin: 0; }

/* ---------- servicos detalhados (blocos alternados imagem + texto) ---------- */
.servico {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  margin-top: 72px;
}
.servico:first-of-type { margin-top: 0; }
.servico .foto-servico {
  border-radius: 20px; overflow: hidden; aspect-ratio: 4/3;
  box-shadow: 0 20px 50px rgba(15,43,34,.20);
}
.servico .foto-servico img { width: 100%; height: 100%; object-fit: cover; }
.servico.invertido .txt-servico { order: 2; }
.servico.invertido .foto-servico { order: 1; }
.servico .num-servico {
  font-family: var(--serif); font-size: 17px; color: var(--dourado);
  letter-spacing: .1em; display: block; margin-bottom: 10px; font-weight: 700;
}
.servico h3 { font-size: clamp(27px, 3.3vw, 33px); margin-bottom: 14px; }
.servico .intro { font-size: 18.5px; opacity: .9; margin-bottom: 22px; }
.servico ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.servico ul li {
  position: relative; padding-left: 30px; font-size: 17px; opacity: .88;
}
.servico ul li::before {
  content: ''; position: absolute; left: 0; top: 7px;
  width: 14px; height: 10px;
  background: no-repeat center/contain
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 24' fill='%23B8862E'%3E%3Cpath d='M2 22 L14 6 L20 13 L26 4 L33 12 L38 7 L46 22 Z'/%3E%3C/svg%3E");
}
@media (max-width: 860px) {
  .servico { grid-template-columns: 1fr; gap: 28px; margin-top: 56px; }
  .servico.invertido .txt-servico { order: 2; }
  .servico.invertido .foto-servico { order: 1; }
  .servico .foto-servico { order: 1; }
  .servico .txt-servico { order: 2; }
}

/* ---------- banner de video full-width ---------- */
.video-banner {
  position: relative; height: 62vh; min-height: 420px; overflow: hidden;
  display: flex; align-items: center;
}
.video-banner video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.video-banner::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(15,43,34,.82) 0%, rgba(15,43,34,.45) 55%, rgba(15,43,34,.2) 100%);
}
.video-banner .container { position: relative; z-index: 2; color: var(--texto-claro); }
.video-banner h2 { color: var(--branco); font-size: clamp(28px, 4vw, 42px); max-width: 560px; }
.video-banner p { max-width: 480px; opacity: .9; }

/* ---------- mercados: mapa full-bleed ---------- */
.mercados { position: relative; background: var(--verde-montieri); color: var(--texto-claro); padding: 104px 0; }
.mapa {
  position: relative; margin-top: 40px;
  border-radius: 20px; overflow: hidden;
  border: 1px solid rgba(244,239,230,.12);
}
.mapa img { width: 100%; display: block; }
.mercados-chips { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.chip {
  padding: 11px 22px; border: 1px solid rgba(244,239,230,.3);
  border-radius: 999px; font-size: 14px; letter-spacing: .04em;
  font-family: var(--sans); color: var(--texto-claro); background: transparent;
  cursor: pointer; transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.chip:hover { border-color: var(--dourado-claro); color: var(--dourado-claro); }
.chip.destaque { background: var(--dourado); color: #2A1D06; border-color: var(--dourado); font-weight: 600; }
.chip.destaque:hover { color: #2A1D06; }
/* lista de países da região selecionada */
.mercados-paises { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; min-height: 34px; }
.pais-tag {
  font-size: 13.5px; letter-spacing: .02em; color: var(--texto-claro);
  padding: 6px 14px; border-radius: 999px;
  background: rgba(244,239,230,.06); border: 1px solid rgba(244,239,230,.14);
}

/* ---------- diferenciais ---------- */
.diferenciais { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
@media (max-width: 900px) { .diferenciais { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .diferenciais { grid-template-columns: 1fr; } }

/* diferenciais em 2 colunas ao lado do video vertical */
.dif-layout { display: grid; grid-template-columns: 1.55fr 1fr; gap: 60px; align-items: center; }
.dif-texto .diferenciais { grid-template-columns: repeat(2, 1fr); gap: 34px 40px; margin-top: 24px; }
.dif-video {
  border-radius: 20px; overflow: hidden; aspect-ratio: 3 / 4;
  box-shadow: 0 24px 60px rgba(15,43,34,.28); background: var(--verde-montieri);
}
.dif-video video { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 900px) {
  .dif-layout { grid-template-columns: 1fr; gap: 40px; }
  .dif-video { max-width: 360px; margin: 0 auto; order: 2; }
}
@media (max-width: 560px) { .dif-texto .diferenciais { grid-template-columns: 1fr; } }

/* ---------- galeria: Viagens de Negócios (mosaico) ---------- */
.galeria-mosaico { column-count: 4; column-gap: 18px; margin-top: 44px; }
.galeria-mosaico img {
  width: 100%; display: block; margin: 0 0 18px; border-radius: 16px;
  break-inside: avoid; box-shadow: 0 16px 40px rgba(15,43,34,.20);
  transition: transform .5s ease;
}
.galeria-mosaico img:hover { transform: translateY(-4px) scale(1.01); }
@media (max-width: 1100px) { .galeria-mosaico { column-count: 3; } }
@media (max-width: 760px) { .galeria-mosaico { column-count: 2; } }
@media (max-width: 460px) { .galeria-mosaico { column-count: 1; } }
.galeria-mosaico img { cursor: zoom-in; }

/* lightbox: foto ampliada em popup */
.lightbox {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(9, 24, 19, .93);
  display: none; align-items: center; justify-content: center; padding: 30px;
  opacity: 0; transition: opacity .25s ease;
}
.lightbox.aberto { display: flex; opacity: 1; }
.lightbox img {
  max-width: min(92vw, 1100px); max-height: 88vh;
  border-radius: 14px; box-shadow: 0 30px 80px rgba(0,0,0,.55); object-fit: contain;
}
.lb-fechar {
  position: absolute; top: 18px; right: 26px;
  background: none; border: 0; color: #fff; font-size: 42px; line-height: 1;
  cursor: pointer; opacity: .85;
}
.lb-fechar:hover { opacity: 1; }
.lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.10); border: 0; color: #fff;
  width: 56px; height: 56px; border-radius: 50%; font-size: 30px; line-height: 1;
  cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s;
}
.lb-nav:hover { background: rgba(255,255,255,.22); }
.lb-prev { left: 24px; } .lb-next { right: 24px; }
@media (max-width: 560px) { .lb-nav { width: 44px; height: 44px; font-size: 24px; } .lb-prev { left: 8px; } .lb-next { right: 8px; } }
.diferencial .icone-monte { width: 68px; height: auto; margin-bottom: 16px; display: block; }

/* glifo de montanha grande como marca d'água (imagem, alterna clara/verde por contraste) */
.monte-watermark {
  position: absolute; pointer-events: none; z-index: 0;
  opacity: .07;
}
.monte-watermark img { width: 100%; height: auto; display: block; }
.mercados .monte-watermark { left: 50%; transform: translateX(-50%); bottom: 30px; width: min(760px, 80%); z-index: 0; opacity: .06; }
.mercados > .container { position: relative; z-index: 1; }
.diferencial h3 { font-size: 18px; margin-bottom: 6px; }
.diferencial p { font-size: 15px; opacity: .82; margin: 0; }

/* ---------- contato ---------- */
.contato-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
@media (max-width: 900px) { .contato-grid { grid-template-columns: 1fr; } }
.contato-canal { display: block; padding: 20px 0; border-top: 1px solid rgba(244,239,230,.25); }
.contato-canal:first-child { border-top: none; }
.contato-canal .rotulo { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; opacity: .7; display: block; margin-bottom: 4px; }
.contato-canal .valor { font-family: var(--serif); font-size: 20px; }

/* ---------- footer ---------- */
footer { background: var(--verde-montieri); color: var(--texto-claro); padding: 42px 0 28px; font-size: 13px; }
footer .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; opacity: .82; }

/* ---------- botão flutuante do WhatsApp (fixo no canto, igual Chef Foods) ---------- */
.whatsapp-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 100;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,.28);
  transition: transform .2s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 32px; height: 32px; fill: #fff; }
@media (max-width: 560px) { .whatsapp-float { width: 52px; height: 52px; right: 16px; bottom: 16px; } }

/* ---------- aviso de rascunho ---------- */
.aviso-rascunho {
  background: var(--dourado); color: #2A1D06; text-align: center;
  font-size: 13px; letter-spacing: .03em; padding: 8px 16px;
}
