/* =================================================================
   ASLON CONTABILIDADE — Stylesheet (sem Elementor)
   Match visual com os prints fornecidos pelo cliente
   ================================================================= */

/* ============ TOKENS (extraídos do post-9.css real) ============ */
:root {
  --c-primary:        #F8842F;
  --c-primary-dk:     #d96f1e;
  --c-primary-soft:   #f8a868;
  --c-secondary:      #F7CE6C;
  --c-bg:             #F7F7F7;
  --c-bg-alt:         #F5F5F5;
  --c-surface:        #FFFFFF;
  --c-text:           #5A5B5C;     /* cor real dos H2s (#5A5B5C) */
  --c-text-dark:      #000000;     /* títulos dos cards = #000000 */
  --c-text-soft:      #5A5B5C;
  --c-text-muted:     #8A8A8A;     /* cor real das descrições */
  --c-text-onprimary: #FFFFFF;
  --c-border:         #ACAAAA;     /* border real dos cards de serviço */
  --c-border-soft:    #ECECEC;
  --c-success:        #25D366;
  --c-check:          #4CAF50;

  --container-max: 1140px;
  --container-pad: clamp(16px, 4vw, 32px);

  --radius-pill: 30px;
  --radius-card: 18px;

  --font-main: 'Poppins', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --shadow-card: 0 12px 30px rgba(0, 0, 0, 0.08);
  --shadow-md:   0 6px 18px rgba(0, 0, 0, 0.10);
  --shadow-image:0 12px 30px rgba(0, 0, 0, 0.16);

  --t-fast: 200ms ease;
  --t-base: 300ms ease;
}

/* ============ RESET MÍNIMO ============ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html:focus-within { scroll-behavior: smooth; }
html { -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-text);
  background-color: var(--c-surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, picture, svg, video { display: block; max-width: 100%; height: auto; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--c-primary); }
ul, ol { list-style: none; }
:focus-visible { outline: 3px solid var(--c-primary); outline-offset: 3px; border-radius: 4px; }
[hidden] { display: none !important; }

.skip-link {
  position: absolute; top: -40px; left: 8px;
  background: var(--c-text-dark); color: #fff; padding: 8px 16px; border-radius: 4px;
  z-index: 1000; transition: top var(--t-fast);
}
.skip-link:focus { top: 8px; color: #fff; }

/* Visually hidden but accessible to screen readers */
.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

/* ============ HEADINGS ============ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-main);
  font-weight: 700;
  line-height: 1.2;
  color: var(--c-text);
}
/* Tamanhos reais do post-9.css: hero 43px, h2 33px, sub 30px, etc */
h1 { font-size: clamp(2rem, 1.5rem + 2vw, 2.6875rem); color: #fff; font-weight: 700; }  /* 43px */
h2 { font-size: clamp(1.6rem, 1.3rem + 1.4vw, 2.0625rem); font-weight: 700; }            /* 33px */
h3 { font-size: clamp(1.1rem, 1rem + 0.6vw, 1.5rem); font-weight: 700; }                 /* 24px */
h4 { font-size: 1.25rem; }
.brand-accent { color: var(--c-primary); }

/* ============ BOTÕES (pill, border 2px) ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 36px;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color var(--t-fast), color var(--t-fast),
              border-color var(--t-fast), transform var(--t-fast);
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background-color: var(--c-primary);
  color: #fff;
  border-color: var(--c-primary);
}
.btn--primary:hover {
  background-color: var(--c-primary);
  color: #fff;
  border-color: var(--c-secondary);
}
.btn--white {
  background-color: #fff;
  color: var(--c-primary);
  border-color: #fff;
}
.btn--white:hover {
  background-color: #fff;
  color: var(--c-primary-dk);
  border-color: var(--c-secondary);
}
.btn--outline {
  background-color: transparent;
  color: #fff;
  border-color: #fff;
}
.btn--outline:hover {
  background-color: rgba(255, 255, 255, 0.18);
  border-color: var(--c-secondary);
  color: #fff;
}
.btn--outline-orange {
  background-color: transparent;
  color: var(--c-primary);
  border-color: var(--c-primary);
}
.btn--outline-orange:hover {
  background-color: var(--c-primary);
  color: #fff;
}
.btn--lg { padding: 17px 40px; font-size: 17px; }

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.btn-group--center { justify-content: center; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--c-bg);
  transition: box-shadow var(--t-base);
}
.site-header.is-scrolled { box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06); }
.site-header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-block: 14px;
  min-height: 84px;
}
.site-header__logo img {
  height: 60px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
}
.site-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
}
.site-nav__list {
  display: flex;
  align-items: center;
  gap: 0;
}
.site-nav__list li {
  position: relative;
  padding-inline: 16px;
}
.site-nav__list li:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 50%;
  width: 1px; height: 20px;
  background-color: var(--c-primary);
  transform: translateY(-50%);
}
.site-nav__link {
  display: inline-block;
  padding-block: 6px;
  color: var(--c-text);
  font-weight: 500;
  font-size: 15px;
}
.site-nav__link:hover { color: var(--c-primary); }

.site-header__cta {
  padding: 12px 24px;
  font-size: 15px;
}

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  margin-left: auto;
}
.nav-toggle__icon {
  position: relative;
  width: 26px; height: 18px;
}
.nav-toggle__icon span {
  position: absolute;
  left: 0; width: 100%; height: 2px;
  background-color: var(--c-text);
  border-radius: 2px;
  transition: all var(--t-base);
}
.nav-toggle__icon span:nth-child(1) { top: 0; }
.nav-toggle__icon span:nth-child(2) { top: 8px; }
.nav-toggle__icon span:nth-child(3) { top: 16px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__icon span:nth-child(1) { top: 8px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__icon span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__icon span:nth-child(3) { top: 8px; transform: rotate(-45deg); }

@media (max-width: 1023px) {
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: fixed;
    inset: 84px 0 0;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 24px var(--container-pad);
    background-color: #fff;
    transform: translateX(100%);
    transition: transform var(--t-base);
    overflow-y: auto;
    box-shadow: -4px 0 16px rgba(0, 0, 0, 0.1);
  }
  .site-nav.is-open { transform: translateX(0); }
  .site-nav__list { flex-direction: column; align-items: stretch; gap: 0; width: 100%; }
  .site-nav__list li { padding: 0; border-bottom: 1px solid var(--c-border); }
  .site-nav__list li::after { display: none; }
  .site-nav__link { display: block; padding: 16px 4px; font-size: 17px; }
  .site-nav .btn { margin-top: 16px; align-self: flex-start; }
  body.nav-open { overflow: hidden; }
}

/* ============================================================
   HERO — bg-color #F8842F + bg-image real (replicando Elementor)
   ============================================================ */
.hero {
  background-color: #F8842F;
  background-image:
    linear-gradient(90deg, rgba(248,132,47,0.95) 0%, rgba(248,132,47,0.65) 35%, rgba(248,132,47,0) 60%),
    url('https://asloncontabilidade.com.br/wp-content/uploads/2024/04/Blue-Modern-Pharmacy-Medical-Presentation-Template.png');
  background-repeat: no-repeat;
  background-size: cover, cover;
  background-position: center, right center;
  padding-block: 50px;
  position: relative;
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
  min-height: 460px;
}
@media (max-width: 900px) {
  .hero {
    background-image:
      linear-gradient(180deg, rgba(248,132,47,0.92) 0%, rgba(248,132,47,0.65) 60%, rgba(248,132,47,0.45) 100%),
      url('https://asloncontabilidade.com.br/wp-content/uploads/2024/04/Blue-Modern-Pharmacy-Medical-Presentation-Template.png');
    background-size: cover, cover;
    background-position: center, center;
  }
  .hero__inner { grid-template-columns: 1fr; min-height: auto; }
  .hero__placeholder { display: none; }
}
.hero__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 560px;
  padding-block: 30px;
}
.hero__title {
  color: #fff;
  font-size: clamp(2rem, 1.4rem + 2.4vw, 2.6875rem);  /* 43px topo */
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.005em;
}
.hero__subtitle {
  color: rgba(255, 255, 255, 0.95);
  font-size: 16px;
  line-height: 1.6;
  max-width: 50ch;
}
.hero__ctas { gap: 16px; margin-top: 8px; }
.hero__placeholder { /* coluna vazia da direita — só pra estrutura grid */ }

/* ============================================================
   VIDEO — reduzido, centralizado
   ============================================================ */
.video-section {
  background-color: var(--c-bg-alt);
  padding-block: clamp(56px, 7vw, 88px);
}
.video-frame {
  position: relative;
  max-width: 800px;
  margin-inline: auto;
  aspect-ratio: 16 / 9;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background-color: #000;
}
.video-frame iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* ============================================================
   SEÇÃO PADRÃO
   ============================================================ */
.section { padding-block: clamp(56px, 7vw, 88px); }
.section--alt  { background-color: var(--c-bg-alt); }
.section--soft { background-color: var(--c-bg); }

.section-heading {
  text-align: center;
  margin-bottom: 40px;
  max-width: 820px;
  margin-inline: auto;
}
.section-heading h2 {
  font-size: clamp(1.6rem, 1.3rem + 1.4vw, 2.0625rem);  /* 33px real */
  font-weight: 700;
  color: #5A5B5C;                                        /* cor real */
}

/* ============================================================
   ESPECIALIDADES — checks verdes, sem boxes
   ============================================================ */
.specialties { background-color: var(--c-bg-alt); padding-bottom: clamp(72px, 8vw, 120px); }
.specialties__lists {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 80px;
  max-width: 940px;
  margin-inline: auto;
  padding-block: 16px;
}
@media (max-width: 720px) { .specialties__lists { grid-template-columns: 1fr; gap: 0; } }
.specialties__list { display: flex; flex-direction: column; }
.specialties__list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  font-size: 16px;
  color: var(--c-text-soft);
}
.specialties__list li svg {
  flex-shrink: 0;
  width: 22px; height: 22px;
  fill: var(--c-check);
}

/* ============================================================
   SERVIÇOS (12 cards)
   ============================================================ */
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1023px) { .services__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px)  { .services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px)  { .services__grid { grid-template-columns: 1fr; } }

/* SPECS REAIS extraídos do Sina Content Box: padding 30px, border #ACAAAA,
   título 24px/600/#000, descrição 14px/#8A8A8A, ícone color #C9C9C9 38px,
   hover scale(1.1) + shadow (0 10 10 0 rgba(0,0,0,0.1)) */
.service-card {
  background-color: #fff;
  border: 1px solid #ACAAAA;
  border-radius: 0;
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 320px;
  transition: transform var(--t-base), box-shadow var(--t-base);
  will-change: transform;
}
.service-card:hover {
  transform: scale(1.06);
  box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.1);
  z-index: 2;
  position: relative;
}
.service-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 78px;
  padding: 15px;
  margin-bottom: 8px;
  color: #C9C9C9;
}
.service-card__icon svg {
  width: 38px; height: 38px;
  fill: currentColor;
}

.service-card__title {
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.25;
  color: #000000;
  margin-bottom: 14px;
}
.service-card__title--full { color: var(--c-primary); }
.service-card__title .brand-accent { color: var(--c-primary); }

.service-card__desc {
  font-size: 14px;
  line-height: 1.55;
  color: #8A8A8A;
  max-width: 32ch;
  margin: 0 auto;
}

/* ============================================================
   COBERTURA — Mapa do RJ (SVG) + texto à direita
   ============================================================ */
.coverage { background-color: var(--c-bg-alt); }
.coverage__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
@media (max-width: 768px) {
  .coverage__inner { grid-template-columns: 1fr; text-align: center; }
  .coverage__inner .btn-group { justify-content: center; }
  .coverage__map { max-width: 320px; margin-inline: auto; }
}
.coverage__map {
  width: 100%;
  max-width: 500px;
  justify-self: center;
}
.coverage__map img { width: 100%; height: auto; display: block; }
.coverage__content h2 { margin-bottom: 18px; font-size: clamp(1.85rem, 1.4rem + 1.6vw, 2.6rem); }
.coverage__content p {
  color: var(--c-text-soft);
  margin-bottom: 28px;
  font-size: 16.5px;
  line-height: 1.6;
  max-width: 50ch;
}

/* ============================================================
   DIFERENCIAIS — UM bloco laranja com 4 itens
   ============================================================ */
.differentials__block {
  background-color: var(--c-primary);
  border-radius: 6px;
  padding: clamp(36px, 5vw, 56px) clamp(24px, 4vw, 48px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 24px;
}
@media (max-width: 900px) { .differentials__block { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .differentials__block { grid-template-columns: 1fr; } }

.differential-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}
.differential-item__icon {
  width: 78px; height: 78px;
  border: 2px solid #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--t-base);
}
.differential-item:hover .differential-item__icon {
  background-color: rgba(255, 255, 255, 0.18);
}
.differential-item__icon svg { width: 36px; height: 36px; fill: #fff; }
.differential-item__title {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
}

/* ============================================================
   APP DA ASLON — mockup do celular + 7 benefícios
   ============================================================ */
.app-section { background-color: var(--c-bg-alt); }

.app-section__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
@media (max-width: 800px) {
  .app-section__inner { grid-template-columns: 1fr; text-align: center; }
}

.app-section__image {
  display: flex;
  justify-content: center;
  align-items: center;
}
.app-section__image img {
  width: 100%;
  max-width: 280px;
  height: auto;
  filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.18));
}
@media (max-width: 800px) {
  .app-section__image img { max-width: 240px; }
}

.app-section__title {
  font-size: clamp(1.6rem, 1.3rem + 1.4vw, 2.0625rem);
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 28px;
  line-height: 1.25;
}
.app-section__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.app-section__list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  line-height: 1.4;
  color: var(--c-text);
}
@media (max-width: 800px) {
  .app-section__list li { justify-content: center; }
}
.app-section__num {
  font-size: 22px;
  color: var(--c-primary);
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
}

/* ============================================================
   QUEM SOMOS
   ============================================================ */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
  margin-top: 8px;
}
@media (max-width: 800px) { .about__grid { grid-template-columns: 1fr; } }

.about__card {
  border-radius: var(--radius-card);
  padding: clamp(32px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: center;
}
.about__card--gray  { background-color: var(--c-bg-alt); }
.about__card--white {
  background-color: #fff;
  box-shadow: var(--shadow-card);
}
.about__card h3 {
  font-size: clamp(1.6rem, 1.3rem + 1vw, 2.1rem);
  font-weight: 700;
  color: #2c3033;
  margin: 0 auto;
}
.about__card p {
  color: var(--c-text-soft);
  line-height: 1.6;
  font-size: 15.5px;
  max-width: 38ch;
  margin-inline: auto;
}
.about__card img {
  border-radius: 14px;
  margin: auto auto 0;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 16 / 10;       /* frame paisagem fixo */
  height: auto;
  object-fit: cover;            /* preenche o frame inteiro, sem espaço branco */
  object-position: center 75%;  /* ancora no rodapé da imagem → corta levemente só o topo */
  box-shadow: var(--shadow-image);
}
.about__list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 15.5px;
  color: var(--c-text-dark);
  line-height: 1.4;
  margin-block: 8px;
}
.about__list li {
  text-align: center;
}
.about__card .btn {
  align-self: center;
  margin-top: 12px;
  padding: 14px 40px;
  font-size: 16px;
}

/* ============================================================
   DEPOIMENTOS — carrossel + Google rating
   ============================================================ */
.testimonials { background-color: #fff; }
.testimonials__rating {
  display: flex;
  justify-content: center;
  margin-bottom: 36px;
}
.testimonials__rating img {
  max-width: 280px;
  height: auto;
  display: block;
}

.carousel {
  position: relative;
  max-width: 920px;
  margin-inline: auto;
}
.carousel__viewport {
  overflow: hidden;
  border-radius: 14px;
}
.carousel__track {
  display: flex;
  transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
.carousel__slide {
  min-width: 100%;
  padding: 4px;
}

.testimonial {
  background-color: #FCE7D6;       /* peach do print */
  border-radius: 14px;
  padding: clamp(28px, 4vw, 50px);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: center;
  position: relative;
  min-height: 240px;
}
@media (max-width: 600px) {
  .testimonial { grid-template-columns: 1fr; text-align: center; }
}
.testimonial__avatar {
  width: 130px; height: 130px;
  border-radius: 50%;
  object-fit: cover;
  border: 6px solid #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .testimonial__avatar { width: 110px; height: 110px; margin: 0 auto; }
}
.testimonial__body { display: flex; flex-direction: column; gap: 12px; }
.testimonial__quote {
  font-size: 15.5px;
  line-height: 1.65;
  color: #4a4a4a;
}
.testimonial__name {
  font-size: 17px;
  font-weight: 700;
  color: var(--c-text-dark);
}
.testimonial__role {
  font-size: 14px;
  color: var(--c-text-muted);
}

.carousel__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background-color: #fff;
  color: var(--c-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: background-color var(--t-fast), color var(--t-fast), transform var(--t-fast);
  z-index: 2;
}
.carousel__nav:hover {
  background-color: var(--c-primary);
  color: #fff;
  transform: translateY(-50%) scale(1.08);
}
.carousel__nav--prev { left: -16px; }
.carousel__nav--next { right: -16px; }
.carousel__nav svg { width: 22px; height: 22px; fill: currentColor; }
@media (max-width: 768px) {
  .carousel__nav--prev { left: 4px; }
  .carousel__nav--next { right: 4px; }
}

.carousel__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}
.carousel__dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background-color: rgba(248, 132, 47, 0.3);
  transition: background-color var(--t-fast), width var(--t-fast);
  cursor: pointer;
}
.carousel__dot:hover { background-color: rgba(248, 132, 47, 0.55); }
.carousel__dot[aria-current="true"] {
  background-color: var(--c-primary);
  width: 32px;
  border-radius: 6px;
}

/* ============================================================
   FAQ — lista com triângulos laranja, ilustração à esq
   ============================================================ */
.faq__inner {
  display: grid;
  grid-template-columns: 0.95fr 1.1fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
}
@media (max-width: 880px) {
  .faq__inner { grid-template-columns: 1fr; }
  .faq__image { max-width: 360px; margin-inline: auto; }
}
.faq__image img {
  width: 100%;
  border-radius: 0;
}

.faq__content header { margin-bottom: 12px; }
.faq__content h2 {
  font-size: clamp(1.9rem, 1.4rem + 1.7vw, 2.6rem);
  color: var(--c-text-dark);
  margin-bottom: 24px;
}
.faq__list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--c-border-soft);
  padding: 14px 0;
}
.faq-item summary {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 17px;
  font-weight: 700;
  color: var(--c-primary);
  list-style: none;
  cursor: pointer;
  line-height: 1.4;
  transition: color var(--t-fast);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before {
  content: '';
  flex-shrink: 0;
  margin-top: 6px;
  width: 0; height: 0;
  border-style: solid;
  border-width: 6px 0 6px 9px;
  border-color: transparent transparent transparent var(--c-primary);
  transition: transform var(--t-base);
  transform-origin: 3px 6px;
}
.faq-item[open] summary::before { transform: rotate(90deg); }
.faq-item:hover summary { color: var(--c-primary-dk); }
.faq-item__answer {
  padding: 12px 0 6px 22px;
  color: var(--c-text-soft);
  line-height: 1.65;
  font-size: 15px;
}

/* ============================================================
   CTA FINAL — peach gradient + foto ofice
   ============================================================ */
.cta-final {
  background:
    linear-gradient(95deg, #f8a560 0%, #f9b380 50%, #fac598 100%);
  color: #fff;
}
.cta-final__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  padding-block: clamp(56px, 7vw, 88px);
}
@media (max-width: 800px) { .cta-final__inner { grid-template-columns: 1fr; text-align: center; } }
@media (max-width: 800px) { .cta-final .btn-group { justify-content: center; } }
.cta-final h2 {
  color: #fff;
  margin-bottom: 16px;
  font-size: clamp(1.9rem, 1.5rem + 1.8vw, 2.5rem);  /* 40px real */
  font-weight: 700;
  line-height: 1.1;
}
.cta-final p {
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 32px;
  font-size: 17px;
  line-height: 1.5;
  max-width: 44ch;
}
@media (max-width: 800px) { .cta-final p { margin-inline: auto; } }
.cta-final__image {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cta-final__image img {
  border-radius: 12px;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 16 / 10;        /* frame paisagem fixo */
  height: auto;
  object-fit: cover;             /* preenche o frame, sem espaço branco */
  object-position: center 75%;   /* ancora no rodapé → corta levemente só o topo */
  box-shadow: var(--shadow-image);
}

/* ============================================================
   MISSÃO / VISÃO / VALORES — botões lado a lado, fixos
   ============================================================ */
.mvv { background-color: #FFFFFF; }
.mvv__title {
  text-align: center;
  margin-bottom: 36px;
  font-size: clamp(1.6rem, 1.3rem + 1.4vw, 2.0625rem);
  color: var(--c-text);
}

.mvv-tabs {
  max-width: 820px;
  margin-inline: auto;
}

/* Linha de botões */
.mvv-tabs__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}
@media (max-width: 480px) {
  .mvv-tabs__list { gap: 10px; }
}

/* Cada botão (pill horizontal) */
.mvv-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  background-color: #fff;
  color: var(--c-text);
  border: 2px solid var(--c-border);
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  transition: background-color var(--t-fast), color var(--t-fast),
              border-color var(--t-fast), box-shadow var(--t-fast),
              transform var(--t-fast);
}
.mvv-tab:hover {
  border-color: var(--c-primary);
  color: var(--c-primary);
}
.mvv-tab[aria-selected="true"] {
  background-color: var(--c-primary);
  color: #fff;
  border-color: var(--c-primary);
  box-shadow: 0 8px 18px rgba(248, 132, 47, 0.35);
}
.mvv-tab__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.mvv-tab__icon svg {
  width: 22px; height: 22px;
  fill: currentColor;
}

@media (max-width: 480px) {
  .mvv-tab {
    flex-direction: column;
    gap: 6px;
    padding: 14px 6px;
    font-size: 13px;
  }
}

/* Painel de texto (caixa fixa abaixo dos botões) */
.mvv-tabs__panels {
  background-color: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-card);
  padding: clamp(28px, 4vw, 48px);
  text-align: center;
  box-shadow: var(--shadow-card);
}
.mvv-tabs__panel {
  font-size: 17px;
  line-height: 1.7;
  color: var(--c-text-dark);
  max-width: 60ch;
  margin-inline: auto;
}
.mvv-tabs__panel[hidden] { display: none; }
@media (max-width: 480px) {
  .mvv-tabs__panel { font-size: 15px; line-height: 1.6; }
}

/* ============================================================
   PÁGINAS DE TEXTO LONGO (Política de Privacidade, Termos, etc.)
   ============================================================ */
.page-header {
  background: linear-gradient(95deg, #F8842F 0%, #f8a560 100%);
  color: #fff;
  padding-block: 60px;
  text-align: center;
}
.page-header h1 {
  color: #fff;
  font-size: clamp(1.9rem, 1.5rem + 1.8vw, 2.6875rem);
  margin-bottom: 8px;
}
.page-header p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
}

.prose {
  max-width: 820px;
  margin-inline: auto;
  font-size: 16px;
  line-height: 1.7;
  color: var(--c-text);
}
.prose h2 {
  font-size: clamp(1.3rem, 1.1rem + 0.6vw, 1.5625rem);
  color: var(--c-text);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  font-size: 1.125rem;
  color: var(--c-text-dark);
  margin-top: 1.75rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.prose p { margin-bottom: 1rem; color: var(--c-text-soft); }
.prose ul, .prose ol {
  list-style: revert;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  color: var(--c-text-soft);
}
.prose li { margin-bottom: 0.5rem; }
.prose strong { color: var(--c-text-dark); font-weight: 600; }
.prose a { color: var(--c-primary); text-decoration: underline; }
.prose a:hover { color: var(--c-primary-dk); }

/* ============================================================
   BLOG — Arquivo (listagem) + Post individual
   ============================================================ */

/* Hero do blog — laranja com padrão triangular translúcido */
.blog-hero {
  background-color: #F8842F;
  background-image:
    linear-gradient(95deg, rgba(248,132,47,0.92) 0%, rgba(248,165,96,0.88) 100%),
    url('https://asloncontabilidade.com.br/wp-content/uploads/2026/05/19.png');
  background-repeat: no-repeat, no-repeat;
  background-size: cover, cover;
  background-position: center, center;
  color: #fff;
  padding-block: clamp(48px, 6vw, 72px);
  text-align: center;
  position: relative;
}
.blog-hero h1 {
  color: #fff;
  font-size: clamp(1.85rem, 1.4rem + 1.8vw, 2.5rem);
  margin-bottom: 10px;
}
.blog-hero p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  max-width: 56ch;
  margin-inline: auto;
}

/* Seção arquivo: padding mais compacto */
.blog-archive { padding-block: clamp(40px, 5vw, 64px); }

/* Layout 2 colunas: artigos + sidebar */
.blog-archive__inner,
.post-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 32px;
  align-items: start;
}
@media (max-width: 960px) {
  .blog-archive__inner,
  .post-layout { grid-template-columns: 1fr; gap: 32px; }
}

/* Grid de cards — 2-3 cards por linha */
.blog-posts {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
@media (max-width: 480px) {
  .blog-posts { grid-template-columns: 1fr; }
}

.blog-card {
  background-color: #fff;
  border: 1px solid var(--c-border-soft);
  border-radius: var(--radius-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: box-shadow var(--t-base), transform var(--t-base);
}
.blog-card:hover {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.10);
  transform: translateY(-3px);
}
.blog-card__image {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background-color: var(--c-bg-alt);
}
.blog-card__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}
.blog-card:hover .blog-card__image img { transform: scale(1.05); }

.blog-card__body {
  padding: 18px 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.blog-card__category {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-primary);
}
.blog-card__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--c-text-dark);
  margin: 0;
  /* Trunca em até 3 linhas */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card__title a { color: inherit; }
.blog-card__title a:hover { color: var(--c-primary); }
.blog-card__excerpt {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--c-text-soft);
  margin: 0;
  /* Trunca em até 3 linhas */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 10px;
  gap: 8px;
}
.blog-card__footer time {
  font-size: 12px;
  color: var(--c-text-muted);
  white-space: nowrap;
}
.blog-card__read-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
  font-size: 13px;
  color: var(--c-primary);
  white-space: nowrap;
}
.blog-card__read-more svg {
  width: 12px; height: 12px;
  fill: currentColor;
  transition: transform var(--t-fast);
}
.blog-card__read-more:hover { color: var(--c-primary-dk); }
.blog-card__read-more:hover svg { transform: translateX(3px); }

/* Estados */
.blog-loading,
.blog-error,
.blog-empty {
  padding: 40px 20px;
  text-align: center;
  color: var(--c-text-muted);
  font-size: 15px;
}
.blog-empty p + p { margin-top: 12px; }
.blog-empty a { color: var(--c-primary); text-decoration: underline; }

/* Sidebar (direita) */
.blog-archive__sidebar,
.post-aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 96px;
}
@media (max-width: 960px) {
  .blog-archive__sidebar,
  .post-aside { position: static; gap: 16px; }
}

.blog-sidebar-card {
  background-color: #fff;
  border: 1px solid var(--c-border-soft);
  border-radius: var(--radius-card);
  padding: 18px 20px;
}
.blog-sidebar-card__title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--c-text-dark);
  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--c-primary);
}

/* Barra de busca */
.blog-search {
  display: flex;
  align-items: stretch;
  height: 44px;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-pill);
  overflow: hidden;
  background-color: #fff;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.blog-search:focus-within {
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px rgba(248, 132, 47, 0.15);
}
.blog-search input[type="search"] {
  flex: 1 1 auto;
  min-width: 0;
  height: 100%;
  padding: 0 16px;
  border: 0;
  outline: 0;
  margin: 0;
  font: inherit;
  font-size: 14px;
  line-height: 1;
  background-color: transparent;
  color: var(--c-text-dark);
  -webkit-appearance: none;
  appearance: none;
}
.blog-search input::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
}
.blog-search input::placeholder { color: var(--c-text-muted); }
.blog-search button {
  flex: 0 0 44px;
  width: 44px;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background-color: var(--c-primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color var(--t-fast);
}
.blog-search button:hover { background-color: var(--c-primary-dk); }
.blog-search button svg { width: 18px; height: 18px; fill: currentColor; }

/* Posts recentes */
.blog-sidebar-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.blog-recent {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 12px;
  align-items: center;
  color: inherit;
}
.blog-recent img,
.blog-recent__placeholder {
  width: 56px; height: 56px;
  border-radius: 6px;
  object-fit: cover;
  background-color: var(--c-bg-alt);
}
.blog-recent__text { min-width: 0; }
.blog-recent__title {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--c-text-dark);
  margin: 0 0 3px;
  transition: color var(--t-fast);
  /* Trunca em 2 linhas */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-recent:hover .blog-recent__title { color: var(--c-primary); }
.blog-recent time {
  font-size: 11.5px;
  color: var(--c-text-muted);
}

/* CTA card no sidebar */
.blog-cta-card {
  background: linear-gradient(135deg, var(--c-primary) 0%, #d96f1e 100%);
  color: #fff;
  text-align: center;
  border: 0;
}
.blog-cta-card .blog-sidebar-card__title {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.4);
}
.blog-cta-card h2 {
  color: #fff;
  font-size: 18px;
  margin: 0 0 10px;
}
.blog-cta-card p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  line-height: 1.5;
  margin: 0 0 16px;
}
.blog-cta-card .btn { width: 100%; padding: 12px 16px; font-size: 14.5px; }

/* Paginação numeral */
.blog-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 40px;
}
.blog-page {
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  border-radius: 50%;
  background-color: transparent;
  color: var(--c-text-dark);
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--t-fast), color var(--t-fast),
              border-color var(--t-fast), transform var(--t-fast);
}
.blog-page:hover:not(.is-current) {
  background-color: rgba(248, 132, 47, 0.12);
  color: var(--c-primary);
}
.blog-page.is-current {
  background-color: var(--c-primary);
  color: #fff;
  cursor: default;
  box-shadow: 0 6px 14px rgba(248, 132, 47, 0.35);
}
.blog-page--ellipsis {
  background-color: transparent;
  color: var(--c-text-muted);
  pointer-events: none;
  cursor: default;
  padding: 0 4px;
  min-width: auto;
}
.blog-page--ellipsis:hover {
  background-color: transparent;
  color: var(--c-text-muted);
}

/* ============ POST INDIVIDUAL ============ */
.post-hero {
  background-color: #F8842F;
  background-image:
    linear-gradient(95deg, rgba(248,132,47,0.92) 0%, rgba(248,165,96,0.88) 100%),
    url('https://asloncontabilidade.com.br/wp-content/uploads/2026/05/19.png');
  background-repeat: no-repeat, no-repeat;
  background-size: cover, cover;
  background-position: center, center;
  color: #fff;
  padding-block: clamp(48px, 7vw, 80px);
  position: relative;
}
.post-hero .breadcrumb {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 14px;
}
.post-hero .breadcrumb a { color: #fff; text-decoration: underline; }
.post-hero .breadcrumb a:hover { color: rgba(255, 255, 255, 0.85); }
.post-hero h1 {
  color: #fff;
  font-size: clamp(1.75rem, 1.3rem + 2vw, 2.5rem);
  margin: 0 0 18px;
  line-height: 1.18;
}
.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.92);
}
.post-meta [data-post-category] {
  background-color: rgba(255, 255, 255, 0.18);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-weight: 600;
}

/* Corpo do artigo */
.post-article {
  background-color: #fff;
  border: 1px solid var(--c-border-soft);
  border-radius: var(--radius-card);
  padding: clamp(24px, 4vw, 48px);
}
.post-article__hero {
  width: 100%;
  height: auto;
  border-radius: var(--radius-card);
  margin-bottom: 24px;
}
.post-article__body {
  font-size: 16px;
  line-height: 1.75;
  color: var(--c-text-dark);
}
.post-article__body > * + * { margin-top: 1rem; }
.post-article__body h2,
.post-article__body h3,
.post-article__body h4 {
  color: var(--c-text-dark);
  margin-top: 2.25rem;
  margin-bottom: 0.75rem;
}
.post-article__body h2 { font-size: 1.5rem; }
.post-article__body h3 { font-size: 1.25rem; }
.post-article__body a { color: var(--c-primary); text-decoration: underline; }
.post-article__body a:hover { color: var(--c-primary-dk); }
.post-article__body ul,
.post-article__body ol {
  list-style: revert;
  padding-left: 1.5rem;
}
.post-article__body li { margin-bottom: 0.4rem; }
.post-article__body img,
.post-article__body figure img {
  border-radius: 10px;
  max-width: 100%;
  height: auto;
  margin-block: 1.25rem;
}
.post-article__body figure { margin: 1.5rem 0; }
.post-article__body figcaption {
  font-size: 13px;
  color: var(--c-text-muted);
  text-align: center;
  margin-top: 0.5rem;
}
.post-article__body blockquote {
  border-left: 4px solid var(--c-primary);
  padding: 8px 0 8px 18px;
  margin-block: 1.5rem;
  color: var(--c-text-soft);
  font-style: italic;
}
.post-article__body strong { color: var(--c-text-dark); }
.post-article__body iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: 0;
  border-radius: 10px;
  margin-block: 1.5rem;
}

.post-article__share {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--c-border-soft);
  flex-wrap: wrap;
}
.post-article__share span {
  font-size: 14px;
  font-weight: 600;
  color: var(--c-text-dark);
}
.post-article__share a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background-color: var(--c-bg-alt);
  color: var(--c-text-dark);
  transition: all var(--t-fast);
}
.post-article__share a:hover {
  background-color: var(--c-primary);
  color: #fff;
  transform: translateY(-2px);
}
.post-article__share svg { width: 16px; height: 16px; fill: currentColor; }

/* ============================================================
   FOOTER — layout simples, ícones laranja inline
   ============================================================ */
.site-footer {
  background-color: #F7F7F7;            /* tom exato pedido */
  padding-block: 60px 28px;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr 0.7fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 800px) {
  .site-footer__grid { grid-template-columns: 1fr; gap: 32px; }
}

.site-footer__col h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--c-primary);
  margin-bottom: 22px;
}

.site-footer__brand img {
  height: 70px;
  width: auto;
  margin-bottom: 18px;
}
.site-footer__brand p {
  color: var(--c-text-soft);
  font-size: 15px;
  line-height: 1.55;
  max-width: 32ch;
}

.site-footer address { font-style: normal; }    /* tira o itálico padrão do <address> */

.site-footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.site-footer__contacts li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 15px;
  line-height: 1.5;
  color: var(--c-text-soft);
}
.site-footer__contacts svg {
  flex-shrink: 0;
  width: 22px; height: 22px;
  fill: var(--c-primary);
  margin-top: 2px;
}
.site-footer__contacts a { color: var(--c-text-soft); }
.site-footer__contacts a:hover { color: var(--c-primary); }

.site-footer__social { display: flex; gap: 14px; }
.site-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  color: var(--c-primary);
  transition: color var(--t-fast), transform var(--t-fast);
}
.site-footer__social a:hover {
  color: var(--c-primary-dk);
  transform: translateY(-2px);
}
.site-footer__social svg { width: 28px; height: 28px; fill: currentColor; }

.site-footer__bottom {
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid var(--c-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--c-text-muted);
}

/* ============================================================
   WHATSAPP FLUTUANTE
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background-color: var(--c-success);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.45);
  z-index: 200;
  transition: transform var(--t-base), background-color var(--t-base);
  animation: pulse-whatsapp 2.5s ease-in-out infinite;
}
.whatsapp-float:hover {
  background-color: #1faa54;
  transform: scale(1.1);
  animation-play-state: paused;
}
.whatsapp-float svg {
  width: 32px; height: 32px;
  fill: #fff;
}
@keyframes pulse-whatsapp {
  0%, 100% { box-shadow: 0 6px 18px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.5); }
  50%      { box-shadow: 0 6px 18px rgba(37, 211, 102, 0.45), 0 0 0 14px rgba(37, 211, 102, 0); }
}
@media (max-width: 480px) {
  .whatsapp-float { width: 56px; height: 56px; bottom: 18px; right: 18px; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: 0ms !important; }
}
