/* ==========================================================================
   Canoa Digital — design system
   Cores, layout e fontes extraídos por comparação direta com o site em
   producao (canoadigital.com.br). O css/fontFace.css legado do export Wix
   referencia apenas arquivos de fonte que nunca existiram localmente (eram
   servidos pelo CDN do Wix) — por isso as 4 fontes realmente usadas pelo
   site sao declaradas aqui, apontando para os .woff2 que de fato existem em
   /fonts. Todas as secoes sao responsivas via grid do Bootstrap 5.
   ========================================================================== */

@font-face {
  font-family: "lulo-clean-w01-one-bold";
  src: url("../fonts/lulo-clean-w01-one-bold.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "avenir-lt-w01_85-heavy1475544";
  src: url("../fonts/avenir-lt-w01_85-heavy1475544.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "helvetica-w01-light";
  src: url("../fonts/helvetica-w01-light.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "din-next-w01-light";
  src: url("../fonts/din-next-w01-light.woff2") format("woff2");
  font-display: swap;
}

:root {
  --cd-navy: #041E42;
  --cd-orange: #E57200;
  --cd-gray-dark: #565656;
  --cd-gray-mid: #8F8F8F;
  --cd-gray-light: #C7C7C7;
  --cd-white: #FFFFFF;
  --cd-lavender: #C6C8D5;

  /* Reskin do Bootstrap para a paleta da marca */
  --bs-primary: var(--cd-orange);
  --bs-primary-rgb: 229, 114, 0;
  --bs-link-color: var(--cd-orange);
  --bs-link-color-rgb: 229, 114, 0;
  --bs-link-hover-color: var(--cd-navy);
  --bs-link-hover-color-rgb: 4, 30, 66;
  --bs-body-font-family: "helvetica-w01-light", Helvetica, Arial, sans-serif;
  --bs-body-color: var(--cd-navy);
  --bs-body-bg: var(--cd-white);
}

body {
  font-family: var(--bs-body-font-family);
  color: var(--cd-navy);
}

/* Famílias de destaque, usadas pontualmente sobre o corpo padrão */
.font-display {
  font-family: "lulo-clean-w01-one-bold", serif;
}

.font-heading {
  font-family: "avenir-lt-w01_85-heavy1475544", Helvetica, Arial, sans-serif;
}

.font-eyebrow {
  font-family: "din-next-w01-light", Helvetica, Arial, sans-serif;
}

a {
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

/* Skip-link de acessibilidade (fica invisível até receber foco) */
.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 2000;
  background: var(--cd-white);
  color: var(--cd-navy);
  padding: .75rem 1.25rem;
  transition: top .15s ease;
}

.skip-link:focus {
  top: 1rem;
}

/* ==========================================================================
   Header / navegação — barra azul-marinho, como no site em produção
   ========================================================================== */

.site-header {
  background: var(--cd-navy);
}

.site-header .navbar-brand img {
  height: 48px;
  width: auto;
}

.site-header .nav-link {
  font-family: "avenir-lt-w01_85-heavy1475544", Helvetica, Arial, sans-serif;
  color: var(--cd-white);
  font-size: .95rem;
  padding: .5rem 1rem !important;
}

.site-header .nav-link:hover {
  color: var(--cd-orange);
}

.site-header .nav-link.active {
  color: var(--cd-lavender);
}

/* Icone do menu hamburguer precisa ser claro sobre o fundo navy */
.site-header .navbar-toggler {
  border-color: rgba(255, 255, 255, .5);
}

.site-header .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.9)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ==========================================================================
   Seções com imagem de fundo (hero, equipe)
   ========================================================================== */

.section-photo {
  position: relative;
  background-size: cover;
  background-position: center;
}

.section-photo > .container {
  position: relative;
}

/* ==========================================================================
   Hero (home) — foto de fundo alta, estatísticas no topo, tagline embaixo
   ========================================================================== */

.hero-stats {
  position: relative;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2.5rem 0 3rem;
  color: var(--cd-white);
}

.hero-stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 30, 66, .35), rgba(4, 30, 66, .5));
}

@media (min-width: 768px) {
  .hero-stats {
    min-height: 640px;
    padding: 3.5rem 0 4rem;
  }
}

.hero-stats-grid {
  max-width: 520px;
}

.hero-stat {
  padding: .75rem 0;
}

.hero-stat .stat-number {
  font-size: 2.25rem;
  font-weight: bold;
  line-height: 1;
  border-bottom: 1px solid rgba(255, 255, 255, .5);
  padding-bottom: .5rem;
  margin-bottom: .35rem;
  display: inline-block;
}

@media (min-width: 768px) {
  .hero-stat .stat-number {
    font-size: 2.75rem;
  }
}

.hero-stat .stat-label {
  font-size: .85rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.hero-tagline {
  font-size: 1.5rem;
  overflow-wrap: break-word;
  margin: 2rem 0 0;
}

@media (min-width: 576px) {
  .hero-tagline {
    font-size: 2.25rem;
  }
}

@media (min-width: 768px) {
  .hero-tagline {
    font-size: 3.25rem;
  }
}

/* ==========================================================================
   Nossas Origens — heading laranja à esquerda, texto à direita
   ========================================================================== */

.origins-section {
  padding: 5rem 0;
}

.origins-section h1 {
  color: var(--cd-orange);
  font-size: 2.5rem;
  line-height: 1.15;
}

@media (min-width: 768px) {
  .origins-section h1 {
    font-size: 3.75rem;
  }
}

.origins-section p {
  text-align: justify;
  color: var(--cd-navy);
}

.origins-attribution {
  text-align: right;
  font-weight: bold;
  text-decoration: underline;
  color: var(--cd-navy);
}

/* ==========================================================================
   Missão / Visão / Valores — cards azul-marinho
   ========================================================================== */

.mvv-section {
  padding: 0 0 5rem;
}

.mvv-card {
  background: var(--cd-navy);
  color: var(--cd-white);
  text-align: center;
  padding: 2.5rem 1.5rem;
  height: 100%;
}

.mvv-card h3 {
  color: var(--cd-orange);
  letter-spacing: .04em;
  margin-bottom: 1rem;
}

.mvv-card p {
  color: var(--cd-gray-light);
  margin: 0;
}

/* ==========================================================================
   CTA final "Eu faço parte da transformação" — faixa azul-marinho
   ========================================================================== */

.cta-transformacao {
  padding: 4rem 0;
  text-align: center;
  background: var(--cd-navy);
}

.cta-transformacao h3 {
  font-size: 1.75rem;
  color: var(--cd-gray-mid);
  margin: 0;
}

@media (min-width: 768px) {
  .cta-transformacao h3 {
    font-size: 2.25rem;
  }
}

.cta-transformacao .tf-white {
  color: var(--cd-white);
}

.cta-transformacao .tf-gray {
  color: var(--cd-gray-mid);
  font-style: italic;
}

/* ==========================================================================
   Sobre nós — equipe
   ========================================================================== */

.team-section {
  padding: 5rem 0;
  background-size: cover;
  background-position: center;
}

.team-section h3.section-title {
  text-align: center;
  color: var(--cd-navy);
  margin-bottom: 2rem;
}

.team-section .lead-copy {
  color: var(--cd-navy);
}

.team-leaders-label {
  text-align: center;
  color: var(--cd-orange);
  letter-spacing: .1em;
  margin: 2.5rem 0 2rem;
}

.team-card {
  text-align: center;
}

.team-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.team-card .team-info {
  padding: .75rem .5rem;
}

.team-card .team-name {
  font-weight: bold;
  color: var(--cd-navy);
}

.team-card .team-role {
  color: var(--cd-navy);
  font-size: .9rem;
}

.team-card a.team-name {
  color: var(--cd-navy);
}

.team-card a.team-name:hover {
  color: var(--cd-orange);
}

/* ==========================================================================
   Marcas
   ========================================================================== */

.brands-section {
  padding: 5rem 0;
}

.brands-section h3.section-title {
  text-align: center;
  color: var(--cd-navy);
  margin-bottom: 3rem;
}

.brand-block {
  margin-bottom: 4rem;
}

.brand-block img {
  max-width: 100%;
  height: auto;
}

.brand-block h5 {
  font-family: "avenir-lt-w01_85-heavy1475544", Helvetica, Arial, sans-serif;
  color: var(--cd-orange);
  font-size: 1.5rem;
  margin: 1.5rem 0 1rem;
}

.brand-block p {
  color: var(--cd-gray-dark);
}

.btn-visitenos {
  border: 2px solid var(--cd-navy);
  color: var(--cd-navy);
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: .6rem 2rem;
  font-size: .9rem;
  background: transparent;
}

.btn-visitenos:hover {
  background: var(--cd-navy);
  color: var(--cd-white);
}

.partners-section {
  padding: 3rem 0 5rem;
  text-align: center;
  background: var(--cd-gray-light);
}

.partners-section h2.section-title {
  color: var(--cd-white);
  margin-bottom: 3rem;
}

.partners-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.partners-logos img {
  max-height: 50px;
  width: auto;
}

/* ==========================================================================
   Rodapé — fundo branco
   ========================================================================== */

.site-footer {
  background: var(--cd-white);
  color: var(--cd-gray-mid);
  padding: 4rem 0 2rem;
}

.site-footer .footer-logo {
  font-size: 1.75rem;
  line-height: 1.3;
  color: var(--cd-gray-mid);
}

.site-footer .footer-logo .dash {
  color: var(--cd-orange);
}

.site-footer a {
  color: var(--cd-orange);
}

.site-footer a:hover {
  color: var(--cd-navy);
}

.site-footer address {
  color: var(--cd-orange);
  font-style: normal;
  margin: 0;
}

.footer-form .form-control {
  background: var(--cd-white);
  border: 1px solid var(--cd-gray-mid);
  color: var(--cd-navy);
}

.footer-form .form-control::placeholder {
  color: var(--cd-gray-light);
}

.footer-form .form-control:focus {
  border-color: var(--cd-orange);
  box-shadow: none;
}

.footer-form .btn-enviar {
  background: transparent;
  border: none;
  color: var(--cd-navy);
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: .5rem 0;
}

.footer-form .btn-enviar:hover {
  color: var(--cd-orange);
}

.footer-copyright {
  color: var(--cd-lavender);
  font-size: .85rem;
  margin-top: 3rem;
  text-align: left;
}
