/* ==========================================================
   SITE_CREDIRHODIA.CSS — ARQUIVO ÚNICO CONSOLIDADO
   Todas as seções do index estão aqui, na mesma ordem do HTML.
   Procure pelo comentário em MAIÚSCULAS para ir direto à seção.
   ========================================================== */


/* ==========================================================
   VARIÁVEIS GLOBAIS
   ========================================================== */
:root {
  --verde-primario:  #008E80;
  --verde-claro:     #00B39F;
  --verde-limao:     #B0DC3C;
  --fundo-suave:     #EAF7F5;
  --text-title:      #0f172a;
  --text-body:       rgba(15, 23, 42, .72);

  --cr-footer-bg:     #5f6f6c;
  --cr-footer-news:   #55605d;
  --cr-footer-bottom: #2f3f3c;
  --cr-footer-border: rgba(255, 255, 255, .14);
  --cr-footer-text:   rgba(255, 255, 255, .92);
  --cr-footer-muted:  rgba(255, 255, 255, .78);
}


/* ==========================================================
   BASE / TIPOGRAFIA GLOBAL
   ========================================================== */
body {
  background-color: var(--fundo-suave);
  color: var(--text-body);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  line-height: 1.55;
}

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

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);
}

/* Underline decorativo padrão de seção */
.cr-title-underline {
  width: 72px;
  height: 3px;
  background: rgba(0, 142, 128, .35);
  border-radius: 999px;
}

/* Padrão de seção */
.cr-sec        { padding: 80px 0; }
.cr-sec--tint  { background: var(--fundo-suave); }
.cr-sec--white { background: #fff; }

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

/* Reset de border-radius — APENAS para componentes que de fato precisam de canto reto */
.cr-logo-item {
  border-radius: 14px; /* definido na própria seção Parceiros */
}


/* ==========================================================
   NAVBAR
   ========================================================== */
.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%;
}

/* Toggler mobile */
.navbar .navbar-toggler {
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 12px;
  padding: .45rem .6rem;
  background: rgba(0, 0, 0, .18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

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

.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;
  }
}

/* Link "Associe-se" */
.cr-nav-assoc {
  position: relative;
  font-weight: 600;
  color: #B0DC3C !important;
  text-decoration: none;
  padding: 6px 4px;
  transition: color .2s ease, opacity .2s ease;
  opacity: .92;
}

.cr-nav-assoc::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: #00B39F;
  opacity: .65;
  transform: scaleX(1);
  transform-origin: left;
  transition: transform .25s ease, opacity .25s ease;
}

.cr-nav-assoc:hover::after {
  opacity: 1;
  transform: scaleX(0);
  transform-origin: right;
}

/* Ícone portal */
.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; }

.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);
}

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

/* Botão CTA portal */
.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);
  background: rgba(0, 142, 128, .22);
  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 / HERO
   ========================================================== */
.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;
}

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

.frase-sobreposta,
.frase-sobreposta h1,
.frase-sobreposta h2,
.frase-sobreposta p { color: #fff !important; }

.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;
  opacity: .92;
}

.destaque { color: var(--verde-limao); }

@media (max-width: 575.98px) {
  .banner-container {
    height: 72vh;
    min-height: 520px;
    max-height: 720px;
  }

  .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; }
}

/* ==========================================================
   Banner Divulgação
   ========================================================== */
.cr-divulgacao-slider {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.cr-divulgacao-slider img {
  display: block;
  transition: opacity .35s ease;
}

.cr-divulgacao-arrow,
.cr-divulgacao-dots {
  opacity: 0;
  visibility: hidden;
  transition: .25s ease;
}

.cr-divulgacao-slider:hover .cr-divulgacao-arrow,
.cr-divulgacao-slider:hover .cr-divulgacao-dots {
  opacity: 1;
  visibility: visible;
}

.cr-divulgacao-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, .45);
  color: #fff;
  font-size: 34px;
  line-height: 38px;
  cursor: pointer;
}

.cr-divulgacao-prev {
  left: 14px;
}

.cr-divulgacao-next {
  right: 14px;
}

.cr-divulgacao-dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 8px;
}

.cr-divulgacao-dots button {
  width: 11px;
  height: 11px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .6);
  cursor: pointer;
}

.cr-divulgacao-dots button.active {
  background: #fff;
}


/* ==========================================================
   SOBRE
   ========================================================== */
#sobre.cr-sec--white { background: #fff; }

#sobre h2 {
  color: var(--verde-primario);
  font-weight: 800;
  letter-spacing: -0.02em;
}

#sobre .text-muted { color: rgba(15, 23, 42, .62) !important; }

#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;
  object-fit: cover;
  display: block;
  border-radius: 18px;
}

/* Accordion */
#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);
}

#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;
}

/* CTA 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);
}

@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
   ========================================================== */
#ouvidoria.cr-sec--tint { background: transparent !important; }

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

/* Palco + tarja verde */
#ouvidoria .cr-ouvi-stage { position: relative; overflow: hidden; }

#ouvidoria .cr-ouvi-stage::before {
  content: "";
  position: absolute;
  top: 140px;
  bottom: 140px;
  left: 0;
  right: 0;
  width: 100%;
  background: var(--verde-primario);
  z-index: 0;
}

#ouvidoria .cr-ouvi-stage > .row {
  position: relative;
  z-index: 2;
}

/* Card branco */
#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);
}

/* Facts / 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);
}

/* 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 code */
#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;
}

/* 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);
}

/* Lado direito (foto) */
#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;
  background-image: url("/img/ouvidoria-foto.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent;
  background-blend-mode: multiply;
  border: 1px solid rgba(255, 255, 255, .14);
  overflow: hidden;
}

#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;
}

@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; }
}


/* ==========================================================
   ORGANOGRAMA
   ========================================================== */
.cr-org {
  max-width: 1100px;
  margin: 0 auto;
}

/* Níveis */
.cr-level {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin: 0;
}

.cr-level--single { gap: 0; }
.cr-level--small  { gap: 12px; }
.cr-level--team   { gap: 12px; }

/* 4 cards na mesma linha */
.cr-level--quad .cr-tcard--person {
  width: 220px;
}

@media (max-width: 992px) {
  .cr-level--quad .cr-tcard--person { width: 200px; }
}

@media (max-width: 768px) {
  .cr-level--quad .cr-tcard--person { width: 100%; max-width: 480px; }
}

/* Label do grupo */
.cr-group {
  text-align: center;
  margin-bottom: 8px;
}

.cr-group-title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 auto 14px;
  padding: 5px 16px;
  background: var(--verde-primario);
  color: #fff;
  font-weight: 700;
  font-size: .92rem;
  border-radius: 999px;
  letter-spacing: .2px;
}

/* Conector vertical */
.cr-connector {
  display: flex;
  justify-content: center;
  margin: 10px 0 14px;
}

.cr-connector span {
  display: block;
  width: 1.5px;
  height: 24px;
  background: rgba(0, 0, 0, .14);
  border-radius: 2px;
}

/* Card base */
.cr-tcard {
  background: #fff;
  border: 0.5px solid rgba(0, 0, 0, .08);
  border-radius: 12px;
  padding: 20px 18px;
  text-align: center;
  width: 280px;
  max-width: 92vw;
  transition: border-color .2s ease;
}

.cr-tcard:hover {
  border-color: rgba(0, 142, 128, .30);
}

/* Card pessoa (com avatar) */
.cr-tcard--person {
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

/* Card único (Assembleia) */
.cr-level--single .cr-tcard {
  width: 340px;
  max-width: 92vw;
}

/* Card Conselho Fiscal */
.cr-tcard--small {
  width: 210px;
  padding: 14px 12px;
}

.cr-tcard--small.cr-tcard--person { min-height: 190px; }

/* Card Assembleia Geral (sem foto) */
.cr-tcard--nofoto {
  min-height: auto !important;
  padding: 16px 20px;
  background: rgba(0, 142, 128, .05);
  border: 1px solid rgba(0, 142, 128, .18);
}

.cr-tcard--nofoto .cr-tcard-top { display: none !important; }

/* Avatar */
.cr-tcard-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  flex: 0 0 auto;
  border: 2px solid rgba(0, 142, 128, .15);
  background: var(--fundo-suave);
  margin-bottom: 10px;
}

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

.cr-tcard--small .cr-tcard-avatar {
  width: 60px;
  height: 60px;
}

/* Nome e cargo */
.cr-tcard-name {
  font-weight: 700;
  font-size: .98rem;
  line-height: 1.2;
  color: var(--text-title);
  margin-bottom: 4px;
}

.cr-tcard-role {
  font-size: .85rem;
  color: rgba(15, 23, 42, .55);
  line-height: 1.3;
}

/* Cards da Equipe Administrativa (menores para caber 5) */
.cr-tcard--teamcard {
  width: 188px;
  min-height: 180px;
  padding: 14px 12px;
}

.cr-tcard--teamcard .cr-tcard-avatar {
  width: 58px;
  height: 58px;
}

.cr-tcard--teamcard .cr-tcard-name { font-size: .9rem; }
.cr-tcard--teamcard .cr-tcard-role { font-size: .80rem; }

@media (max-width: 992px) {
  .cr-tcard          { width: 260px; }
  .cr-tcard--small   { width: 200px; }
  .cr-tcard--teamcard { width: 210px; }
}

@media (max-width: 768px) {
  .cr-tcard,
  .cr-tcard--small,
  .cr-tcard--teamcard,
  .cr-level--single .cr-tcard {
    width: 100%;
    max-width: 480px;
  }
}


/* ==========================================================
   PARCEIROS — MARQUEE INFINITO
   ========================================================== */
.cr-logo-marquee {
  --cr-speed:    55s;
  --cr-item-w:   210px;
  --cr-item-h:   110px;
  --cr-gap:      14px;
  --cr-marquee-w: 1000px;

  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, var(--fundo-suave), rgba(234, 247, 245, 0));
}

.cr-logo-marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--fundo-suave), rgba(234, 247, 245, 0));
}

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

.cr-logo-group {
  display: flex;
  align-items: center;
  gap: var(--cr-gap);
  padding-right: var(--cr-gap);
}

@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;
}

@keyframes crMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-1 * var(--cr-marquee-w))); }
}

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


/* ==========================================================
   CONTATO
   ========================================================== */
.contato-section {
  background: var(--fundo-suave);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.contato-section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 520px;
  background: linear-gradient(90deg, var(--verde-primario) 0%, var(--verde-claro) 100%);
  z-index: 0;
}

.contato-section .container {
  position: relative;
  z-index: 1;
}

.contato-box {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .15);
  position: relative;
  z-index: 2;
}

.contato-titulo {
  font-size: 28px;
  font-weight: 700;
  color: var(--verde-primario);
  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);
}

.personagem-contato {
  max-width: 440px;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
  transform: translateY(-12px);
}

@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; }
}


/* ==========================================================
   MODAL ASSOCIAR
   ========================================================== */
#modalAssociar .modal-dialog {
  max-width: 720px;
  margin: auto;
}

#modalAssociar .modal-content {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

#modalAssociar .modal-body {
  padding: 0 !important;
  background: transparent;
  position: relative;
}

#iframeAssociar {
  width: 100%;
  border: 0;
  display: block;
  background: #f4fbfa;
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, .25);
  height: 520px;
  opacity: 0;
  transform: translateY(10px);
  animation: iframeIn .35s ease forwards;
}

@keyframes iframeIn {
  to { opacity: 1; transform: none; }
}

#modalAssociar .btn-close {
  position: absolute;
  top: -14px;
  right: -14px;
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--verde-primario);
  background-image: none;
  opacity: 1;
  filter: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

#modalAssociar .btn-close::before {
  content: "✕";
  color: #fff;
  font-size: 18px;
  line-height: 1;
}

.modal-backdrop.show {
  opacity: .55;
  backdrop-filter: blur(4px);
}

@media (max-width: 576px) {
  #modalAssociar .modal-dialog { margin: 0; max-width: 100%; }
  #modalAssociar .modal-content { height: 100vh; }
  #iframeAssociar { height: 100vh !important; border-radius: 0; }
  #modalAssociar .btn-close { top: 12px; right: 12px; }
}


/* ==========================================================
   MODAL INFORME IRPF
   ========================================================== */
#modalInformeIR .modal-dialog { max-width: 620px; }

#modalInformeIR .modal-content {
  border: 0;
  border-radius: 24px;
  overflow: hidden;
  background: transparent;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .30);
}

#modalInformeIR .modal-body { padding: 0; }

.cr-ir-card {
  position: relative;
  background:
    linear-gradient(rgba(0, 142, 128, .92), rgba(0, 142, 128, .92)),
    url('/img/fundo-verde.png') center/cover no-repeat;
  min-height: 720px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  display: flex;
  flex-direction: column;
}

#modalInformeIR .btn-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 30;
  background-color: rgba(255, 255, 255, .18);
  border-radius: 50%;
  padding: .75rem;
  opacity: 1;
  filter: none;
}

#modalInformeIR .btn-close:hover { background-color: rgba(255, 255, 255, .28); }

.cr-ir-screen {
  display: none;
  min-height: 720px;
}

.cr-ir-screen.is-active {
  display: flex;
  flex-direction: column;
}

.cr-ir-hero { padding: 42px 32px 16px; text-align: center; }

.cr-ir-title {
  margin: 0;
  color: #fff;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -.02em;
  text-shadow: 0 3px 10px rgba(0, 0, 0, .25);
}

.cr-ir-icon-wrap { padding: 6px 32px 10px; text-align: center; }

.cr-ir-icon-main {
  width: min(180px, 42vw);
  max-width: 180px;
  height: auto;
  display: inline-block;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, .18));
}

.cr-ir-text { padding: 8px 28px 0; text-align: center; }

.cr-ir-text p {
  margin: 0;
  color: #fff;
  font-size: clamp(1.05rem, 2vw, 1.8rem);
  font-weight: 600;
  line-height: 1.45;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .22);
}

.cr-ir-stores {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 28px 24px 18px;
}

.cr-store-btn {
  min-width: 190px;
  height: 62px;
  border-radius: 14px;
  background: #111;
  border: 1px solid rgba(255, 255, 255, .18);
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 18px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .18);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.cr-store-btn:hover {
  transform: translateY(-2px);
  color: #fff;
  border-color: rgba(255, 255, 255, .32);
  box-shadow: 0 14px 28px rgba(0, 0, 0, .24);
}

.cr-store-btn i { font-size: 1.65rem; line-height: 1; }

.cr-store-lines {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.05;
}

.cr-store-lines small { font-size: .72rem; opacity: .9; letter-spacing: .02em; }
.cr-store-lines strong { font-size: 1.3rem; font-weight: 700; }

.cr-ir-video-link-wrap {
  margin-top: auto;
  padding: 22px 24px 28px;
  display: flex;
  justify-content: center;
}

.cr-ir-video-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  text-decoration: none;
  font-size: clamp(1rem, 1.5vw, 1.45rem);
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .20);
  transition: transform .2s ease, opacity .2s ease;
}

.cr-ir-video-link:hover { color: #fff; transform: translateX(2px); opacity: .96; }

.cr-ir-arrows { display: inline-flex; gap: 4px; align-items: center; }

.cr-ir-arrows span {
  width: 0;
  height: 0;
  border-top: 17px solid transparent;
  border-bottom: 17px solid transparent;
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, .16));
}

.cr-ir-arrows span:nth-child(1) { border-left: 18px solid #b0dc3c; }
.cr-ir-arrows span:nth-child(2) { border-left: 18px solid #9ed63a; }
.cr-ir-arrows span:nth-child(3) { border-left: 18px solid #28c7bf; }

.cr-ir-footer {
  background: #fff;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cr-ir-brand { display: flex; align-items: center; gap: 14px; }
.cr-ir-brand img { max-width: 230px; width: 100%; height: auto; }

.cr-ir-footer-right { text-align: right; color: var(--verde-primario); }
.cr-ir-footer-right .slogan { display: block; font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.cr-ir-footer-right .meta { margin: 0; padding: 0; list-style: none; }
.cr-ir-footer-right .meta li { font-size: .92rem; font-weight: 600; line-height: 1.45; }

/* Tela de vídeo */
.cr-ir-video-screen {
  background:
    linear-gradient(rgba(0, 142, 128, .96), rgba(0, 142, 128, .96)),
    url('/img/fundo-verde.png') center/cover no-repeat;
}

.cr-ir-video-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 22px 22px 10px;
}

.cr-ir-video-title {
  margin: 0;
  color: #fff;
  font-size: clamp(1.15rem, 2vw, 1.65rem);
  font-weight: 800;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .20);
}

.cr-ir-back-btn {
  border: 1px solid rgba(255, 255, 255, .24);
  background: rgba(255, 255, 255, .10);
  color: #fff;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 700;
  transition: background .2s ease, transform .2s ease;
}

.cr-ir-back-btn:hover { background: rgba(255, 255, 255, .18); color: #fff; transform: translateY(-1px); }

.cr-ir-video-box { padding: 12px 22px 26px; }

.cr-ir-video-frame {
  background: #000;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .28);
}

.cr-ir-video-frame video {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  background: #000;
}

@media (max-width: 767.98px) {
  #modalInformeIR .modal-dialog { max-width: calc(100vw - 18px); margin: 10px auto; }
  .cr-ir-card, .cr-ir-screen { min-height: auto; }
  .cr-ir-hero { padding: 56px 18px 14px; }
  .cr-ir-text { padding: 8px 18px 0; }
  .cr-ir-stores { padding: 22px 16px 14px; gap: 10px; }
  .cr-store-btn { min-width: 100%; height: 58px; }
  .cr-ir-video-link-wrap { padding: 18px 16px 22px; }
  .cr-ir-footer { flex-direction: column; align-items: flex-start; }
  .cr-ir-footer-right { text-align: left; }
  .cr-ir-footer-right .slogan { font-size: .98rem; }
  .cr-ir-footer-right .meta li { font-size: .88rem; }
  .cr-ir-video-top { flex-direction: column; align-items: flex-start; }
}


/* ==========================================================
   WHATSAPP FLUTUANTE
   ========================================================== */
.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; }

@supports (padding: max(0px)) {
  .whatsapp-float {
    right:  max(20px, env(safe-area-inset-right));
    bottom: max(20px, env(safe-area-inset-bottom));
  }
}


/* ==========================================================
   RODAPÉ / FOOTER
   ========================================================== */
.cr-footer-clean {
  background: var(--cr-footer-bg);
  color: #fff;
}

.cr-footer-clean a { color: #fff; text-decoration: none; opacity: .95; }
.cr-footer-clean a:hover { text-decoration: underline; opacity: 1; }

/* Newsletter */
.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; }

.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);
}

.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; }

#newsletterMsgCr { color: var(--cr-footer-muted); }

/* Colunas */
.cr-foot-mid { padding: 44px 0 28px; }

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

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

.cr-foot-list { list-style: none; padding: 0; margin: 0; }
.cr-foot-list li { margin: 8px 0; }

.cr-foot-sep {
  height: 1px;
  background: var(--cr-footer-border);
  margin: 26px 0;
}

/* Social + logo */
.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; }

.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);
}

/* Newsletter mobile */
@media (max-width: 991.98px) {
  .cr-foot-news .form-control,
  .cr-foot-news .btn-news { width: 100% !important; border-radius: 12px !important; }
  .cr-foot-news .input-group { flex-direction: column; gap: 10px; }
}


/* ==========================================================
   COOKIE BANNER
   ========================================================== */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 900px;
  background: linear-gradient(135deg, var(--verde-primario), var(--verde-claro));
  color: #fff;
  padding: 18px 20px;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .25);
  display: none;
  z-index: 9998;
  animation: cookieFadeUp .4s ease;
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-text { font-size: .95rem; line-height: 1.5; max-width: 560px; }
.cookie-text a { color: var(--verde-limao); font-weight: 600; text-decoration: none; margin-left: 6px; }
.cookie-text a:hover { text-decoration: underline; }

.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }

.btn-cookie {
  border: none;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: .2s ease;
  font-size: .9rem;
}

.btn-accept { background: var(--verde-limao); color: #004d45; }
.btn-accept:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,.2); }

.btn-reject { background: rgba(255,255,255,.15); color: #fff; border: 1px solid rgba(255,255,255,.3); }
.btn-reject:hover { background: rgba(255,255,255,.25); }

.btn-manage { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.5); }
.btn-manage:hover { background: rgba(255,255,255,.1); }

@keyframes cookieFadeUp {
  from { opacity: 0; transform: translate(-50%, 20px); }
  to   { opacity: 1; transform: translate(-50%, 0); }
}

/* Overlay e modal */
.cookie-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .45);
  z-index: 9998;
}

.cookie-overlay.open { display: block; }

.cookie-modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 32px);
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  z-index: 9999;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .2);
  animation: cookieModalIn .25s ease;
}

.cookie-modal.open { display: block; }

@keyframes cookieModalIn {
  from { opacity: 0; transform: translate(-50%, -46%); }
  to   { opacity: 1; transform: translate(-50%, -50%); }
}

.cm-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.cm-title  { font-size: 1.1rem; font-weight: 700; color: var(--verde-primario); }
.cm-close  { background: none; border: none; font-size: 1.5rem; color: #6b7280; cursor: pointer; line-height: 1; padding: 0 4px; }
.cm-close:hover { color: #111; }

.cm-desc {
  font-size: .9rem;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid #e5e7eb;
}

.cm-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid #f3f4f6;
}

.cm-cat-name { font-size: .95rem; font-weight: 600; color: #1f2937; margin-bottom: 3px; }
.cm-cat-desc { font-size: .82rem; color: #6b7280; line-height: 1.5; }
.cm-toggle--locked .cm-toggle-label { font-size: .78rem; color: var(--verde-primario); font-weight: 600; white-space: nowrap; }

.cm-switch { position: relative; display: inline-block; width: 44px; height: 24px; flex-shrink: 0; cursor: pointer; }
.cm-switch input { opacity: 0; width: 0; height: 0; }
.cm-slider { position: absolute; inset: 0; background: #d1d5db; border-radius: 999px; transition: .2s; }
.cm-slider::before { content: ''; position: absolute; width: 18px; height: 18px; left: 3px; top: 3px; background: #fff; border-radius: 50%; transition: .2s; }
.cm-switch input:checked + .cm-slider { background: var(--verde-primario); }
.cm-switch input:checked + .cm-slider::before { transform: translateX(20px); }

.cm-footer { display: flex; gap: 10px; justify-content: flex-end; margin-top: 20px; padding-top: 16px; border-top: 1px solid #e5e7eb; }

.cm-btn { padding: 10px 18px; border-radius: 999px; font-weight: 600; font-size: .9rem; cursor: pointer; transition: .2s ease; border: none; }
.cm-btn-primary { background: var(--verde-primario); color: #fff; }
.cm-btn-primary:hover { background: var(--verde-claro); transform: translateY(-1px); }
.cm-btn-outline { background: transparent; color: #6b7280; border: 1px solid #d1d5db; }
.cm-btn-outline:hover { background: #f9fafb; }

/* Botão reabrir */
.cookie-reopen {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--verde-primario);
  color: #fff;
  border: none;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 142, 128, .35);
  z-index: 9000;
  transition: .2s ease;
}

.cookie-reopen:hover { background: var(--verde-claro); transform: scale(1.08); }
.cookie-reopen.visible { display: flex; }

@media (max-width: 600px) {
  .cookie-content  { flex-direction: column; align-items: flex-start; }
  .cookie-actions  { width: 100%; justify-content: flex-end; }
  .cm-footer       { flex-direction: column; }
  .cm-btn          { width: 100%; text-align: center; }
}


/* ==========================================================
   DIRETORIA (seção interna, não está no index mas mantida)
   ========================================================== */
.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; }

.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; }

.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; }

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

@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); }
}


/* ==========================================================
   CAROUSEL (auxiliar de seções internas)
   ========================================================== */
.cr-carousel-wrap { padding: 10px 54px; }
.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); }

@media (max-width: 575.98px) {
  .cr-carousel-wrap { padding: 0; }
  .cr-carousel-btn  { display: none; }
}
