/* =========================================================================
   ONEMOVE — Consultoria de Marketing, Vendas, Tecnologia e IA
   Folha de estilos principal
   ========================================================================= */

/* -------------------------------------------------------------------------
   1. VARIAVEIS GLOBAIS (Design Tokens)
   ------------------------------------------------------------------------- */
:root{
  /* Paleta oficial OneMove */
  --onemove-navy:        #0D1E3A; /* Azul Marinho  - confianca, profissionalismo */
  --onemove-green:       #00E676; /* Verde One     - energia, movimento, acao   */
  --onemove-blue:        #0284FC; /* Azul Tecnologia - tecnologia, inovacao     */
  --onemove-gray:        #6B7280; /* Cinza Moderno - equilibrio, sofisticacao   */
  --onemove-white:       #F4F7FA; /* Branco Suave  - fundo limpo e moderno      */
  --onemove-pure-white:  #FFFFFF;

  /* Texto */
  --text-dark:  var(--onemove-navy);
  --text-muted: var(--onemove-gray);
  --text-light: var(--onemove-white);

  /* Tipografia
     Montserrat Thin  -> titulos grandes, elegantes e impactantes
     Space Grotesk     -> textos, numeros, menus e elementos tecnologicos */
  --font-display: 'Montserrat', sans-serif;
  --font-body:    'Space Grotesk', sans-serif;

  /* Espacamentos */
  --section-padding-y: 6rem;
  --container-max: 1320px;

  /* Bordas e sombras */
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --shadow-soft: 0 20px 45px -20px rgba(13, 30, 58, 0.35);
  --shadow-card: 0 12px 30px -14px rgba(13, 30, 58, 0.25);

  /* Transicoes */
  --ease-move: cubic-bezier(.22,1,.36,1);

  /* ===================================================================
     TAMANHO DA LOGO — ALTERE APENAS AQUI PARA MUDAR O TAMANHO EM TODO O SITE
     =================================================================== */
  --logo-height-header: 86px;   /* logo no menu/header (topo do site)   */
  --logo-height-footer: 72px;   /* logo no rodape                       */
}

/* -------------------------------------------------------------------------
   2. RESET / BASE
   ------------------------------------------------------------------------- */
*, *::before, *::after{ box-sizing: border-box; }

html{ scroll-behavior: smooth; }

body{
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--onemove-white);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6{
  font-family: var(--font-display);
  font-weight: 200; /* proximo do "Thin" com boa legibilidade */
  color: var(--onemove-navy);
  letter-spacing: 0.01em;
  margin-bottom: 0;
}

h1{ font-weight: 100; }

a{ text-decoration: none; color: inherit; transition: color .25s var(--ease-move); }

img{ max-width: 100%; display: block; }

.container-xl-custom{
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

::selection{ background: var(--onemove-green); color: var(--onemove-navy); }

/* Foco visivel para acessibilidade / navegacao por teclado */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible{
  outline: 3px solid var(--onemove-blue);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

/* -------------------------------------------------------------------------
   3. UTILITARIOS DE TIPOGRAFIA
   ------------------------------------------------------------------------- */
.eyebrow{
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--onemove-blue);
  display: inline-flex;
  align-items: center;
  gap: .6rem;
}
.eyebrow::before{
  content: "";
  width: 26px;
  height: 2px;
  background: var(--onemove-green);
  display: inline-block;
}

.display-huge{
  font-size: clamp(2.1rem, 4.6vw, 3.9rem);
  line-height: 1.06;
}
.display-lg{
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 1.06;
}
.display-md{
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  line-height: 1.15;
}

.text-gradient-move{
  background: linear-gradient(92deg, var(--onemove-blue), var(--onemove-green));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-title{
  margin-bottom: 3rem;
}
.section-title p{
  font-family: var(--font-body);
  color: var(--text-muted);
  max-width: 640px;
  margin-top: 1rem;
}

/* -------------------------------------------------------------------------
   4. MOTIVO DE ASSINATURA — "MOVIMENTO" (chevrons diagonais)
   Elemento grafico proprio da marca, usado como divisor entre secoes
   ------------------------------------------------------------------------- */
.move-divider{
  position: relative;
  height: 46px;
  overflow: hidden;
  background: var(--onemove-navy);
}
.move-divider__track{
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  gap: 34px;
  padding-inline: 10px;
  animation: move-scroll 22s linear infinite;
  white-space: nowrap;
}
.move-divider__track span{
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: .3em;
  font-size: .72rem;
  color: rgba(244,247,250,.55);
  text-transform: uppercase;
}
.move-divider__track span.on{ color: var(--onemove-green); }
@keyframes move-scroll{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

.chevron-accent{
  display: inline-flex;
  gap: 3px;
}
.chevron-accent i{
  color: var(--onemove-green);
  font-size: .7em;
}

/* -------------------------------------------------------------------------
   5. HEADER / NAVEGACAO
   ------------------------------------------------------------------------- */
.site-header{
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(13, 30, 58, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(244,247,250,.08);
}

.navbar-onemove{
  padding-block: .85rem;
}

/* Espaco reservado para a logomarca (envie o arquivo para substituir) */
.logo-slot{
  display: inline-flex;
  align-items: center;
  height: var(--logo-height-header);
}
.logo-slot img{
  height: 100%;
  width: auto;
  object-fit: contain;
}
.logo-slot .logo-placeholder{
  height: 100%;
  aspect-ratio: 3 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px dashed rgba(244,247,250,.45);
  border-radius: var(--radius-sm);
  color: var(--onemove-white);
  font-family: var(--font-body);
  font-size: .65rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding-inline: .8rem;
  text-align: center;
}

.navbar-onemove .navbar-nav .nav-link{
  font-family: var(--font-body);
  font-size: .84rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--onemove-white);
  padding: .6rem 1.1rem !important;
  position: relative;
}
.navbar-onemove .navbar-nav .nav-link::after{
  content:"";
  position:absolute;
  left: 1.1rem; right: 1.1rem; bottom: .3rem;
  height: 2px;
  background: var(--onemove-green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease-move);
}
.navbar-onemove .navbar-nav .nav-link:hover::after,
.navbar-onemove .navbar-nav .nav-link.active::after{
  transform: scaleX(1);
}
.navbar-onemove .navbar-nav .nav-link.active{ color: var(--onemove-green); }

.navbar-toggler{
  border: none;
  color: var(--onemove-white);
}
.navbar-toggler:focus{ box-shadow: none; }

.btn-move{
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .75rem 1.7rem;
  border-radius: 50px;
  border: 1.5px solid transparent;
  transition: all .3s var(--ease-move);
  display: inline-flex;
  align-items: center;
  gap: .55rem;
}
.btn-move-primary{
  background: var(--onemove-green);
  color: var(--onemove-navy);
}
.btn-move-primary:hover{
  background: transparent;
  border-color: var(--onemove-green);
  color: var(--onemove-green);
}
.btn-move-outline{
  background: transparent;
  border-color: rgba(244,247,250,.5);
  color: var(--onemove-white);
}
.btn-move-outline:hover{
  border-color: var(--onemove-green);
  color: var(--onemove-green);
}
.btn-move-blue{
  background: var(--onemove-blue);
  color: var(--onemove-pure-white);
}
.btn-move-blue:hover{
  background: var(--onemove-navy);
  color: var(--onemove-pure-white);
}

/* -------------------------------------------------------------------------
   6. HERO / CARROSSEL PRINCIPAL (fullscreen de largura x 550px de altura)
   ------------------------------------------------------------------------- */
.hero-carousel{
  position: relative;
  width: 100%;
  height: 740px;
  overflow: hidden;
  background: var(--onemove-navy);
}
.hero-carousel .carousel-item{
  height: 550px;
}
.hero-carousel .carousel-item img{
  width: 100%;
  height: 550px;
  object-fit: cover;
}
.hero-carousel .carousel-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(13,30,58,.92) 0%, rgba(13,30,58,.72) 45%, rgba(13,30,58,.35) 100%);
}
.hero-carousel .carousel-caption-custom{
  position: absolute;
  left: 0;
  bottom: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 680px;
  padding: 0 5vw;
  text-align: left;
  z-index: 3;
}
.hero-carousel .carousel-caption-custom h1,
.hero-carousel .carousel-caption-custom h2{
  color: var(--onemove-white);
}
.hero-carousel .carousel-caption-custom p{
  color: rgba(244,247,250,.85);
  font-family: var(--font-body);
  font-size: 1.05rem;
  max-width: 520px;
  margin-top: 1.1rem;
}
.hero-carousel .carousel-indicators{
  margin-bottom: .35rem;
  z-index: 4;
}
.hero-carousel .carousel-indicators [data-bs-target]{
  width: 34px;
  height: 3px;
  border-radius: 2px;
  background-color: rgba(244,247,250,.4);
  border: none;
  opacity: 1;
}
.hero-carousel .carousel-indicators .active{
  background-color: var(--onemove-green);
}
/* Sem setas de navegacao, conforme solicitado */
.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next{
  display: none !important;
}

/* Banner interno (paginas secundarias) */
.page-banner{
  position: relative;
  height: 340px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.page-banner img{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.page-banner::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(100deg, rgba(13,30,58,.88), rgba(13,30,58,.55));
  z-index: 1;
}
.page-banner .container-xl-custom{ position: relative; z-index: 2; }
.page-banner h1{ color: var(--onemove-white); }
.breadcrumb-move{
  font-family: var(--font-body);
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(244,247,250,.7);
}
.breadcrumb-move a:hover{ color: var(--onemove-green); }

/* -------------------------------------------------------------------------
   7. SECOES GERAIS
   ------------------------------------------------------------------------- */
section{ padding-block: var(--section-padding-y); }
.section-alt{ background: var(--onemove-pure-white); }
.section-navy{
  background: var(--onemove-navy);
  color: var(--onemove-white);
}
.section-navy h2, .section-navy h3{ color: var(--onemove-white); }
.section-navy .section-title p{ color: rgba(244,247,250,.7); }

/* -------------------------------------------------------------------------
   8. NOSSOS NEGOCIOS — 3 retangulos + titulo abaixo
   ------------------------------------------------------------------------- */
.negocio-card{
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 7 / 5;
  box-shadow: var(--shadow-card);
  isolation: isolate;
}
.negocio-card img{
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease-move);
}
.negocio-card::before{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(200deg, rgba(13,30,58,.05), rgba(13,30,58,.55));
  z-index: 1;
}
.negocio-card:hover img{ transform: scale(1.07); }
.negocio-card .negocio-tag{
  position: absolute;
  top: 1.1rem; left: 1.1rem;
  z-index: 2;
  background: rgba(244,247,250,.92);
  color: var(--onemove-navy);
  font-family: var(--font-body);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .35rem .8rem;
  border-radius: 50px;
}
.negocio-titulo{
  margin-top: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.negocio-titulo h3{
  font-size: 1.35rem;
  font-weight: 300;
}
.negocio-titulo a{
  color: var(--onemove-blue);
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}
.negocio-titulo a:hover{ color: var(--onemove-green); }

/* -------------------------------------------------------------------------
   9. GALERIA / LIGHTBOX (com titulo e setas esquerda/direita)
   ------------------------------------------------------------------------- */
.galeria-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.galeria-item{
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-card);
}
.galeria-item img{
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease-move);
}
.galeria-item:hover img{ transform: scale(1.08); }
.galeria-item .galeria-overlay{
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(13,30,58,.85) 0%, rgba(13,30,58,0) 55%);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  opacity: 0;
  transition: opacity .3s ease;
}
.galeria-item:hover .galeria-overlay{ opacity: 1; }
.galeria-overlay span{
  color: var(--onemove-white);
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 600;
}
.galeria-overlay i{ color: var(--onemove-green); margin-right:.4rem; }

/* Lightbox custom */
.move-lightbox{
  position: fixed; inset: 0;
  background: rgba(13,30,58,.96);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.move-lightbox.is-open{ display: flex; }
.move-lightbox__inner{
  position: relative;
  max-width: 900px;
  width: 100%;
  text-align: center;
}
.move-lightbox img{
  max-height: 72vh;
  margin-inline: auto;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
}
.move-lightbox__title{
  color: var(--onemove-white);
  font-family: var(--font-body);
  margin-top: 1.2rem;
  font-size: 1rem;
  letter-spacing: .03em;
}
.move-lightbox__close{
  position: absolute;
  top: -3rem; right: 0;
  background: none;
  border: none;
  color: var(--onemove-white);
  font-size: 1.8rem;
  cursor: pointer;
}
.move-lightbox__close:hover{ color: var(--onemove-green); }
.move-lightbox__nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(244,247,250,.12);
  border: 1px solid rgba(244,247,250,.3);
  color: var(--onemove-white);
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition: all .25s ease;
}
.move-lightbox__nav:hover{ background: var(--onemove-green); color: var(--onemove-navy); border-color: var(--onemove-green); }
.move-lightbox__nav.prev{ left: -1.4rem; }
.move-lightbox__nav.next{ right: -1.4rem; }
@media (max-width: 767.98px){
  .move-lightbox__nav.prev{ left: .2rem; }
  .move-lightbox__nav.next{ right: .2rem; }
}

/* -------------------------------------------------------------------------
   10. VIDEO — caixa 554x490, autoplay
   ------------------------------------------------------------------------- */
.video-box-wrapper{
  display: flex;
  justify-content: center;
}
.video-box{
  width: 100%;
  max-width: 554px;
  height: 490px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-soft);
  background: var(--onemove-navy);
}
.video-box video{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-box .video-tag{
  position: absolute;
  top: 1.2rem; left: 1.2rem;
  background: rgba(0,230,118,.95);
  color: var(--onemove-navy);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .35rem .8rem;
  border-radius: 50px;
  z-index: 2;
}
.video-box .video-mute-btn{
  position: absolute;
  bottom: 1.2rem; right: 1.2rem;
  z-index: 2;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(244,247,250,.6);
  background: rgba(13,30,58,.5);
  color: var(--onemove-white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all .25s ease;
}
.video-box .video-mute-btn:hover{ background: var(--onemove-green); color: var(--onemove-navy); border-color: var(--onemove-green); }

/* -------------------------------------------------------------------------
   11. PARCEIROS — espaco rotativo de logomarcas (somente index, sem titulo)
   ------------------------------------------------------------------------- */
.parceiros-strip{
  background: var(--onemove-pure-white);
  padding-block: 2.6rem;
  border-top: 1px solid rgba(13,30,58,.06);
  border-bottom: 1px solid rgba(13,30,58,.06);
  overflow: hidden;
}
.parceiros-track{
  display: flex;
  align-items: center;
  gap: 3.2rem;
  width: max-content;
  animation: parceiros-scroll 28s linear infinite;
}
.parceiros-strip:hover .parceiros-track{ animation-play-state: paused; }
@keyframes parceiros-scroll{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}
.parceiro-logo{
  width: 170px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  filter: grayscale(1) opacity(.65);
  transition: filter .3s ease;
  flex: 0 0 auto;
}
.parceiro-logo:hover{ filter: grayscale(0) opacity(1); }
.parceiro-logo img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* -------------------------------------------------------------------------
   12. CARDS DE CONTEUDO (areas de atuacao, cases, valores etc.)
   ------------------------------------------------------------------------- */
.icon-badge{
  width: 60px; height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--onemove-blue), var(--onemove-green));
  display: flex; align-items: center; justify-content: center;
  color: var(--onemove-pure-white);
  font-size: 1.4rem;
  margin-bottom: 1.3rem;
}
.content-card{
  background: var(--onemove-pure-white);
  border-radius: var(--radius-md);
  padding: 2.2rem;
  height: 100%;
  box-shadow: var(--shadow-card);
  transition: transform .35s var(--ease-move), box-shadow .35s var(--ease-move);
  border: 1px solid rgba(13,30,58,.05);
}
.content-card:hover{
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}
.content-card h3{ font-size: 1.25rem; margin-bottom: .8rem; font-weight: 300; }
.content-card p{ color: var(--text-muted); font-size: .95rem; margin-bottom: 0; }

.stat-block{ text-align: left; }
.stat-block .num{
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--onemove-green);
  line-height: 1;
}
.stat-block .label{
  font-family: var(--font-body);
  font-size: .8rem;
  letter-spacing: .05em;
  color: rgba(244,247,250,.75);
  text-transform: uppercase;
  margin-top: .5rem;
}

/* Cases de sucesso */
.case-card{
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.case-card img{
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform .5s var(--ease-move);
}
.case-card:hover img{ transform: scale(1.06); }
.case-card__body{
  padding: 1.6rem;
  background: var(--onemove-pure-white);
}
.case-card__body .eyebrow{ margin-bottom: .6rem; }
.case-card__body h3{ font-size: 1.2rem; font-weight: 300; margin-bottom: .5rem; }
.case-card__body p{ color: var(--text-muted); font-size: .9rem; }
.case-result{
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px dashed rgba(13,30,58,.15);
}
.case-result .r-num{
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--onemove-blue);
  font-size: 1.3rem;
  display:block;
}
.case-result .r-label{
  font-size: .72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .04em;
}

/* Timeline (Quem Somos) */
.timeline-move{
  position: relative;
  padding-left: 2.4rem;
  border-left: 2px solid rgba(2,132,252,.25);
}
.timeline-item{ position: relative; padding-bottom: 2.4rem; }
.timeline-item:last-child{ padding-bottom: 0; }
.timeline-item::before{
  content:"";
  position: absolute;
  left: -2.55rem; top: .2rem;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--onemove-green);
  border: 3px solid var(--onemove-white);
  box-shadow: 0 0 0 2px var(--onemove-blue);
}
.timeline-item .t-year{
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--onemove-blue);
  font-size: .85rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.timeline-item h4{ font-size: 1.1rem; margin: .3rem 0 .4rem; font-weight: 300; }
.timeline-item p{ color: var(--text-muted); font-size: .92rem; margin: 0; }

/* Valores / Missao / Visao */
.valor-item{
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}
.valor-item .icon-badge{ flex-shrink: 0; margin-bottom: 0; width: 50px; height: 50px; font-size: 1.1rem; }
.valor-item h4{ font-size: 1.05rem; font-weight: 400; margin-bottom: .35rem; }
.valor-item p{ color: var(--text-muted); font-size: .9rem; margin: 0; }

/* -------------------------------------------------------------------------
   13. FORMULARIO DE CONTATO
   ------------------------------------------------------------------------- */
.form-move label{
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--onemove-navy);
  margin-bottom: .5rem;
  display: block;
}
.form-move .form-control,
.form-move .form-select{
  font-family: var(--font-body);
  border: 1.5px solid rgba(13,30,58,.15);
  border-radius: var(--radius-sm);
  padding: .85rem 1rem;
  font-size: .95rem;
  background: var(--onemove-pure-white);
}
.form-move .form-control:focus,
.form-move .form-select:focus{
  border-color: var(--onemove-blue);
  box-shadow: 0 0 0 4px rgba(2,132,252,.12);
}
.form-move textarea.form-control{ min-height: 140px; resize: vertical; }

.contato-info-card{
  background: var(--onemove-navy);
  color: var(--onemove-white);
  border-radius: var(--radius-md);
  padding: 2.4rem;
  height: 100%;
}
.contato-info-card h3{ color: var(--onemove-white); font-size: 1.4rem; margin-bottom: 1.6rem; }
.contato-info-item{
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.4rem;
}
.contato-info-item i{
  color: var(--onemove-green);
  font-size: 1.15rem;
  margin-top: .2rem;
}
.contato-info-item span{
  font-family: var(--font-body);
  font-size: .95rem;
  color: rgba(244,247,250,.9);
}
.contato-info-item a{ color: rgba(244,247,250,.9); }
.contato-info-item a:hover{ color: var(--onemove-green); }

.alert-move{
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .9rem;
  padding: 1rem 1.2rem;
}

/* -------------------------------------------------------------------------
   14. CTA FINAL
   ------------------------------------------------------------------------- */
.cta-final{
  background: linear-gradient(115deg, var(--onemove-navy) 0%, #12295a 100%);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  position: relative;
  overflow: hidden;
  color: var(--onemove-white);
}
.cta-final::after{
  content:"";
  position:absolute;
  right: -60px; top: -60px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,230,118,.25), transparent 70%);
}
.cta-final h2{ color: var(--onemove-white); }

/* -------------------------------------------------------------------------
   15. FOOTER
   ------------------------------------------------------------------------- */
.site-footer{
  background: var(--onemove-navy);
  color: rgba(244,247,250,.75);
  padding-top: 4.5rem;
}
.footer-logo-slot{
  display: inline-flex;
  align-items: center;
  height: var(--logo-height-footer);
  margin-bottom: 1.2rem;
}
.footer-logo-slot img{ height: 100%; width: auto; object-fit: contain; }
.footer-logo-slot .logo-placeholder{
  height: 100%;
  aspect-ratio: 3/1;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px dashed rgba(244,247,250,.4);
  border-radius: var(--radius-sm);
  color: rgba(244,247,250,.7);
  font-family: var(--font-body);
  font-size: .65rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding-inline: .8rem;
}
.site-footer p{ font-size: .9rem; }
.footer-heading{
  font-family: var(--font-body);
  color: var(--onemove-white);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1.3rem;
}
.footer-links li{ margin-bottom: .7rem; }
.footer-links a{
  font-family: var(--font-body);
  font-size: .9rem;
  color: rgba(244,247,250,.75);
}
.footer-links a:hover{ color: var(--onemove-green); }

.social-icons{
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}
.social-icons a{
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(244,247,250,.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--onemove-white);
  font-size: .95rem;
  transition: all .25s ease;
}
.social-icons a:hover{
  background: var(--onemove-green);
  border-color: var(--onemove-green);
  color: var(--onemove-navy);
  transform: translateY(-3px);
}

.footer-bottom{
  border-top: 1px solid rgba(244,247,250,.12);
  margin-top: 3rem;
  padding-block: 1.4rem;
  font-size: .82rem;
}
.footer-bottom .legal-info{
  color: rgba(244,247,250,.55);
  line-height: 1.6;
}
.footer-bottom strong{ color: rgba(244,247,250,.8); }

.back-to-top{
  position: fixed;
  bottom: 1.6rem;
  right: 1.6rem;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--onemove-green);
  color: var(--onemove-navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all .3s ease;
  z-index: 999;
  border: none;
}
.back-to-top.is-visible{
  opacity: 1; visibility: visible; transform: translateY(0);
}
.back-to-top:hover{ background: var(--onemove-navy); color: var(--onemove-green); }

/* -------------------------------------------------------------------------
   16. RESPONSIVIDADE
   ------------------------------------------------------------------------- */
@media (max-width: 991.98px){
  .navbar-onemove .navbar-nav{
    background: rgba(13,30,58,.98);
    margin-top: 1rem;
    padding: 1rem;
    border-radius: var(--radius-sm);
  }
  .navbar-onemove .navbar-nav .nav-link::after{ display: none; }
  .hero-carousel, .hero-carousel .carousel-item, .hero-carousel .carousel-item img{ height: 480px; }
  .galeria-grid{ grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767.98px){
  :root{ --section-padding-y: 4rem; }

  /* Correcao do banner no mobile: a altura fixa cortava o paragrafo e o
     botao quando o titulo quebrava em mais linhas. Agora a altura minima
     e garantida, mas o conteudo pode "empurrar" o banner para ficar mais
     alto quando necessario, sem cortar nada. */
  .hero-carousel{
    height: auto;
    min-height: 560px;
  }
  .hero-carousel .carousel-inner,
  .hero-carousel .carousel-item{
    height: auto;
    min-height: 560px;
  }
  .hero-carousel .carousel-item img{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .hero-carousel .carousel-overlay{
    position: absolute;
    inset: 0;
  }
  .hero-carousel .carousel-caption-custom{
    position: relative;
    top: auto;
    bottom: auto;
    min-height: 560px;
    max-width: 100%;
    padding: 3.4rem 6vw 4.2rem;
    justify-content: center;
  }
  .hero-carousel .display-huge{
    font-size: clamp(1.7rem, 6.4vw, 2.3rem);
  }
  .hero-carousel .carousel-indicators{
    margin-bottom: .2rem;
  }

  .video-box{ height: 400px; }
  .galeria-grid{ grid-template-columns: repeat(2, 1fr); gap: .6rem; }
  .cta-final{ padding: 2.2rem; }
  .page-banner{ height: 220px; }
}

@media (max-width: 575.98px){
  .galeria-grid{ grid-template-columns: 1fr 1fr; }
}

/* =========================================================================
   17. PÁGINA MENTORIA (mentoria.html)
   Bloco adicionado à parte — não altera nenhum componente existente acima.
   ========================================================================= */

/* Bloco do mentor: foto retrato + informações e lista ao lado */
.mentor-photo-frame{
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 5;
}
.mentor-photo-frame img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mentor-photo-frame .mentor-badge{
  position: absolute;
  left: 1.2rem;
  bottom: 1.2rem;
  right: 1.2rem;
  background: rgba(13,30,58,.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: var(--radius-sm);
  padding: .9rem 1.1rem;
  color: var(--onemove-white);
}
.mentor-badge strong{
  display: block;
  font-family: var(--font-body);
  font-size: .95rem;
  letter-spacing: .02em;
}
.mentor-badge span{
  display: block;
  font-family: var(--font-body);
  font-size: .75rem;
  color: var(--onemove-green);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: .2rem;
}

.mentor-valencias{
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem 1.2rem;
}
.mentor-valencias li{
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-family: var(--font-body);
  font-size: .92rem;
  color: var(--text-dark);
}
.mentor-valencias li i{
  color: var(--onemove-green);
  font-size: 1rem;
  margin-top: .18rem;
  flex-shrink: 0;
}

/* Formação acadêmica — trilha em cartões */
.formacao-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.formacao-card{
  background: var(--onemove-pure-white);
  border: 1px solid rgba(13,30,58,.06);
  border-radius: var(--radius-md);
  padding: 1.8rem;
  box-shadow: var(--shadow-card);
  height: 100%;
}
.formacao-card .formacao-kicker{
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--onemove-blue);
}
.formacao-card h4{
  font-size: 1.05rem;
  font-weight: 400;
  margin: .5rem 0 .8rem;
  color: var(--onemove-navy);
}
.formacao-card ul{
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.formacao-card li{
  font-family: var(--font-body);
  font-size: .88rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: .5rem;
}
.formacao-card li i{
  color: var(--onemove-green);
  font-size: .85rem;
  margin-top: .3rem;
  flex-shrink: 0;
}

/* Programa de mentoria — 4 tabelas horizontais, tons de azul */
.programa-row{
  display: grid;
  grid-template-columns: 260px 1fr;
  align-items: stretch;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  margin-bottom: 1.3rem;
}
.programa-row:last-child{ margin-bottom: 0; }

.programa-row__title{
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.8rem 2rem;
  color: var(--onemove-white);
}
.programa-row__title .num{
  font-family: var(--font-body);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .8;
  margin-bottom: .4rem;
}
.programa-row__title h3{
  color: var(--onemove-white);
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.1;
}

.programa-row__body{
  background: var(--onemove-pure-white);
  padding: 1.8rem 2.2rem;
  display: flex;
  align-items: center;
}
.programa-row__body p{
  color: var(--text-muted);
  font-size: .95rem;
  margin: 0;
  max-width: 760px;
}

/* Quatro tons de azul da marca, do mais escuro ao mais claro/tecnológico */
.programa-row--1 .programa-row__title{ background: var(--onemove-navy); }
.programa-row--2 .programa-row__title{ background: #123564; }
.programa-row--3 .programa-row__title{ background: #0f4f9e; }
.programa-row--4 .programa-row__title{ background: var(--onemove-blue); }

@media (max-width: 767.98px){
  .formacao-grid{ grid-template-columns: 1fr; }
  .mentor-valencias{ grid-template-columns: 1fr; }
  .programa-row{ grid-template-columns: 1fr; }
  .programa-row__title{ padding: 1.4rem 1.6rem; }
  .programa-row__body{ padding: 1.4rem 1.6rem; }
}

