﻿:root {
  --brand: #0a5456;
  --brand-dark: #063b3d;
  --brand-soft: #e9f5f4;
  --mint: #cde9e5;
  --ink: #183133;
  --muted: #627376;
  --line: #d9e6e4;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(10, 84, 86, 0.14);
  --radius: 18px;
  --radius-small: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}


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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 70px;
  padding: 8px clamp(18px, 4vw, 72px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(140, 0, 0, 0.1);
  backdrop-filter: blur(18px);
}

.brand-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-anjos img {
  width: clamp(100px, 8vw, 130px);
  object-fit: contain;
}

.main-brand img {
  width: clamp(108px, 9vw, 142px);
  object-fit: contain;
}

.nav-links {
  display: none;
  gap: clamp(8px, 1vw, 16px);
  color: var(--muted);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(0.76rem, 0.82vw, 0.9rem);
  font-weight: 700;
  white-space: nowrap;
}

.nav-links a {
  position: relative;
  transition: color 180ms ease;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.nav-links a:hover {
  color: var(--brand);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.header-action,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: var(--radius-small);
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-action {
  color: var(--white);
  background: var(--brand);
  box-shadow: 0 12px 28px rgba(10, 84, 86, 0.18);
}

.header-action svg,
.btn svg,
.floating-whatsapp svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.35;
}

.whatsapp-mark {
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
}

.whatsapp-mark {
  font-size: 24px;
  line-height: 1;
}

.header-action:hover,
.btn:hover {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
  gap: clamp(24px, 4vw, 72px);
  align-items: center;
  min-height: min(760px, calc(100vh - 70px));
  padding: clamp(42px, 6vw, 84px) clamp(18px, 5vw, 88px);
  overflow: hidden;
  color: var(--white);
  background: var(--brand-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(118deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 9px),
    radial-gradient(circle at 77% 21%, rgba(255, 255, 255, 0.18), transparent 22%),
    radial-gradient(circle at 18% 73%, rgba(255, 255, 255, 0.1), transparent 18%),
    linear-gradient(136deg, var(--brand-dark), var(--brand) 58%, #0d6264);
  opacity: 1;
}

.hero::after {
  position: absolute;
  right: -8vw;
  bottom: -18vw;
  width: 58vw;
  min-width: 500px;
  aspect-ratio: 1.18;
  content: "";
  background: rgba(255, 255, 255, 0.09);
  border-radius: 37% 63% 48% 52%;
  filter: blur(18px);
}

.hero::before {
  position: absolute;
  top: 11%;
  left: 46%;
  width: 32vw;
  min-width: 280px;
  height: 180px;
  content: "";
  background: rgba(4, 44, 46, 0.22);
  border-radius: 47% 53% 41% 59%;
  filter: blur(42px);
  transform: rotate(-11deg);
}

.hero-content,
.hero-watch {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 14px;
  color: #ffffff;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow2 {
  margin: 0 0 14px;
  color: #063b3d;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: inherit;
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.55rem, 6vw, 5.9rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.75rem, 3.2vw, 3.15rem);
  font-weight: 800;
}

h3 {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 1.7vw, 1.32rem);
}

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

.btn.primary {
  color: var(--white);
  background: var(--brand-dark);
  border: 2px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24), inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.hero .btn.primary {
  color: var(--brand);
  background: var(--white);
  border-color: var(--white);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.24);
}

.btn.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.btn.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hero-watch {
  min-height: 520px;
}

.watch-front {
  position: absolute;
  right: 8%;
  bottom: -20px;
  width: min(86%, 540px);
  filter: drop-shadow(0 26px 38px rgba(0, 0, 0, 0.34));
  animation: floatMain 5s ease-in-out infinite;
  z-index: 2;
}

.watch-back {
  position: absolute;
  top: 34px;
  left: 0;
  width: min(58%, 340px);
  opacity: 0.5;
  filter: blur(0.2px) drop-shadow(0 22px 30px rgba(0, 0, 0, 0.22));
  transform: rotate(-11deg);
  animation: floatSoft 6s ease-in-out infinite;
  z-index: 1;
}

.national-coverage {
  position: relative;
  z-index: 2;
  width: min(100% - 36px, 560px);
  margin: -34px auto 0;
}

.national-coverage__card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 68px;
  padding: 16px clamp(20px, 4vw, 38px);
  color: var(--brand);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
}

.national-coverage__card svg {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  color: var(--brand);
  stroke-width: 2.35;
}

.section,
.intro-section,
.contact-section {
  padding: clamp(48px, 6vw, 84px) clamp(18px, 5vw, 88px);
}

.intro-section {
  background: linear-gradient(180deg, var(--white), var(--brand-soft));
}

.intro-grid,
.benefits-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
}

.intro-card,
.feature-card,
.step-card,
.benefit-column,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform 190ms ease, box-shadow 190ms ease, border-color 190ms ease;
}

.intro-card:hover,
.feature-card:hover,
.step-card:hover,
.benefit-column:hover,
.faq-list details:hover {
  transform: scale(1.018);
  border-color: rgba(10, 84, 86, 0.26);
  box-shadow: 0 22px 54px rgba(10, 84, 86, 0.1);
}

.intro-card {
  padding: clamp(26px, 4vw, 44px);
}

.intro-card.light {
  background: var(--brand);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.18);
}

.intro-card svg,
.feature-card svg {
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  color: var(--brand);
  stroke-width: 2.2;
}

.intro-card.light svg {
  color: var(--white);
}

.intro-card p,
.section-heading p,
.why-content p,
.faq-list p,
.feature-card p,
.step-card p,
.benefit-column li {
  color: var(--muted);
}

.intro-card.light p {
  color: rgba(255, 255, 255, 0.82);
}

.contact-section {
  background: var(--white);
}

.contact-heading {
  max-width: 760px;
  margin: 0 auto 30px;
  text-align: center;
}

.contact-heading .eyebrow {
  color: var(--brand);
}

.contact-heading h2 {
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3rem);
}

.contact-heading p {
  max-width: 660px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
}

.contact-card {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(34px, 5vw, 58px);
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 190ms ease, box-shadow 190ms ease;
}

.contact-card:hover {
  transform: scale(1.018);
  box-shadow: 0 22px 54px rgba(10, 84, 86, 0.1);
}

.contact-icon {
  display: inline-grid;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  place-items: center;
  color: var(--brand);
}

.contact-icon svg {
  width: 100%;
  height: 100%;
  
}

.contact-card h2 {
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.contact-card p {
  max-width: 620px;
  margin: 10px auto 26px;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
}

.contact-button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  width: 100%;
  padding: 16px 22px;
  color: var(--white);
  background: var(--brand);
  border-radius: var(--radius-small);
  box-shadow: 0 18px 42px rgba(10, 84, 86, 0.18);
  font-weight: 800;
  transition: transform 190ms ease, box-shadow 190ms ease, background 190ms ease;
}

.contact-button:hover {
  background: var(--brand-dark);
  transform: translateY(-3px);
  box-shadow: 0 22px 54px rgba(10, 84, 86, 0.16);
}

.section-heading {
  max-width: 840px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-heading .eyebrow,
.benefit-column .eyebrow,
.benefits-title .eyebrow,
.why-content .eyebrow,
.section-heading p {
  margin: 18px auto 0;
  max-width: 760px;
  font-size: 1.06rem;
}

.concern-section {
  background: var(--white);
  color: var(--brand-dark);
}

.concern-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.75fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.concern-copy {
  text-align: left;
}

.concern-copy p {
  max-width: 650px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.question-stack {
  display: grid;
  gap: 12px;
}

.question-title {
  margin: 0 0 4px;
  color: var(--brand);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 800;
  letter-spacing: 0;
}

.question-note {
  margin: 6px 0 0;
  color: var(--brand);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0;
  text-align: left;
}

.question-stack article {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 70px;
  padding: 16px 18px;
  border: 1px solid rgba(10, 84, 86, 0.14);
  border-radius: var(--radius);
  background: var(--brand-soft);
  color: var(--brand);
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 800;
  box-shadow: 0 16px 34px rgba(10, 84, 86, 0.1);
  transition: transform 190ms ease, box-shadow 190ms ease;
}

.question-stack article:hover {
  transform: scale(1.018);
  box-shadow: 0 18px 38px rgba(10, 84, 86, 0.1);
}

.question-stack svg {
  flex: 0 0 auto;
  width: 25px;
  height: 25px;
  color: var(--brand);
  stroke-width: 2.35;
}

.steps,
.feature-grid {
  display: grid;
  max-width: 1180px;
  margin: 0 auto;
  gap: 18px;
}

.steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.step-card {
  padding: 26px;
}

.step-card span {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  place-items: center;
  color: var(--white);
  background: var(--brand);
  border-radius: 50%;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 800;
}

.feature-section,
.audience-section {
  background: var(--brand-soft);
}

.feature-section .eyebrow {
  font-family: "Montserrat", Arial, sans-serif;
  letter-spacing: 0;
}

.feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card {
  min-height: 252px;
  padding: 26px;
}

.feature-card.accent {
  color: var(--white);
  background: var(--brand);
  border-color: var(--brand);
}

.feature-card.accent p {
  color: rgba(255, 255, 255, 0.8);
}

.feature-card.accent svg {
  color: var(--white);
}

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 1060px;
  margin: 0 auto;
}

.pill-grid span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 16px;
  color: var(--brand-dark);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 12px 26px rgba(10, 84, 86, 0.08);
  transition: transform 190ms ease, box-shadow 190ms ease, background 190ms ease;
}

.pill-grid span:hover {
  transform: scale(1.018);
  background: var(--brand);
  color: var(--white);
  box-shadow: 0 16px 32px rgba(10, 84, 86, 0.1);
}

.pill-grid svg {
  width: 19px;
  height: 19px;
  stroke-width: 2.35;
}

.benefits-section {
  align-items: stretch;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.benefits-title {
  grid-column: 1 / -1;
  max-width: 760px;
  margin: 0 auto 6px;
  text-align: center;
}

.benefit-column {
  padding: clamp(28px, 4vw, 46px);
}

.benefit-column.family {
  background: var(--brand-dark);
  color: var(--white);
  border-color: var(--brand-dark);
}

.benefit-column.family .eyebrow {
  color: rgba(255, 255, 255, 0.76);
}

.benefit-column.family li {
  color: rgba(255, 255, 255, 0.84);
}

.check-list {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  font-weight: 600;
}

.check-list li::before {
  position: absolute;
  top: 1px;
  left: 0;
  width: 22px;
  height: 22px;
  content: "";
  background: var(--brand);
  border-radius: 50%;
}

.check-list li::after {
  position: absolute;
  top: 5px;
  left: 8px;
  width: 5px;
  height: 10px;
  content: "";
  border-right: 2.5px solid var(--white);
  border-bottom: 2.5px solid var(--white);
  transform: rotate(45deg);
}

.family .check-list li::before {
  background: var(--white);
}

.family .check-list li::after {
  border-color: var(--brand-dark);
}

.why-section {
  color: var(--white);
  background:
    url("../../assets/monitoramento/relogio-frente.png") right 12% center / min(46vw, 560px) no-repeat,
    linear-gradient(90deg, var(--brand-dark) 0%, var(--brand) 100%);
}

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

.why-content .eyebrow {
  color: rgba(255, 255, 255, 0.76);
}

.why-content p {
  max-width: 700px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

.monitoring-cta {
  padding: clamp(28px, 5vw, 64px) clamp(18px, 5vw, 88px);
  background: var(--brand-soft);
}

.monitoring-cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(28px, 5vw, 70px);
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 48px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.monitoring-cta-copy {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  max-width: 790px;
}

.monitoring-cta-icon {
  display: grid;
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--brand);
  background: var(--brand-soft);
  border-radius: 18px;
}

.monitoring-cta-icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 2.2;
}

.monitoring-cta .eyebrow {
  margin-bottom: 9px;
  color: var(--brand);
}

.monitoring-cta h2 {
  margin-bottom: 12px;
  color: var(--brand-dark);
  font-size: clamp(1.55rem, 2.8vw, 2.35rem);
}

.monitoring-cta-copy p:last-child {
  max-width: 700px;
  margin: 0;
  color: var(--muted);
}

.monitoring-cta-button {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 62px;
  padding: 17px 28px;
  color: var(--white);
  background: #25d366;
  border: 2px solid rgba(255, 255, 255, 0.42);
  border-radius: var(--radius-small);
  box-shadow: 0 16px 34px rgba(37, 211, 102, 0.28);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.monitoring-cta-button:hover {
  background: #1fad59;
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(37, 211, 102, 0.34);
}

.monitoring-cta-button:active {
  transform: translateY(0);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-list details {
  padding: 0;
  overflow: hidden;
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  color: var(--brand-dark);
  cursor: pointer;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0;
}

.faq-list summary::after {
  content: "+";
  color: var(--brand);
  font-size: 1.6rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  padding: 0 22px 22px;
  margin: 0;
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 25;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--white);
  background: #1fad59;
  border-radius: 50%;
  box-shadow: 0 18px 34px rgba(31, 173, 89, 0.34);
  transition: transform 180ms ease;
}

.floating-whatsapp:hover {
  transform: scale(1.035);
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 14px, 0);
  transition:
    opacity 850ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 850ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@keyframes floatMain {
  0%,
  100% {
    transform: translateY(0) rotate(1deg);
  }
  50% {
    transform: translateY(-18px) rotate(-1deg);
  }
}

@keyframes floatSoft {
  0%,
  100% {
    transform: translateY(0) rotate(-10deg);
  }
  50% {
    transform: translateY(16px) rotate(-7deg);
  }
}

@media (max-width: 1060px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-watch {
    min-height: 470px;
  }

  .watch-front {
    right: 50%;
    width: min(80vw, 460px);
    transform: translateX(50%);
  }

  .watch-back {
    left: 10%;
  }

  .steps,
  .feature-grid,
  .concern-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .concern-layout {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1120px) {
  .nav-links {
    display: flex;
  }
}

@media (max-width: 1119px) {
  .site-header {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr) auto;
    align-items: center;
    row-gap: 8px;
  }

  .header-action {
    justify-self: end;
    grid-column: 3;
    grid-row: 1;
  }

  .nav-toggle {
    display: grid;
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
  }

  .nav-links {
    grid-column: 1 / -1;
    display: none;
    justify-content: stretch;
    gap: 8px;
    width: 100%;
    padding: 8px 0 2px;
    overflow: visible;
    color: var(--brand-dark);
    font-size: 0.8rem;
    white-space: normal;
  }

  .site-header.is-menu-open .nav-links {
    display: grid;
  }

  .nav-links a {
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 10px 12px;
    background: var(--brand-soft);
    border: 1px solid rgba(10, 84, 86, 0.1);
    border-radius: var(--radius-soft);
  }

  .nav-links a::after {
    display: none;
  }
}

  @media (max-width: 720px) {
  .site-header {
    min-height: 62px;
    padding: 7px 16px;
  }

  .brand-anjos img {
    width: 90px;
  }

  .header-action {
    width: auto;
    min-width: 46px;
    padding: 0 12px;
    font-size: 0.78rem;
  }

  .hero {
    padding: 46px 18px 36px;
  }

  .national-coverage {
    margin-top: -26px;
  }

  .national-coverage__card {
    justify-content: center;
    min-height: 62px;
    padding-inline: 18px;
    text-align: center;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
  }

  .hero-watch {
    min-height: 380px;
    margin-top: 20px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .watch-front {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(75vw, 280px);
    margin: 0;
    transform: rotate(5deg);
  }

  .watch-back {
    position: absolute;
    top: 40px;
    right: 10%;
    width: min(65vw, 240px);
    display: block;
    transform: rotate(-15deg);
    opacity: 0.4;
  }

  .intro-grid,
  .benefits-section,
  .steps,
  .feature-grid,
  .concern-layout {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: auto;
  }

  .pill-grid {
    justify-content: flex-start;
  }

  .pill-grid span {
    width: 100%;
    border-radius: var(--radius);
  }

  .why-section {
    background:
      url("../../assets/monitoramento/relogio-frente.png") center bottom / 380px no-repeat,
      linear-gradient(180deg, var(--brand-dark) 0%, var(--brand) 100%);
    padding-bottom: 320px;
  }

  .monitoring-cta-card,
  .monitoring-cta-copy {
    align-items: stretch;
    flex-direction: column;
  }

  .monitoring-cta-copy {
    gap: 18px;
  }

  .monitoring-cta-button {
    width: 100%;
  }

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

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