:root {
      --verde-primario: #008E80;
      --verde-claro: #00B39F;
      --verde-limao: #B0DC3C;
      --fundo-suave: #EAF7F5;
      --cinza-texto: #404040;
    }

body {
  background-color: var(--fundo-suave);
   color: var(--text-body);

  /* ✅ Fonte premium e muito nítida */
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  /* ✅ melhora a nitidez perceptível */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  /* ✅ base confortável e consistente */
  font-size: 16px;
  line-height: 1.55;
}

/* ============================
   TIPOGRAFIA GLOBAL (premium)
   ============================ */
:root{
  --text-title: #0f172a;
  --text-body: rgba(15,23,42,.72);
}

h1, h2, h3, h4{
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin: 0 0 .6rem 0;
  font-weight: 800;
  color: var(--text-title); /* ✅ usa token */
}

h1 { font-size: clamp(2.2rem, 3.2vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 2.2vw, 2.4rem); }
h3 { font-size: clamp(1.25rem, 1.6vw, 1.6rem); }
h4 { font-size: clamp(1.05rem, 1.2vw, 1.25rem); }

p{
  margin: 0 0 1rem 0;
  color: var(--text-body);  /* ✅ usa token */
}


.card,
.cr-about-media, /*Card Verde Atras Sobre */
.cr-about-photo, /*Card Foto Sobre */
.cr-logo-item, /*card parceiros */
.cr-about-card,
.cr-fact,
.cr-tcard,
.cr-team-info {
  border-radius: 0 !important;
}


    /* ✅ NAVBAR (alinhado com left: 5%) */
	
	
	/* =========================
   LINK ASSOCIAR-SE (PREMIUM)
   ========================= */

.cr-nav-assoc{
  position: relative;
  font-weight:600;
  color:#B0DC3C !important;                 /* ✅ branco */
  text-decoration:none;
  padding:6px 4px;
  transition:color .2s ease, opacity .2s ease;
  opacity:.92;
}
/* linha visível (estado normal) */
.cr-nav-assoc::after{
  content:'';
  position:absolute;
  left:0;
  bottom:-2px;
  width:100%;                  /* ✅ fixa visível */
  height:2px;
  background:#00B39F;
  opacity:.65;
  transform:scaleX(1);
  transform-origin:left;
  transition:transform .25s ease, opacity .25s ease;
}

/* hover anima (retração → expansão) */
.cr-nav-assoc:hover::after{
  opacity:1;
  transform:scaleX(0);
  transform-origin:right;
}
/* pequeno delay pra voltar suave */
.cr-nav-assoc:not(:hover)::after{
  transform:scaleX(1);
  transform-origin:left;
}

/* fim botao assiciar-se*/

    .navbar {
      background-color: transparent;
      position: absolute;
      z-index: 10;
      width: 100%;
      padding-left: 5%;
      padding-right: 5%;
      box-sizing: border-box;
    }

    .navbar .nav-link {
      color: #fff;
      font-weight: 500;
      position: relative;
    }

    .navbar .nav-link::after {
      content: "";
      position: absolute;
      width: 0;
      height: 2px;
      bottom: 0;
      left: 0;
      background-color: var(--verde-limao);
      transition: 0.3s ease;
    }

    .navbar .nav-link:hover::after {
      width: 100%;
    }
	
	/* Portal – ícone minimalista no navbar */
.cr-portal-icon{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  transition: background .15s ease, transform .15s ease;
}

.cr-portal-icon:hover{
  background: rgba(176,220,60,.18);
  transform: translateY(-1px);
}

.cr-portal-icon i{
  font-size: 18px;
}

/* Tooltip */
.cr-portal-text{
  position: absolute;
  right: calc(100% + 10px);
  background: rgba(15,23,42,.92);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(4px);
  pointer-events: none;
  transition: opacity .15s ease, transform .15s ease;
}

.cr-portal-text::after{
  content:"";
  position:absolute;
  top:50%;
  right:-6px;
  transform: translateY(-50%);
  border-width:6px;
  border-style:solid;
  border-color: transparent transparent transparent rgba(15,23,42,.92);
}

.cr-portal-icon:hover .cr-portal-text{
  opacity: 1;
  transform: translateY(0);
}

/* foco teclado */
.cr-portal-icon:focus-visible{
  outline: none;
  box-shadow: 0 0 0 3px rgba(176,220,60,.35);
}

	
	
	/* ✅ CTA Portal (botão moderno no navbar) */
		.cr-btn-portal{
		  display: inline-flex;
		  align-items: center;
		  gap: .25rem;
		  padding: .55rem 1rem;
		  border-radius: 999px;
		  font-weight: 700;
		  color: #fff;
		  text-decoration: none;
		  border: 1px solid rgba(176,220,60,.55); /* verde-limão */
		  background: rgba(0,142,128,.22);        /* vidro */
		  backdrop-filter: blur(10px);
		  -webkit-backdrop-filter: blur(10px);
		  box-shadow: 0 10px 22px rgba(0,0,0,.14);
		  transition: transform .15s ease, filter .15s ease, background .15s ease, border-color .15s ease;
		}

		.cr-btn-portal:hover{
		  transform: translateY(-1px);
		  filter: brightness(1.03);
		  background: rgba(176,220,60,.18);
		  border-color: rgba(176,220,60,.85);
		  color: #fff;
		}

		.cr-btn-portal:focus{
		  box-shadow: 0 0 0 .25rem rgba(176,220,60,.22);
		}
		@media (max-width: 991.98px){
		  .cr-btn-portal{
			width: 100%;
			justify-content: center;
			margin-top: .5rem;
		  }
		}


    /* ✅ BANNER */
    .banner-container {
      position: relative;
      width: 100%;
      height: 100vh;
      overflow: hidden;
    }

    .banner-container img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .frase-sobreposta {
      position: absolute;
      top: 40%;
      left: 5%;
      z-index: 20;
      color: #fff;
    }

	.frase-sobreposta h1{
	  font-size: clamp(2.1rem, 3.6vw, 3.6rem);
	  font-weight: 800;
	  letter-spacing: -0.03em;
	  line-height: 1.06;
	}

	.frase-sobreposta h2{
	  font-size: clamp(1.4rem, 2.4vw, 2.4rem);
	  font-weight: 700;
	  letter-spacing: -0.02em;
	  line-height: 1.12;
	  margin-top: .35rem;
	}


    .frase-sobreposta p {
      font-size: 1.2rem;
      margin-top: 1rem;
    }

    .destaque {
      color: var(--verde-limao);
    }
	
	.frase-sobreposta,
	.frase-sobreposta h1,
	.frase-sobreposta h2,
	.frase-sobreposta p{
	  color:#fff !important;
	}

	.frase-sobreposta p{
	  opacity: .92;
	}
	
    /* ✅ SEÇÕES */
    .section {
      padding: 80px 0;
    }

    .section h2 {
      color: var(--verde-primario);
      font-weight: bold;
    }
	
/* ✅ Padrão de fundo por seção */
.cr-sec {
  padding: 80px 0;
}

.cr-sec h2{
  color: var(--verde-primario);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.cr-sec--tint {
  background: var(--fundo-suave);
}

.cr-sec--white {
  background: #fff;
}

/* opcional: tira “degrau” feio entre uma cor e outra */
.cr-sec--white,
.cr-sec--tint {
  position: relative;
}

	

    /* ✅ DIRETORES */
    .diretor-box {
      position: relative;
      overflow: hidden;
      transition: transform 0.3s ease;
      max-width: 240px;
      margin: 0 auto;
    }

    .diretor-box img {
      width: 100%;
      height: auto;
      max-height: 360px;
      object-fit: cover;
      border-radius: 8px;
    }

    .diretor-info {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background-color: rgba(0, 142, 128, 0.9);
      color: #fff;
      text-align: center;
      padding: 15px;
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    .diretor-box:hover .diretor-info {
      opacity: 1;
    }

    /* ✅ FORMULÁRIO */
    .formulario-contato {
      padding: 60px 20px;
    }

    .form-control, .form-check-input {
      border-radius: 0;
    }

    /* ✅ RODAPÉ */
    footer {
      background-color: #ffffff;
      color: var(--verde-primario);
    }

    footer a {
      color: var(--verde-primario);
      text-decoration: none;
    }

    footer a:hover {
      text-decoration: underline;
    }

    /* ÍCONES SOCIAIS VISÍVEIS */
    .social-icon {
      display: inline-block;
      width: 42px;
      height: 42px;
      line-height: 42px;
      text-align: center;
      border-radius: 50%;
      color: #fff;
      font-size: 18px;
      margin: 0 5px;
      background-color: var(--verde-primario);
      border: 2px solid var(--verde-limao);
      transition: 0.3s;
    }

    .social-icon:hover {
      background-color: var(--verde-limao);
      color: #fff;
    }
	
	/* ✅ WHATSAPP FLUTUANTE (somente ícone) */
  .whatsapp-float{
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    color: #fff;
    box-shadow: 0 10px 22px rgba(0,0,0,.18);
    text-decoration: none;
    transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
  }

  .whatsapp-float:hover{
    transform: translateY(-2px);
    box-shadow: 0 14px 26px rgba(0,0,0,.22);
    color: #fff;
  }

  .whatsapp-float i{
    font-size: 28px;
    line-height: 1;
  }

  /* ✅ Mobile safe area (iPhone) */
  @supports (padding: max(0px)) {
    .whatsapp-float{
      right: max(20px, env(safe-area-inset-right));
      bottom: max(20px, env(safe-area-inset-bottom));
    }
  }
  
/* ==========================================================
   FOOTER CLEAN — Credirhodia (SEM cards)
   HTML usa: <footer class="cr-footer-clean"> ... </footer>
   ========================================================== */

/* ✅ Ajuste de cores aqui (teste claro/escuro) */
:root{
  --cr-footer-bg:       #5f6f6c; /* fundo principal */
  --cr-footer-news:     #55605d; /* faixa newsletter */
  --cr-footer-bottom:   #2f3f3c; /* barra final */
  --cr-footer-border:   rgba(255,255,255,.14);
  --cr-footer-text:     rgba(255,255,255,.92);
  --cr-footer-muted:    rgba(255,255,255,.78);
}

.cr-footer-clean{
  background: var(--cr-footer-bg);
  color: #fff;
}

/* Links gerais no rodapé */
.cr-footer-clean a{
  color: #fff;
  text-decoration: none;
  opacity: .95;
}
.cr-footer-clean a:hover{
  text-decoration: underline;
  opacity: 1;
}

/* ============ Newsletter (topo) ============ */
.cr-foot-news{
  background: var(--cr-footer-news);
  border-bottom: 1px solid var(--cr-footer-border);
}

.cr-foot-news .news-title{
  font-weight: 800;
  letter-spacing: .2px;
  line-height: 1.1;
}

.cr-foot-news .news-sub{
  opacity: .85;
  font-size: .95rem;
}

/* Inputs da newsletter */
.cr-foot-news .form-control{
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  height: 46px;
  border-radius: 12px 0 0 12px;
}
.cr-foot-news .form-control::placeholder{
  color: rgba(255,255,255,.75);
}
.cr-foot-news .form-control:focus{
  box-shadow: none;
  border-color: rgba(176,220,60,.60);
}

/* Botão newsletter */
.cr-foot-news .btn-news{
  height: 46px;
  border-radius: 0 12px 12px 0;
  background: var(--verde-primario);
  border: 1px solid var(--verde-primario);
  color: #fff;
  font-weight: 800;
  padding: 0 22px;
  transition: transform .15s ease, filter .15s ease;
}
.cr-foot-news .btn-news:hover{
  filter: brightness(.95);
  transform: translateY(-1px);
}
.cr-foot-news .btn-news:disabled{
  opacity: .65;
  transform: none;
}

/* Mensagem do form (sucesso/erro) */
#newsletterMsgCr{
  color: var(--cr-footer-muted);
}
/* ✅ Newsletter no mobile: inputs bonitos (stack) */
@media (max-width: 991.98px){
  .cr-foot-news .input-group > .form-control,
  .cr-foot-news .input-group > .btn{
    width: 100% !important;
    border-radius: 12px !important;
  }

  /* remove o “encaixe” do desktop */
  .cr-foot-news .form-control{
    border-radius: 12px !important;
  }

  .cr-foot-news .btn-news{
    border-radius: 12px !important;
  }
}

/* ============ Miolo (colunas) ============ */
.cr-foot-mid{
  padding: 44px 0 28px;
}

.cr-foot-title{
  font-weight: 800;
  text-transform: none;
  margin-bottom: 14px;
  color: #fff;
}

/* Textos */
.cr-footer-clean .small{
  color: var(--cr-footer-text);
}

/* Lista de links */
.cr-foot-list{
  list-style: none;
  padding: 0;
  margin: 0;
}
.cr-foot-list li{
  margin: 8px 0;
}

/* Linha divisória */
.cr-foot-sep{
  height: 1px;
  background: var(--cr-footer-border);
  margin: 26px 0;
}

/* ============ Social + Logo + Endereços ============ */
.cr-foot-social-row{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.cr-foot-social-label{
  opacity: .9;
  margin-right: 6px;
  font-weight: 600;
}

.cr-foot-social{
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.10);
  color:#fff;
  text-decoration: none;
  transition: transform .15s ease, background .15s ease, filter .15s ease;
}
.cr-foot-social:hover{
  transform: translateY(-1px);
  background: rgba(176,220,60,.18);
  filter: brightness(1.05);
}

.cr-foot-brand{
  display: flex;
  justify-content: center;
  margin-top: 18px;
}
.cr-foot-brand img{
  max-height: 64px;
  width: auto;
  opacity: .95;
}

.cr-foot-address{
  text-align: center;
  font-size: .92rem;
  opacity: .90;
  margin-top: 12px;
  line-height: 1.5;
}
.cr-foot-address small{
  display: block;
  opacity: .85;
}

/* ============ Barra final ============ */
.cr-foot-bottom{
  background: var(--cr-footer-bottom);
  border-top: 1px solid var(--cr-footer-border);
  text-align: center;
  padding: 12px 0;
  font-size: .92rem;
  color: rgba(255,255,255,.92);
}

/* ============ Responsivo ============ */
@media (max-width: 991.98px){
  .cr-foot-news .form-control{
    border-radius: 12px;
  }
  .cr-foot-news .btn-news{
    border-radius: 12px;
  }
  .cr-foot-news .input-group{
    flex-direction: column;
    gap: 10px;
  }
}

/* ==========================================================
   PARCEIROS — Marquee infinito (sem grupos)
   ========================================================== */

.cr-logo-marquee{
  --cr-speed: 55s;              /* ✅ maior = mais lento */
  --cr-item-w: 210px;
  --cr-item-h: 110px;
  --cr-gap: 14px;
  --cr-marquee-w: 1000px;       /* JS sobrescreve */

  position: relative;
  overflow: hidden;
  border-radius: 16px;
  padding: 8px 0;
  background: transparent;
}

.cr-logo-marquee::before,
.cr-logo-marquee::after{
  content:"";
  position:absolute;
  top:0;
  width: 80px;
  height:100%;
  z-index:2;
  pointer-events:none;
}
.cr-logo-marquee::before{
  left:0;
  background: linear-gradient(to right, #fff, rgba(255,255,255,0));
}
.cr-logo-marquee::after{
  right:0;
  background: linear-gradient(to left, #fff, rgba(255,255,255,0));
}

.cr-logo-track{
  display:flex;
  align-items:center;
  width: max-content;
  will-change: transform;
  animation: crMarquee var(--cr-speed) linear infinite;
}

/* ✅ cada grupo é uma “faixa” de logos */
.cr-logo-group{
  display:flex;
  align-items:center;
  gap: var(--cr-gap);
  padding-right: var(--cr-gap); /* garante continuidade */
}

/* Pausa no hover (desktop) */
@media (hover:hover){
  .cr-logo-marquee:hover .cr-logo-track{
    animation-play-state: paused;
  }
}

.cr-logo-item{
  flex: 0 0 auto;
  width: var(--cr-item-w);
  height: var(--cr-item-h);
  display:flex;
  align-items:center;
  justify-content:center;
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  border-radius: 14px;
  box-shadow:0 10px 20px rgba(0,0,0,.06);
  padding: 8px;
  text-decoration:none;
  transition: transform .18s ease, box-shadow .18s ease;
}
.cr-logo-item:hover{
  transform: translateY(-2px);
  box-shadow:0 14px 26px rgba(0,0,0,.10);
}

.cr-logo-item img{
  max-width: 100%;
  max-height: 100%;
   width: auto;
  height: auto;
  object-fit: contain;
  opacity: 1;
  filter: none;
  transition: opacity .18s ease, filter .18s ease;
}
.cr-logo-item:hover img{
  opacity: 1;
  filter: none;
}

/* ✅ AQUI está o segredo: andar exatamente a largura do 1º grupo */
@keyframes crMarquee{
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-1 * var(--cr-marquee-w))); }
}

/* Responsivo */
@media (max-width: 575.98px){
  .cr-logo-marquee{
    --cr-item-w: 160px;
    --cr-item-h: 84px;
    --cr-speed: 70s;
  }
}

/* HERO/BANNER — ajuste mobile sem trocar HTML */
.banner-container{
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

@supports (height: 100svh){
  .banner-container{ height: 100svh; }
}

.banner-container img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ✅ Mobile: diminui a altura do banner */
@media (max-width: 575.98px){
  .banner-container{
    height: 72vh;      /* menor no celular */
    min-height: 520px; /* mantém texto confortável */
    max-height: 720px; /* evita ficar gigante */
  }

  .frase-sobreposta{
    top: 22%;
    left: 6%;
    right: 6%;
  }

  .frase-sobreposta h1{ font-size: 2.1rem; line-height: 1.1; }
  .frase-sobreposta h2{ font-size: 2.2rem; line-height: 1.1; }
  .frase-sobreposta p{ font-size: 1rem; }
}

/* ============================
   NAVBAR — Toggler visível
   ============================ */
.navbar .navbar-toggler{
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 12px;
  padding: .45rem .6rem;
  background: rgba(0,0,0,.18);          /* ✅ dá contraste no topo */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.navbar .navbar-toggler:focus{
  box-shadow: 0 0 0 .2rem rgba(176,220,60,.25);
}

/* ícone branco */
.navbar .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%28255,255,255,0.95%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
@media (max-width: 991.98px){
  .navbar .navbar-collapse{
    margin-top: 10px;
    background: rgba(15,23,42,.92);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 16px;
    padding: 12px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .navbar .dropdown-menu{
    background: rgba(15,23,42,.96);
    border: 1px solid rgba(255,255,255,.12);
  }

  .navbar .dropdown-item{
    color: #fff;
  }

  .navbar .dropdown-item:hover{
    background: rgba(176,220,60,.14);
    color: #fff;
  }
}

/* ==========================================================
   SOBRE – Template style (imagem + FAQ compacto)
   ========================================================== */
   #sobre h2{ color: var(--verde-primario); font-weight: 800; letter-spacing: -0.02em; } #sobre .text-muted{ color: rgba(15,23,42,.62)!important; } /* Parágrafo com “travessão + dois dedinhos” */ #sobre .sobre-p{ position: relative; padding-left: 1.8rem; /* “dois dedinhos” */ margin-bottom: 1rem; font-size: 1.02rem; line-height: 1.75; color: rgba(15,23,42,.86); font-weight: 400; } #sobre .sobre-p::before{ content: "—"; position: absolute; left: .2rem; top: 0; color: rgba(0,142,128,.65); font-weight: 700; } /* chips iguais ao padrão verde */ #sobre .sobre-chip{ background: rgba(0,142,128,.10); color: var(--verde-primario); border: 1px solid rgba(0,142,128,.18); font-weight: 700; }
   /*acima é css antigo*/
#sobre.cr-sec--white{ background:#fff; }

#sobre .cr-about-kicker{
  font-weight: 800;
  letter-spacing: .14em;
  font-size: .78rem;
  color: rgba(0,142,128,.95);
  text-transform: uppercase;
  margin-bottom: 10px;
}

#sobre .cr-about-title{
  font-weight: 800;
   font-size: 2rem;
  letter-spacing: -0.02em;
  color: #0f172a;
  margin-bottom: 14px;
}

#sobre .cr-about-lead{
  line-height: 1.7;
  margin: 0 0 18px 0;
}

/* imagem + moldura */
#sobre .cr-about-media{
  position: relative;
  max-width: 520px;
  margin: 0 auto;
}

#sobre .cr-about-frame{
  position:absolute;
  left: -18px;
  top: -18px;
  width: 92%;
  height: 92%;
  border-radius: 18px;
  background: rgba(0,142,128,.95);
  z-index: 0;
}

#sobre .cr-about-photo{
  position: relative;
  z-index: 1;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(15,23,42,.10);
}

#sobre .cr-about-photo img{
  width: 100%;
  height: 420px;          /* <<< controle do tamanho */
  object-fit: cover;      /* mantém bonito */
  display:block;
  border-radius: 18px;
}

/* accordion compacto */
#sobre .cr-acc{
  border-radius: 14px;
}

#sobre .cr-acc-item{
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  margin-bottom: 10px;
}

#sobre .cr-acc-btn{
  padding: 14px 16px;
  font-weight: 800;
  color: rgba(15,23,42,.90);
  background: #fff;
}

#sobre .accordion-button:not(.collapsed){
  color: rgba(0,142,128,.98);
  background: rgba(0,142,128,.06);
  box-shadow: none;
}

#sobre .accordion-button:focus{
  box-shadow: 0 0 0 .25rem rgba(0,142,128,.14);
  border-color: rgba(0,142,128,.25);
}

#sobre .cr-acc-body{
  padding: 12px 16px 16px;
  color: rgba(15,23,42,.72);
}

/* lista compacta */
#sobre .cr-about-list{
  margin: 0;
  padding-left: 1.05rem;
}
#sobre .cr-about-list li{
  margin: 6px 0;
  line-height: 1.55;
}

/* mini cards (banco x cooperativa) */
#sobre .cr-about-mini{
  border: 1px solid rgba(0,0,0,.07);
  border-radius: 12px;
  padding: 12px 12px 10px;
  background: #fff;
}
#sobre .cr-about-mini-title{
  font-weight: 900;
  margin-bottom: 8px;
  color: rgba(15,23,42,.88);
}

/* tags */
#sobre .cr-about-tags{
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
#sobre .cr-tag{
  background: rgba(0,142,128,.10);
  color: rgba(0,142,128,.98);
  border: 1px solid rgba(0,142,128,.18);
  font-weight: 800;
}

/* chamada final */
#sobre .cr-about-cta{
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(176,220,60,.12);
  border: 1px solid rgba(176,220,60,.28);
  color: rgba(15,23,42,.78);
  line-height: 1.55;
}
#sobre .cr-about-cta-strong{
  font-weight: 900;
  color: rgba(0,142,128,.98);
}

/* responsivo */
@media (max-width: 991.98px){
  #sobre .cr-about-photo img{ height: 340px; }
  #sobre .cr-about-frame{ left: -14px; top: -14px; }
}

@media (max-width: 575.98px){
  #sobre .cr-about-photo img{ height: 280px; }
  #sobre .cr-acc-btn{ padding: 13px 14px; }
}

/* ==========================================================
   OUVIDORIA — CSS COMPLETO (COM TARJA VERDE + GRÁFICOS/FACTS)
   - Sem personagem
   - Sem extensão direita
   - Mantém counters / layout dos cards / tabs / accordion
   ========================================================== */

/* 0) Remove fundo padrão da seção só aqui */
#ouvidoria.cr-sec--tint{
  background: transparent !important;
}

/* 1) Título */
#ouvidoria .cr-title-underline{
  width:72px;
  height:3px;
  border-radius:999px;
  background: rgba(0,142,128,.35);
}

/* ==========================================================
   2) PALCO + TARJA VERDE ESCURA NO FUNDO (FULL WIDTH)
   - fica atrás dos cards
   - não interfere em cliques/animações
   ========================================================== */
#ouvidoria .cr-ouvi-stage{
  position: relative;
}

/* tarja */
#ouvidoria .cr-ouvi-stage::before{
  content:"";
  position:absolute;

  /* ajuste fino da altura/posição da tarja */
  top: 140px;
  bottom: 140px;

  left: 50%;
  width: 100vw;
  transform: translateX(-50%);

  background: #008E80;   /* ✅ verde escuro */
  border-radius: 0;      /* ✅ reto (igual seu print). Se quiser arredondar: 28px */

  z-index: 0;
  pointer-events: none;
}

/* conteúdo sempre acima da tarja */
#ouvidoria .cr-ouvi-stage > .row{
  position: relative;
  z-index: 2;
}

/* ==========================================================
   3) CARD BRANCO (abas / conteúdo)
   ========================================================== */
#ouvidoria .cr-about-card{
  position: relative;
  z-index: 3;
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(15,23,42,.08);
}

/* Tabs */
#ouvidoria .cr-about-tabs{
  border-bottom: 1px solid rgba(0,0,0,.08);
}
#ouvidoria .cr-about-tabs .nav-link{
  border: 1px solid rgba(0,0,0,.10);
  border-bottom: none;
  border-radius: 12px 12px 0 0;
  padding: 12px 18px;
  font-weight: 800;
  color: rgba(15,23,42,.70);
  background: #fff;
  margin-right: 6px;
}
#ouvidoria .cr-about-tabs .nav-link.active{
  background: rgba(0,142,128,.10);
  color: var(--verde-primario);
  border-color: rgba(0,142,128,.22);
}

/* ==========================================================
   4) FACTS / GRÁFICOS (COUNTERS)
   ========================================================== */
#ouvidoria .cr-facts-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

#ouvidoria .cr-fact{
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 14px;
  padding: 16px 14px;
  text-align: center;
  box-shadow: 0 10px 22px rgba(15,23,42,.06);
}

#ouvidoria .cr-fact-num{
  font-weight: 900;
  color: rgba(0,142,128,.55);
  font-size: clamp(2.0rem, 3.4vw, 3.0rem);
  line-height: 1;
}

#ouvidoria .cr-fact-label{
  margin-top: 10px;
  font-weight: 900;
  color: rgba(15,23,42,.90);
}

#ouvidoria .cr-fact-sub{
  font-size: .9rem;
  color: rgba(15,23,42,.55);
}

/* ==========================================================
   5) CONTATOS
   ========================================================== */
#ouvidoria .cr-contact-list{
  display: grid;
  gap: 12px;
}

#ouvidoria .cr-contact-item{
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 14px;
  background: rgba(255,255,255,.95);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

#ouvidoria .cr-contact-item:hover{
  transform: translateY(-2px);
  box-shadow: 0 .75rem 1.5rem rgba(15,23,42,.08);
  border-color: rgba(0,142,128,.22);
}

#ouvidoria .cr-contact-ico{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,142,128,.10);
  color: var(--verde-primario);
  flex: 0 0 auto;
}

#ouvidoria .cr-contact-title{
  font-weight: 900;
  color: rgba(15,23,42,.90);
}

#ouvidoria .cr-contact-link{
  display: inline-block;
  margin-top: 2px;
  color: var(--verde-primario);
  font-weight: 800;
  text-decoration: none;
}

#ouvidoria .cr-contact-link:hover{
  text-decoration: underline;
}

#ouvidoria .cr-contact-sub{
  font-size: .9rem;
  color: rgba(15,23,42,.55);
}

/* QR */
#ouvidoria .cr-contact-qr{
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border: 1px dashed rgba(0,0,0,.18);
  border-radius: 14px;
  background: rgba(255,255,255,.75);
}
#ouvidoria .cr-contact-qrbox{
  width: 104px;
  height: 104px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 6px;
  flex: 0 0 auto;
}
#ouvidoria .cr-contact-qrbox img{
  max-width: 100%;
  max-height: 100%;
  display:block;
}

/* ==========================================================
   6) FAQ / ACCORDION
   ========================================================== */
#ouvidoria .cr-about-acc .accordion-item{
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}

#ouvidoria .cr-about-acc .accordion-button{
  font-weight: 900;
  color: rgba(15,23,42,.88);
  background: #fff;
}

#ouvidoria .cr-about-acc .accordion-button:focus{
  box-shadow: 0 0 0 .2rem rgba(0,142,128,.15);
  border-color: rgba(0,142,128,.25);
}

/* ==========================================================
   7) DIREITA (sem fundo extra, sem personagem)
   ========================================================== */
#ouvidoria .cr-ouvi-right{
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#ouvidoria .cr-ouvi-green{
  position: relative;
  z-index: 3;
  width: min(460px, 100%);
  min-height: 420px;
  margin: 0 auto;

  border-radius: 18px;

  /* FOTO */
  background-image: url("/img/ouvidoria-foto.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  /* overlay leve pra manter padrão institucional */
  background-color: transparent;
  background-blend-mode: multiply;

  border: 1px solid rgba(255,255,255,.14);
  overflow: hidden;
}

/* Pattern do verde */
#ouvidoria .cr-ouvi-pattern{
  position: absolute;
  inset: -40px;
  background:
    linear-gradient(120deg, rgba(255,255,255,.16) 0 2px, transparent 2px 28px),
    linear-gradient(60deg,  rgba(255,255,255,.12) 0 2px, transparent 2px 28px);
  background-size: 34px 34px;
  opacity: .22;
  pointer-events: none;
}

/* ==========================================================
   8) RESPONSIVO
   ========================================================== */
@media (max-width: 992px){
  #ouvidoria .cr-ouvi-stage::before{
    top: 40px;
    bottom: 40px;
  }
}

@media (max-width: 575.98px){
  #ouvidoria .cr-facts-grid{
    grid-template-columns: 1fr;
  }
  #ouvidoria .cr-about-tabs .nav-link{
    padding: 10px 14px;
  }
}



/* ==========================================================
   DIRETORIA — Estilo Template (foto + placa + social)
   ========================================================== */

.cr-team-card{
  position: relative;
  padding-bottom: 24px;
}

.cr-team-photo{
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(15,23,42,.12);
}

.cr-team-photo img{
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

/* Placa branca */
.cr-team-info{
  width: calc(100% - 56px);
  margin: -30px auto 0;
  background: #fff;
  border-radius: 14px;
  padding: 18px 14px;
  text-align: center;
  box-shadow: 0 16px 30px rgba(15,23,42,.12);
  border: 1px solid rgba(0,0,0,.06);
  position: relative;
  z-index: 2;
}

.cr-team-name{
  font-weight: 800;
  font-size: 1.05rem;
  color: #111;
  letter-spacing: -0.02em;
}

.cr-team-role{
  margin-top: 4px;
  font-size: .92rem;
  color: rgba(15,23,42,.60);
  line-height: 1.4;
}

/* Social lateral */
.cr-team-social{
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease;
}

.cr-team-soc{
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: var(--verde-primario);
  color: #fff;
  box-shadow: 0 10px 22px rgba(0,0,0,.18);
  transition: transform .15s ease, filter .15s ease, background .15s ease;
}

.cr-team-soc:hover{
  transform: translateY(-1px);
  filter: brightness(1.05);
  background: var(--verde-limao);
  color: #0f172a;
}

/* Hover desktop */
@media (hover:hover){
  .cr-team-card:hover .cr-team-social{
    opacity: 1;
    pointer-events: auto;
  }
}

/* Mobile: social sempre visível */
@media (max-width: 991.98px){
  .cr-team-social{
    opacity: 1;
    pointer-events: auto;
  }

  .cr-team-photo img{
    height: 340px;
  }
}

@media (max-width: 575.98px){
  .cr-team-photo img{
    height: 300px;
  }

  .cr-team-info{
    width: calc(100% - 36px);
  }
}

/* ==========================================================
   CONTATO – FAIXA VERDE CENTRAL (entre as linhas vermelhas)
   ========================================================== */
.contato-section{
  background: var(--fundo-suave); /* fora da faixa */
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

/* ✅ a tarja verde */
.contato-section::before{
  content: "";
  position: absolute;
  left: 0;
  right: 0;

  top: 50%;
  transform: translateY(-50%);

  height: 520px; /* ajusta a altura da tarja */
  background: linear-gradient(90deg, #008E80 0%, #00A896 100%);
  z-index: 0;
}

/* conteúdo por cima da tarja */
.contato-section .container{
  position: relative;
  z-index: 1;
}




/* ==========================================================
   CARD DO FORMULÁRIO
   ========================================================== */
.contato-box {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.15);
  position: relative;
  z-index: 2;
}

/* ==========================================================
   TÍTULO E TEXTO
   ========================================================== */
.contato-titulo {
  font-size: 28px;
  font-weight: 700;
  color: #008E80;
  margin: 0 0 6px 0;
}

.contato-subtitulo {
  margin: 0 0 24px 0;
  color: #6b7280;
  font-size: 14px;
}
.captcha-placeholder{
  min-height: 78px;
  border: 1px dashed rgba(0,0,0,.20);
  border-radius: 10px;
  background: rgba(255,255,255,.55);
}


/* ==========================================================
   IMAGEM DO PERSONAGEM
   ========================================================== */
.personagem-contato {
  max-width: 440px;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
  transform: translateY(-12px); /* ajuste fino visual */
}

/* ==========================================================
   RESPONSIVO
   ========================================================== */
@media (max-width: 991.98px) {
  .contato-section {
    padding: 70px 0;
  }

  .contato-section::before {
    height: 420px;
  }

  .contato-box {
    padding: 28px;
  }

  .personagem-contato {
    transform: none;
  }
}

@media (max-width: 575.98px) {
  .contato-section::before {
    height: 360px;
  }
}


/* ==========================================================
   Colaboradores (cards estilo TemplateMonster)
   ========================================================== */
.cr-tcard{
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0,0,0,.06);
  padding: 28px 26px 26px;
  text-align:center;
  height: 100%;
}

.cr-tcard-top{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 16px;
  margin-bottom: 18px;
}

.cr-tcard-line{
  height:1px;
  background: rgba(0,0,0,.10);
  flex: 1;
}

.cr-tcard-avatar{
  width: 78px;
  height: 78px;
  border-radius: 999px;
  overflow:hidden;
  border: 6px solid #fff;
  box-shadow: 0 10px 24px rgba(0,0,0,.12);
  flex: 0 0 auto;
}

.cr-tcard-avatar img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.cr-tcard-text{
  color:#7a7a7a;
  font-style: italic;
  line-height: 1.7;
  margin: 0 0 18px 0;
  font-size: 15px;
}

.cr-tcard-name{
  font-weight: 700;
  font-size: 18px;
  color:#111;
}

.cr-tcard-role{
  color:#8e8e8e;
  margin-top: 4px;
  font-size: 14px;
}
/* Variante para colaboradores (sem texto longo) */
.cr-tcard--person{
  padding-top: 30px;
}

.cr-tcard--person .cr-tcard-text{
  display:none;
}
/* GRID: 3 colunas desktop, 2 tablet, 1 mobile */
.cr-tgrid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

@media (max-width: 991.98px){
  .cr-tgrid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 575.98px){
  .cr-tgrid{ grid-template-columns: 1fr; }
}
/* tracinho abaixo do título */
.cr-title-underline{
  width: 72px;
  height: 3px;
  background: rgba(0,142,128,.35);
  border-radius: 999px;
}

/* wrapper para setas ficarem "fora" dos cards */
.cr-carousel-wrap{
  padding: 10px 54px; /* espaço para as setas */
}

.cr-carousel-btn{
  width: 54px;
  opacity: 1;
}

.cr-arrow{
  display:inline-flex;
  width: 44px;
  height: 44px;
  align-items:center;
  justify-content:center;
  border-radius: 999px;
  color: rgba(0,0,0,.35);
  font-size: 44px;
  line-height: 1;
  user-select:none;
  transition: transform .15s ease, color .15s ease;
}

.cr-carousel-btn:hover .cr-arrow{
  color: rgba(0,0,0,.55);
  transform: translateY(-1px);
}

/* esconde as setas no mobile (opcional) */
@media (max-width: 575.98px){
  .cr-carousel-wrap{ padding: 0; }
  .cr-carousel-btn{ display:none; }
}
