/*
Theme Name: Clean Home Care
Theme URI: https://webloop.com.br/
Author: WebLoop
Author URI: https://webloop.com.br/
Description: Tema institucional exclusivo para a Clean Home Care & Aid Home.
Version: 1.0.0
Requires at least: 6.2
Tested up to: 6.8
Requires PHP: 7.4
Text Domain: clean-home-care
*/

:root {
  --chc-primary: #2d8e8a;
  --chc-primary-dark: #176863;
  --chc-primary-soft: #dff4f1;
  --chc-accent: #63e7b0;
  --chc-accent-dark: #28b97d;
  --chc-ink: #143b46;
  --chc-muted: #61747a;
  --chc-surface: #ffffff;
  --chc-canvas: #f5faf9;
  --chc-line: rgba(20, 59, 70, 0.10);
  --chc-shadow: 0 24px 70px rgba(20, 59, 70, 0.12);
  --chc-radius: 26px;
  --chc-container: min(1180px, calc(100% - 40px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--chc-surface);
  color: var(--chc-ink);
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.admin-bar .site-header {
  top: 32px;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.chc-container {
  width: var(--chc-container);
  margin-inline: auto;
}

.chc-section {
  position: relative;
  padding: 112px 0;
}

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

.chc-section--dark {
  overflow: hidden;
  background: var(--chc-ink);
  color: #fff;
}

.chc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--chc-primary-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.chc-eyebrow::before {
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: var(--chc-accent-dark);
  content: "";
}

.chc-section--dark .chc-eyebrow {
  color: var(--chc-accent);
}

.chc-title {
  max-width: 760px;
  margin: 0;
  color: var(--chc-ink);
  font-size: clamp(2.1rem, 4vw, 4rem);
  font-weight: 750;
  letter-spacing: -0.055em;
  line-height: 1.08;
}

.chc-section--dark .chc-title {
  color: #fff;
}

.chc-lead {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--chc-muted);
  font-size: 1.08rem;
}

.chc-section--dark .chc-lead {
  color: rgba(255, 255, 255, 0.68);
}

.chc-button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--chc-primary);
  box-shadow: 0 12px 30px rgba(45, 142, 138, 0.24);
  color: #fff;
  font-size: 0.91rem;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.chc-button:hover,
.chc-button:focus-visible {
  background: var(--chc-primary-dark);
  box-shadow: 0 16px 38px rgba(45, 142, 138, 0.32);
  color: #fff;
  transform: translateY(-2px);
}

.chc-button--light {
  background: #fff;
  box-shadow: none;
  color: var(--chc-ink);
}

.chc-button--light:hover,
.chc-button--light:focus-visible {
  background: var(--chc-primary-soft);
  color: var(--chc-ink);
}

.chc-button--outline {
  border-color: var(--chc-line);
  background: transparent;
  box-shadow: none;
  color: var(--chc-ink);
}

.chc-button svg {
  width: 18px;
  height: 18px;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  padding: 16px 0;
  transition: padding 240ms ease;
}

.site-header__inner {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 10px 12px 10px 24px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 42px rgba(20, 59, 70, 0.08);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  padding: 8px 0;
}

.site-brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.site-brand img {
  width: auto;
  max-height: 76px;
}

.site-nav {
  margin-left: auto;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  position: relative;
  color: var(--chc-ink);
  font-size: 0.87rem;
  font-weight: 750;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--chc-accent-dark);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav .current-menu-item > a::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-header__cta {
  min-height: 48px;
  padding-inline: 20px;
}

.site-menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--chc-primary-soft);
  color: var(--chc-ink);
  cursor: pointer;
}

.site-menu-toggle span,
.site-menu-toggle::before,
.site-menu-toggle::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 2px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-menu-toggle.is-active span {
  opacity: 0;
}

.site-menu-toggle.is-active::before {
  transform: translateY(7px) rotate(45deg);
}

.site-menu-toggle.is-active::after {
  transform: translateY(-7px) rotate(-45deg);
}

.chc-hero {
  position: relative;
  min-height: 860px;
  overflow: hidden;
  padding: 190px 0 100px;
  background:
    radial-gradient(circle at 7% 38%, rgba(99, 231, 176, 0.2), transparent 25%),
    linear-gradient(135deg, #f7fbfa 0%, #ecf8f6 100%);
}

.chc-hero::before {
  position: absolute;
  top: -180px;
  right: -120px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(45, 142, 138, 0.12);
  border-radius: 50%;
  content: "";
}

.chc-hero__grid {
  display: grid;
  align-items: center;
  gap: 70px;
  grid-template-columns: minmax(0, 0.92fr) minmax(480px, 1.08fr);
}

.chc-hero__content {
  position: relative;
  z-index: 2;
}

.chc-hero h1 {
  max-width: 670px;
  margin: 0;
  color: var(--chc-ink);
  font-size: clamp(3.1rem, 5.4vw, 5.7rem);
  font-weight: 760;
  letter-spacing: -0.075em;
  line-height: 0.98;
}

.chc-hero h1 em {
  position: relative;
  color: var(--chc-primary);
  font-style: normal;
}

.chc-hero__text {
  max-width: 590px;
  margin: 30px 0 0;
  color: var(--chc-muted);
  font-size: clamp(1rem, 1.3vw, 1.16rem);
}

.chc-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.chc-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
}

.chc-hero__trust li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--chc-ink);
  font-size: 0.83rem;
  font-weight: 750;
}

.chc-hero__trust svg {
  width: 18px;
  color: var(--chc-accent-dark);
}

.chc-hero__visual {
  position: relative;
  min-height: 590px;
}

.chc-hero__photo {
  position: absolute;
  z-index: 1;
  inset: 0 0 0 35px;
  overflow: hidden;
  border-radius: 190px 34px 190px 34px;
  background: var(--chc-primary-soft);
  box-shadow: var(--chc-shadow);
}

.chc-hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.chc-hero__photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(20, 59, 70, 0.3));
  content: "";
}

.chc-float-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 250px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 18px 50px rgba(20, 59, 70, 0.15);
  backdrop-filter: blur(14px);
}

.chc-float-card--top {
  top: 36px;
  left: 0;
}

.chc-float-card--bottom {
  right: -14px;
  bottom: 48px;
}

.chc-float-card__icon {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  place-items: center;
  border-radius: 14px;
  background: var(--chc-primary-soft);
  color: var(--chc-primary-dark);
}

.chc-float-card__icon svg {
  width: 22px;
}

.chc-float-card strong,
.chc-float-card span {
  display: block;
}

.chc-float-card strong {
  font-size: 0.9rem;
  line-height: 1.3;
}

.chc-float-card span {
  margin-top: 2px;
  color: var(--chc-muted);
  font-size: 0.72rem;
}

.chc-intro {
  display: grid;
  align-items: center;
  gap: 86px;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.chc-intro__media {
  position: relative;
}

.chc-intro__image {
  overflow: hidden;
  min-height: 610px;
  border-radius: 34px;
  box-shadow: var(--chc-shadow);
}

.chc-intro__image img {
  width: 100%;
  height: 610px;
  object-fit: cover;
}

.chc-intro__badge {
  position: absolute;
  right: -32px;
  bottom: 44px;
  width: 175px;
  padding: 24px;
  border-radius: 24px;
  background: var(--chc-ink);
  color: #fff;
}

.chc-intro__badge strong {
  display: block;
  color: var(--chc-accent);
  font-size: 2.4rem;
  letter-spacing: -0.05em;
  line-height: 1;
}

.chc-intro__badge span {
  display: block;
  margin-top: 8px;
  font-size: 0.82rem;
  line-height: 1.45;
}

.chc-checks {
  display: grid;
  gap: 15px;
  margin: 32px 0 38px;
  padding: 0;
  list-style: none;
}

.chc-checks li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--chc-ink);
  font-weight: 700;
}

.chc-checks svg {
  width: 21px;
  flex: 0 0 21px;
  margin-top: 2px;
  color: var(--chc-accent-dark);
}

.chc-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 52px;
}

.chc-section-heading__text {
  max-width: 560px;
  margin: 0;
  color: var(--chc-muted);
}

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

.chc-service-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  padding: 34px;
  border: 1px solid var(--chc-line);
  border-radius: var(--chc-radius);
  background: #fff;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.chc-service-card:hover {
  border-color: rgba(45, 142, 138, 0.28);
  box-shadow: 0 22px 55px rgba(20, 59, 70, 0.1);
  transform: translateY(-7px);
}

.chc-service-card__number {
  position: absolute;
  top: 24px;
  right: 26px;
  color: rgba(20, 59, 70, 0.13);
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 1;
}

.chc-service-card__icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 17px;
  background: var(--chc-primary-soft);
  color: var(--chc-primary-dark);
}

.chc-service-card__icon svg {
  width: 27px;
  height: 27px;
}

.chc-service-card h3 {
  margin: 42px 0 12px;
  font-size: 1.23rem;
  letter-spacing: -0.025em;
  line-height: 1.3;
}

.chc-service-card p {
  margin: 0;
  color: var(--chc-muted);
  font-size: 0.92rem;
}

.chc-service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: var(--chc-primary-dark);
  font-size: 0.82rem;
  font-weight: 800;
}

.chc-values {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.chc-value-card {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.055);
}

.chc-value-card span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--chc-accent);
  color: var(--chc-ink);
  font-size: 0.78rem;
  font-weight: 900;
}

.chc-value-card h3 {
  margin: 34px 0 12px;
  color: #fff;
  font-size: 1.15rem;
}

.chc-value-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
}

.chc-team-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.chc-team-card {
  overflow: hidden;
  border: 1px solid var(--chc-line);
  border-radius: 24px;
  background: #fff;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.chc-team-card:hover {
  box-shadow: 0 20px 50px rgba(20, 59, 70, 0.1);
  transform: translateY(-6px);
}

.chc-team-card__image {
  position: relative;
  height: 310px;
  overflow: hidden;
  background: var(--chc-primary-soft);
}

.chc-team-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chc-team-card__image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(20, 59, 70, 0.18));
  content: "";
}

.chc-team-card__body {
  padding: 24px;
}

.chc-team-card h3 {
  margin: 0;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.chc-team-card p {
  margin: 8px 0 0;
  color: var(--chc-muted);
  font-size: 0.83rem;
}

.chc-process {
  display: grid;
  counter-reset: chc-step;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.chc-process__item {
  position: relative;
  padding: 30px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 14px 40px rgba(20, 59, 70, 0.07);
  counter-increment: chc-step;
}

.chc-process__item::before {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 35px;
  place-items: center;
  border-radius: 50%;
  background: var(--chc-primary-soft);
  color: var(--chc-primary-dark);
  content: "0" counter(chc-step);
  font-size: 0.76rem;
  font-weight: 900;
}

.chc-process__item:not(:last-child)::after {
  position: absolute;
  z-index: 2;
  top: 50px;
  right: -28px;
  width: 38px;
  border-top: 2px dotted rgba(45, 142, 138, 0.32);
  content: "";
}

.chc-process__item h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
}

.chc-process__item p {
  margin: 0;
  color: var(--chc-muted);
  font-size: 0.86rem;
}

.chc-testimonials {
  position: relative;
  overflow: hidden;
}

.chc-testimonial-track {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.chc-testimonial {
  padding: 34px;
  border: 1px solid var(--chc-line);
  border-radius: 24px;
  background: #fff;
}

.chc-testimonial__quote {
  margin: 0;
  color: var(--chc-ink);
  font-size: 1rem;
  line-height: 1.8;
}

.chc-testimonial__author {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 26px;
}

.chc-testimonial__avatar {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  background: var(--chc-primary-soft);
  color: var(--chc-primary-dark);
  font-weight: 900;
}

.chc-testimonial__author strong,
.chc-testimonial__author span {
  display: block;
}

.chc-testimonial__author strong {
  font-size: 0.88rem;
}

.chc-testimonial__author span {
  color: var(--chc-muted);
  font-size: 0.74rem;
}

.chc-cta {
  position: relative;
  overflow: hidden;
  padding: 70px;
  border-radius: 38px;
  background: linear-gradient(135deg, var(--chc-primary-dark), var(--chc-primary));
  color: #fff;
}

.chc-cta::before,
.chc-cta::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  content: "";
}

.chc-cta::before {
  top: -180px;
  right: -80px;
  width: 450px;
  height: 450px;
}

.chc-cta::after {
  right: 180px;
  bottom: -180px;
  width: 320px;
  height: 320px;
}

.chc-cta__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.chc-cta h2 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(2rem, 3.4vw, 3.6rem);
  letter-spacing: -0.055em;
  line-height: 1.08;
}

.chc-cta p {
  max-width: 600px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.chc-whatsapp-float {
  position: fixed;
  z-index: 45;
  right: 24px;
  bottom: 24px;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 4px solid #fff;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 14px 38px rgba(15, 77, 47, 0.3);
  color: #fff;
  transition: transform 180ms ease;
}

.chc-whatsapp-float:hover {
  color: #fff;
  transform: scale(1.07);
}

.chc-whatsapp-float svg {
  width: 25px;
}

.site-footer {
  padding: 82px 0 30px;
  background: #0e3038;
  color: #fff;
}

.site-footer__grid {
  display: grid;
  gap: 60px;
  grid-template-columns: 1.3fr 0.7fr 0.8fr 1fr;
}

.site-footer__logo {
  max-width: 165px;
  padding: 12px;
  border-radius: 16px;
  background: #fff;
}

.site-footer__about {
  max-width: 330px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.86rem;
}

.site-footer h3 {
  margin: 4px 0 22px;
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li,
.site-footer a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.86rem;
}

.site-footer a:hover {
  color: var(--chc-accent);
}

.site-footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.site-footer__contact svg {
  width: 17px;
  flex: 0 0 17px;
  margin-top: 4px;
  color: var(--chc-accent);
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.74rem;
}

.chc-page-hero {
  padding: 190px 0 80px;
  background: var(--chc-canvas);
}

.chc-page-content {
  min-height: 45vh;
  padding: 80px 0;
}

.chc-page-content__inner {
  max-width: 860px;
}

.chc-page-content h1,
.chc-page-content h2,
.chc-page-content h3 {
  line-height: 1.2;
}

.chc-page-content p,
.chc-page-content li {
  color: var(--chc-muted);
}

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

.chc-article-card {
  overflow: hidden;
  border: 1px solid var(--chc-line);
  border-radius: 22px;
}

.chc-article-card__body {
  padding: 28px;
}

.chc-article-card h2 {
  margin: 0;
  font-size: 1.2rem;
}

.chc-article-card p {
  color: var(--chc-muted);
  font-size: 0.88rem;
}

[data-chc-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1), transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

[data-chc-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

@media (max-width: 1080px) {
  .site-nav {
    position: fixed;
    top: 120px;
    right: 20px;
    left: 20px;
    display: none;
    padding: 24px;
    border: 1px solid var(--chc-line);
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--chc-shadow);
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav ul {
    align-items: stretch;
    flex-direction: column;
    gap: 4px;
  }

  .site-nav a {
    display: block;
    padding: 12px;
  }

  .site-menu-toggle {
    display: block;
  }

  .site-header__cta {
    margin-left: auto;
  }

  .chc-hero__grid {
    gap: 50px;
    grid-template-columns: 1fr 0.92fr;
  }

  .chc-hero__visual {
    min-height: 520px;
  }

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

  .chc-values,
  .chc-process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .chc-process__item::after {
    display: none;
  }

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

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

@media (max-width: 820px) {
  body.admin-bar .site-header {
    top: 46px;
  }

  .chc-section {
    padding: 82px 0;
  }

  .site-header__inner {
    min-height: 72px;
    padding-left: 18px;
  }

  .site-brand img {
    max-height: 58px;
  }

  .site-header__cta {
    display: none;
  }

  .site-nav {
    top: 106px;
  }

  .chc-hero {
    min-height: auto;
    padding: 160px 0 76px;
  }

  .chc-hero__grid,
  .chc-intro {
    grid-template-columns: 1fr;
  }

  .chc-hero__visual {
    min-height: 560px;
  }

  .chc-intro {
    gap: 60px;
  }

  .chc-intro__image,
  .chc-intro__image img {
    min-height: 500px;
    height: 500px;
  }

  .chc-intro__badge {
    right: 22px;
  }

  .chc-section-heading,
  .chc-cta__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .chc-testimonial-track {
    grid-template-columns: 1fr;
  }

  .chc-cta {
    padding: 50px 38px;
  }

  .chc-article-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 580px) {
  :root {
    --chc-container: min(100% - 28px, 1180px);
    --chc-radius: 22px;
  }

  .chc-section {
    padding: 68px 0;
  }

  .chc-eyebrow {
    font-size: 0.68rem;
  }

  .chc-title {
    font-size: 2.25rem;
  }

  .site-header {
    padding-top: 10px;
  }

  .site-header__inner {
    min-height: 68px;
    border-radius: 19px;
  }

  .site-brand img {
    max-height: 51px;
  }

  .chc-hero {
    padding-top: 138px;
  }

  .chc-hero h1 {
    font-size: clamp(2.75rem, 15vw, 4.2rem);
  }

  .chc-hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .chc-button {
    width: 100%;
  }

  .chc-hero__trust {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .chc-hero__visual {
    min-height: 455px;
  }

  .chc-hero__photo {
    inset: 0;
    border-radius: 100px 22px 100px 22px;
  }

  .chc-float-card {
    max-width: 210px;
    padding: 12px;
  }

  .chc-float-card--top {
    top: 22px;
    left: -4px;
  }

  .chc-float-card--bottom {
    right: -5px;
    bottom: 24px;
  }

  .chc-intro__image,
  .chc-intro__image img {
    min-height: 430px;
    height: 430px;
  }

  .chc-intro__badge {
    right: 16px;
    bottom: 16px;
    width: 150px;
    padding: 18px;
  }

  .chc-service-grid,
  .chc-values,
  .chc-team-grid,
  .chc-process,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .chc-service-card {
    min-height: 300px;
    padding: 28px;
  }

  .chc-team-card__image {
    height: 360px;
  }

  .chc-cta {
    padding: 38px 26px;
    border-radius: 28px;
  }

  .site-footer__grid {
    gap: 38px;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .chc-whatsapp-float {
    right: 16px;
    bottom: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  [data-chc-reveal] {
    opacity: 1;
    transform: none;
  }
}
