/* =========================================================================
   FAST CARICATURAS — FOLHA DE ESTILO
   Site institucional responsivo (desktop / tablet / celular)
   --------------------------------------------------------------------------
   Sumário:
     1.  RESET & BASE
     2.  TIPOGRAFIA & CORES (variáveis)
     3.  UTILITÁRIOS (layout, fotos, carrossel)
     4.  CABEÇALHO (header)
     5.  HERO
     6.  SEÇÃO REAÇÃO
     7.  FAIXAS DE TÍTULO (tradicional / digital / equipe)
     8.  CARICATURA TRADICIONAL
     9.  CARICATURA DIGITAL
     10. INTELIGÊNCIA ARTIFICIAL
     11. PRODUTOS POR ENCOMENDA
     12. EQUIPE FAST
     13. IVO FAVERO
     14. ORÇAMENTO (formulário)
     15. RODAPÉ
     16. LIGHTBOX (modal de imagens)
   ========================================================================= */


/* =========================================================================
   1. RESET & BASE
   ========================================================================= */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; overflow-x: hidden;}

body {
  font-family: 'Mulish', sans-serif;
  background: #fff;
  color: #143a5e;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; }

.flutuante {
  position: fixed;
  bottom: 10px;
  right:10px;
  z-index: 1000;
}


/* =========================================================================
   2. TIPOGRAFIA & CORES (variáveis)
   ========================================================================= */
:root {
  --navy:        #153a5d;  /* azul-marinho principal      */
  --navy-dark:   #0d2c49;  /* azul mais escuro (realces)  */
  --beige:       #f1ebe9;  /* bege das seções claras      */
  --orange:      #ffb11b;  /* laranja CTA                 */
  --text-navy:   #143a5e;  /* texto sobre fundo claro     */
  --text-blue:   #1d4e7d;  /* texto de parágrafo          */
  --text-light:  #dce6f0;  /* texto sobre fundo escuro    */
  --text-soft:   #cfdcea;  /* texto suave sobre escuro    */
  --font-head:   'Poppins', sans-serif;
  --font-body:   'Mulish', sans-serif;
  --font-script: 'Caveat', cursive;
}

input, textarea { font-family: var(--font-body); }


/* =========================================================================
   3. UTILITÁRIOS (layout, fotos, carrossel)
   ========================================================================= */

/* Cada seção ocupa a largura total da página, só com espaçamento lateral */
.section        { width: 100%; }
.section--navy  { background: var(--navy); }
.section--beige { background: var(--beige); }
.section--white { background: #fff; }

/* Conteúdo interno em largura total (sem container central) */
.wrap {
  width: 100%;
  padding: clamp(10px, 5vw, 30px) clamp(10px, 5vw, 30px);
}
.wrap--tight  { padding: clamp(0px, 0vw, 0px) clamp(0px, 0vw, 0px); }
.wrap--top  { padding: clamp(1px, 4vw, 0px) clamp(10px, 5vw, 30px); }
.wrap--center  { padding: clamp(0px, 5vw, 0px) clamp(10px, 5vw, 30px); }
.wrap--full   { min-height: 100vh; display: flex; align-items: center; }

/* Linha flexível com quebra automática (vira coluna no mobile) */
.row {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
}
.row--top     { align-items: flex-start; }
.row--stretch { align-items: stretch; }
.row--end     { align-items: flex-end; }

/* Colunas (a base em px define o ponto de quebra) */
.col          { flex: 1 1 360px; min-width: 300px; }
.col--narrow  { flex: 1 1 280px; min-width: 260px; }
.col--wide    { flex: 1.4 1 420px; min-width: 300px; }

/* Foto padrão com cantos e sombra */
.photo {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

/* Vídeo com mesmo tratamento das fotos */
.video {
  width: 560px;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .18);
  display: block;
  background: var(--navy-dark);
  cursor: pointer;
  object-fit: cover;
  margin: auto;
}

@media (max-width: 1015px) {
  .video {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  .wrap--center {
    padding: clamp(20px, 5vw, 0px) clamp(20px, 5vw, 30px);
  }
}

/* Carrossel horizontal com rolagem suave por toque/scroll */
.carousel {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  scrollbar-width: none;
  justify-content: flex-start;
}
.carousel > * { scroll-snap-align: start; flex: 0 0 auto; }
.carousel::-webkit-scrollbar { height: 8px; }
.carousel::-webkit-scrollbar-thumb { background: rgba(0, 0, 0, .25); border-radius: 8px; }

.carousel-wrap { position: relative; }

/* Imagens clicáveis do carrossel */
.carousel img { border-radius: 4px; cursor: pointer; }

/* Botões de navegação (setas) do carrossel */
.car-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: var(--navy);
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .25);
  z-index: 2;
}
.car-btn--prev { left: -6px; }
.car-btn--next { right: -6px; }

/* Parágrafos */
.lead {
  color: var(--text-blue);
  font-size: clamp(15px, 4vw, 27px);
  line-height: 1.55;
}
.lead--justify { text-align: justify; text-indent: 1.8em; }
.lead--light { color: var(--text-light); }

/* Listas sem marcador (usam "-" no próprio texto) */
.list {
  list-style: none;
  margin: 0;
  padding: 0;
  color: var(--text-blue);
  font-size: clamp(18px, 2vw, 32px);
  line-height: 1.6;
  text-align: justify;
}
.list--light { color: var(--text-light); }
.list li { margin-bottom: 0px; }
.list li:last-child { margin-bottom: 0; }

/* Lista com marcador padrão (bolinhas) */
.list-dot {
  margin: 0;
  padding: 0 0 0 22px;
  color: var(--text-light);
  font-size: clamp(18px, 2vw, 31px);
  line-height: 1.6;
  text-align: justify;
}
.list-dot li { margin-bottom: 12px; }
.list-dot li:last-child { margin-bottom: 0; }


/* =========================================================================
   4. CABEÇALHO (header)
   ========================================================================= */
.header {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
/* Imagem de fundo centralizada com 70% de transparência */
.header__bg {
  position: absolute;
  inset: 0;
  background: url('images/header_bg.jpg') center center / cover no-repeat;
  opacity: .3;
}
.header__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: clamp(34px, 2vw, 22px) clamp(28px, 5vw, 72px);
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 44px);
  flex-wrap: wrap;
  justify-content: center;
}
.header__logo { height: clamp(72px, 9vw, 150px); width: auto; flex: none; }
.header__title {
  margin: 0;
  flex: 1 1 360px;
  font-family: var(--font-head);
  font-weight: 800;
  color: #fff;
  font-size: clamp(20px, 2.6vw, 50px);
  line-height: 1.12;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .45);
}


/* =========================================================================
   5. HERO
   ========================================================================= */
.hero__inner {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
}
.hero__img { flex: 1 1 440px; min-width: 300px; z-index: 1; }
.hero__img img { width: 100%; height: auto; }
.hero__text {
  flex: 1 1 460px;
  min-width: 300px;
  padding: clamp(28px, 4vw, 36px) clamp(28px, 5vw, 72px) clamp(28px, 4vw, 36px) 0
}
.hero__social {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.hero__social-label {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--text-navy);
  font-size: clamp(19px, 2vw, 30px);
}
.hero__social img { height: clamp(34px, 4vw, 46px); width: auto; }

/* Título com realce de "pincel" amarelo atrás */
.hero__headline { position: relative; display: inline-block; margin: 6px 0 18px; }
.hero__brush {
  position: absolute;

  left: 0%;
  transform: translateX(-50%) skewY(-1.6deg);

  width: 140vw;
  height: 100px;
  top: 20px;

  background: url('./images/faixa-laranja.png') center/cover no-repeat;

  z-index: 0;
}
.hero__headline h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--text-navy);
  font-size: clamp(26px, 3.9vw, 67px);
  line-height: 1.02;
}
.hero__p {
  color: var(--text-blue);
  font-size: clamp(28px, 1.5vw, 22px);
  line-height: 1.5;
  text-align: justify;
  text-indent: 1.8em;
  margin: 0 0 12px;
}
.hero__p:last-of-type { margin-bottom: 22px; }

@media (max-width: 1015px) {
  .hero__p {
    font-size: clamp(18px, 1.5vw, 16px);
  }
  .hero__brush {
    left: 60%;
    transform: translateX(-50%) skewY(-1.6deg);
    top: -20px;
    height: 90px;
  }

  .hero__text {
    padding: clamp(0px, 4vw, 0px) clamp(28px, 5vw, 72px) clamp(28px, 4vw, 36px) clamp(28px, 4vw, 36px);
  }

  .hero__headline h2 br {
    display: none;
  }
}

/* Botão CTA laranja (Kaká) */
.cta { text-decoration: none; display: block; }
.cta__box {
  background: var(--orange);
  border-radius: 14px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.cta__text,
.cta__image {
    flex: 1 1 45%;
}

.cta__image {
    display: flex;
    justify-content: center;
}
.cta__text {
  font-family: var(--font-script);
  font-weight: 700;
  font-size: clamp(28px, 3vw, 42px);
  color: var(--text-navy);
  line-height: 1.04;
}
.cta__box img { height: clamp(150px, 7vw, 72px); width: auto; flex: none; }
.no-break {
  white-space: nowrap;
}


/* =========================================================================
   6. SEÇÃO REAÇÃO
   ========================================================================= */
.reacao {position: relative;}
.reacao__media { flex: 1 1 440px; min-width: 300px; }
.reacao__media .video { min-height: clamp(300px, 42vw, 560px); }
.reacao__text {
  flex: 1 1 460px;
  min-width: 300px;
  padding: clamp(28px, 4vw, 56px) clamp(28px, 5vw, 72px) clamp(28px, 4vw, 56px) 0;
}
.reacao__photo { margin-bottom: 18px; position: absolute; top: -80px; }
.reacao__photo img { width: 100%; height: auto; border-radius: 4px; width: 680px; }
.reacao__title {
  margin: 150px 0 18px 0;
  font-family: var(--font-head);
  font-weight: 800;
  color: #fff;
  font-size: clamp(28px, 3.6vw, 50px);
  line-height: 1.04;
}
.reacao__p {
  color: var(--text-light);
  font-size: clamp(28px, 1.4vw, 18px);
  line-height: 1.55;
  text-indent: 1.8em;
  margin: 0 0 14px;
  text-align: justify;
}
.reacao__p:last-child { margin-bottom: 0; }

@media (max-width: 768px) {
  .reacao__photo { position: relative; top: auto; }
  .reacao__photo img { width: 100%; }
  .reacao__text {
    padding: clamp(0px, 0vw, 0px) clamp(0px, 0vw, 0px) clamp(0px, 0vw, 0px) 0;
  }
  .reacao__title {
    margin: 0px 0 18px 0;
  }
  .reacao__p {
    font-size: clamp(18px, 1.4vw, 18px);
  }
  .cta__box img { height: clamp(80px, 7vw, 72px); }
}


/* =========================================================================
   7. FAIXAS DE TÍTULO (tradicional / digital / equipe / IA)
   ========================================================================= */
.faixa-car-trad {
  margin-top: 70px;
  position: relative;
}
.band {
  position: relative;
}
.faixa-car-trad .band__label {
  position: absolute;
  top: -40px;
  left: 5vw;
}
.faixa-car-trad .band__desc {
  width: 60%;
  margin-left: 40%;
}
.band__inner {
  width: 100%;
  padding: clamp(10px, 3vw, 30px) clamp(10px, 5vw, 30px);
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 4vw, 52px);
  align-items: center;
}
.band__label { flex: 1 1 260px; min-width: 240px; line-height: .9; }

/* Palavra com contorno (stroke) sobre fundo escuro */
.stroke-word {
  display: inline-block;
  background: var(--navy);
  padding: 5px 12px;
  font-family: var(--text-soft);
  font-weight: 700;
  font-size: clamp(30px, 4.4vw, 65px);
  color: #ffffff;
}
/* Palavra preenchida em branco */
.fill-word {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(38px, 5.4vw, 85px);
  color: #fff;
}
.band__desc {
  min-width: 300px;
  width: 80%;
  margin-left: 20%;
}
.band__desc h3 {
  margin: 0 0 10px;
  font-family: var(--font-head);
  font-weight: 800;
  color: #fff;
  font-size: clamp(19px, 3vw, 47px);
  line-height: 1.1;
  text-transform: uppercase;
  text-align: center;
}
.band__desc p { margin: 0; color: var(--text-soft); font-size: clamp(20px, 2vw, 32px); text-align: center; }

@media (max-width: 1015px) {
  .faixa-car-trad .band__label {
    top: -20px;
    width: 90vw;
    text-align: center;
  }
  .faixa-car-trad .band__desc {
    width: 100%;
    margin-left: 0;
    margin-top: 60px;
  }
}


/* =========================================================================
   8. CARICATURA TRADICIONAL
   ========================================================================= */
.trad__media { flex: 1 1 280px; min-width: 260px; align-self: stretch; }
.trad__media .video { height: 100%; min-height: clamp(360px, 52vw, 640px); }
.trad__body { flex: 1 1 400px; min-width: 300px; }
.trad__carousel { margin-top: clamp(24px, 3vw, 40px); }
.trad__carousel img { height: clamp(200px, 30vw, 400px); width: auto; }


/* =========================================================================
   9. CARICATURA DIGITAL
   ========================================================================= */
.digital__media { flex: 1 1 300px; min-width: 260px; }
.digital__media .video { height: 100%; min-height: clamp(300px, 40vw, 520px); }
.digital__body {
  flex: 1.4 1 420px;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 2.4vw, 28px);
}
.digital__top {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(18px, 2.4vw, 32px);
  align-items: center;
}
.digital__top .list { flex: 1 1 280px; min-width: 240px; }
.digital__woman { flex: 0 1 340px; min-width: 180px; }
.digital__woman img { width: 100%; height: auto; border-radius: 4px; }
.prod__carousel img { width: clamp(150px, 20vw, 290px); height: auto; }

/* Card azul com galeria + texto + CTA */
.digital__card {
  background: var(--navy);
  border-radius: 20px;
  padding: clamp(22px, 3vw, 36px);
  margin-top: clamp(28px, 3vw, 44px);
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 3vw, 40px);
  align-items: center;
}
.digital__card-media { flex: 1 1 280px; min-width: 260px; position: relative; }
.digcard__carousel img { height: 500px; width: auto; }
.digital__card-text { flex: 1 1 360px; min-width: 300px; text-align: justify; }
.digital__card-text p:first-child {
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(17px, 2vw, 36px);
  line-height: 1.35;
}
.digital__highlight {
  margin: 0 0 22px;
  color: var(--orange);
  font-weight: 800;
  font-family: var(--font-head);
  font-size: clamp(17px, 3vw, 40px);
  line-height: 1.25;
  text-transform: uppercase;
}
.digital__more {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.digital__more span {
  font-family: var(--font-script);
  font-weight: 700;
  color: #fff;
  font-size: clamp(48px, 4vw, 60px);
}
.digital__more img { height: clamp(110px, 10vw, 165px); width: auto; }

@media (max-width: 1015px) {
  .digcard__carousel img {
    height: 200px;
    width: auto;
  }
  .digital__woman {
    min-width: 100%;
    width: 100%;
    text-align: center;
  }
  .digital__card-text p:first-child {
    font-size: clamp(17px, 2vw, 36px);
  }
}


/* =========================================================================
   10. INTELIGÊNCIA ARTIFICIAL
   ========================================================================= */
.ia__bg {
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.ia__bg::before {
    content: "";
    position: absolute;
    inset: 0;

    background: url("./images/bg-banner-ia.jpg") no-repeat top left;
    background-size: contain;

    opacity: .3;

    z-index: -1;
}
.ia__intro { flex: 1 1 360px; min-width: 300px; }
.ia__head { line-height: .9; margin-bottom: 18px; }
.ia__head .stroke-word,
.ia__benefits-head .stroke-word { font-size: clamp(28px, 4vw, 52px); }
.ia__question {
  margin: 0 0 clamp(22px, 3vw, 32px);
  font-family: var(--font-head);
  font-weight: 700;
  color: #fff;
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.15;
  text-transform: uppercase;
}
.ia__carousel img { height: 440px; width: auto; }
.ia__photo { flex: 1 1 300px; min-width: 280px; }
.ia__list { margin-top: clamp(0px, 3vw, 0px); }
.ia__list .list { color: var(--text-light); }
.ia__benefits {
  position: relative;
  overflow: hidden;
}

.ia__benefits::before {
  content: "";
  position: absolute;
  inset: 0;

  background: url("./images/bg-wallpaper.jpg") no-repeat top left;
  background-size: cover; /* ou contain */

  opacity: .3;

  z-index: 0;
}

.ia__benefits > * {
  position: relative;
  z-index: 1;
}
.ia__benefits-img { flex: 1 1 280px; min-width: 260px; }
.ia__benefits-body { flex: 1 1 400px; min-width: 300px; }
.ia__benefits-head { line-height: .95; margin-bottom: clamp(20px, 2.6vw, 30px); }
.ia__benefits-head .stroke-word { font-size: clamp(26px, 3.6vw, 52px); }
.ia__benefits-head .fill-word  { font-size: clamp(32px, 4.6vw, 64px); }

@media (max-width: 1015px) {
  .ia__head {
    text-align: center;
  }
  .ia__question {
    text-align: center;
  }
}


/* =========================================================================
   11. PRODUTOS POR ENCOMENDA
   ========================================================================= */
.enc { margin-top: clamp(20px, 3vw, 40px); position: relative; }
.enc__titles { margin-bottom: clamp(24px, 3vw, 40px); }
/* Variante das palavras com contorno em azul (fundo bege) */
.stroke-word--navy {
  background: var(--beige);
  color: var(--text-navy);
  padding: 8px 30px;
}
.enc__titles .fill-word { color: var(--text-navy); }
.enc__t1 { flex: 1 1 300px; min-width: 280px; line-height: .9; position: absolute; top: -30px; }
.enc__t1 .fill-word { font-size: clamp(36px, 5vw, 66px); }
.enc__t2 { flex: 1 1 320px; min-width: 280px; line-height: 1; text-align: end; }
.enc__t2 .stroke-thin {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(22px, 3vw, 42px);
  color: transparent;
  color: var(--text-navy);
}
.enc__t2 .fill-word { font-size: clamp(24px, 2.9vw, 42px); color: var(--text-navy); }
.enc__carousel { flex: 1 1 280px; min-width: 260px; position: relative; }
.enc__carousel img { height: clamp(260px, 42vw, 580px); width: auto; }
.enc__text { flex: 1 1 400px; min-width: 300px; }
.enc__cta {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 40px);
  flex-wrap: nowrap;
  justify-content: center;
  margin-top: clamp(28px, 3vw, 44px);
}
.enc__cta span {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--text-navy);
  font-size: clamp(20px, 2.4vw, 34px);
  line-height: 1.1;
  text-transform: uppercase;
}
.enc__cta img { height: clamp(56px, 17vw, 150px); }

@media (max-width: 1015px) {
  .enc__t1 {
    min-width: 90%;
    top: -30px;
    width: 90%;
    text-align: center;
  }
  .enc__t2 {
    min-width: 100%;
    text-align: center;
    margin-top: 30px;
  }
  .lead {
    font-size: clamp(18px, 3vw, 27px);
  }
}


/* =========================================================================
   12. EQUIPE FAST
   ========================================================================= */
.equipe__label { flex: 1 1 220px; min-width: 200px; line-height: .9; position: absolute; top: -30px; }
.equipe__label .stroke-word { font-size: clamp(28px, 4vw, 52px); }
.equipe__photo { flex: 1 1 320px; min-width: 280px; }
.equipe__text { flex: 1 1 360px; min-width: 300px; }


/* =========================================================================
   13. IVO FAVERO
   ========================================================================= */
.ivo__title {
  margin: 0 0 22px;
  font-family: var(--font-head);
  font-weight: 800;
  color: #fff;
  font-size: clamp(34px, 4.6vw, 64px);
  line-height: 1;
}
.ivo__text { flex: 1 1 380px; min-width: 300px; }
.ivo__photo { flex: 1 1 320px; min-width: 280px; }


/* =========================================================================
   14. ORÇAMENTO (formulário)
   ========================================================================= */
.orc__inner {
  width: 100%;
  padding: clamp(40px, 5vw, 72px) clamp(28px, 5vw, 72px);
  display: flex;
  flex-wrap: wrap;
  gap: clamp(28px, 4vw, 56px);
  align-items: flex-start;
}
.orc__info { flex: 1 1 360px; min-width: 300px; }
.orc__info h2 {
  margin: 0 0 24px;
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--text-navy);
  font-size: clamp(32px, 4.2vw, 58px);
  line-height: 1;
}
.orc__info p { margin: 0 0 16px; color: var(--text-blue); font-size: clamp(15px, 1.5vw, 19px); line-height: 1.55; text-align: justify; }
.orc__info p.spacer { margin-bottom: 34px; }
.orc__contact {
  margin: 0 0 16px;
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--text-navy);
  font-size: clamp(20px, 2.4vw, 32px);
}
.orc__contact--mail { font-size: clamp(18px, 2.1vw, 30px); word-break: break-word; margin-bottom: 0; }

.form {
  flex: 1 1 380px;
  min-width: 300px;
  background: #fff;
  border-radius: 6px;
  padding: clamp(22px, 3vw, 36px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .08);
}
.form label { display: block; color: var(--text-blue); font-size: 14px; margin-bottom: 6px; }
.form .req { color: #c0392b; }
.form input {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid #c7cdd6;
  border-radius: 3px;
  font-size: 15px;
  margin-bottom: 18px;
  outline: none;
}
.form__phone {
  display: flex;
  align-items: center;
  border: 1px solid #c7cdd6;
  border-radius: 3px;
  margin-bottom: 18px;
  overflow: hidden;
}
.form__phone .flag { padding: 0 10px; font-size: 18px; border-right: 1px solid #e2e6ec; }
.form__phone input { border: none; margin: 0; flex: 1; }
.form input.last { margin-bottom: 22px; }
.form button {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 3px;
  background: #1d4e7d;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}


/* =========================================================================
   15. RODAPÉ
   ========================================================================= */
.footer__inner {
  width: 100%;
  padding: clamp(26px, 3vw, 40px) clamp(28px, 5vw, 72px);
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 3vw, 40px);
  align-items: center;
  justify-content: space-between;
}
.footer__brand { display: flex; align-items: center; gap: 18px; flex: 1 1 320px; }
.footer__brand img { height: clamp(64px, 7vw, 92px); width: auto; flex: none; }
.footer__brand p { margin: 0; color: var(--text-soft); font-size: clamp(15px, 1.5vw, 19px); line-height: 1.4; }
.footer__addr { display: flex; align-items: center; gap: 12px; flex: 0 1 auto; color: var(--text-soft); font-size: clamp(15px, 1.5vw, 19px); }
.footer__addr .pin { font-size: 24px; }


/* =========================================================================
   16. LIGHTBOX (modal de imagens)
   ========================================================================= */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(8, 18, 32, .92);
  display: none;                 /* oculto por padrão; JS abre com flex */
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 48px);
}
.lightbox.open { display: flex; }
.lightbox__img {
  max-width: 90vw;
  max-height: 86vh;
  width: auto;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, .55);
}
.lightbox__close {
  position: absolute;
  top: 18px; right: 22px;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(48px, 6vw, 62px);
  height: clamp(48px, 6vw, 62px);
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, .95);
  color: var(--navy);
  font-size: 30px;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .4);
}
.lightbox__nav--prev { left: clamp(10px, 3vw, 40px); }
.lightbox__nav--next { right: clamp(10px, 3vw, 40px); }

@media (max-width: 1015px) {
  .orc__info p { font-size: clamp(18px, 1.5vw, 19px); }
  .equipe__label {
    min-width: 90%;
    top: -30px;
    width: 90%;
    text-align: center;
  }

  .band__desc {
    min-width: 100%;
    width: 100%;
    margin-left: 0;
    margin-top: 40px;
  }
  .ivo__title {
    text-align: center;
  }
  .footer__brand {
    justify-content: center;
  }
  .footer__addr {
    justify-content: center;
    margin: auto;
  }
}
