:root {
  --navy: #102f47;
  --blue: #1265a8;
  --teal: #168a9f;
  --green: #638b45;
  --gold: #d8a13d;
  --ink: #172331;
  --muted: #5e6c78;
  --line: #dce5ec;
  --soft: #f3f7fa;
  --soft-green: #eef5ed;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(16, 47, 71, .14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
  background: var(--white);
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
  padding: 12px clamp(18px, 5vw, 64px);
  border-bottom: 1px solid rgba(220, 229, 236, .86);
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-weight: 800;
  text-decoration: none;
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.brand span {
  font-size: 1.22rem;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  color: #263849;
  font-size: .94rem;
}

.main-nav a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.main-nav a:hover {
  color: var(--blue);
}

.social-icon {
  width: 34px;
  min-width: 34px;
  height: 34px;
  padding: 5px;
  border-radius: 8px;
  justify-content: center;
  background: rgba(243, 247, 250, .82);
  box-shadow: inset 0 0 0 1px rgba(220, 229, 236, .9);
}

.social-icon img {
  width: 24px;
  height: 24px;
}

.nav-cta,
.button {
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

.nav-cta {
  min-width: 98px;
  justify-content: center;
  padding: 9px 14px;
  color: var(--white) !important;
  background: var(--blue);
  box-shadow: 0 10px 24px rgba(18, 101, 168, .2);
}

.hero {
  min-height: calc(100vh - 74px);
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(320px, 420px);
  gap: clamp(30px, 6vw, 82px);
  align-items: center;
  padding: 72px clamp(20px, 6vw, 82px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(16, 47, 71, .96) 0%, rgba(16, 47, 71, .86) 48%, rgba(16, 47, 71, .22) 100%),
    url("assets/azulcont-hero-profissional-2026.png") center / cover no-repeat;
}

.hero-content {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  max-width: 920px;
  font-size: clamp(2.35rem, 5.2vw, 4.8rem);
  line-height: 1;
  letter-spacing: 0;
}

.hero-copy,
.page-hero p:not(.eyebrow),
.lead-copy {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .88);
  font-size: clamp(1.04rem, 1.8vw, 1.24rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
}

.button.primary {
  color: var(--navy);
  background: var(--gold);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, .55);
  background: rgba(255, 255, 255, .08);
}

.button.dark {
  color: var(--white);
  background: var(--navy);
}

.hero-panel {
  align-self: end;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 8px;
  background: rgba(255, 255, 255, .13);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .22);
  backdrop-filter: blur(16px);
}

.hero-panel strong,
.hero-panel span {
  display: block;
}

.hero-panel strong {
  color: var(--white);
  font-size: 1.24rem;
  line-height: 1.18;
}

.hero-panel span {
  margin-top: 8px;
  color: rgba(255, 255, 255, .78);
}

.panel-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.panel-list div {
  padding: 14px;
  border-radius: 8px;
  background: rgba(16, 47, 71, .52);
}

.proof-strip {
  width: min(1120px, calc(100% - 36px));
  margin: -32px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.proof-strip div {
  min-height: 112px;
  padding: 22px;
  background: var(--white);
}

.proof-strip strong,
.mini-stat strong {
  display: block;
  color: var(--navy);
  font-size: 1.02rem;
}

.proof-strip span,
.mini-stat span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: .94rem;
}

.section,
.article-list,
.policy-content {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 82px 0;
}

.section.narrow,
.article-list,
.policy-content {
  width: min(880px, calc(100% - 36px));
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section h2,
.section-heading h2,
.page-section h2,
.cta-section h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.8rem, 3.7vw, 3.1rem);
  line-height: 1.06;
  letter-spacing: 0;
}

.section p,
.article-card p,
.blog-post p,
.timeline p,
.policy-content p,
.content-card p,
.service-card p,
.page-section p,
.cta-section p {
  color: var(--muted);
  font-size: 1.03rem;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 74px);
  align-items: start;
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.mini-stat {
  min-height: 122px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.band {
  width: 100%;
  padding: 88px clamp(18px, 5vw, 72px);
  background: var(--soft);
}

.band.white {
  background: var(--white);
}

.band.green {
  background: var(--soft-green);
}

.band .section-heading,
.service-grid,
.audience-list,
.blog-grid,
.timeline,
.lead-grid,
.source-list {
  width: min(1120px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.service-grid,
.blog-grid,
.content-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.audience-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.content-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-card,
.content-card,
.article-card,
.audience-list article,
.timeline-item,
.lead-form,
.download-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service-card,
.content-card,
.audience-list article {
  min-height: 220px;
  padding: 24px;
}

.card-icon,
.content-card span,
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 8px;
  color: var(--white);
  background: var(--teal);
  font-size: .8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.service-card h3,
.content-card h2,
.article-card h2,
.audience-list h3,
.timeline-item h3,
.blog-post h2,
.blog-post h3,
.policy-content h2 {
  margin: 18px 0 10px;
  color: var(--navy);
  line-height: 1.14;
  letter-spacing: 0;
}

.service-card p,
.content-card p,
.audience-list p {
  margin: 0;
}

.service-card a,
.content-card a,
.article-card a,
.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
}

.article-card {
  overflow: hidden;
}

.article-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.article-card div {
  padding: 22px;
}

.article-card.featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1fr);
}

.article-card.featured img {
  height: 100%;
  min-height: 320px;
  aspect-ratio: auto;
}

.page-hero {
  min-height: 62vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 92px clamp(18px, 6vw, 82px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(16, 47, 71, .94), rgba(22, 101, 122, .72)),
    url("assets/azulcont-blog-planejamento-2026.png") center / cover no-repeat;
}

.page-hero.reforma {
  background:
    linear-gradient(90deg, rgba(16, 47, 71, .96) 0%, rgba(16, 47, 71, .82) 50%, rgba(16, 47, 71, .34) 100%),
    url("assets/azulcont-reforma-tributaria-2026.png") center / cover no-repeat;
}

.page-hero.bpo-hero {
  min-height: 76vh;
  background:
    linear-gradient(90deg, rgba(16, 47, 71, .96) 0%, rgba(16, 47, 71, .84) 48%, rgba(22, 101, 122, .36) 100%),
    url("assets/azulcont-hero-profissional-2026.png") center / cover no-repeat;
}

.blog-post {
  max-width: 860px;
  margin: 0 auto;
}

.blog-post p,
.blog-post li {
  color: var(--muted);
  font-size: 1.05rem;
}

.blog-post ul,
.blog-post ol {
  padding-left: 22px;
}

.timeline {
  display: grid;
  gap: 14px;
}

.process,
.bpo-fit,
.technology {
  width: 100%;
  padding: 88px clamp(18px, 5vw, 72px);
}

.process,
.bpo-fit {
  background: var(--soft);
}

.technology {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, .72fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), #164f68 62%, #477c69);
}

.process .section-heading,
.process .steps,
.bpo-fit .section-heading,
.bpo-fit .audience-list {
  width: min(1120px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.technology h2 {
  color: var(--white);
}

.technology p {
  color: rgba(255, 255, 255, .82);
}

.tech-panel {
  display: grid;
  gap: 14px;
}

.tech-panel div {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
}

.tech-panel span {
  display: block;
  color: var(--gold);
  font-size: .84rem;
  font-weight: 800;
  text-transform: uppercase;
}

.tech-panel strong {
  display: block;
  margin-top: 8px;
  color: var(--white);
  font-size: 1.08rem;
  line-height: 1.25;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 0;
  list-style: none;
}

.steps li {
  min-height: 210px;
  padding: 24px;
  border-left: 4px solid var(--green);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(16, 47, 71, .08);
}

.steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  font-weight: 800;
}

.steps strong {
  display: block;
  color: var(--navy);
  font-size: 1.08rem;
}

.steps p {
  margin: 8px 0 0;
}

.timeline-item {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 24px;
  padding: 24px;
}

.timeline-item time {
  color: var(--blue);
  font-weight: 800;
}

.timeline-item h3 {
  margin-top: 0;
}

.lead-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .72fr);
  gap: 28px;
  align-items: stretch;
}

.lead-form,
.download-panel {
  padding: 26px;
}

.lead-form label {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
  color: var(--navy);
  font-weight: 800;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  background: var(--white);
}

.lead-form textarea {
  min-height: 96px;
  resize: vertical;
}

.form-note {
  margin-top: 12px;
  color: var(--muted);
  font-size: .9rem;
}

.download-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--white);
  background: var(--navy);
}

.download-panel p {
  color: rgba(255, 255, 255, .82);
}

.download-panel .button {
  width: fit-content;
}

.source-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.source-list a {
  min-height: 110px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--navy);
  background: var(--white);
  font-weight: 800;
  text-decoration: none;
}

.cta-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  width: min(1120px, calc(100% - 36px));
  margin: 84px auto;
  padding: 34px;
  border: 1px solid #dfe8cf;
  border-radius: 8px;
  background: var(--soft-green);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 560px) auto;
  gap: 32px;
  align-items: start;
  padding: 42px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, .78);
  background: #12283d;
}

.footer-brand {
  color: var(--white);
}

.site-footer p {
  max-width: 560px;
}

.footer-slogan {
  display: block;
  margin-top: 12px;
  color: var(--gold);
  font-size: 1.02rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px;
}

.site-footer a {
  color: var(--white);
  text-decoration: none;
}

.site-footer .social-icon {
  background: rgba(255, 255, 255, .92);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .18);
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 18;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  padding: 0;
  border-radius: 50%;
  color: var(--white);
  background: transparent;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(37, 211, 102, .35);
}

.floating-whatsapp img {
  width: 100%;
  height: 100%;
}

.not-found {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px;
  text-align: center;
  background: var(--soft);
}

.not-found img {
  width: 92px;
  height: 92px;
  object-fit: contain;
}

.not-found h1 {
  margin: 24px 0 8px;
  color: var(--navy);
  font-size: clamp(2rem, 6vw, 4rem);
}

.banner-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
  background: var(--soft);
}

.brand-poster {
  width: min(1180px, 100%);
  min-height: 420px;
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 42px;
  align-items: center;
  padding: clamp(28px, 5vw, 64px);
  overflow: hidden;
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(16, 47, 71, .96), rgba(18, 101, 168, .84) 56%, rgba(99, 139, 69, .8)),
    url("assets/azulcont-hero-profissional-2026.png") center / cover no-repeat;
  box-shadow: var(--shadow);
}

.poster-mark {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 8px;
  background: rgba(255, 255, 255, .16);
  backdrop-filter: blur(14px);
}

.poster-mark img {
  width: 72%;
  height: 72%;
  object-fit: contain;
  border-radius: 8px;
  background: var(--white);
}

.poster-copy span {
  display: block;
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
}

.poster-copy h1 {
  max-width: 720px;
  margin: 10px 0 16px;
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: .95;
  letter-spacing: 0;
}

.poster-copy p {
  max-width: 670px;
  margin: 0;
  color: rgba(255, 255, 255, .84);
  font-size: 1.25rem;
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .main-nav {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px 14px;
  }

  .main-nav a {
    font-size: .92rem;
  }

  .hero,
  .intro,
  .lead-grid,
  .technology,
  .cta-section,
  .site-footer,
  .article-card.featured {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .proof-strip,
  .service-grid,
  .blog-grid,
  .content-grid,
  .content-grid.two,
  .audience-list,
  .steps,
  .source-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .site-header {
    position: static;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .nav-cta {
    width: 100%;
  }

  .hero,
  .page-hero {
    padding: 58px 18px;
    background:
      linear-gradient(90deg, rgba(16, 47, 71, .96), rgba(16, 47, 71, .76)),
      url("assets/azulcont-hero-profissional-2026.png") center / cover no-repeat;
  }

  .page-hero,
  .page-hero.reforma,
  .page-hero.bpo-hero {
    background:
      linear-gradient(90deg, rgba(16, 47, 71, .96), rgba(16, 47, 71, .78)),
      url("assets/azulcont-reforma-tributaria-2026.png") center / cover no-repeat;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 2.22rem;
  }

  .proof-strip,
  .service-grid,
  .blog-grid,
  .content-grid,
  .content-grid.two,
  .audience-list,
  .steps,
  .source-list,
  .mini-stats,
  .timeline-item {
    grid-template-columns: 1fr;
  }

  .proof-strip {
    margin-top: 18px;
  }

  .section,
  .article-list,
  .policy-content {
    padding: 56px 0;
  }

  .band {
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .hero-actions,
  .button,
  .download-panel .button {
    width: 100%;
  }

  .cta-section {
    padding: 24px;
    margin: 58px auto;
  }

  .floating-whatsapp {
    width: 54px;
    height: 54px;
  }
}
