:root {
  --ach-ink: #24152f;
  --ach-muted: #665b6d;
  --ach-primary: #a72f87;
  --ach-primary-dark: #74205f;
  --ach-accent: #f5c452;
  --ach-surface: #fffafc;
  --ach-soft: #f8eef6;
  --ach-border: #ead8e6;
}

body.achadinhos-site {
  background: var(--ach-surface);
  color: var(--ach-ink);
}

.ach-header {
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--ach-border);
  position: sticky;
  top: 0;
  z-index: 50;
}

.ach-header-inner {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  min-height: 72px;
}

.ach-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--ach-primary-dark);
  font-size: 1.15rem;
  font-weight: 800;
  text-decoration: none;
}

.ach-brand .brand-logo-image {
  border-color: rgba(110, 16, 47, 0.22);
}

.ach-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  justify-content: flex-end;
}

.ach-nav a {
  color: var(--ach-ink);
  font-size: 0.94rem;
  font-weight: 650;
  text-decoration: none;
}

.ach-nav a:hover,
.ach-nav a:focus-visible {
  color: var(--ach-primary);
}

.ach-hero {
  background: linear-gradient(135deg, #4b1745 0%, #9b2b80 58%, #d45ca8 100%);
  color: #fff;
  overflow: hidden;
  padding: 72px 0 68px;
  position: relative;
}

.ach-hero::after {
  background: radial-gradient(circle, rgba(245, 196, 82, 0.28), transparent 68%);
  content: "";
  height: 360px;
  position: absolute;
  right: -100px;
  top: -130px;
  width: 360px;
}

.ach-hero .container {
  position: relative;
  z-index: 1;
}

.ach-breadcrumbs {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  font-size: 0.9rem;
  gap: 8px;
  margin-bottom: 26px;
}

.ach-breadcrumbs a {
  color: #fff;
}

.ach-eyebrow {
  color: var(--ach-accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.ach-hero h1 {
  color: #fff;
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  line-height: 1.06;
  margin: 0;
  max-width: 920px;
}

.ach-hero-copy {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.7;
  margin: 24px 0 0;
  max-width: 760px;
}

.ach-hero--hub,
.ach-hero--guide {
  padding: 56px 0;
}

.ach-hero--guide {
  padding: 48px 0;
}

.ach-hero--guide h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
}

.ach-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.ach-primary-cta,
.ach-secondary-cta {
  align-items: center;
  border-radius: 999px;
  box-sizing: border-box;
  display: inline-flex;
  font-weight: 750;
  gap: 8px;
  justify-content: center;
  max-width: 100%;
  padding: 13px 19px;
  text-align: center;
  text-decoration: none;
}

.ach-primary-cta {
  background: var(--ach-accent);
  color: var(--ach-ink);
}

.ach-secondary-cta {
  border: 1px solid rgba(255, 255, 255, 0.72);
  color: #fff;
}

.ach-primary-cta:hover,
.ach-primary-cta:focus-visible {
  background: #ffe092;
}

.ach-secondary-cta:hover,
.ach-secondary-cta:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

.ach-authority {
  padding: 22px 0 0;
}

.ach-authority-card {
  align-items: center;
  background: linear-gradient(135deg, #fff 0%, var(--ach-soft) 100%);
  border: 1px solid var(--ach-border);
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(74, 29, 67, 0.07);
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 22px 24px;
}

.ach-authority-copy {
  min-width: 0;
}

.ach-authority .ach-eyebrow {
  color: var(--ach-primary-dark);
}

.ach-authority h2 {
  color: var(--ach-ink);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  line-height: 1.2;
  margin: 0 0 12px;
}

.ach-authority-copy > p:last-child {
  color: var(--ach-muted);
  line-height: 1.58;
  margin: 0;
  max-width: 780px;
}

.ach-authority-cta {
  align-items: center;
  background: var(--ach-primary-dark);
  border-radius: 999px;
  box-sizing: border-box;
  color: #fff;
  display: inline-flex;
  flex-shrink: 0;
  font-weight: 750;
  gap: 8px;
  justify-content: center;
  max-width: 100%;
  padding: 14px 20px;
  text-align: center;
  text-decoration: none;
}

.ach-authority-cta:hover,
.ach-authority-cta:focus-visible {
  background: var(--ach-primary);
}

.ach-section {
  padding: 52px 0;
}

.ach-section--compact {
  padding: 38px 0;
}

.ach-products-section {
  padding-top: 44px;
}

.ach-section--soft {
  background: var(--ach-soft);
}

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

.ach-section-heading--compact {
  margin-bottom: 16px;
}

.ach-section-heading h2,
.ach-section h2 {
  color: var(--ach-ink);
  font-size: clamp(1.65rem, 4vw, 2.45rem);
  line-height: 1.2;
  margin: 0 0 14px;
}

.ach-section-heading p,
.ach-prose p,
.ach-card p,
.ach-recommendation p {
  color: var(--ach-muted);
  line-height: 1.72;
}

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

.ach-card,
.ach-recommendation {
  background: #fff;
  border: 1px solid var(--ach-border);
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(74, 29, 67, 0.07);
}

.ach-card {
  color: inherit;
  display: block;
  padding: 26px;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.ach-card:hover,
.ach-card:focus-visible {
  box-shadow: 0 16px 38px rgba(74, 29, 67, 0.13);
  transform: translateY(-3px);
}

.ach-card h3,
.ach-recommendation h3 {
  color: var(--ach-primary-dark);
  font-size: 1.24rem;
  margin: 0 0 10px;
}

.ach-card-link {
  color: var(--ach-primary);
  display: inline-block;
  font-weight: 750;
  margin-top: 10px;
}

.ach-prose {
  max-width: 820px;
}

.ach-criteria {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
}

.ach-criteria li {
  background: #fff;
  border-left: 4px solid var(--ach-accent);
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(74, 29, 67, 0.06);
  padding: 18px;
}

.ach-recommendations {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ach-recommendation {
  padding: 22px;
}

.ach-affiliate-label {
  font-size: 0.82rem;
  margin: -8px 0 16px;
}

.ach-affiliate-label a {
  color: var(--ach-muted);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.ach-category-jumps {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 22px;
  max-width: 100%;
}

.ach-category-jumps a {
  background: var(--ach-soft);
  border: 1px solid var(--ach-border);
  border-radius: 999px;
  color: var(--ach-primary-dark);
  font-size: 0.86rem;
  font-weight: 750;
  max-width: 100%;
  overflow-wrap: anywhere;
  padding: 8px 12px;
  text-decoration: none;
}

.ach-category-jumps a:hover,
.ach-category-jumps a:focus-visible {
  background: #fff;
  border-color: var(--ach-primary);
}

.ach-note {
  border-top: 1px solid var(--ach-border);
  display: block;
  margin-top: 18px;
  padding-top: 14px;
}

.ach-note strong {
  color: var(--ach-ink);
}

.ach-recommendation-details {
  border-top: 1px solid var(--ach-border);
  margin-top: 18px;
  padding-top: 14px;
}

.ach-recommendation-details summary,
.ach-guide-details summary {
  color: var(--ach-primary-dark);
  cursor: pointer;
  font-weight: 750;
}

.ach-recommendation-details .ach-note {
  border-top: 0;
  font-size: 0.94rem;
  line-height: 1.55;
  margin-top: 12px;
  padding-top: 0;
}

.ach-guide-details {
  background: #fff;
  border: 1px solid var(--ach-border);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(74, 29, 67, 0.06);
  padding: 18px 22px;
}

.ach-guide-details-content {
  margin-top: 20px;
}

.ach-guide-details-content h3 {
  color: var(--ach-ink);
  font-size: 1.2rem;
  margin: 26px 0 12px;
}

.ach-offers {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 16px;
}

.ach-affiliate-offer:only-child {
  grid-column: 1 / -1;
  max-width: 320px;
}

.ach-affiliate-offer {
  align-items: stretch;
  background: #fff;
  border: 1px solid var(--ach-border);
  border-radius: 14px;
  color: var(--ach-ink);
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  text-decoration: none;
}

.ach-affiliate-image {
  aspect-ratio: 1 / 1;
  display: block;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.ach-affiliate-link {
  background: var(--ach-primary);
  color: #fff;
  display: block;
  font-weight: 750;
  margin-top: auto;
  padding: 12px 14px;
  text-align: center;
}

.ach-affiliate-offer:hover .ach-affiliate-link,
.ach-affiliate-offer:focus-visible .ach-affiliate-link {
  background: var(--ach-primary-dark);
}

.ach-faq {
  display: grid;
  gap: 12px;
  max-width: 860px;
}

.ach-faq details {
  background: #fff;
  border: 1px solid var(--ach-border);
  border-radius: 12px;
  padding: 18px 20px;
}

.ach-faq summary {
  color: var(--ach-ink);
  cursor: pointer;
  font-weight: 750;
}

.ach-faq p {
  color: var(--ach-muted);
  line-height: 1.65;
  margin: 12px 0 0;
}

.ach-footer {
  background: #24152f;
  color: rgba(255, 255, 255, 0.82);
  padding: 40px 0;
}

.ach-footer-inner {
  display: flex;
  gap: 24px;
  justify-content: space-between;
}

.ach-footer a {
  color: #fff;
}

.ach-footer-disclosure {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.8rem;
  line-height: 1.55;
  margin: 24px 0 0;
  max-width: 920px;
  padding-top: 18px;
}

.ach-footer-disclosure strong {
  color: rgba(255, 255, 255, 0.9);
}

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

  .ach-header-inner,
  .ach-footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .ach-nav {
    justify-content: flex-start;
  }

  .ach-grid,
  .ach-recommendations {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .ach-hero {
    padding: 34px 0;
  }

  .ach-hero--hub h1,
  .ach-hero--guide h1 {
    font-size: clamp(1.95rem, 9vw, 2.35rem);
    line-height: 1.04;
  }

  .ach-hero--guide .ach-breadcrumbs {
    display: none;
  }

  .ach-hero-copy {
    font-size: 1rem;
    line-height: 1.52;
    margin-top: 18px;
  }

  .ach-hero-actions {
    margin-top: 22px;
  }

  .ach-hero-actions a {
    width: 100%;
  }

  .ach-hero--guide .ach-secondary-cta {
    display: none;
  }

  .ach-authority {
    padding-top: 18px;
  }

  .ach-authority-card {
    align-items: stretch;
    grid-template-columns: minmax(0, 1fr);
    padding: 20px;
  }

  .ach-authority-cta {
    width: 100%;
  }

  .ach-section {
    padding: 38px 0;
  }

  .ach-section--compact {
    padding: 30px 0;
  }

  .ach-products-section {
    padding-top: 30px;
  }

  .ach-products-section .ach-section-heading {
    margin-bottom: 14px;
  }

  .ach-products-section .ach-section-heading .ach-eyebrow,
  .ach-products-section .ach-section-heading > p:last-child {
    display: none;
  }

  .ach-products-section .ach-section-heading h2 {
    font-size: 1.7rem;
  }

  .ach-guides-section .ach-section-heading > p:last-child {
    display: none;
  }

  .ach-affiliate-label {
    margin-top: -4px;
  }

  .ach-grid,
  .ach-recommendations,
  .ach-criteria {
    grid-template-columns: 1fr;
  }

  .ach-recommendation {
    padding: 20px;
  }

  .ach-affiliate-link {
    font-size: 0.86rem;
    padding: 11px 8px;
  }
}
