/* ==========================================================
   ProteLax — Estilos (layout fiel ao mockup + responsivo)
   ========================================================== */

:root {
  --green: #4CAF50;
  --green-dark: #2E7D32;
  --green-deep: #1B5E20;
  --black: #1A1A1A;
  --charcoal: #222222;
  --dark-gray: #333333;
  --muted: #6B6B6B;
  --light-gray: #F3F3F3;
  --border: #E6E6E6;
  --white: #FFFFFF;
  --font: 'Poppins', sans-serif;
  --transition: 0.3s ease;
  --focus: 0 0 0 3px rgba(76, 175, 80, 0.45);
  --container: 1140px;
  --section-y: clamp(3.25rem, 5.5vw, 5.625rem);
  --gutter: clamp(1rem, 3.5vw, 1.5rem);
  --nav-offset: 88px;
  --touch: 44px;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
  --safe-left: env(safe-area-inset-left, 0px);
  --safe-top: env(safe-area-inset-top, 0px);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-offset) + var(--safe-top));
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--dark-gray);
  background: var(--white);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  padding-left: var(--safe-left);
  padding-right: var(--safe-right);
  min-width: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

picture,
video,
iframe,
svg {
  max-width: 100%;
}

a { color: inherit; }

button,
a,
input,
select,
textarea {
  touch-action: manipulation;
}

:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: max(16px, var(--safe-left));
  z-index: 10000;
  background: var(--green-deep);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 0 0 8px 8px;
  font-weight: 600;
  text-decoration: none;
}

.skip-link:focus { top: var(--safe-top); }

/* Bootstrap container: padding fluido (sem sobrescrever max-width por breakpoint) */
.container,
.container-fluid,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl {
  width: 100%;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.container-protelax {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

main,
section,
footer,
header {
  max-width: 100%;
  min-width: 0;
}

.row {
  --bs-gutter-x: clamp(0.85rem, 2vw, 1.5rem);
  --bs-gutter-y: clamp(0.85rem, 2vw, 1.5rem);
}

.row > * {
  min-width: 0;
}

.section-title {
  font-weight: 700;
  font-size: clamp(1.2rem, 2.5vw + 0.4rem, 1.75rem);
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0;
  line-height: 1.25;
  overflow-wrap: break-word;
}

.section-title .accent { color: var(--green); }

.section-title-line {
  width: 56px;
  height: 4px;
  background: var(--green);
  border-radius: 2px;
  margin: 0.65rem auto clamp(1.5rem, 3vw, 2.25rem);
}

/* ==========================================================
   NAVBAR
   ========================================================== */
.navbar {
  background: rgba(26, 26, 26, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.85rem 0;
  padding-top: calc(0.85rem + var(--safe-top));
  transition: padding var(--transition);
}

.navbar.scrolled {
  padding: 0.45rem 0;
  padding-top: calc(0.45rem + var(--safe-top));
  background: rgba(26, 26, 26, 0.98);
}

.navbar > .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.35rem 0.75rem;
  max-width: min(100%, var(--container));
}

.brand {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1.5vw, 12px);
  text-decoration: none;
  color: var(--white);
  min-width: 0;
  max-width: calc(100% - 3.5rem);
}

.brand-logo {
  width: clamp(34px, 7vw, 42px);
  height: auto;
  aspect-ratio: 457 / 546;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  min-width: 0;
}

.brand-name {
  font-family: var(--font);
  font-weight: 800;
  font-size: clamp(1.25rem, 3.2vw, 1.55rem);
  letter-spacing: -0.03em;
  color: var(--white);
}

.brand-name span { color: #82BC00; }

.nav-link {
  color: rgba(255, 255, 255, 0.88) !important;
  font-weight: 600;
  font-size: 1.08rem;
  margin: 0 0.55rem;
  padding: 0.45rem 0.35rem !important;
  position: relative;
  transition: color var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--green) !important;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--green);
  color: var(--white) !important;
  font-weight: 600;
  font-size: 0.92rem;
  border-radius: 50px;
  padding: 0.55rem 1.15rem;
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 14px rgba(76, 175, 80, 0.35);
}

.btn-whatsapp:hover,
.btn-whatsapp:focus-visible {
  background: var(--green-dark);
  color: var(--white) !important;
  transform: translateY(-2px);
}

.btn-whatsapp:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

.navbar-toggler {
  border: none;
  padding: 6px 10px;
  border-radius: 8px;
  flex-shrink: 0;
  min-width: var(--touch);
  min-height: var(--touch);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.navbar-toggler:focus { box-shadow: var(--focus); }

@media (max-width: 991.98px) {
  .navbar-collapse {
    flex-basis: 100%;
    width: 100%;
    margin-top: 12px;
    padding: 14px;
    border-radius: 12px;
    background: rgba(26, 26, 26, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .navbar-nav {
    width: 100%;
  }

  .nav-link {
    margin: 2px 0;
    padding: 12px !important;
    min-height: var(--touch);
    font-size: 1.05rem;
    display: flex;
    align-items: center;
  }
}

@media (min-width: 992px) {
  .navbar > .container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }

  .brand {
    grid-column: 1;
    justify-self: start;
    max-width: none;
  }

  .navbar-collapse {
    grid-column: 2;
    display: flex !important;
    flex-basis: auto;
    flex-grow: 0;
    justify-content: center;
  }

  .navbar-nav {
    gap: 0.35rem;
  }

  .nav-link {
    font-size: 1.12rem;
    margin: 0 0.65rem;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .nav-link {
    font-size: 1.02rem;
    margin: 0 0.4rem;
    padding-inline: 0.3rem !important;
  }
}

/* ==========================================================
   HERO
   ========================================================== */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  padding: 0;
  isolation: isolate;
  background-color: #0a0a0a;
}

.hero-bg-picture {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  animation: heroZoom 14s ease-out both;
}

.hero-bg {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: calc(100% + clamp(48px, 8vh, 88px));
  max-width: none;
  object-fit: cover;
  object-position: right top;
  image-rendering: auto;
  -ms-interpolation-mode: bicubic;
  transform: translateY(clamp(40px, 6.5vh, 80px));
  backface-visibility: hidden;
  pointer-events: none;
  user-select: none;
  filter: none !important;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(8, 8, 8, 0.9) 0%,
    rgba(8, 8, 8, 0.78) 28%,
    rgba(8, 8, 8, 0.42) 48%,
    rgba(8, 8, 8, 0.18) 68%,
    rgba(8, 8, 8, 0.28) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: calc(var(--nav-offset) + 1.25rem + var(--safe-top));
  padding-bottom: clamp(4rem, 8vw, 5.5rem);
  display: flex;
  align-items: center;
}

.hero-copy {
  width: 100%;
  max-width: min(48vw, 36rem);
  text-align: left;
  padding-right: clamp(0.75rem, 2vw, 1.5rem);
  min-width: 0;
}

.hero-title {
  font-size: clamp(1.35rem, 0.95rem + 3vw, 2.85rem);
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
  margin: 0 0 1.1rem;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
  overflow-wrap: anywhere;
  word-break: break-word;
  max-width: 100%;
}

.hero-title-line {
  display: block;
}

.hero-title .accent {
  color: var(--green);
  display: block;
}

.hero-subtitle {
  font-size: clamp(0.95rem, 0.85rem + 0.6vw, 1.15rem);
  color: #E8E8E8;
  max-width: min(100%, 28rem);
  margin: 0 0 1.75rem;
  font-weight: 400;
  line-height: 1.55;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--green-dark);
  color: var(--white);
  font-weight: 700;
  font-size: clamp(0.85rem, 0.8rem + 0.3vw, 0.95rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 50px;
  padding: 0.9rem 1.6rem;
  min-height: 48px;
  border: none;
  max-width: 100%;
  box-shadow: 0 6px 22px rgba(46, 125, 50, 0.45);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-cta:hover,
.btn-cta:focus-visible {
  background: var(--green);
  color: var(--white);
  transform: translate3d(0, -2px, 0);
}

.btn-cta.reveal-scale.is-visible:hover,
.btn-cta.reveal-scale.is-visible:focus-visible {
  transform: translate3d(0, -2px, 0) scale(1);
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: calc(1.1rem + var(--safe-bottom));
  z-index: 3;
  transform: translateX(-50%);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  min-width: var(--touch);
  min-height: var(--touch);
  transition: color var(--transition);
  animation: heroScrollJump 1.35s cubic-bezier(0.34, 1.4, 0.64, 1) infinite;
}

.hero-scroll:hover,
.hero-scroll:focus-visible {
  color: var(--green);
}

.hero-scroll-label {
  font-size: clamp(0.82rem, 0.75rem + 0.35vw, 0.95rem);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.9;
}

.hero-scroll i {
  font-size: clamp(1.35rem, 1.15rem + 0.7vw, 1.75rem);
  line-height: 1;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.35));
}

@keyframes heroScrollJump {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  35% {
    transform: translateX(-50%) translateY(-12px);
  }
  50% {
    transform: translateX(-50%) translateY(2px);
  }
  65% {
    transform: translateX(-50%) translateY(-6px);
  }
  80% {
    transform: translateX(-50%) translateY(0);
  }
}

/* ==========================================================
   SERVIÇOS
   ========================================================== */
.services {
  padding: var(--section-y) 0;
  padding-top: clamp(4.5rem, 9vw, 8rem);
  background: var(--white);
  overflow-x: clip;
}

.services-header {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto clamp(2.25rem, 4.5vw, 3.25rem);
}

.services-eyebrow {
  display: inline-block;
  margin: 0 0 0.85rem;
  padding: 0.35rem 0.9rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-dark);
  background: rgba(76, 175, 80, 0.14);
  border-radius: 999px;
  line-height: 1.3;
}

.services-title {
  margin: 0 0 0.85rem;
  font-weight: 800;
  font-size: clamp(1.55rem, 1.2rem + 1.8vw, 2.35rem);
  color: var(--black);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.services-lead {
  margin: 0 auto;
  max-width: 34rem;
  font-size: clamp(0.95rem, 0.88rem + 0.35vw, 1.08rem);
  font-weight: 400;
  color: var(--muted);
  line-height: 1.7;
}

.services-grid {
  --bs-gutter-x: clamp(0.85rem, 1.8vw, 1.15rem);
  --bs-gutter-y: clamp(0.85rem, 1.8vw, 1.15rem);
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-width: 0;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 3px 5px rgba(0, 0, 0, 0.02),
    0 8px 20px rgba(26, 26, 26, 0.05);
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 6px 12px rgba(0, 0, 0, 0.04),
    0 14px 28px rgba(26, 26, 26, 0.08);
  border-color: rgba(76, 175, 80, 0.28);
}

.service-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 8;
  background: #E8EDE8;
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card:hover .service-img {
  transform: scale(1.04);
}

.service-img--pombos {
  object-position: center 35%;
}

.service-img--desratizacao {
  object-position: center 45%;
}

.service-img--dedetizacao {
  object-position: center 22%;
}

.service-body {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  padding: 0 1.1rem 1.1rem;
  margin-top: -1.35rem;
  z-index: 2;
  text-align: center;
}

.service-icon {
  width: 38px;
  height: 38px;
  margin: 0 0 0.7rem;
  border-radius: 8px;
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  box-shadow: 0 6px 14px rgba(46, 125, 50, 0.26);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.service-card:hover .service-icon {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(46, 125, 50, 0.32);
}

.service-title {
  margin: 0 0 0.4rem;
  font-size: clamp(0.95rem, 0.88rem + 0.3vw, 1.05rem);
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.01em;
  line-height: 1.25;
  overflow-wrap: break-word;
}

.service-text {
  margin: 0 0 0.7rem;
  flex-grow: 1;
  font-size: clamp(0.8rem, 0.76rem + 0.15vw, 0.86rem);
  color: var(--muted);
  line-height: 1.5;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.service-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  width: 100%;
}

.service-points li {
  position: relative;
  padding-left: 0.95rem;
  font-size: clamp(0.75rem, 0.72rem + 0.12vw, 0.82rem);
  font-weight: 500;
  color: var(--green-dark);
  line-height: 1.4;
  text-align: center;
  display: inline-block;
}

.service-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--green);
}

/* ==========================================================
   QUEM SOMOS
   ========================================================== */
.about {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  background: linear-gradient(165deg, #F4F9F5 0%, #FFFFFF 42%, #F7FBF8 100%);
}

.about-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 48% 42% at 92% 18%, rgba(76, 175, 80, 0.12), transparent 60%),
    radial-gradient(ellipse 40% 36% at 6% 78%, rgba(46, 125, 50, 0.08), transparent 58%);
}

.about-bg::before {
  content: '';
  position: absolute;
  width: min(520px, 70vw);
  height: min(520px, 70vw);
  top: -12%;
  right: -8%;
  border: 1px solid rgba(76, 175, 80, 0.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 32px rgba(76, 175, 80, 0.03),
    0 0 0 64px rgba(76, 175, 80, 0.015);
}

.about .container {
  position: relative;
  z-index: 1;
}

.about-top {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.about-copy {
  text-align: center;
}

.about-eyebrow {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.5rem 1.15rem;
  font-size: clamp(0.82rem, 0.76rem + 0.25vw, 0.95rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-dark);
  background: rgba(76, 175, 80, 0.14);
  border-radius: 999px;
  line-height: 1.3;
}

.about-title {
  margin: 0 0 1.1rem;
  font-weight: 800;
  font-size: clamp(1.65rem, 1.25rem + 2vw, 2.55rem);
  color: var(--black);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.about-title .accent {
  color: var(--green-dark);
}

.about-title .accent .char {
  background: linear-gradient(120deg, var(--green) 0%, var(--green-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--green-dark);
}

.about-lead {
  margin: 0 auto 0.9rem;
  max-width: 34rem;
  font-size: clamp(0.92rem, 0.86rem + 0.28vw, 1.02rem);
  font-weight: 400;
  color: var(--muted);
  line-height: 1.75;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.about-lead--soft {
  margin-bottom: 0;
  color: #7a7a7a;
}

.about-visual {
  position: relative;
}

.about-visual::before {
  content: '';
  position: absolute;
  inset: 12% -6% -6% 18%;
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(76, 175, 80, 0.22), rgba(46, 125, 50, 0.08));
  z-index: 0;
  transform: rotate(2.5deg);
}

.about-visual-frame {
  position: relative;
  z-index: 1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 8px 16px rgba(0, 0, 0, 0.04),
    0 24px 48px rgba(26, 26, 26, 0.12);
}

.about-visual-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(27, 94, 32, 0.12) 0%, transparent 42%, rgba(0, 0, 0, 0.08) 100%);
  pointer-events: none;
}

.about-img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-visual:hover .about-img {
  transform: scale(1.035);
}

.about-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.85rem, 1.8vw, 1.15rem);
}

.about-card {
  display: flex;
  align-items: flex-start;
  gap: 0.95rem;
  min-width: 0;
  padding: clamp(1.05rem, 2vw, 1.3rem) clamp(1.05rem, 2vw, 1.35rem);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 14px;
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.02),
    0 12px 28px rgba(26, 26, 26, 0.05);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.about-card:hover {
  transform: translateY(-4px);
  border-color: rgba(76, 175, 80, 0.28);
  box-shadow:
    0 8px 14px rgba(0, 0, 0, 0.03),
    0 18px 36px rgba(26, 26, 26, 0.08);
}

.about-card-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  background: rgba(76, 175, 80, 0.12);
  color: var(--green-dark);
  font-size: 1.05rem;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.about-card:hover .about-card-icon {
  background: var(--green);
  color: var(--white);
  transform: scale(1.06);
}

.about-card-text {
  margin: 0;
  padding-top: 0.15rem;
  font-size: clamp(0.86rem, 0.8rem + 0.22vw, 0.95rem);
  font-weight: 500;
  color: var(--dark-gray);
  line-height: 1.5;
  overflow-wrap: break-word;
}

/* ==========================================================
   DIFERENCIAIS
   ========================================================== */
.features {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(4.5rem, 9vw, 7.5rem) 0;
  background: linear-gradient(180deg, #F7F8F7 0%, #F0F2F0 48%, #F7F8F7 100%);
}

.features-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 50% 45% at 8% 20%, rgba(76, 175, 80, 0.1), transparent 58%),
    radial-gradient(ellipse 42% 40% at 94% 78%, rgba(46, 125, 50, 0.08), transparent 55%),
    radial-gradient(ellipse 30% 28% at 70% 12%, rgba(76, 175, 80, 0.05), transparent 60%);
}

.features-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(46, 125, 50, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46, 125, 50, 0.045) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 45%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 45%, #000 20%, transparent 75%);
}

.features-bg::after {
  content: '';
  position: absolute;
  width: min(420px, 55vw);
  height: min(420px, 55vw);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(76, 175, 80, 0.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 28px rgba(76, 175, 80, 0.03),
    0 0 0 56px rgba(76, 175, 80, 0.02);
}

.features .container {
  position: relative;
  z-index: 1;
}

.features-header {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto clamp(2.5rem, 5vw, 3.75rem);
}

.features-eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-dark);
}

.features-title {
  margin: 0;
  font-weight: 800;
  font-size: clamp(1.45rem, 1.15rem + 1.6vw, 2.35rem);
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.2;
  text-wrap: balance;
}

.features-title .accent {
  color: var(--green);
  display: inline;
  white-space: nowrap;
}

.features-title-line {
  width: 72px;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--green-dark));
  border-radius: 2px;
  margin: 1rem auto 1.25rem;
  box-shadow: 0 4px 14px rgba(76, 175, 80, 0.35);
}

.features-lead {
  margin: 0 auto;
  max-width: 34rem;
  font-size: clamp(0.95rem, 0.88rem + 0.35vw, 1.08rem);
  color: var(--muted);
  line-height: 1.7;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 2.2vw, 1.5rem);
  max-width: 1100px;
  margin-inline: auto;
}

.feature-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  min-width: 0;
  min-height: 100%;
  padding: clamp(1.75rem, 3.5vw, 2.35rem) clamp(1.4rem, 3vw, 2rem);
  text-align: left;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 18px;
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.02),
    0 12px 32px rgba(26, 26, 26, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  overflow: hidden;
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease,
    border-color 0.4s ease,
    background 0.4s ease;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-dark));
  opacity: 0.85;
  transform: scaleX(0.28);
  transform-origin: left;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-8px) scale(1.015);
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(76, 175, 80, 0.35);
  box-shadow:
    0 8px 16px rgba(46, 125, 50, 0.06),
    0 24px 48px rgba(26, 26, 26, 0.1),
    0 0 0 1px rgba(76, 175, 80, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

.feature-card:hover::before {
  transform: scaleX(1);
  opacity: 1;
}

.feature-index {
  position: absolute;
  top: clamp(1.1rem, 2.5vw, 1.45rem);
  right: clamp(1.15rem, 2.5vw, 1.55rem);
  font-size: clamp(0.72rem, 0.68rem + 0.2vw, 0.8rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(46, 125, 50, 0.35);
  line-height: 1;
  transition: color 0.4s ease;
}

.feature-card:hover .feature-index {
  color: var(--green);
}

.feature-icon-wrap {
  width: clamp(3.5rem, 8vw, 4.25rem);
  height: clamp(3.5rem, 8vw, 4.25rem);
  margin-bottom: clamp(1.15rem, 2.5vw, 1.45rem);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(76, 175, 80, 0.16), rgba(46, 125, 50, 0.08));
  color: var(--green-dark);
  box-shadow:
    0 0 0 8px rgba(76, 175, 80, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.4s ease,
    color 0.4s ease,
    box-shadow 0.4s ease;
}

.feature-icon {
  font-size: clamp(1.35rem, 1.15rem + 0.7vw, 1.7rem);
  line-height: 1;
}

.feature-card:hover .feature-icon-wrap {
  background: linear-gradient(145deg, var(--green), var(--green-dark));
  color: var(--white);
  transform: scale(1.08);
  box-shadow:
    0 0 0 10px rgba(76, 175, 80, 0.1),
    0 10px 24px rgba(46, 125, 50, 0.28);
}

.feature-title {
  font-size: clamp(1.05rem, 0.95rem + 0.45vw, 1.22rem);
  font-weight: 800;
  color: var(--black);
  margin: 0 0 0.65rem;
  line-height: 1.25;
  letter-spacing: -0.01em;
  overflow-wrap: break-word;
}

.feature-text {
  font-size: clamp(0.9rem, 0.85rem + 0.25vw, 0.98rem);
  color: var(--muted);
  margin: 0 0 1.35rem;
  line-height: 1.65;
  overflow-wrap: break-word;
  flex: 1;
  max-width: 28ch;
}

.feature-accent {
  display: block;
  width: 36px;
  height: 3px;
  border-radius: 2px;
  background: var(--green);
  opacity: 0.55;
  margin-top: auto;
  transition: width 0.4s ease, opacity 0.4s ease, box-shadow 0.4s ease;
}

.feature-card:hover .feature-accent {
  width: 56px;
  opacity: 1;
  box-shadow: 0 0 12px rgba(76, 175, 80, 0.45);
}

@media (min-width: 576px) {
  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1.1rem, 2vw, 1.5rem);
  }
}

@media (min-width: 992px) {
  .features-grid {
    gap: 1.65rem;
  }

  .feature-card:nth-child(2) {
    transform: translateY(18px);
  }

  .feature-card:nth-child(3) {
    transform: translateY(-10px);
  }

  .feature-card:nth-child(2):hover {
    transform: translateY(10px) scale(1.015);
  }

  .feature-card:nth-child(3):hover {
    transform: translateY(-18px) scale(1.015);
  }
}

/* ==========================================================
   CONNECT (contato compacto)
   ========================================================== */
.connect {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(2.75rem, 5vw, 4rem) 0 clamp(2.5rem, 4.5vw, 3.5rem);
  background: #111111;
  color: var(--white);
}

.connect-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 80% at 0% 50%, rgba(46, 125, 50, 0.2), transparent 60%),
    radial-gradient(ellipse 45% 70% at 100% 50%, rgba(76, 175, 80, 0.1), transparent 55%);
}

.connect-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.03), transparent);
  transform: translateX(-100%);
  animation: connectShimmer 7s ease-in-out infinite;
}

@keyframes connectShimmer {
  0%, 100% { transform: translateX(-100%); opacity: 0; }
  40% { opacity: 1; }
  70% { transform: translateX(100%); opacity: 0; }
}

.connect .container {
  position: relative;
  z-index: 1;
}

.connect-header {
  text-align: center;
  margin-bottom: clamp(1.25rem, 3vw, 1.75rem);
}

.connect-eyebrow {
  margin: 0 0 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
}

.connect-title {
  margin: 0;
  font-size: clamp(1.15rem, 1rem + 1.2vw, 1.55rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
  overflow-wrap: break-word;
}

.connect-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.75rem, 1.5vw, 1rem);
}

.connect-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: clamp(0.65rem, 1.5vw, 0.95rem);
  padding: clamp(0.95rem, 2vw, 1.15rem) clamp(0.9rem, 2vw, 1.2rem);
  border-radius: 16px;
  text-decoration: none;
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  overflow: hidden;
  min-width: 0;
  min-height: max(64px, var(--touch));
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease;
}

.connect-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.connect-card--wa::before {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.16), transparent 65%);
}

.connect-card--ig::before {
  background: linear-gradient(135deg, rgba(225, 48, 108, 0.16), transparent 65%);
}

.connect-card--loc::before {
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.16), transparent 65%);
}

.connect-card:hover,
.connect-card:focus-visible {
  transform: translateY(-5px);
  border-color: rgba(76, 175, 80, 0.4);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  color: var(--white);
}

.connect-card:hover::before,
.connect-card:focus-visible::before {
  opacity: 1;
}

.connect-icon {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: clamp(42px, 10vw, 48px);
  height: clamp(42px, 10vw, 48px);
  border-radius: 13px;
  display: grid;
  place-items: center;
  font-size: clamp(1.15rem, 3vw, 1.35rem);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.connect-card--wa .connect-icon {
  background: rgba(37, 211, 102, 0.16);
  color: #25D366;
}

.connect-card--ig .connect-icon {
  background: linear-gradient(135deg, rgba(240, 148, 51, 0.2), rgba(188, 24, 136, 0.22));
  color: #e1306c;
}

.connect-card--loc .connect-icon {
  background: rgba(76, 175, 80, 0.16);
  color: var(--green);
}

.connect-card:hover .connect-icon {
  transform: scale(1.08) rotate(-4deg);
}

.connect-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
  flex: 1;
}

.connect-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.connect-value {
  font-size: clamp(0.88rem, 0.82rem + 0.35vw, 0.98rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  overflow-wrap: anywhere;
  word-break: break-word;
  line-height: 1.3;
}

.connect-arrow {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.05);
  transition: transform 0.35s ease, color 0.35s ease, background 0.35s ease;
}

.connect-card:hover .connect-arrow {
  transform: translate(2px, -2px);
  color: var(--green);
  background: rgba(76, 175, 80, 0.15);
}

.coverage {
  margin-top: clamp(1.75rem, 3.5vw, 2.35rem);
  padding-top: clamp(1.35rem, 2.8vw, 1.75rem);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.coverage-title {
  margin: 0 0 0.4rem;
  font-size: clamp(0.95rem, 0.85rem + 0.5vw, 1.1rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--white);
}

.coverage-lead {
  margin: 0 auto 0.95rem;
  max-width: 36rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.62);
}

.coverage-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 52rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
}

.coverage-list li {
  margin: 0;
  padding: 0 0.55rem;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.coverage-list li:last-child {
  border-right: 0;
}

/* ==========================================================
   FOOTER
   ========================================================== */
.footer {
  background: #0d0d0d;
  color: #8e8e8e;
  padding: 0;
  padding-bottom: calc(5.5rem + var(--safe-bottom));
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: clamp(1.25rem, 3vw, 2rem) clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
  padding: clamp(1.5rem, 3vw, 2.25rem) 0 clamp(1.25rem, 2.5vw, 1.75rem);
}

.footer-seal {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-seal img {
  width: clamp(72px, 14vw, 88px);
  height: auto;
  display: block;
  opacity: 0.95;
  transition: opacity var(--transition), transform var(--transition);
}

.footer-seal img:hover {
  opacity: 1;
  transform: scale(1.05);
}

.footer-brand-block {
  max-width: 320px;
  min-width: 0;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--white);
  font-weight: 800;
  font-size: clamp(1.05rem, 2.5vw, 1.15rem);
  letter-spacing: -0.02em;
  margin-bottom: 0.55rem;
}

.footer-brand-text {
  color: var(--white);
}

.footer-brand-text > span {
  color: var(--green);
}

.footer-logo {
  width: 28px;
  height: auto;
  aspect-ratio: 457 / 546;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
}

.footer-tagline {
  margin: 0;
  font-size: clamp(0.8rem, 0.75rem + 0.25vw, 0.86rem);
  line-height: 1.5;
  color: #7a7a7a;
  overflow-wrap: break-word;
}

.footer-rt {
  margin: 0.55rem 0 0;
  font-size: clamp(0.72rem, 0.68rem + 0.18vw, 0.8rem);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.02em;
  color: #9a9a9a;
  overflow-wrap: break-word;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.35rem;
  justify-content: flex-end;
}

.footer-nav a {
  color: #9a9a9a;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.35rem 0;
  transition: color var(--transition);
}

.footer-nav a:hover { color: var(--green); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.15rem 0 1.35rem;
}

.footer-copy {
  margin: 0;
  font-size: clamp(0.72rem, 0.68rem + 0.2vw, 0.8rem);
  color: #6b6b6b;
  text-align: center;
  line-height: 1.5;
  overflow-wrap: break-word;
  padding-inline: 0.25rem;
}

/* ==========================================================
   FLOATING ACTIONS
   ========================================================== */
.whatsapp-float {
  position: fixed;
  right: calc(24px + var(--safe-right));
  bottom: calc(24px + var(--safe-bottom));
  z-index: 1050;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: pulse-wa 1.8s ease-in-out infinite;
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.45);
  z-index: -1;
  animation: pulse-wa-ring 1.8s ease-out infinite;
  pointer-events: none;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  color: var(--white);
  transform: scale(1.08);
}

.whatsapp-float:hover::before,
.whatsapp-float:focus-visible::before {
  animation: none;
  opacity: 0;
}

@keyframes pulse-wa {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.7);
  }
}

@keyframes pulse-wa-ring {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.7);
    opacity: 0;
  }
}

.back-to-top {
  position: fixed;
  right: calc(92px + var(--safe-right));
  bottom: calc(28px + var(--safe-bottom));
  z-index: 1050;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: var(--green-dark);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition), background var(--transition);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover { background: var(--green); color: var(--white); }

/* ==========================================================
   ANIMAÇÕES PREMIUM
   — opacity + transform (60 FPS)
   ========================================================== */
:root {
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --reveal-duration: 0.85s;
  --reveal-distance: 40px;
  --char-duration: 0.55s;
  --char-stagger: 28ms;
}

@keyframes heroZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translate3d(0, var(--reveal-distance), 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes revealLeft {
  from {
    opacity: 0;
    transform: translate3d(-40px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes revealRight {
  from {
    opacity: 0;
    transform: translate3d(40px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes revealScale {
  from {
    opacity: 0;
    transform: translate3d(0, 24px, 0) scale(0.92);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes charIn {
  from {
    opacity: 0;
    transform: translate3d(0, 0.75em, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes imgZoomIn {
  from { transform: scale(1.1); }
  to { transform: scale(1); }
}

@keyframes iconIn {
  from {
    opacity: 0;
    transform: scale(0.75);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* —— Text Reveal —— */
.text-reveal:not(.is-visible):not([data-split="1"]) {
  opacity: 0;
}

.text-reveal .word {
  display: inline-block;
  white-space: nowrap;
  max-width: 100%;
}

.text-reveal .char {
  display: inline-block;
  opacity: 0;
  transform: translate3d(0, 0.75em, 0);
}

.text-reveal .char--space {
  display: inline-block;
  width: 0.28em;
}

.text-reveal.is-visible .char {
  animation: charIn var(--char-duration) var(--ease-out-expo) both;
  animation-delay: calc(var(--reveal-delay, 0ms) + (var(--i, 0) * var(--char-stagger)));
}

/* —— Scroll Reveal —— */
.reveal {
  opacity: 0;
  transform: translate3d(0, var(--reveal-distance), 0);
}

.reveal.is-visible {
  animation: revealUp var(--reveal-duration) var(--ease-out-expo) both;
  animation-delay: var(--reveal-delay, 0ms);
}

.reveal.reveal-left.is-visible {
  animation-name: revealLeft;
}

.reveal.reveal-right.is-visible {
  animation-name: revealRight;
}

.reveal.reveal-scale.is-visible {
  animation-name: revealScale;
}

/* Feature cards: preservar offset de layout no desktop */
@media (min-width: 992px) {
  .feature-card.reveal:nth-child(2):not(.is-visible) {
    transform: translate3d(0, calc(18px + var(--reveal-distance)), 0);
  }

  .feature-card.reveal.is-visible:nth-child(2) {
    animation: none;
    opacity: 1;
    transform: translate3d(0, 18px, 0);
    transition:
      opacity var(--reveal-duration) var(--ease-out-expo),
      transform var(--reveal-duration) var(--ease-out-expo);
    transition-delay: var(--reveal-delay, 0ms);
  }

  .feature-card.reveal:nth-child(3):not(.is-visible) {
    transform: translate3d(0, calc(-10px + var(--reveal-distance)), 0);
  }

  .feature-card.reveal.is-visible:nth-child(3) {
    animation: none;
    opacity: 1;
    transform: translate3d(0, -10px, 0);
    transition:
      opacity var(--reveal-duration) var(--ease-out-expo),
      transform var(--reveal-duration) var(--ease-out-expo);
    transition-delay: var(--reveal-delay, 0ms);
  }

  .feature-card.reveal.is-visible:nth-child(2):hover {
    transform: translate3d(0, 10px, 0) scale(1.015);
  }

  .feature-card.reveal.is-visible:nth-child(3):hover {
    transform: translate3d(0, -18px, 0) scale(1.015);
  }
}

/* —— Imagens —— */
.reveal:not(.is-visible) .img-zoom {
  transform: scale(1.1);
}

.reveal.is-visible .img-zoom {
  animation: imgZoomIn 1.15s var(--ease-out-expo) both;
  animation-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible .service-card:hover .img-zoom {
  animation: none;
  transform: scale(1.04);
  transition: transform 0.55s var(--ease-out-expo);
}

.reveal.is-visible .about-visual:hover .img-zoom {
  animation: none;
  transform: scale(1.035);
  transition: transform 0.7s var(--ease-out-expo);
}

/* —— Ícones —— */
.reveal:not(.is-visible) .service-icon,
.reveal:not(.is-visible) .about-card-icon,
.reveal:not(.is-visible) .feature-icon-wrap,
.reveal:not(.is-visible) .connect-icon {
  opacity: 0;
  transform: scale(0.75);
}

.reveal.is-visible .service-icon,
.reveal.is-visible .about-card-icon,
.reveal.is-visible .feature-icon-wrap,
.reveal.is-visible .connect-icon {
  animation: iconIn 0.55s var(--ease-out-expo) both;
  animation-delay: calc(var(--reveal-delay, 0ms) + 150ms);
}

.reveal.is-visible .service-card:hover .service-icon {
  animation: none;
  opacity: 1;
  transform: translate3d(0, -2px, 0) scale(1);
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
}

.reveal.is-visible .about-card:hover .about-card-icon {
  animation: none;
  opacity: 1;
  transform: scale(1.06);
  transition: transform var(--transition), background var(--transition), color var(--transition);
}

.reveal.is-visible .feature-card:hover .feature-icon-wrap {
  animation: none;
  opacity: 1;
  transform: scale(1.08);
  transition: transform 0.4s var(--ease-out-expo), background 0.4s ease, color 0.4s ease, box-shadow 0.4s ease;
}

.reveal.is-visible .connect-card:hover .connect-icon {
  animation: none;
  opacity: 1;
  transform: scale(1.08) rotate(-4deg);
  transition: transform 0.4s var(--ease-out-expo);
}

/* Após animação, libera hover nos cards */
.reveal.is-visible.anim-done {
  animation: none;
  opacity: 1;
  transform: none;
}

.about-card.reveal.is-visible.anim-done:hover {
  transform: translate3d(0, -4px, 0);
}

.reveal.connect-card.is-visible.anim-done:hover,
.reveal.connect-card.is-visible.anim-done:focus-visible {
  transform: translate3d(0, -5px, 0);
}

.feature-card.reveal.is-visible.anim-done:hover {
  transform: translate3d(0, -8px, 0) scale(1.015);
}

@media (min-width: 992px) {
  .feature-card.reveal.is-visible.anim-done:nth-child(2) {
    transform: translate3d(0, 18px, 0);
  }

  .feature-card.reveal.is-visible.anim-done:nth-child(3) {
    transform: translate3d(0, -10px, 0);
  }

  .feature-card.reveal.is-visible.anim-done:nth-child(2):hover {
    transform: translate3d(0, 10px, 0) scale(1.015);
  }

  .feature-card.reveal.is-visible.anim-done:nth-child(3):hover {
    transform: translate3d(0, -18px, 0) scale(1.015);
  }
}

.btn-cta.reveal-scale.is-visible.anim-done:hover,
.btn-cta.reveal-scale.is-visible.anim-done:focus-visible {
  transform: translate3d(0, -2px, 0) scale(1);
}

/* ==========================================================
   RESPONSIVO — breakpoints (1440 / 1200 / 992 / 768 / 576 / 414 / 360)
   ========================================================== */

/* —— 1440+ desktop wide —— */
@media (min-width: 1400px) {
  :root { --container: 1240px; }

  .hero-content {
    padding-top: calc(var(--nav-offset) + 2rem);
  }

  .hero-copy {
    max-width: min(44vw, 38rem);
  }
}

/* —— 1200–1399 notebook / desktop —— */
@media (min-width: 1200px) and (max-width: 1399.98px) {
  :root { --container: 1140px; }

  .hero-copy {
    max-width: min(46vw, 34rem);
  }
}

/* —— 992–1199 tablet landscape / notebook pequeno —— */
@media (min-width: 992px) and (max-width: 1199.98px) {
  :root { --nav-offset: 80px; }

  .hero-copy {
    max-width: min(50vw, 32rem);
  }

  .hero-title {
    font-size: clamp(1.4rem, 1rem + 2.4vw, 2.35rem);
  }

  .features-grid {
    gap: 1.35rem;
  }

  .connect-value {
    font-size: 0.9rem;
  }
}

/* —— < 992 tablet / mobile landscape —— */
@media (max-width: 991.98px) {
  :root {
    --nav-offset: 76px;
    --reveal-distance: 28px;
  }

  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(8, 8, 8, 0.78) 0%,
      rgba(8, 8, 8, 0.62) 38%,
      rgba(8, 8, 8, 0.72) 100%
    );
  }

  .hero-bg {
    object-position: right top;
  }

  .hero-content {
    padding-top: calc(var(--nav-offset) + 1.5rem + var(--safe-top));
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-end;
  }

  .hero-copy {
    max-width: 100%;
    padding-right: 0;
  }

  .hero-subtitle { max-width: 36rem; }

  .services-header,
  .features-header {
    max-width: 36rem;
    padding-inline: 0.25rem;
  }

  .connect-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
  }

  .footer-top {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 1.75rem;
  }

  .footer-brand-block { max-width: 420px; }

  .footer-nav {
    justify-content: center;
  }

  .footer-nav a {
    min-height: var(--touch);
    display: inline-flex;
    align-items: center;
    padding-inline: 0.35rem;
  }

  .about-top {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .about-visual {
    order: -1;
    max-width: 520px;
    margin-inline: auto;
    width: 100%;
  }

  .about-copy {
    text-align: center;
  }

  .about-lead {
    margin-inline: auto;
  }

  .about-img { aspect-ratio: 16 / 10; }

  .about-visual::before {
    inset: 10% -3% -4% 12%;
  }

  /* Animações laterais mais curtas = sem overflow */
  @keyframes revealLeft {
    from {
      opacity: 0;
      transform: translate3d(-22px, 0, 0);
    }
    to {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }
  }

  @keyframes revealRight {
    from {
      opacity: 0;
      transform: translate3d(22px, 0, 0);
    }
    to {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }
  }
}

/* —— 768–991 tablet portrait —— */
@media (min-width: 768px) and (max-width: 991.98px) {
  .connect-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: none;
  }

  .connect-arrow { display: none; }

  .connect-value {
    font-size: 0.84rem;
  }

  .connect-card {
    padding: 0.95rem 0.85rem;
    gap: 0.55rem;
  }

  .about-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-title,
  .features-title,
  .about-title {
    text-wrap: balance;
  }
}

/* —— < 768 mobile —— */
@media (max-width: 767.98px) {
  :root {
    --nav-offset: 72px;
    --section-y: clamp(2.75rem, 8vw, 4rem);
    --reveal-distance: 22px;
    --char-stagger: 18ms;
  }

  .hero {
    min-height: min(100svh, 100dvh);
    align-items: flex-end;
  }

  .hero-content {
    padding-top: calc(var(--nav-offset) + 2rem + var(--safe-top));
    padding-bottom: clamp(2.25rem, 8vw, 3.25rem);
    flex-direction: column;
    justify-content: flex-end;
  }

  .hero-copy { max-width: 100%; }

  .hero-bg { object-position: 80% top; }

  .hero-title {
    font-size: clamp(1.3rem, 5.8vw, 1.85rem);
  }

  .text-reveal .word {
    white-space: normal;
  }

  .services,
  .about,
  .features,
  .connect {
    overflow-x: clip;
  }

  .connect-card {
    padding: 1.05rem 1.1rem;
    min-height: var(--touch);
  }

  .footer-nav {
    justify-content: center;
    gap: 0.35rem 0.85rem;
    max-width: 22rem;
  }

  .whatsapp-float {
    right: calc(14px + var(--safe-right));
    bottom: calc(14px + var(--safe-bottom));
    width: 52px;
    height: 52px;
    font-size: 1.55rem;
  }

  .back-to-top {
    right: calc(74px + var(--safe-right));
    bottom: calc(18px + var(--safe-bottom));
    width: 42px;
    height: 42px;
  }

  .service-card:hover,
  .about-card:hover,
  .feature-card:hover,
  .connect-card:hover {
    transform: none;
  }

  .feature-card:nth-child(2),
  .feature-card:nth-child(3),
  .feature-card:nth-child(2):hover,
  .feature-card:nth-child(3):hover {
    transform: none;
  }

  .service-card:hover .service-icon,
  .service-card:hover .service-img,
  .about-card:hover .about-card-icon,
  .about-visual:hover .about-img,
  .feature-card:hover .feature-icon-wrap,
  .connect-card:hover .connect-icon {
    transform: none;
  }

  .feature-text {
    max-width: none;
  }

  .footer {
    padding-bottom: calc(5.75rem + var(--safe-bottom));
  }
}

/* —— ≤575 phones médios —— */
@media (max-width: 575.98px) {
  :root {
    --gutter: 1rem;
  }

  .btn-cta {
    width: 100%;
    max-width: 100%;
    min-height: 48px;
  }

  .service-body {
    padding: 0 0.95rem 1rem;
    margin-top: -1.15rem;
  }

  .service-icon {
    width: 34px;
    height: 34px;
    font-size: 0.88rem;
    margin-bottom: 0.6rem;
  }

  .service-media {
    aspect-ratio: 16 / 9;
  }

  .about-cards {
    grid-template-columns: 1fr;
  }

  .about-card {
    padding: 1rem 1.05rem;
    gap: 0.85rem;
  }

  .about-visual::before {
    inset: 10% -4% -4% 14%;
  }

  .section-title-line { margin-bottom: 1.35rem; }

  .connect-arrow { display: none; }

  .features-title,
  .services-title,
  .about-title,
  .connect-title {
    padding-inline: 0.15rem;
  }

  .features-title .accent {
    white-space: normal;
  }

  .features-header,
  .services-header {
    margin-bottom: 1.75rem;
  }

  .feature-card {
    padding: 1.45rem 1.25rem;
  }
}

/* —— ≤414 phones pequenos —— */
@media (max-width: 414.98px) {
  .brand-logo {
    width: 32px;
    height: auto;
  }

  .brand-name {
    font-size: clamp(1.15rem, 5vw, 1.35rem);
  }

  .hero-title {
    font-size: clamp(1.28rem, 6vw, 1.65rem);
  }

  .hero-subtitle {
    font-size: 0.92rem;
  }

  .footer-copy {
    padding-inline: 0.5rem;
  }

  .services-eyebrow,
  .about-eyebrow,
  .features-eyebrow {
    letter-spacing: 0.1em;
    font-size: 0.68rem;
  }
}

/* —— ≤360 / 320 phones muito pequenos —— */
@media (max-width: 359.98px) {
  :root { --gutter: 0.85rem; }

  .brand-name { font-size: 1.1rem; }

  .hero-title {
    font-size: 1.22rem;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 0.88rem;
    margin-bottom: 1.35rem;
  }

  .btn-cta {
    font-size: 0.8rem;
    padding: 0.85rem 1.1rem;
    letter-spacing: 0.02em;
  }

  .whatsapp-float {
    width: 48px;
    height: 48px;
    right: calc(12px + var(--safe-right));
    bottom: calc(12px + var(--safe-bottom));
  }

  .back-to-top {
    width: 40px;
    height: 40px;
    right: calc(68px + var(--safe-right));
    bottom: calc(16px + var(--safe-bottom));
  }

  .connect-value {
    font-size: 0.84rem;
  }
}

/* —— Landscape phones — evita hero esmagado —— */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    align-items: center;
  }

  .hero-content {
    padding-top: calc(var(--nav-offset) + 1rem);
    padding-bottom: 1.5rem;
  }

  .hero-title {
    font-size: clamp(1.15rem, 4vw, 1.6rem);
    margin-bottom: 0.65rem;
  }

  .hero-subtitle {
    margin-bottom: 1rem;
    font-size: 0.9rem;
  }

  .btn-cta {
    padding: 0.7rem 1.25rem;
    min-height: 42px;
    width: auto;
  }
}

/* —— Features: 4 colunas só em telas bem largas opcional — mantém 2x2 premium —— */
@media (min-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Hover só em dispositivos com hover real */
@media (hover: none) {
  .service-card:hover,
  .about-card:hover,
  .feature-card:hover,
  .connect-card:hover,
  .btn-cta:hover,
  .btn-whatsapp:hover {
    transform: none;
  }

  .service-card:hover .service-icon,
  .service-card:hover .service-img,
  .about-card:hover .about-card-icon,
  .about-visual:hover .about-img {
    transform: none;
  }

  .feature-card:nth-child(2):hover {
    transform: translateY(18px);
  }

  .feature-card:nth-child(3):hover {
    transform: translateY(-10px);
  }

  .feature-card:hover .feature-icon-wrap {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  :root {
    --reveal-duration: 0.45s;
    --reveal-distance: 20px;
    --char-duration: 0.3s;
    --char-stagger: 12ms;
  }

  /* Mantém scroll reveals, seta do hero e pulso do WhatsApp */
  .hero-bg-picture {
    animation: none !important;
  }
}
