/* ==========================================================
   assets/css/main.css – Sistema visual global Contábil Rio
   ========================================================== */

/* ----------------------------------------------------------
   1. VARIÁVEIS GLOBAIS
   ---------------------------------------------------------- */
:root {
  /* Cores principais */
  --cr-navy:        #020d2c;
  --cr-navy-light:  #071a42;
  --cr-navy-mid:    #0a2151;
  --cr-blue:        #0788ff;
  --cr-blue-dark:   #0566cc;
  --cr-cyan:        #08c8ff;
  --cr-white:       #ffffff;

  /* Textos */
  --cr-text:        #121c42;
  --cr-muted:       #667085;
  --cr-muted-light: #98a3b8;

  /* Fundos */
  --cr-gray:        #f5f7fb;
  --cr-gray-mid:    #eef1f7;
  --cr-border:      #e4e8f0;

  /* Tipografia */
  --cr-font:        'Inter', system-ui, -apple-system, sans-serif;

  /* Tamanhos de fonte */
  --cr-text-xs:    0.75rem;     /* 12px */
  --cr-text-sm:    0.875rem;    /* 14px */
  --cr-text-base:  1rem;        /* 16px */
  --cr-text-lg:    1.125rem;    /* 18px */
  --cr-text-xl:    1.25rem;     /* 20px */
  --cr-text-2xl:   1.5rem;      /* 24px */
  --cr-text-3xl:   1.875rem;    /* 30px */
  --cr-text-4xl:   2.25rem;     /* 36px */
  --cr-text-5xl:   3rem;        /* 48px */
  --cr-text-6xl:   3.75rem;     /* 60px */

  /* Espaçamentos */
  --cr-space-1:   0.25rem;
  --cr-space-2:   0.5rem;
  --cr-space-3:   0.75rem;
  --cr-space-4:   1rem;
  --cr-space-5:   1.25rem;
  --cr-space-6:   1.5rem;
  --cr-space-8:   2rem;
  --cr-space-10:  2.5rem;
  --cr-space-12:  3rem;
  --cr-space-16:  4rem;
  --cr-space-20:  5rem;
  --cr-space-24:  6rem;

  /* Container */
  --cr-container: 1280px;
  --cr-gutter:    clamp(1.5rem, 5vw, 2.5rem);

  /* Border radius */
  --cr-radius-sm:  4px;
  --cr-radius-md:  8px;
  --cr-radius-lg:  12px;
  --cr-radius-xl:  16px;
  --cr-radius-2xl: 24px;
  --cr-radius-full: 9999px;

  /* Sombras */
  --cr-shadow-sm:  0 1px 3px rgba(2, 13, 44, 0.08);
  --cr-shadow-md:  0 4px 16px rgba(2, 13, 44, 0.12);
  --cr-shadow-lg:  0 8px 32px rgba(2, 13, 44, 0.16);
  --cr-shadow-xl:  0 16px 48px rgba(2, 13, 44, 0.20);

  /* Transições */
  --cr-transition: 0.25s ease;
  --cr-transition-slow: 0.4s ease;

  /* Header height */
  --cr-header-height: 76px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--cr-font);
  font-size: var(--cr-text-base);
  color: var(--cr-text);
  line-height: 1.6;
  background: var(--cr-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--cr-transition);
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
}

/* ----------------------------------------------------------
   3. TIPOGRAFIA
   ---------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.15;
  color: inherit;
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 700; letter-spacing: -0.015em; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); font-weight: 600; }

.cr-eyebrow {
  display: inline-block;
  font-size: var(--cr-text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cr-blue);
  margin-bottom: var(--cr-space-4);
}

.cr-eyebrow--light {
  color: var(--cr-cyan);
}

p {
  line-height: 1.7;
}

/* ----------------------------------------------------------
   4. CONTAINER
   ---------------------------------------------------------- */
.cr-container {
  width: 100%;
  max-width: var(--cr-container);
  margin-inline: auto;
  padding-inline: var(--cr-gutter);
}

/* ----------------------------------------------------------
   5. BOTÕES
   ---------------------------------------------------------- */
.cr-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--cr-space-2);
  padding: 0.875rem 1.75rem;
  font-size: var(--cr-text-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--cr-radius-md);
  transition: all var(--cr-transition);
  white-space: nowrap;
  cursor: pointer;
  line-height: 1;
}

.cr-btn--primary {
  background: var(--cr-blue);
  color: var(--cr-white);
  border: 2px solid var(--cr-blue);
}

.cr-btn--primary:hover,
.cr-btn--primary:focus-visible {
  background: var(--cr-blue-dark);
  border-color: var(--cr-blue-dark);
  color: var(--cr-white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(7, 136, 255, 0.35);
}

.cr-btn--secondary {
  background: transparent;
  color: var(--cr-white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.cr-btn--secondary:hover,
.cr-btn--secondary:focus-visible {
  border-color: var(--cr-white);
  background: rgba(255, 255, 255, 0.08);
  color: var(--cr-white);
}

.cr-btn--outline {
  background: transparent;
  color: var(--cr-blue);
  border: 2px solid var(--cr-blue);
}

.cr-btn--outline:hover,
.cr-btn--outline:focus-visible {
  background: var(--cr-blue);
  color: var(--cr-white);
}

.cr-btn:focus-visible {
  outline: 3px solid var(--cr-cyan);
  outline-offset: 3px;
}

.cr-btn__icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.cr-btn__icon svg,
.cr-btn__svg {
  width: 20px;
  height: 20px;
}

/* Link com seta */
.cr-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: var(--cr-space-2);
  font-size: var(--cr-text-sm);
  font-weight: 600;
  color: var(--cr-blue);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: gap var(--cr-transition);
}

.cr-link-arrow:hover {
  gap: var(--cr-space-3);
  color: var(--cr-blue-dark);
}

.cr-link-arrow--light {
  color: var(--cr-white);
}

.cr-link-arrow--light:hover {
  color: var(--cr-cyan);
}

/* ----------------------------------------------------------
   6. HEADER
   ---------------------------------------------------------- */
.cr-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--cr-navy);
  height: var(--cr-header-height);
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: box-shadow var(--cr-transition);
}

.cr-header.is-scrolled {
  box-shadow: 0 4px 24px rgba(2, 13, 44, 0.5);
}

.cr-header__inner {
  display: flex;
  align-items: center;
  gap: var(--cr-space-8);
  width: 100%;
}

/* Logo */
.cr-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: var(--cr-space-3);
  text-decoration: none;
}

.cr-logo__img {
  height: 44px;
  width: auto;
}

.cr-logo__mark {
  display: flex;
  align-items: center;
  gap: var(--cr-space-2);
}

.cr-logo__icon {
  width: 42px;
  height: 42px;
  background: var(--cr-blue);
  border-radius: var(--cr-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 900;
  color: var(--cr-white);
  letter-spacing: -0.02em;
  position: relative;
  overflow: hidden;
}

.cr-logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.cr-logo__name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--cr-white);
  letter-spacing: -0.01em;
}

.cr-logo__sub {
  font-size: 0.6rem;
  font-weight: 500;
  color: var(--cr-cyan);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* Navegação */
.cr-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cr-nav__list {
  display: flex;
  align-items: center;
  gap: var(--cr-space-1);
}

.cr-nav__item a {
  display: block;
  padding: var(--cr-space-2) var(--cr-space-4);
  font-size: var(--cr-text-sm);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  border-radius: var(--cr-radius-sm);
  transition: all var(--cr-transition);
  letter-spacing: 0.01em;
}

.cr-nav__item a:hover,
.cr-nav__item.current-menu-item a,
.cr-nav__item.current-page-ancestor a {
  color: var(--cr-white);
  background: rgba(255, 255, 255, 0.08);
}

/* CTA do header */
.cr-header__cta {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: var(--cr-space-3);
}

.cr-header__cta .cr-btn {
  padding: 0.6875rem 1.25rem;
  font-size: 0.8125rem;
}

/* Hamburger */
.cr-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.cr-hamburger__line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--cr-white);
  border-radius: 2px;
  transition: transform var(--cr-transition), opacity var(--cr-transition);
}

.cr-hamburger.is-open .cr-hamburger__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.cr-hamburger.is-open .cr-hamburger__line:nth-child(2) {
  opacity: 0;
}
.cr-hamburger.is-open .cr-hamburger__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ----------------------------------------------------------
   7. HERO
   ---------------------------------------------------------- */
.cr-hero {
  background: var(--cr-navy);
  padding-top: calc(var(--cr-header-height) + var(--cr-space-16));
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.cr-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 40%, rgba(7, 136, 255, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(8, 200, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.cr-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--cr-space-16);
  align-items: start;
  padding-bottom: var(--cr-space-12);
}

/* Breadcrumb */
.cr-breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--cr-space-2);
  font-size: var(--cr-text-xs);
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--cr-space-6);
  flex-wrap: wrap;
}

.cr-breadcrumb a {
  color: rgba(255,255,255,0.5);
  transition: color var(--cr-transition);
}

.cr-breadcrumb a:hover {
  color: var(--cr-cyan);
}

.cr-breadcrumb__sep {
  font-size: 0.625rem;
  opacity: 0.6;
}

.cr-breadcrumb__current {
  color: rgba(255,255,255,0.7);
}

/* Conteúdo do hero */
.cr-hero__content {
  display: flex;
  flex-direction: column;
  padding-top: var(--cr-space-4);
}

.cr-hero__title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  color: var(--cr-white);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: var(--cr-space-6);
}

.cr-hero__text {
  font-size: var(--cr-text-base);
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: var(--cr-space-10);
}

.cr-hero__actions {
  display: flex;
  align-items: center;
  gap: var(--cr-space-4);
  flex-wrap: wrap;
}

/* Imagem do hero */
.cr-hero__visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  height: 100%;
}

.cr-hero__image-wrap {
  width: 100%;
  border-radius: var(--cr-radius-xl) var(--cr-radius-xl) 0 0;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  background: var(--cr-navy-light);
}

.cr-hero__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Placeholder de imagem com gradiente corporativo */
.cr-hero__image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--cr-navy-light) 0%, var(--cr-navy-mid) 50%, #0a1c4a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.cr-hero__image-placeholder::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 120%;
  height: 120%;
  background: radial-gradient(ellipse, rgba(7, 136, 255, 0.15) 0%, transparent 60%);
}

/* Indicadores do hero */
.cr-hero__stats {
  background: rgba(255,255,255,0.04);
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 0;
  padding: var(--cr-space-8) 0;
}

.cr-hero__stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.cr-hero__stat {
  display: flex;
  align-items: flex-start;
  gap: var(--cr-space-4);
  padding: var(--cr-space-4) var(--cr-space-8);
  border-right: 1px solid rgba(255,255,255,0.08);
}

.cr-hero__stat:last-child {
  border-right: none;
}

.cr-hero__stat-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(7, 136, 255, 0.15);
  border-radius: var(--cr-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cr-hero__stat-icon svg {
  width: 22px;
  height: 22px;
  color: var(--cr-cyan);
}

.cr-hero__stat-content {}

.cr-hero__stat-value {
  font-size: var(--cr-text-xl);
  font-weight: 800;
  color: var(--cr-white);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.cr-hero__stat-label {
  font-size: var(--cr-text-sm);
  color: rgba(255,255,255,0.6);
  margin-top: var(--cr-space-1);
  line-height: 1.4;
}

/* ----------------------------------------------------------
   8. SEÇÃO "O QUE FAZEMOS"
   ---------------------------------------------------------- */
.cr-services {
  padding: var(--cr-space-24) 0;
  background: var(--cr-white);
}

.cr-services__grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: var(--cr-space-20);
  align-items: start;
}

.cr-services__intro {}

.cr-section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: var(--cr-space-5);
  line-height: 1.2;
}

.cr-section-title--white {
  color: var(--cr-white);
}

.cr-section-text {
  font-size: var(--cr-text-base);
  color: var(--cr-muted);
  line-height: 1.75;
  margin-bottom: var(--cr-space-8);
}

.cr-section-text--white {
  color: rgba(255,255,255,0.68);
}

/* Grid de serviços */
.cr-services__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--cr-border);
  border-radius: var(--cr-radius-lg);
  overflow: hidden;
}

.cr-service-card {
  padding: var(--cr-space-8);
  border-right: 1px solid var(--cr-border);
  border-bottom: 1px solid var(--cr-border);
  transition: background var(--cr-transition);
}

.cr-service-card:nth-child(even) {
  border-right: none;
}

/* Remove bottom border from last row */
.cr-service-card:nth-last-child(-n+2) {
  border-bottom: none;
}

.cr-service-card:hover {
  background: var(--cr-gray);
}

.cr-service-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(7, 136, 255, 0.08);
  border-radius: var(--cr-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--cr-space-4);
  transition: background var(--cr-transition);
}

.cr-service-card:hover .cr-service-card__icon {
  background: rgba(7, 136, 255, 0.14);
}

.cr-service-card__icon svg {
  width: 24px;
  height: 24px;
  color: var(--cr-blue);
}

.cr-service-card__title {
  font-size: var(--cr-text-base);
  font-weight: 700;
  color: var(--cr-text);
  margin-bottom: var(--cr-space-2);
  letter-spacing: -0.01em;
}

.cr-service-card__desc {
  font-size: var(--cr-text-sm);
  color: var(--cr-muted);
  line-height: 1.65;
}

/* ----------------------------------------------------------
   9. SEÇÃO "NOSSO DIFERENCIAL"
   ---------------------------------------------------------- */
.cr-differentials {
  padding: var(--cr-space-24) 0;
  background: var(--cr-navy);
  position: relative;
  overflow: hidden;
}

.cr-differentials::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 70% 60% at 80% 50%, rgba(7, 136, 255, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.cr-differentials__grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: var(--cr-space-20);
  align-items: start;
  position: relative;
}

.cr-differentials__intro {
  display: flex;
  flex-direction: column;
}

.cr-differentials__pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-left: 1px solid rgba(255,255,255,0.08);
}

.cr-pillar {
  padding: var(--cr-space-8) var(--cr-space-6);
  border-right: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: var(--cr-space-4);
}

.cr-pillar:last-child {
  border-right: none;
}

.cr-pillar__icon {
  width: 56px;
  height: 56px;
  background: rgba(7, 136, 255, 0.12);
  border-radius: var(--cr-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(7, 136, 255, 0.2);
}

.cr-pillar__icon svg {
  width: 28px;
  height: 28px;
  color: var(--cr-cyan);
}

.cr-pillar__title {
  font-size: var(--cr-text-base);
  font-weight: 700;
  color: var(--cr-white);
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.cr-pillar__text {
  font-size: var(--cr-text-sm);
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  flex: 1;
}

/* ----------------------------------------------------------
   10. SEÇÃO "EXPERIÊNCIA"
   ---------------------------------------------------------- */
.cr-experience {
  padding: var(--cr-space-24) 0;
  background: var(--cr-white);
}

.cr-experience__grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: var(--cr-space-20);
  align-items: start;
}

/* Timeline horizontal */
.cr-timeline {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
  padding-top: var(--cr-space-8);
}

.cr-timeline::before {
  content: '';
  position: absolute;
  top: calc(var(--cr-space-8) + 24px);
  left: calc(24px + 16px);
  right: calc(24px + 16px);
  height: 2px;
  background: linear-gradient(90deg, var(--cr-blue) 0%, var(--cr-cyan) 100%);
}

.cr-timeline__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 0 var(--cr-space-3);
}

.cr-timeline__icon-wrap {
  width: 48px;
  height: 48px;
  background: var(--cr-blue);
  border-radius: var(--cr-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--cr-space-4);
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  border: 3px solid var(--cr-white);
  box-shadow: 0 0 0 2px var(--cr-blue);
}

.cr-timeline__icon-wrap svg {
  width: 22px;
  height: 22px;
  color: var(--cr-white);
}

.cr-timeline__dot {
  width: 10px;
  height: 10px;
  background: var(--cr-blue);
  border-radius: var(--cr-radius-full);
  margin-bottom: var(--cr-space-5);
  border: 2px solid var(--cr-white);
  box-shadow: 0 0 0 2px var(--cr-blue);
}

.cr-timeline__title {
  font-size: var(--cr-text-base);
  font-weight: 700;
  color: var(--cr-text);
  margin-bottom: var(--cr-space-2);
  letter-spacing: -0.01em;
}

.cr-timeline__desc {
  font-size: var(--cr-text-sm);
  color: var(--cr-muted);
  line-height: 1.6;
}

/* ----------------------------------------------------------
   11. CTA FINAL
   ---------------------------------------------------------- */
.cr-cta-section {
  padding: var(--cr-space-16) 0;
}

.cr-cta-card {
  background: var(--cr-navy);
  border-radius: var(--cr-radius-2xl);
  padding: var(--cr-space-12) var(--cr-space-16);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--cr-space-10);
  align-items: center;
  position: relative;
  overflow: hidden;
}

.cr-cta-card::before {
  content: '';
  position: absolute;
  bottom: -40px;
  right: 180px;
  width: 300px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(7, 136, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

/* Gráfico de crescimento decorativo */
.cr-cta-card__graphic {
  position: absolute;
  bottom: 0;
  right: 50px;
  opacity: 0.12;
  width: 180px;
  height: 120px;
  pointer-events: none;
}

.cr-cta-card__icon {
  width: 80px;
  height: 80px;
  background: rgba(7, 136, 255, 0.15);
  border-radius: var(--cr-radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(7, 136, 255, 0.25);
  flex-shrink: 0;
}

.cr-cta-card__icon svg {
  width: 40px;
  height: 40px;
  color: var(--cr-cyan);
}

.cr-cta-card__content {}

.cr-cta-card__title {
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  font-weight: 700;
  color: var(--cr-white);
  line-height: 1.3;
  margin-bottom: var(--cr-space-3);
  letter-spacing: -0.02em;
}

.cr-cta-card__text {
  font-size: var(--cr-text-sm);
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 480px;
}

.cr-cta-card__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--cr-space-3);
  flex-shrink: 0;
}

.cr-cta-card__whatsapp {
  display: flex;
  align-items: center;
  gap: var(--cr-space-2);
  font-size: var(--cr-text-xs);
  color: rgba(255,255,255,0.55);
}

.cr-cta-card__whatsapp svg {
  width: 16px;
  height: 16px;
  color: #25D366;
}

/* ----------------------------------------------------------
   12. FOOTER
   ---------------------------------------------------------- */
.cr-footer {
  background: var(--cr-navy);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.cr-footer__main {
  padding: var(--cr-space-16) 0 var(--cr-space-12);
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
  gap: var(--cr-space-10);
}

/* Coluna 1 – Logo + tagline */
.cr-footer__brand {}

.cr-footer__tagline {
  font-size: var(--cr-text-sm);
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  margin-top: var(--cr-space-5);
  margin-bottom: var(--cr-space-6);
  max-width: 280px;
}

.cr-footer__social {
  display: flex;
  gap: var(--cr-space-3);
}

.cr-social-link {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.07);
  border-radius: var(--cr-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--cr-transition);
}

.cr-social-link:hover {
  background: var(--cr-blue);
}

.cr-social-link svg {
  width: 18px;
  height: 18px;
  color: rgba(255,255,255,0.7);
  transition: color var(--cr-transition);
}

.cr-social-link:hover svg {
  color: var(--cr-white);
}

/* Colunas de links */
.cr-footer__col {}

.cr-footer__col-title {
  font-size: var(--cr-text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cr-white);
  margin-bottom: var(--cr-space-5);
}

.cr-footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--cr-space-3);
}

.cr-footer__links a {
  font-size: var(--cr-text-sm);
  color: rgba(255,255,255,0.55);
  transition: color var(--cr-transition);
  line-height: 1;
}

.cr-footer__links a:hover {
  color: var(--cr-cyan);
}

/* Coluna de contato */
.cr-footer__contact-items {
  display: flex;
  flex-direction: column;
  gap: var(--cr-space-4);
}

.cr-footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--cr-space-3);
}

.cr-footer__contact-icon {
  width: 32px;
  height: 32px;
  background: rgba(7, 136, 255, 0.12);
  border-radius: var(--cr-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cr-footer__contact-icon svg {
  width: 16px;
  height: 16px;
  color: var(--cr-cyan);
}

.cr-footer__contact-text {
  font-size: var(--cr-text-sm);
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
}

.cr-footer__contact-text a {
  color: rgba(255,255,255,0.55);
}

.cr-footer__contact-text a:hover {
  color: var(--cr-cyan);
}

/* Copyright */
.cr-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: var(--cr-space-6) 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cr-footer__copyright {
  font-size: var(--cr-text-xs);
  color: rgba(255,255,255,0.35);
}

/* ----------------------------------------------------------
   13. UTILITÁRIOS
   ---------------------------------------------------------- */
.cr-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.cr-text-blue   { color: var(--cr-blue); }
.cr-text-cyan   { color: var(--cr-cyan); }
.cr-text-white  { color: var(--cr-white); }
.cr-text-muted  { color: var(--cr-muted); }

.cr-mt-auto { margin-top: auto; }

/* Offset do header */
#main {
  padding-top: 0;
}

/* Smooth scroll offset para anchors */
[id] {
  scroll-margin-top: calc(var(--cr-header-height) + 1rem);
}

/* ----------------------------------------------------------
   14. ANIMAÇÕES DE ENTRADA
   ---------------------------------------------------------- */
.cr-service-card,
.cr-pillar,
.cr-timeline__item,
.cr-hero__stat {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.cr-service-card.is-visible,
.cr-pillar.is-visible,
.cr-timeline__item.is-visible,
.cr-hero__stat.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Desativa animação se o usuário preferir motion reduzido */
@media (prefers-reduced-motion: reduce) {
  .cr-service-card,
  .cr-pillar,
  .cr-timeline__item,
  .cr-hero__stat {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ==========================================================
   15. HOME — REFINO VISUAL DA REFERÊNCIA
   ========================================================== */
:root {
  --cr-navy: #00102f;
  --cr-text: #06194e;
  --cr-blue: #008aff;
  --cr-cyan: #00bfff;
  --cr-container: 1320px;
  --cr-header-height: 88px;
}

.cr-header {
  position: absolute;
  background: linear-gradient(90deg, #00102f 0%, #001333 65%, #001536 100%);
  border-bottom: 0;
}

.cr-header__inner { min-height: var(--cr-header-height); gap: 42px; }
.cr-logo__brand { display: block; width: 102px; height: auto; }
.cr-nav__list { gap: 18px; }
.cr-nav__item a {
  padding: 10px 8px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}
.cr-nav__item a:hover,
.cr-nav__item.current-menu-item a,
.cr-nav__item.current-page-ancestor a { color: var(--cr-cyan); background: transparent; }
.cr-header__cta .cr-btn { min-height: 48px; padding: 0 19px; font-size: 11px; }

.cr-btn {
  min-height: 54px;
  padding: 0 23px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
}
.cr-btn--primary { background: linear-gradient(135deg, #049bff, #0879ef); box-shadow: 0 8px 22px rgba(0, 137, 255, .23); }
.cr-btn--secondary { border-width: 1px; }

.cr-hero {
  min-height: 752px;
  height: 752px;
  padding-top: 105px;
  background: linear-gradient(108deg, #00102f 0%, #001334 58%, #00102d 100%);
}
.cr-hero__grid {
  grid-template-columns: 545px 1fr;
  gap: 0;
  padding-bottom: 0;
}
.cr-hero__content { padding-top: 32px; position: relative; z-index: 3; }
.cr-breadcrumb { margin-bottom: 43px; font-size: 11px; color: rgba(255,255,255,.72); }
.cr-breadcrumb::before { content: '⌂'; color: var(--cr-cyan); font-size: 15px; }
.cr-breadcrumb a { color: rgba(255,255,255,.72); }
.cr-hero .cr-eyebrow { margin-bottom: 18px; font-size: 13px; letter-spacing: 0; }
.cr-hero__title { font-size: 40px; line-height: 1.08; margin-bottom: 22px; max-width: 590px; }
.cr-hero__text { font-size: 15px; line-height: 1.75; max-width: 535px; margin-bottom: 29px; }
.cr-hero__actions { gap: 20px; }
.cr-hero__visual { margin-right: calc((100vw - min(100vw, var(--cr-container))) / -2); }
.cr-hero__image-wrap { height: 466px; aspect-ratio: auto; border-radius: 0; background: #071a42; }
.cr-hero__image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #001333 0%, rgba(0,19,51,.18) 22%, rgba(0,13,40,.05) 72%, rgba(0,12,35,.52) 100%), linear-gradient(0deg, #00102f 0%, transparent 28%);
  pointer-events: none;
}
.cr-hero__image-wrap img { object-position: center 48%; filter: saturate(.9) contrast(1.04); }
.cr-hero__stats {
  position: absolute;
  z-index: 4;
  right: max(38px, calc((100vw - var(--cr-container)) / 2));
  bottom: 41px;
  width: 660px;
  padding: 0;
  margin: 0;
  background: transparent;
  border: 0;
}
.cr-hero__stats .cr-container { padding: 0; }
.cr-hero__stat { padding: 8px 25px; align-items: center; border: 0; }
.cr-hero__stat-icon { width: 46px; height: 46px; border-radius: 0; background: transparent; }
.cr-hero__stat-icon svg { width: 36px; height: 36px; color: var(--cr-cyan); }
.cr-hero__stat-value { color: var(--cr-cyan); font-size: 15px; }
.cr-hero__stat-label { color: rgba(255,255,255,.76); font-size: 11px; max-width: 106px; }

.cr-services { min-height: 514px; padding: 58px 0 48px; }
.cr-services__grid { grid-template-columns: 430px 1fr; gap: 58px; }
.cr-eyebrow { margin-bottom: 14px; font-size: 12px; letter-spacing: 0; }
.cr-section-title { max-width: 390px; margin-bottom: 21px; font-size: 30px; line-height: 1.17; }
.cr-section-text { max-width: 410px; margin-bottom: 28px; font-size: 14px; line-height: 1.75; }
.cr-link-arrow { font-size: 11px; }
.cr-services__cards {
  grid-template-columns: 1fr 1fr;
  border: 0;
  border-left: 1px solid #e3e8f2;
  border-radius: 0;
}
.cr-service-card {
  display: grid;
  grid-template-columns: 63px 1fr;
  grid-template-rows: auto 1fr;
  column-gap: 20px;
  padding: 10px 29px 20px 38px;
  border: 0;
  background: transparent !important;
}
.cr-service-card__icon { grid-row: 1 / 3; width: 54px; height: 54px; margin: 0; border-radius: 0; background: transparent; }
.cr-service-card__icon svg { width: 43px; height: 43px; color: #087dff; }
.cr-service-card__title { align-self: end; margin: 0 0 6px; font-size: 15px; }
.cr-service-card__desc { font-size: 12px; line-height: 1.55; }

.cr-differentials { min-height: 407px; padding: 58px 0 46px; }
.cr-differentials__grid { grid-template-columns: 410px 1fr; gap: 42px; align-items: center; }
.cr-differentials__intro .cr-btn { align-self: flex-start; }
.cr-differentials__pillars { grid-template-columns: repeat(4, 1fr); border-left: 0; }
.cr-pillar { align-items: center; text-align: center; padding: 16px 24px; gap: 14px; }
.cr-pillar__icon { width: 66px; height: 66px; border: 0; background: transparent; }
.cr-pillar__icon svg { width: 50px; height: 50px; }
.cr-pillar__title { font-size: 15px; }
.cr-pillar__text { font-size: 12px; line-height: 1.65; }

.cr-experience { min-height: 375px; padding: 58px 0 45px; }
.cr-experience__grid { grid-template-columns: 410px 1fr; gap: 42px; align-items: center; }
.cr-timeline { padding-top: 5px; }
.cr-timeline::before { top: 64px; left: 13%; right: 13%; height: 1px; background: #cfd7e8; }
.cr-timeline__item { padding: 0 11px; }
.cr-timeline__icon-wrap {
  width: 66px; height: 66px; margin-bottom: 25px;
  background: #fff; border: 0; box-shadow: 0 6px 22px rgba(1,35,94,.12);
}
.cr-timeline__icon-wrap::after { content: ''; position: absolute; bottom: -29px; width: 8px; height: 8px; border-radius: 50%; background: #075be8; box-shadow: 0 0 0 4px #dbe9ff; }
.is-front-page .cr-timeline__icon-wrap::after { display: none; }
.cr-timeline__icon-wrap svg { width: 35px; height: 35px; color: #087dff; }
.cr-timeline__title { font-size: 13px; }
.cr-timeline__desc { font-size: 11px; line-height: 1.6; }

.cr-cta-section { min-height: 290px; padding: 45px 0 47px; }
.cr-cta-card { min-height: 198px; padding: 33px 48px; grid-template-columns: 120px 1fr auto; border-radius: 18px; }
.cr-cta-card__icon { width: 92px; height: 92px; border-radius: 50%; background: #078cff; }
.cr-cta-card__icon svg { width: 47px; height: 47px; color: #fff; }
.cr-cta-card__title { max-width: 475px; font-size: 26px; }
.cr-cta-card__text { max-width: 500px; font-size: 12px; }
.cr-cta-card__actions { position: relative; z-index: 2; }

.cr-footer { min-height: 363px; }
.cr-footer__main { padding: 43px 22px 36px; grid-template-columns: 1.35fr 1fr 1fr 1fr 1.25fr; gap: 45px; }
.cr-footer .cr-logo__brand { width: 102px; }
.cr-footer__tagline { margin-top: 15px; margin-bottom: 21px; max-width: 235px; font-size: 12px; line-height: 1.55; }
.cr-social-link { width: 31px; height: 31px; background: transparent; border: 1px solid #078cff; border-radius: 50%; }
.cr-footer__col-title { margin-bottom: 16px; font-size: 11px; letter-spacing: .02em; }
.cr-footer__links { gap: 8px; }
.cr-footer__links a,
.cr-footer__contact-text { font-size: 12px; color: rgba(255,255,255,.78); }
.cr-footer__contact-items { gap: 10px; }
.cr-footer__contact-icon { width: 26px; height: 26px; background: transparent; }
.cr-footer__contact-icon svg { width: 22px; height: 22px; }
.cr-footer__bottom { padding: 17px 0; }
.cr-footer__copyright { font-size: 12px; }

/* Conteúdo essencial nunca fica invisível quando a captura começa fora da viewport. */
.cr-service-card,
.cr-pillar,
.cr-timeline__item,
.cr-hero__stat { opacity: 1; transform: none; }

/* ==========================================================
   16. PÁGINA SOBRE
   ========================================================== */
.cr-page-sobre .cr-about-hero {
  min-height: 678px;
  height: 678px;
}
.cr-page-sobre .cr-about-hero .cr-hero__image-wrap { height: 420px; }
.cr-page-sobre .cr-about-hero .cr-hero__image-wrap img { object-position: center; }
.cr-page-sobre .cr-about-hero .cr-hero__stats { bottom: 26px; }

.cr-about-services {
  min-height: 447px;
  padding: 45px 0;
  background: #f8fafc;
}
.cr-about-services__grid {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 58px;
  align-items: center;
}
.cr-about-services__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.cr-about-service {
  min-height: 160px;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  padding: 20px 18px;
  background: #fff;
  border: 1px solid #e7ebf2;
  border-radius: 7px;
  box-shadow: 0 6px 18px rgba(4, 25, 68, .06);
}
.cr-about-service__icon { color: #087dff; }
.cr-about-service__icon svg { width: 42px; height: 42px; }
.cr-about-service h3 { margin-bottom: 10px; font-size: 14px; }
.cr-about-service p { min-height: 58px; color: #5f6b82; font-size: 11px; line-height: 1.55; }
.cr-about-service a { color: #0788ff; font-size: 10px; font-weight: 700; }

.cr-office {
  min-height: 513px;
  padding: 46px 0;
  background: #f8fafc;
}
.cr-office__grid {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 52px;
  align-items: center;
}
.cr-office__facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #001337;
  border-radius: 8px;
  padding: 17px;
}
.cr-office__fact {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 58px;
  padding: 8px;
  color: #fff;
  border-right: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.cr-office__fact:nth-child(even) { border-right: 0; }
.cr-office__fact:nth-last-child(-n+2) { border-bottom: 0; }
.cr-office__fact svg { width: 31px; height: 31px; flex: 0 0 auto; color: var(--cr-cyan); }
.cr-office__fact span { display: flex; flex-direction: column; font-size: 11px; line-height: 1.2; }
.cr-office__fact strong { font-size: 13px; }
.cr-office__gallery {
  height: 410px;
  display: grid;
  grid-template-columns: 1.2fr 1fr .82fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
}
.cr-office__photo {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: 8px;
}
.cr-office__photo--board { grid-row: 1 / 3; object-position: center; }
.cr-office__photo--team { grid-column: 2; grid-row: 1; }
.cr-office__photo--lounge { grid-column: 3; grid-row: 1; }
.cr-office__photo--reception { grid-column: 2; grid-row: 2; }
.cr-office__values {
  grid-column: 3; grid-row: 2;
  display: flex; flex-direction: column; justify-content: center;
  padding: 25px;
  color: #fff;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(1,18,49,.94), rgba(4,31,67,.87)), url('../images/about-lounge.webp') center/cover;
}
.cr-office__values small { margin-bottom: 10px; color: var(--cr-cyan); font-size: 10px; font-style: italic; }
.cr-office__values strong { font-size: 20px; line-height: 1.45; }

.cr-page-sobre .cr-differentials { min-height: 323px; padding: 42px 0; }
.cr-page-sobre .cr-experience { min-height: 312px; padding: 39px 0; }
.cr-page-sobre .cr-cta-section { min-height: 228px; padding: 27px 0 29px; }
.cr-page-sobre .cr-cta-card { min-height: 172px; }
.cr-page-sobre .cr-footer { min-height: 0; }
.cr-page-sobre .cr-footer__main { padding-top: 26px; padding-bottom: 18px; }
.cr-page-sobre .cr-footer__bottom { padding: 10px 0; }

/* ==========================================================
   17. PÁGINA DE LEGALIZAÇÃO
   ========================================================== */
.cr-legal-hero {
  min-height: 720px;
  padding-top: 118px;
  color: #fff;
  background:
    linear-gradient(90deg, #00102f 0%, #00102f 38%, rgba(0,16,47,.78) 54%, rgba(0,16,47,.18) 100%),
    url('../images/legal-gavel.webp') center/cover no-repeat;
}
.cr-legal-hero .cr-breadcrumb { margin-bottom: 50px; }
.cr-legal-hero__content { width: 560px; }
.cr-legal-hero__content .cr-eyebrow { margin-bottom: 17px; }
.cr-legal-hero__content h1 {
  margin-bottom: 25px;
  font-size: 46px;
  line-height: 1.12;
  letter-spacing: -.035em;
}
.cr-legal-hero__content p {
  max-width: 535px;
  margin-bottom: 32px;
  color: rgba(255,255,255,.8);
  font-size: 15px;
  line-height: 1.75;
}

.cr-legal-content { padding: 66px 0 72px; background: #fff; }
.cr-legal-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 110px;
  align-items: center;
  min-height: 600px;
}
.cr-legal-block + .cr-legal-block { margin-top: 70px; }
.cr-legal-block__media { height: 580px; border-radius: 15px; overflow: hidden; }
.cr-legal-block__media img { width: 100%; height: 100%; object-fit: cover; }
.cr-legal-block__copy { max-width: 565px; }
.cr-legal-block__heading { display: grid; grid-template-columns: 74px 1fr; gap: 25px; align-items: start; }
.cr-legal-block__heading h2 { font-size: 31px; line-height: 1.18; color: #07154f; }
.cr-legal-block__icon {
  display: flex; align-items: center; justify-content: center;
  width: 72px; height: 72px;
  color: #0788ff;
  border: 1px solid #0788ff;
  border-radius: 13px;
}
.cr-legal-block__icon svg { width: 38px; height: 38px; }
.cr-legal-block__line { display: block; width: 72px; height: 3px; margin: 28px 0 31px 99px; background: #0788ff; }
.cr-legal-block__copy p { margin-bottom: 19px; color: #35405b; font-size: 14px; line-height: 1.75; }
.cr-legal-block__copy h3 { margin: 24px 0 20px; color: #07154f; font-size: 19px; line-height: 1.45; }
.cr-legal-block__copy .cr-btn--secondary { margin-top: 7px; color: #fff; background: #080b61; border-color: #080b61; }
.cr-legal-list { display: grid; gap: 10px; margin: 22px 0; }
.cr-legal-list li { position: relative; padding-left: 27px; color: #35405b; font-size: 13px; line-height: 1.55; }
.cr-legal-list li::before {
  content: '✓';
  position: absolute; left: 0; top: 1px;
  display: grid; place-items: center;
  width: 17px; height: 17px;
  color: #0788ff; font-size: 10px; font-weight: 800;
  border: 1.5px solid #0788ff; border-radius: 50%;
}

.cr-legal-posts { padding: 58px 0 70px; color: #fff; background: #00102f; }
.cr-legal-posts__header { margin-bottom: 36px; text-align: center; }
.cr-legal-posts__header span { color: var(--cr-cyan); font-size: 13px; }
.cr-legal-posts__header h2 { font-size: 29px; }
.cr-legal-posts__header h2::after { content: ''; display: block; width: 68px; height: 2px; margin: 16px auto 0; background: var(--cr-cyan); }
.cr-legal-posts__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; max-width: 1180px; margin: 0 auto; }
.cr-legal-post { overflow: hidden; color: #08164b; background: #fff; border-radius: 7px; box-shadow: 0 12px 30px rgba(0,0,0,.18); }
.cr-legal-post > img { width: 100%; height: 220px; object-fit: cover; }
.cr-legal-post__body { padding: 22px 20px 24px; }
.cr-legal-post h3 { min-height: 58px; margin-bottom: 10px; font-size: 17px; line-height: 1.28; }
.cr-legal-post p { min-height: 65px; margin-bottom: 18px; color: #5f687b; font-size: 12px; line-height: 1.6; }
.cr-legal-post a { color: #0788ff; font-size: 12px; font-weight: 700; }

.cr-legal-cta { padding: 30px 0; background: #f7f9fd; }
.cr-legal-cta .cr-cta-card { min-height: 180px; }

/* ==========================================================
   18. PÁGINA DO DEPARTAMENTO FISCAL
   ========================================================== */
.cr-fiscal-hero {
  min-height: 720px;
  padding-top: 118px;
  color: #fff;
  background:
    linear-gradient(90deg, #00102f 0%, #00102f 39%, rgba(0,16,47,.76) 57%, rgba(0,16,47,.12) 100%),
    url('../images/fiscal-wallet.webp') center/cover no-repeat;
}
.cr-fiscal-hero .cr-breadcrumb { margin-bottom: 47px; }
.cr-fiscal-hero__content { width: 575px; }
.cr-fiscal-hero__content h1 { margin-bottom: 27px; font-size: 43px; line-height: 1.14; letter-spacing: -.032em; }
.cr-fiscal-hero__content h1 em { color: var(--cr-cyan); font-style: normal; }
.cr-fiscal-hero__content p { max-width: 565px; margin-bottom: 16px; color: rgba(255,255,255,.84); font-size: 14px; line-height: 1.7; }
.cr-fiscal-hero__content .cr-btn { margin-top: 11px; }

.cr-fiscal-services { padding: 54px 0 26px; background: #f8fafc; }
.cr-fiscal-services h2 { max-width: 575px; margin-bottom: 14px; color: #08164b; font-size: 29px; line-height: 1.25; }
.cr-fiscal-services__lead { margin-bottom: 24px; color: #59647a; font-size: 13px; }
.cr-fiscal-services__list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 30px; max-width: 930px; }
.cr-fiscal-services__item {
  display: flex; align-items: center; gap: 12px;
  min-height: 38px; padding: 7px 12px;
  color: #27324d; font-size: 12px;
  background: #fff; border-radius: 5px;
  box-shadow: 0 3px 12px rgba(5,31,79,.035);
}
.cr-fiscal-services__item span { display: grid; place-items: center; width: 16px; height: 16px; color: #fff; font-size: 9px; font-weight: 800; background: #0788ff; border-radius: 50%; }
.cr-fiscal-services__banner {
  display: grid; grid-template-columns: 70px 1fr auto; gap: 20px; align-items: center;
  min-height: 84px; margin-top: 24px; padding: 14px 28px;
  border: 1px solid #aed7ff; border-radius: 8px;
  background: linear-gradient(90deg, #e9f4ff, #f7fbff);
}
.cr-fiscal-services__banner-icon { color: #0788ff; }
.cr-fiscal-services__banner-icon svg { width: 51px; height: 51px; }
.cr-fiscal-services__banner p { max-width: 520px; color: #24314f; font-size: 12px; line-height: 1.45; }
.cr-fiscal-services__banner .cr-btn--secondary { min-height: 44px; color: #fff; background: #080b61; border-color: #080b61; }

.cr-fiscal-mission { padding: 0 0 20px; background: #f8fafc; }
.cr-fiscal-mission__main { display: grid; grid-template-columns: 500px 1fr; gap: 82px; align-items: center; }
.cr-fiscal-mission__media { height: 490px; overflow: hidden; border-radius: 12px; }
.cr-fiscal-mission__media img { width: 100%; height: 100%; object-fit: cover; }
.cr-fiscal-mission__copy h2 { margin-bottom: 20px; color: #08164b; font-size: 30px; line-height: 1.18; }
.cr-fiscal-mission__copy p { margin-bottom: 14px; color: #4e5b73; font-size: 13px; line-height: 1.55; }
.cr-fiscal-mission__pillars { display: grid; grid-template-columns: repeat(4, 1fr); max-width: 1190px; margin: -58px auto 0; position: relative; z-index: 2; }
.cr-fiscal-pillar { min-height: 205px; padding: 28px 25px; text-align: center; background: rgba(255,255,255,.96); border-right: 1px solid #e7ebf3; box-shadow: 0 12px 30px rgba(3,30,77,.08); }
.cr-fiscal-pillar:first-child { border-radius: 8px 0 0 8px; }
.cr-fiscal-pillar:last-child { border-right: 0; border-radius: 0 8px 8px 0; }
.cr-fiscal-pillar svg { width: 45px; height: 45px; margin: 0 auto 16px; color: #0788ff; }
.cr-fiscal-pillar h3 { min-height: 42px; margin-bottom: 9px; color: #08164b; font-size: 14px; line-height: 1.3; }
.cr-fiscal-pillar p { color: #637087; font-size: 11px; line-height: 1.5; }
.cr-fiscal-mission__action { display: flex; justify-content: center; margin-top: 14px; }
.cr-fiscal-mission__action .cr-btn--secondary { min-height: 45px; color: #fff; background: #080b61; border-color: #080b61; }
.cr-fiscal-posts { padding-top: 35px; }
.cr-fiscal-cta { background: #00102f; padding: 25px 0; }
.cr-fiscal-cta .cr-cta-card { border: 1px solid #087dff; }

/* ==========================================================
   19. POLÍTICA DE PRIVACIDADE
   ========================================================== */
.cr-privacy-hero {
  min-height: 328px;
  padding-top: 94px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0,16,47,.99) 0%, rgba(0,16,47,.94) 39%, rgba(0,16,47,.27) 67%, rgba(0,16,47,.08) 100%),
    url('../images/privacy-shield.webp') center/cover no-repeat;
}
.cr-privacy-hero .cr-breadcrumb { margin-bottom: 30px; }
.cr-privacy-hero__content h1 { margin-bottom: 19px; font-size: 40px; line-height: 1.1; letter-spacing: -.025em; }
.cr-privacy-hero__line { display: block; width: 60px; height: 3px; margin-bottom: 21px; background: var(--cr-cyan); }
.cr-privacy-hero__content p { color: rgba(255,255,255,.88); font-size: 16px; line-height: 1.55; }

.cr-privacy-content { padding: 34px 0 46px; background: #f8fafc; }
.cr-privacy-layout { display: grid; grid-template-columns: minmax(0, 1fr) 350px; gap: 62px; align-items: start; }
.cr-privacy-article { min-width: 0; }
.cr-privacy-intro { padding: 0 4px 29px; color: #26345c; font-size: 14px; line-height: 1.55; }
.cr-privacy-section {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 19px;
  padding: 25px 4px;
  border-top: 1px solid #cbd3e1;
  scroll-margin-top: 92px;
}
.cr-privacy-section__icon {
  display: grid; place-items: center;
  width: 49px; height: 49px;
  color: #0788ff;
  border: 1px solid #0788ff;
  border-radius: 10px;
}
.cr-privacy-section__icon svg { width: 29px; height: 29px; }
.cr-privacy-section h2 { margin-bottom: 10px; color: #0788ff; font-size: 15px; line-height: 1.35; text-transform: uppercase; }
.cr-privacy-section h3 { position: relative; margin: 14px 0 4px; padding-left: 15px; color: #1e2a4e; font-size: 13px; }
.cr-privacy-section h3::before { content: ''; position: absolute; top: 7px; left: 0; width: 5px; height: 5px; background: #0788ff; border-radius: 50%; }
.cr-privacy-section p { margin-bottom: 8px; color: #293653; font-size: 13px; line-height: 1.55; }
.cr-privacy-section p:last-child { margin-bottom: 0; }
.cr-privacy-section p a { color: #0788ff; text-decoration: underline; }

.cr-privacy-aside { position: sticky; top: 92px; display: grid; gap: 31px; }
.cr-privacy-index { display: grid; gap: 16px; padding: 31px 34px; background: #fff; border-radius: 12px; box-shadow: 0 12px 30px rgba(4,31,75,.09); }
.cr-privacy-index h2 { margin-bottom: 5px; color: #0788ff; font-size: 14px; text-transform: uppercase; }
.cr-privacy-index a { display: flex; align-items: center; gap: 10px; color: #162657; font-size: 12px; }
.cr-privacy-index a span { display: grid; place-items: center; width: 21px; height: 21px; flex: 0 0 auto; color: #0788ff; border: 1px solid #0788ff; border-radius: 6px; font-size: 11px; }

.cr-privacy-contact { padding: 34px; color: #fff; background: #00102f; border-radius: 11px; box-shadow: 0 12px 28px rgba(0,16,47,.22); }
.cr-privacy-contact__eyebrow { display: block; font-size: 13px; font-weight: 700; text-transform: uppercase; }
.cr-privacy-contact h2 { margin: 3px 0 22px; font-size: 22px; text-transform: uppercase; }
.cr-privacy-contact__intro { display: grid; grid-template-columns: 54px 1fr; gap: 14px; align-items: center; margin-bottom: 22px; }
.cr-privacy-contact__intro svg { width: 49px; height: 49px; color: var(--cr-cyan); }
.cr-privacy-contact__intro p { color: rgba(255,255,255,.86); font-size: 12px; line-height: 1.55; }
.cr-privacy-contact .cr-btn { width: 100%; justify-content: center; }
.cr-privacy-contact__details { display: grid; gap: 14px; margin-top: 22px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.13); }
.cr-privacy-contact__details a { display: flex; align-items: center; gap: 14px; color: rgba(255,255,255,.88); font-size: 12px; }
.cr-privacy-contact__details svg { width: 22px; height: 22px; flex: 0 0 auto; color: var(--cr-cyan); }

.cr-privacy-cta { padding: 28px 0; background: #f8fafc; }
.cr-privacy-cta .cr-cta-card { min-height: 154px; }
.cr-page-privacy .cr-footer { min-height: 0; }

/* ==========================================================
   20. CONTATO
   ========================================================== */
.cr-contact-hero {
  min-height: 500px;
  padding-top: 105px;
  color: #fff;
  background:
    linear-gradient(90deg, #00102f 0%, rgba(0,16,47,.96) 34%, rgba(0,16,47,.28) 64%, rgba(0,16,47,.08) 100%),
    url('../images/about-reception.webp') center 43%/cover no-repeat;
}
.cr-contact-hero .cr-breadcrumb { margin-bottom: 20px; }
.cr-contact-hero__content { width: 500px; }
.cr-contact-hero__content .cr-eyebrow { margin-bottom: 11px; }
.cr-contact-hero__content h1 { margin-bottom: 16px; font-size: 43px; line-height: 1.1; letter-spacing: -.03em; }
.cr-contact-hero__content h1 em { color: #078fff; font-style: normal; }
.cr-contact-hero__content p { max-width: 465px; color: rgba(255,255,255,.86); font-size: 15px; line-height: 1.65; }
.cr-contact-hero__benefits { display: grid; grid-template-columns: repeat(4, max-content); gap: 0; margin-top: 39px; }
.cr-contact-hero__benefits > div { display: flex; align-items: center; gap: 13px; min-width: 185px; padding: 0 20px; border-right: 1px solid #078fff; }
.cr-contact-hero__benefits > div:first-child { padding-left: 0; }
.cr-contact-hero__benefits > div:last-child { border-right: 0; }
.cr-contact-hero__benefits svg { width: 39px; height: 39px; flex: 0 0 auto; color: var(--cr-cyan); }
.cr-contact-hero__benefits span { font-size: 11px; line-height: 1.5; }

.cr-contact-main { padding: 34px 0 32px; background: #f8fafc; }
.cr-contact-main__grid { display: grid; grid-template-columns: 390px 1fr; gap: 38px; align-items: stretch; }
.cr-contact-channels { padding: 13px 38px 5px 0; border-right: 1px solid #bdc8dc; }
.cr-contact-channels h2 { margin: 4px 0 4px; color: #071650; font-size: 31px; }
.cr-contact-channels__lead { max-width: 310px; margin-bottom: 30px; color: #233258; font-size: 14px; line-height: 1.5; }
.cr-contact-channel { display: grid; grid-template-columns: 55px 1fr; gap: 18px; align-items: start; margin-bottom: 26px; }
.cr-contact-channel__icon { display: grid; place-items: center; width: 52px; height: 52px; color: #0788ff; background: #d8f3ff; border-radius: 50%; }
.cr-contact-channel__icon svg { width: 31px; height: 31px; }
.cr-contact-channel div { display: flex; flex-direction: column; gap: 3px; color: #63708a; font-size: 12px; line-height: 1.55; }
.cr-contact-channel strong { color: #071650; font-size: 13px; }
.cr-contact-channel a { color: #071650; font-size: 13px; }
.cr-contact-channel small { color: #70809d; font-size: 11px; }

.cr-contact-form-card { position: relative; overflow: hidden; min-height: 535px; padding: 32px 42px; color: #fff; background: #00163c; border-radius: 9px; }
.cr-contact-form-card::after { content: ''; position: absolute; right: -22px; top: -5px; width: 250px; height: 190px; opacity: .16; background: linear-gradient(135deg, transparent 45%, #0788ff 46% 50%, transparent 51%), linear-gradient(180deg, transparent 50%, rgba(7,136,255,.35)); pointer-events: none; }
.cr-contact-form-card > * { position: relative; z-index: 1; }
.cr-contact-form-card h2 { margin: 4px 0 7px; font-size: 28px; }
.cr-contact-form-card > p { margin-bottom: 24px; color: rgba(255,255,255,.85); font-size: 13px; }
.cr-contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.cr-contact-form label { display: block; }
.cr-contact-form input:not([type='checkbox']),
.cr-contact-form select,
.cr-contact-form textarea { width: 100%; color: #fff; background: rgba(0,20,57,.72); border: 1px solid #579bd2; border-radius: 5px; outline: 0; }
.cr-contact-form input:not([type='checkbox']), .cr-contact-form select { height: 49px; padding: 0 15px; }
.cr-contact-form textarea { min-height: 112px; padding: 14px 15px; resize: vertical; }
.cr-contact-form input::placeholder, .cr-contact-form textarea::placeholder { color: rgba(255,255,255,.9); opacity: 1; }
.cr-contact-form select { appearance: auto; color: rgba(255,255,255,.9); }
.cr-contact-form option { color: #071650; background: #fff; }
.cr-contact-form__message, .cr-contact-form__consent, .cr-contact-form .cr-btn { grid-column: 1 / 3; }
.cr-contact-form__consent { display: flex !important; align-items: center; gap: 9px; color: rgba(255,255,255,.82); font-size: 11px; }
.cr-contact-form__consent input { width: 15px; height: 15px; accent-color: #0788ff; }
.cr-contact-form__consent a { color: var(--cr-cyan); text-decoration: underline; }
.cr-contact-form .cr-btn { width: 320px; justify-content: center; border: 0; cursor: pointer; }
.cr-contact-form__trap { position: absolute !important; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.cr-form-notice { margin-bottom: 17px; padding: 11px 14px; font-size: 12px; border-radius: 5px; }
.cr-form-notice--success { color: #d9ffe6; background: rgba(24,166,80,.25); border: 1px solid rgba(99,224,144,.5); }
.cr-form-notice--error { color: #ffe4e4; background: rgba(190,42,42,.25); border: 1px solid rgba(255,120,120,.5); }

.cr-contact-location { padding: 31px 0; background: #f8fafc; border-top: 6px solid #fff; }
.cr-contact-location__grid { display: grid; grid-template-columns: 330px 1fr; gap: 30px; align-items: center; }
.cr-contact-location h2 { margin: 5px 0 16px; color: #071650; font-size: 30px; }
.cr-contact-location p { max-width: 275px; margin-bottom: 23px; color: #647087; font-size: 13px; line-height: 1.6; }
.cr-contact-location .cr-btn--outline { color: #0788ff; border-color: #0788ff; }
.cr-contact-map { height: 280px; overflow: hidden; border-radius: 9px; box-shadow: 0 5px 18px rgba(4,31,75,.08); }
.cr-contact-map iframe { width: 100%; height: 100%; border: 0; }

.cr-contact-cta { padding: 25px 0; background: #f8fafc; border-top: 1px solid #dce3ee; }
.cr-contact-cta .cr-cta-card { min-height: 170px; }
.cr-contact-cta .cr-eyebrow { margin-bottom: 8px; }
.cr-page-contact .cr-footer { min-height: 0; }

/* ==========================================================
   21. DEPARTAMENTO CONTÁBIL
   ========================================================== */
.cr-accounting-hero {
  min-height: 610px;
  padding-top: 110px;
  color: #fff;
  background:
    linear-gradient(90deg, #00102f 0%, #00102f 39%, rgba(0,16,47,.67) 55%, rgba(0,16,47,.04) 100%),
    url('../images/accounting-hero.webp') center/cover no-repeat;
}
.cr-accounting-hero .cr-breadcrumb { margin-bottom: 42px; }
.cr-accounting-hero__content { width: 535px; }
.cr-accounting-hero__content h1 { margin: 10px 0 22px; font-size: 43px; line-height: 1.12; letter-spacing: -.03em; }
.cr-accounting-hero__content h1 em { color: #078fff; font-style: normal; }
.cr-accounting-hero__content p { max-width: 515px; margin-bottom: 25px; color: rgba(255,255,255,.86); font-size: 14px; line-height: 1.7; }

.cr-accounting-services { padding: 40px 0 48px; background: #f8fafc; }
.cr-accounting-services h2 { margin: 7px 0 12px; color: #071650; font-size: 29px; line-height: 1.2; }
.cr-accounting-services__lead { margin-bottom: 18px; color: #5e6a80; font-size: 12px; }
.cr-accounting-services__grid { display: grid; grid-template-columns: 520px 1fr; gap: 50px; align-items: stretch; }
.cr-accounting-services__list { overflow: hidden; padding: 8px 14px 12px; background: #fff; border: 1px solid #e2e7ef; border-radius: 9px; box-shadow: 0 8px 24px rgba(4,31,75,.08); }
.cr-accounting-services__list > div { display: flex; align-items: center; gap: 10px; min-height: 30px; color: #354058; font-size: 11px; border-bottom: 1px solid #e6e9ef; }
.cr-accounting-services__list > div span { display: grid; place-items: center; width: 16px; height: 16px; flex: 0 0 auto; color: #fff; font-size: 9px; font-weight: 800; background: #0788ff; border-radius: 50%; }
.cr-accounting-services__list .cr-btn { min-height: 41px; margin-top: 11px; color: #fff; background: #080b61; border-color: #080b61; }
.cr-accounting-services__visual { display: flex; flex-direction: column; justify-content: space-between; min-width: 0; }
.cr-accounting-services__visual > img { width: 100%; height: 345px; object-fit: contain; mix-blend-mode: multiply; }
.cr-accounting-organization { padding: 26px 30px; color: #fff; background: #00133a; border-radius: 10px; }
.cr-accounting-organization__head { display: grid; grid-template-columns: 68px 1fr; gap: 18px; align-items: center; }
.cr-accounting-organization__head > span { display: grid; place-items: center; width: 60px; height: 60px; background: #0788ff; border-radius: 50%; }
.cr-accounting-organization__head svg { width: 32px; height: 32px; }
.cr-accounting-organization h3 { margin-bottom: 7px; font-size: 18px; }
.cr-accounting-organization p { color: rgba(255,255,255,.78); font-size: 12px; line-height: 1.55; }
.cr-accounting-organization ul { display: grid; gap: 13px; margin-top: 22px; }
.cr-accounting-organization li { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.88); font-size: 12px; }
.cr-accounting-organization li svg { width: 21px; height: 21px; flex: 0 0 auto; color: var(--cr-cyan); }

.cr-accounting-results { padding: 0 0 40px; background: #f8fafc; }
.cr-accounting-results__grid { display: grid; grid-template-columns: 430px 1fr 220px; gap: 38px; align-items: center; padding-top: 42px; border-top: 1px solid #d9e0ea; }
.cr-accounting-results__media { height: 500px; overflow: hidden; }
.cr-accounting-results__media img { width: 100%; height: 100%; object-fit: cover; }
.cr-accounting-results__copy h2 { margin: 8px 0 20px; color: #071650; font-size: 25px; line-height: 1.25; }
.cr-accounting-results__copy p { margin-bottom: 13px; color: #5c667a; font-size: 12px; line-height: 1.6; }
.cr-accounting-results__copy strong { display: block; margin: 17px 0 16px; color: #152149; font-size: 12px; line-height: 1.6; }
.cr-accounting-results__copy .cr-btn { color: #fff; background: #080b61; border-color: #080b61; }
.cr-accounting-results__benefits { display: grid; gap: 22px; padding: 26px; background: #fff; border: 1px solid #77bdfc; border-radius: 10px; box-shadow: 0 9px 25px rgba(4,31,75,.06); }
.cr-accounting-results__benefits > div { display: flex; align-items: center; gap: 15px; color: #253252; font-size: 12px; line-height: 1.35; }
.cr-accounting-results__benefits svg { width: 35px; height: 35px; flex: 0 0 auto; color: #0788ff; }

.cr-accounting-posts { padding-top: 37px; }
.cr-accounting-posts .cr-legal-post > img { height: 190px; }
.cr-accounting-cta { padding: 24px 0; background: #00102f; }
.cr-accounting-cta .cr-cta-card { min-height: 164px; border: 1px solid #087dff; }
.cr-page-accounting .cr-footer { min-height: 0; }
