.home-hero {
  position: relative;
  padding: clamp(58px, 7vw, 96px) 0 132px;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 20%, rgba(234, 185, 170, 0.2), transparent 24%),
    radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.9), transparent 24%),
    linear-gradient(180deg, #e2f1ef 0%, #eff8f6 68%, #ffffff 100%);
}

.home-hero::before {
  position: absolute;
  top: -120px;
  left: 45%;
  width: 420px;
  height: 420px;
  border: 70px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  content: "";
}

.home-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  gap: clamp(44px, 7vw, 88px);
  align-items: center;
}

.home-hero__content {
  max-width: 610px;
}

.home-hero__content h1 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 5.4vw, 5.4rem);
}

.home-hero__content h1 span {
  display: block;
  color: var(--cvets-primary-dark);
}

.home-hero__content > p {
  max-width: 570px;
  font-size: clamp(1.04rem, 1.5vw, 1.18rem);
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.home-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  margin-top: 28px;
  color: var(--cvets-text-soft);
  font-size: 0.82rem;
  font-weight: 800;
}

.home-hero__trust span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.home-hero__trust svg {
  width: 18px;
  height: 18px;
  padding: 3px;
  border-radius: 50%;
  fill: none;
  stroke: var(--cvets-primary-deep);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  background: rgba(255, 255, 255, 0.68);
}

.home-hero__media {
  position: relative;
}

.home-hero__video-shell {
  position: relative;
  z-index: 2;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 10px solid rgba(255, 255, 255, 0.82);
  border-radius: 44px 44px 44px 110px;
  background: var(--cvets-primary);
  box-shadow: var(--cvets-shadow-strong);
}

.home-hero__video,
.home-hero__poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero__video {
  display: block;
}

.home-hero__poster {
  display: none;
}

.home-hero__video-control {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 999px;
  color: var(--cvets-text);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 8px 22px rgba(41, 66, 63, 0.12);
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 900;
  backdrop-filter: blur(8px);
}

.home-hero__video-control svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-hero__video-control .icon-play {
  display: none;
}

.home-hero__video-control.is-paused .icon-pause {
  display: none;
}

.home-hero__video-control.is-paused .icon-play {
  display: block;
}

.home-hero__media-label {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: grid;
  gap: 2px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 18px;
  color: #fff;
  background: rgba(53, 91, 88, 0.78);
  backdrop-filter: blur(10px);
}

.home-hero__media-label span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-hero__media-label strong {
  font-size: 0.92rem;
}

.home-hero__shape {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
}

.home-hero__shape--coral {
  right: -40px;
  bottom: -34px;
  width: 160px;
  height: 160px;
  background: var(--cvets-coral);
}

.home-hero__shape--yellow {
  top: -36px;
  left: -38px;
  width: 110px;
  height: 110px;
  border: 24px solid var(--cvets-yellow);
  background: transparent;
}

.home-quick-access {
  position: relative;
  z-index: 4;
  margin-top: -72px;
}

.home-quick-access__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.home-quick-card {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 13px;
  align-items: center;
  min-height: 112px;
  padding: 18px;
  border: 1px solid rgba(82, 121, 118, 0.1);
  border-radius: 20px;
  box-shadow: var(--cvets-shadow);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.home-quick-card:hover {
  box-shadow: var(--cvets-shadow-strong);
  transform: translateY(-5px);
}

.home-quick-card--mint {
  background: #e3f3f1;
}

.home-quick-card--yellow {
  background: #fff0bd;
}

.home-quick-card--coral {
  background: #f5d8cf;
}

.home-quick-card--lilac {
  background: #ebe7f4;
}

.home-quick-card--cream {
  background: #fff9ed;
}

.home-quick-card__icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 15px;
  color: var(--cvets-primary-deep);
  background: rgba(255, 255, 255, 0.62);
}

.home-quick-card__icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-quick-card > span:last-child {
  display: grid;
  gap: 3px;
}

.home-quick-card strong {
  color: var(--cvets-text);
  font-size: 0.94rem;
}

.home-quick-card small {
  color: var(--cvets-text-soft);
  font-size: 0.72rem;
  line-height: 1.35;
}

.home-about {
  background: #fff;
}

.home-about__grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(58px, 8vw, 110px);
  align-items: center;
}

.home-about__shape {
  position: relative;
  display: grid;
  min-height: 520px;
  place-items: center;
  overflow: hidden;
  border-radius: 50px 50px 150px 50px;
  background:
    radial-gradient(circle at 70% 28%, rgba(255, 255, 255, 0.7), transparent 22%),
    linear-gradient(145deg, var(--cvets-primary-soft), #f8f4e9);
}

.home-about__large-mark {
  color: rgba(53, 91, 88, 0.1);
  font-size: clamp(4rem, 10vw, 7.4rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  transform: rotate(-8deg);
}

.home-about__stat {
  position: absolute;
  display: grid;
  gap: 2px;
  min-width: 170px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--cvets-shadow-soft);
  backdrop-filter: blur(8px);
}

.home-about__stat strong {
  color: var(--cvets-primary-deep);
  font-size: 1rem;
}

.home-about__stat span {
  color: var(--cvets-text-soft);
  font-size: 0.74rem;
}

.home-about__stat--one {
  top: 34px;
  right: 28px;
}

.home-about__stat--two {
  bottom: 34px;
  left: 28px;
}

.home-about__paw {
  position: absolute;
  bottom: 40px;
  right: 42px;
  color: var(--cvets-primary-dark);
}

.home-about__paw svg {
  width: 92px;
  height: 92px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-about__content > p {
  max-width: 680px;
  font-size: 1.04rem;
}

.home-about__points {
  display: grid;
  gap: 16px;
  margin: 30px 0;
}

.home-about__points > div {
  display: grid;
  grid-template-columns: 44px 150px minmax(0, 1fr);
  gap: 15px;
  align-items: start;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--cvets-border);
}

.home-about__points span {
  color: var(--cvets-coral);
  font-size: 0.76rem;
  font-weight: 900;
}

.home-about__points strong {
  color: var(--cvets-text);
}

.home-about__points p {
  margin: 0;
  font-size: 0.9rem;
}

.home-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cvets-primary-deep);
  font-weight: 900;
  text-decoration: none;
}

.home-text-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 160ms ease;
}

.home-text-link:hover svg {
  transform: translateX(4px);
}

.home-services {
  background:
    radial-gradient(circle at 8% 10%, rgba(234, 185, 170, 0.14), transparent 22%),
    var(--cvets-background);
}

.home-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 34px;
  margin-bottom: 36px;
}

.home-section-heading > div {
  max-width: 760px;
}

.home-section-heading h2 {
  margin-bottom: 0;
}

.home-section-heading--center {
  justify-content: center;
  text-align: center;
}

.home-section-heading--center > div {
  margin-inline: auto;
}

.home-section-heading--center p {
  margin-bottom: 0;
}

.home-services__grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  grid-auto-rows: minmax(250px, auto);
  gap: 18px;
}

.home-service-card {
  position: relative;
  display: flex;
  min-height: 270px;
  flex-direction: column;
  padding: 27px;
  overflow: hidden;
  border: 1px solid var(--cvets-border);
  border-radius: var(--cvets-radius);
  background: #fff;
  box-shadow: var(--cvets-shadow-soft);
}

.home-service-card--large {
  grid-row: span 2;
  min-height: 558px;
  background:
    radial-gradient(circle at 80% 18%, rgba(255, 255, 255, 0.75), transparent 25%),
    linear-gradient(145deg, var(--cvets-primary-soft), #fff);
}

.home-service-card--accent {
  grid-column: span 2;
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.65), transparent 20%),
    var(--cvets-lilac);
}

.home-service-card__number {
  position: absolute;
  top: 22px;
  right: 24px;
  color: rgba(53, 91, 88, 0.2);
  font-size: 2rem;
  font-weight: 900;
}

.home-service-card__icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 18px;
  color: var(--cvets-primary-deep);
  background: var(--cvets-primary-light);
}

.home-service-card__icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-service-card h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.home-service-card p {
  max-width: 420px;
}

.home-service-card > a {
  margin-top: auto;
  color: var(--cvets-primary-deep);
  font-size: 0.88rem;
  font-weight: 900;
}

.home-animals {
  background: #fff;
}

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

.home-animal-card {
  min-height: 220px;
  padding: 22px;
  border: 1px solid var(--cvets-border);
  border-radius: var(--cvets-radius);
  background: var(--cvets-background);
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.home-animal-card:hover {
  box-shadow: var(--cvets-shadow);
  transform: translateY(-4px);
}

.home-animal-card__media {
  width: 88px;
  height: 88px;
  margin: 0 auto 17px;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: 0 9px 22px rgba(41, 66, 63, 0.12);
}

.home-animal-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-animal-card__icon {
  display: grid;
  width: 74px;
  height: 74px;
  margin: 0 auto 18px;
  place-items: center;
  border-radius: 24px;
  color: var(--cvets-primary-deep);
  background: var(--cvets-primary-light);
}

.home-animal-card__icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-animal-card h3 {
  margin-bottom: 7px;
  font-size: 1.08rem;
}

.home-animal-card p {
  margin: 0;
  font-size: 0.84rem;
}

.home-centered-action {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.home-structure {
  background: var(--cvets-primary-deep);
}

.home-structure h2,
.home-structure h3 {
  color: #fff;
}

.home-structure p {
  color: rgba(255, 255, 255, 0.7);
}

.home-structure .eyebrow {
  color: var(--cvets-primary);
}

.home-structure__grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(48px, 7vw, 90px);
  align-items: center;
}

.home-structure__list {
  display: grid;
  gap: 12px;
  margin: 27px 0 32px;
  padding: 0;
  list-style: none;
}

.home-structure__list li {
  position: relative;
  padding-left: 27px;
  color: rgba(255, 255, 255, 0.82);
}

.home-structure__list li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: var(--cvets-coral);
  content: "";
}

.home-structure__gallery {
  position: relative;
  min-height: 540px;
}

.home-structure__photo {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 7px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background: var(--cvets-primary-dark);
  box-shadow: 0 24px 54px rgba(17, 35, 33, 0.32);
}

.home-structure__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-structure__photo figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 9px 11px;
  border-radius: 12px;
  color: #fff;
  background: rgba(41, 66, 63, 0.72);
  font-size: 0.76rem;
  font-weight: 800;
  backdrop-filter: blur(6px);
}

.home-structure__photo--1 {
  top: 0;
  right: 0;
  width: 74%;
  height: 68%;
}

.home-structure__photo--2 {
  bottom: 0;
  left: 0;
  width: 50%;
  height: 48%;
}

.home-structure__photo--3 {
  right: 5%;
  bottom: 2%;
  width: 38%;
  height: 38%;
}

.home-team {
  background: #fff;
}

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

.home-team-card {
  overflow: hidden;
  border: 1px solid var(--cvets-border);
  border-radius: var(--cvets-radius);
  background: var(--cvets-background);
}

.home-team-card__photo {
  display: grid;
  height: 270px;
  place-items: center;
  overflow: hidden;
  color: var(--cvets-primary-deep);
  background: var(--cvets-primary-soft);
  font-size: 3rem;
  font-weight: 900;
}

.home-team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.home-team-card__content {
  padding: 18px;
}

.home-team-card h3 {
  margin-bottom: 5px;
  font-size: 1.05rem;
}

.home-team-card p {
  margin: 0;
  font-size: 0.84rem;
}

.home-content {
  background:
    radial-gradient(circle at 92% 10%, rgba(226, 221, 239, 0.28), transparent 22%),
    var(--cvets-background);
}

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

.home-content-card {
  overflow: hidden;
  border: 1px solid var(--cvets-border);
  border-radius: var(--cvets-radius);
  background: #fff;
  box-shadow: var(--cvets-shadow-soft);
}

.home-content-card__media {
  display: grid;
  height: 220px;
  place-items: center;
  overflow: hidden;
  color: var(--cvets-primary-deep);
  background: var(--cvets-primary-soft);
  font-size: 2rem;
  font-weight: 900;
  text-decoration: none;
}

.home-content-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 180ms ease;
}

.home-content-card:hover .home-content-card__media img {
  transform: scale(1.03);
}

.home-content-card__body {
  padding: 21px;
}

.home-content-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--cvets-primary-dark);
  font-size: 0.72rem;
  font-weight: 800;
}

.home-content-card h3 {
  margin: 12px 0 8px;
  font-size: 1.18rem;
}

.home-content-card h3 a {
  color: inherit;
  text-decoration: none;
}

.home-content-card p {
  margin-bottom: 0;
  font-size: 0.86rem;
}

.home-location {
  background: #fff;
}

.home-location__card {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  overflow: hidden;
  border-radius: 34px;
  background: var(--cvets-primary-light);
  box-shadow: var(--cvets-shadow);
}

.home-location__map {
  position: relative;
  display: flex;
  min-height: 430px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
  color: var(--cvets-primary-deep);
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.75), transparent 18%),
    linear-gradient(145deg, var(--cvets-primary), var(--cvets-primary-soft));
  text-align: center;
}

.home-location__map::before,
.home-location__map::after {
  position: absolute;
  width: 140%;
  height: 1px;
  background: rgba(53, 91, 88, 0.12);
  content: "";
  transform: rotate(-25deg);
}

.home-location__map::before {
  top: 32%;
}

.home-location__map::after {
  bottom: 28%;
  transform: rotate(23deg);
}

.home-location__pin {
  position: relative;
  z-index: 1;
  display: grid;
  width: 82px;
  height: 82px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 28px 28px 28px 8px;
  color: #fff;
  background: var(--cvets-primary-deep);
  box-shadow: 0 18px 34px rgba(53, 91, 88, 0.22);
  transform: rotate(-8deg);
}

.home-location__pin svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform: rotate(8deg);
}

.home-location__map > span,
.home-location__map > strong {
  position: relative;
  z-index: 1;
}

.home-location__map > span {
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-location__map > strong {
  font-size: 1.2rem;
}

.home-location__content {
  padding: clamp(38px, 6vw, 70px);
}

.home-location__content > p {
  max-width: 580px;
}

.home-location__hours {
  display: grid;
  gap: 4px;
  margin-top: 24px;
  padding: 17px 18px;
  border: 1px solid rgba(82, 121, 118, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.62);
}

.home-location__hours strong {
  font-size: 0.84rem;
}

.home-location__hours span {
  color: var(--cvets-text-soft);
  font-size: 0.85rem;
}

.home-location__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 27px;
}

@media (max-width: 1120px) {
  .home-hero__grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
    gap: 45px;
  }

  .home-quick-access__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-quick-card:nth-child(4),
  .home-quick-card:nth-child(5) {
    grid-column: span 1;
  }

  .home-team__grid,
  .home-animals__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .home-hero {
    padding-bottom: 118px;
  }

  .home-hero__grid,
  .home-about__grid,
  .home-structure__grid,
  .home-location__card {
    grid-template-columns: 1fr;
  }

  .home-hero__content {
    max-width: 760px;
  }

  .home-hero__media {
    max-width: 760px;
  }

  .home-quick-access__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .home-service-card--large {
    grid-row: auto;
    min-height: 320px;
  }

  .home-service-card--accent {
    grid-column: span 2;
  }

  .home-structure__gallery {
    min-height: 500px;
  }

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

  .home-location__map {
    min-height: 320px;
  }
}

@media (max-width: 680px) {
  .home-hero {
    padding-top: 42px;
    padding-bottom: 105px;
  }

  .home-hero__content h1 {
    font-size: clamp(2.55rem, 13vw, 4rem);
  }

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

  .home-hero__actions .button {
    width: 100%;
  }

  .home-hero__video-shell {
    border-width: 6px;
    border-radius: 28px 28px 28px 66px;
  }

  .home-hero__video-control {
    top: 11px;
    right: 11px;
  }

  .home-hero__video-control span {
    display: none;
  }

  .home-hero__media-label {
    right: 11px;
    bottom: 11px;
    left: 11px;
    padding: 11px 13px;
  }

  .home-hero__media-label strong {
    font-size: 0.78rem;
  }

  .home-quick-access {
    margin-top: -58px;
  }

  .home-quick-access__grid,
  .home-services__grid,
  .home-animals__grid,
  .home-team__grid,
  .home-content__grid {
    grid-template-columns: 1fr;
  }

  .home-quick-card {
    min-height: 96px;
  }

  .home-about__shape {
    min-height: 390px;
    border-radius: 32px 32px 90px 32px;
  }

  .home-about__stat {
    min-width: 145px;
  }

  .home-about__points > div {
    grid-template-columns: 36px 1fr;
  }

  .home-about__points p {
    grid-column: 2;
  }

  .home-section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
  }

  .home-service-card--accent {
    grid-column: auto;
  }

  .home-structure__gallery {
    min-height: auto;
  }

  .home-structure__photo {
    position: relative;
    width: 100%;
    height: 260px;
    margin-bottom: 14px;
  }

  .home-structure__photo--1,
  .home-structure__photo--2,
  .home-structure__photo--3 {
    inset: auto;
    width: 100%;
    height: 260px;
  }

  .home-location__content {
    padding: 32px 22px;
  }

  .home-location__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .home-location__actions .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-hero__video {
    display: none;
  }

  .home-hero__poster {
    display: block;
  }

  .home-hero__video-control {
    display: none;
  }
}


/* V12.1 — vídeo ocupando todo o hero, com conteúdo sobreposto */

.home-hero--video {
  position: relative;
  display: flex;
  min-height: clamp(650px, calc(100svh - 108px), 900px);
  align-items: center;
  padding: clamp(76px, 9vw, 132px) 0 164px;
  overflow: hidden;
  isolation: isolate;
  background: #233c39;
}

.home-hero--video::before {
  display: none;
}

.home-hero__background {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background: #233c39;
}

.home-hero--video .home-hero__video,
.home-hero--video .home-hero__poster {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.home-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(20, 39, 36, 0.90) 0%,
      rgba(25, 49, 46, 0.80) 34%,
      rgba(29, 53, 50, 0.44) 61%,
      rgba(22, 39, 37, 0.22) 100%
    ),
    linear-gradient(
      180deg,
      rgba(13, 27, 25, 0.28) 0%,
      rgba(13, 27, 25, 0.04) 48%,
      rgba(13, 27, 25, 0.48) 100%
    );
}

.home-hero__content-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 500px;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.home-hero--video .home-hero__content {
  max-width: 720px;
  padding: 34px 0;
}

.home-hero--video .eyebrow {
  color: #d9f0ed;
}

.home-hero--video .eyebrow::before {
  background: var(--cvets-coral);
}

.home-hero--video .home-hero__content h1 {
  max-width: 760px;
  margin-bottom: 24px;
  color: #fff;
  font-size: clamp(3rem, 6.2vw, 6.15rem);
  text-shadow: 0 5px 28px rgba(11, 24, 22, 0.28);
}

.home-hero--video .home-hero__content h1 span {
  color: #d9f0ed;
}

.home-hero--video .home-hero__content > p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.04rem, 1.55vw, 1.22rem);
  text-shadow: 0 3px 18px rgba(11, 24, 22, 0.24);
}

.button--hero-light {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.13);
  box-shadow: none;
  backdrop-filter: blur(10px);
}

.button--hero-light:hover {
  color: var(--cvets-primary-deep);
  border-color: #fff;
  background: #fff;
}

.home-hero--video .home-hero__trust {
  color: rgba(255, 255, 255, 0.76);
}

.home-hero--video .home-hero__trust svg {
  stroke: #fff;
  background: rgba(255, 255, 255, 0.13);
}

.home-hero__species {
  position: absolute;
  right: 0;
  bottom: 26px;
  display: grid;
  min-width: 290px;
  gap: 2px;
  padding: 15px 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 18px;
  color: #fff;
  background: rgba(27, 52, 48, 0.52);
  box-shadow: 0 14px 34px rgba(15, 31, 29, 0.18);
  backdrop-filter: blur(12px);
}

.home-hero__species span {
  color: rgba(255, 255, 255, 0.70);
  font-size: 0.70rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.home-hero__species strong {
  font-size: 0.91rem;
}

.home-hero--video .home-hero__video-control {
  position: absolute;
  right: max(20px, calc((100vw - var(--cvets-container)) / 2));
  bottom: 28px;
  z-index: 5;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(25, 48, 45, 0.50);
  box-shadow: 0 10px 28px rgba(11, 24, 22, 0.22);
  backdrop-filter: blur(12px);
}

.home-hero--video .home-hero__video-control:hover {
  background: rgba(25, 48, 45, 0.78);
}

.home-hero--video + .home-quick-access {
  margin-top: -74px;
}

@media (max-width: 920px) {
  .home-hero--video {
    min-height: 760px;
    padding-top: 82px;
    padding-bottom: 148px;
  }

  .home-hero__content-wrap {
    min-height: 560px;
    align-items: center;
  }

  .home-hero__overlay {
    background:
      linear-gradient(
        90deg,
        rgba(20, 39, 36, 0.88) 0%,
        rgba(25, 49, 46, 0.72) 56%,
        rgba(22, 39, 37, 0.30) 100%
      ),
      linear-gradient(
        180deg,
        rgba(13, 27, 25, 0.22) 0%,
        rgba(13, 27, 25, 0.12) 50%,
        rgba(13, 27, 25, 0.58) 100%
      );
  }

  .home-hero__species {
    right: auto;
    bottom: 22px;
    left: 0;
  }

  .home-hero--video .home-hero__video-control {
    right: 20px;
    bottom: 24px;
  }
}

@media (max-width: 680px) {
  .home-hero--video {
    min-height: 690px;
    padding: 58px 0 128px;
  }

  .home-hero--video .home-hero__video,
  .home-hero--video .home-hero__poster {
    object-position: 58% center;
  }

  .home-hero__overlay {
    background:
      linear-gradient(
        180deg,
        rgba(18, 35, 33, 0.62) 0%,
        rgba(18, 35, 33, 0.54) 42%,
        rgba(18, 35, 33, 0.88) 100%
      );
  }

  .home-hero__content-wrap {
    min-height: 500px;
    align-items: flex-end;
  }

  .home-hero--video .home-hero__content {
    max-width: none;
    padding: 0 0 62px;
  }

  .home-hero--video .home-hero__content h1 {
    font-size: clamp(2.65rem, 12.5vw, 4rem);
  }

  .home-hero--video .home-hero__content > p {
    font-size: 0.98rem;
  }

  .home-hero__species {
    right: 68px;
    bottom: 15px;
    left: 0;
    min-width: 0;
    padding: 11px 13px;
  }

  .home-hero__species strong {
    font-size: 0.74rem;
  }

  .home-hero--video .home-hero__video-control {
    right: 14px;
    bottom: 16px;
    width: 44px;
    height: 44px;
    min-height: 44px;
    padding: 0;
    justify-content: center;
  }

  .home-hero--video .home-hero__video-control span {
    display: none;
  }

  .home-hero--video + .home-quick-access {
    margin-top: -56px;
  }
}


/* V12.2 — hero compacto, autoplay contínuo e conteúdo visível na abertura */

.home-hero--video {
  min-height: clamp(610px, calc(100svh - 118px), 760px);
  padding: clamp(42px, 5.2vw, 72px) 0 116px;
}

.home-hero__content-wrap {
  min-height: 430px;
  align-items: flex-start;
  padding-top: clamp(12px, 2.2vw, 30px);
}

.home-hero--video .home-hero__content {
  max-width: 690px;
  padding: 0;
}

.home-hero--video .home-hero__content h1 {
  max-width: 680px;
  margin-bottom: 17px;
  font-size: clamp(2.8rem, 5.25vw, 5rem);
  line-height: 0.96;
}

.home-hero--video .home-hero__content > p {
  max-width: 610px;
  margin-bottom: 0;
  font-size: clamp(0.98rem, 1.25vw, 1.1rem);
  line-height: 1.55;
}

.home-hero--video .home-hero__actions {
  margin-top: 22px;
}

.home-hero--video .home-hero__trust {
  margin-top: 20px;
}

.home-hero--video .home-hero__video {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.home-hero--video .home-hero__poster,
.home-hero--video .home-hero__video-control {
  display: none !important;
}

.home-hero__species {
  right: 0;
  bottom: 4px;
}

.home-hero--video + .home-quick-access {
  margin-top: -66px;
}

@media (min-width: 1400px) and (max-height: 900px) {
  .home-hero--video {
    min-height: calc(100svh - 118px);
    padding-top: 38px;
    padding-bottom: 108px;
  }

  .home-hero__content-wrap {
    min-height: 405px;
    padding-top: 8px;
  }

  .home-hero--video .home-hero__content h1 {
    max-width: 640px;
    font-size: clamp(3rem, 4.8vw, 4.55rem);
  }

  .home-hero--video .home-hero__content > p {
    max-width: 580px;
  }

  .home-hero--video .home-hero__actions {
    margin-top: 18px;
  }

  .home-hero--video .home-hero__trust {
    margin-top: 15px;
  }
}

@media (max-width: 920px) {
  .home-hero--video {
    min-height: 680px;
    padding: 54px 0 116px;
  }

  .home-hero__content-wrap {
    min-height: 510px;
    padding-top: 0;
  }

  .home-hero--video .home-hero__content h1 {
    font-size: clamp(2.75rem, 8.5vw, 4.45rem);
  }

  .home-hero__species {
    bottom: 2px;
  }
}

@media (max-width: 680px) {
  .home-hero--video {
    min-height: 620px;
    padding: 42px 0 94px;
  }

  .home-hero__content-wrap {
    min-height: 470px;
    align-items: flex-start;
  }

  .home-hero--video .home-hero__content {
    padding: 0 0 54px;
  }

  .home-hero--video .home-hero__content h1 {
    margin-bottom: 15px;
    font-size: clamp(2.35rem, 11.4vw, 3.65rem);
  }

  .home-hero--video .home-hero__content > p {
    font-size: 0.94rem;
    line-height: 1.48;
  }

  .home-hero--video .home-hero__actions {
    margin-top: 17px;
  }

  .home-hero--video .home-hero__trust {
    gap: 8px 14px;
    margin-top: 15px;
    font-size: 0.74rem;
  }

  .home-hero__species {
    right: 0;
    bottom: 0;
    left: 0;
  }

  .home-hero--video + .home-quick-access {
    margin-top: -48px;
  }
}

/* O vídeo continua animado mesmo quando o sistema pede redução de movimento. */
@media (prefers-reduced-motion: reduce) {
  .home-hero--video .home-hero__video {
    display: block !important;
  }
}


/* V12.3 — vídeo com composição livre à esquerda */

.home-hero__overlay {
  background:
    linear-gradient(
      90deg,
      rgba(20, 39, 36, 0.76) 0%,
      rgba(22, 43, 40, 0.58) 28%,
      rgba(24, 46, 43, 0.26) 50%,
      rgba(20, 39, 36, 0.07) 72%,
      rgba(20, 39, 36, 0.02) 100%
    ),
    linear-gradient(
      180deg,
      rgba(13, 27, 25, 0.11) 0%,
      rgba(13, 27, 25, 0.02) 52%,
      rgba(13, 27, 25, 0.34) 100%
    );
}

.home-hero--video .home-hero__video {
  object-position: center center;
}

.home-hero--video .home-hero__content {
  max-width: 625px;
}

.home-hero--video .home-hero__content h1 {
  max-width: 625px;
  font-size: clamp(2.75rem, 4.9vw, 4.8rem);
}

.home-hero--video .home-hero__content > p {
  max-width: 575px;
}

.home-hero__species {
  right: 18px;
  bottom: 6px;
  background: rgba(27, 52, 48, 0.40);
}

@media (max-width: 920px) {
  .home-hero__overlay {
    background:
      linear-gradient(
        90deg,
        rgba(20, 39, 36, 0.78) 0%,
        rgba(23, 45, 42, 0.56) 48%,
        rgba(22, 39, 37, 0.14) 100%
      ),
      linear-gradient(
        180deg,
        rgba(13, 27, 25, 0.10) 0%,
        rgba(13, 27, 25, 0.04) 52%,
        rgba(13, 27, 25, 0.42) 100%
      );
  }

  .home-hero--video .home-hero__content {
    max-width: 590px;
  }
}

@media (max-width: 680px) {
  .home-hero--video .home-hero__video {
    object-position: 66% center;
  }

  .home-hero__overlay {
    background:
      linear-gradient(
        180deg,
        rgba(18, 35, 33, 0.40) 0%,
        rgba(18, 35, 33, 0.42) 42%,
        rgba(18, 35, 33, 0.82) 100%
      );
  }

  .home-hero__species {
    right: 0;
  }
}
