:root {
  --navy: #000b26;
  --navy-2: #03133a;
  --navy-3: #071b48;
  --lime: #a7d63f;
  --lime-2: #8fbe2f;
  --text: #10142a;
  --muted: #5d6579;
  --line: #e3e8ef;
  --soft: #f7f9fb;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(0, 11, 38, 0.12);
  --radius: 8px;
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: "Montserrat", "Inter", "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}

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

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

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: var(--navy);
  border-bottom: 1px solid rgba(167, 214, 63, 0.18);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.topbar.is-scrolled {
  background: var(--navy);
  box-shadow: 0 12px 28px rgba(0, 11, 38, 0.22);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: 138px;
}

.brand img {
  width: 110px;
  height: auto;
  object-fit: contain;
  display: block;
  image-rendering: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-left: auto;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
}

.site-nav a,
.nav-item > a {
  position: relative;
  white-space: nowrap;
  opacity: 0.92;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.site-nav a::after,
.nav-item > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--lime);
  transition: transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a.active,
.nav-item > a:hover,
.nav-item > a.active,
.nav-item.is-open > a {
  color: var(--lime);
  opacity: 1;
}

.site-nav a:hover::after,
.site-nav a.active::after,
.nav-item > a:hover::after,
.nav-item > a.active::after,
.nav-item.is-open > a::after {
  transform: scaleX(1);
}

.nav-item {
  position: relative;
}

.dropdown {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  min-width: 240px;
  display: grid;
  gap: 2px;
  padding: 10px;
  border: 1px solid rgba(167, 214, 63, 0.28);
  border-radius: var(--radius);
  background: rgba(0, 11, 38, 0.98);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.dropdown a {
  padding: 10px 12px;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.88);
  white-space: nowrap;
}

.dropdown a::after {
  display: none;
}

.dropdown a:hover {
  color: var(--lime);
  background: rgba(167, 214, 63, 0.1);
}

.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown,
.nav-item.is-open .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.btn,
.whatsapp-btn,
.mini-btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 7px;
  border: 1px solid transparent;
  padding: 0 16px;
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  white-space: nowrap;
  flex: 0 0 auto;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.btn:hover,
.whatsapp-btn:hover,
.mini-btn:hover {
  transform: translateY(-2px);
}

.btn:focus-visible,
.whatsapp-btn:focus-visible,
.mini-btn:focus-visible,
.menu-toggle:focus-visible,
.socials a:focus-visible,
.floating-whatsapp:focus-visible {
  outline: 3px solid rgba(167, 214, 63, 0.5);
  outline-offset: 3px;
}

.btn-primary,
.mini-btn {
  color: var(--white);
  background: linear-gradient(135deg, var(--lime), var(--lime-2));
  box-shadow: 0 12px 28px rgba(167, 214, 63, 0.26);
}

.btn-outline,
.whatsapp-btn {
  color: var(--white);
  border-color: rgba(167, 214, 63, 0.8);
  background: rgba(0, 11, 38, 0.35);
}

.btn-outline:hover,
.whatsapp-btn:hover {
  background: rgba(167, 214, 63, 0.12);
  border-color: var(--lime);
}

.btn-dark {
  color: var(--white);
  background: var(--navy);
}

.whatsapp-btn svg,
.btn svg,
.floating-whatsapp svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex: 0 0 auto;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  width: 20px;
  height: 2px;
  display: block;
  background: currentColor;
  content: "";
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle span::before {
  transform: translateY(-7px);
}

.menu-toggle span::after {
  transform: translateY(5px);
}

.nav-open .menu-toggle span {
  background: transparent;
}

body.nav-open {
  overflow: hidden;
}

.nav-open .menu-toggle span::before {
  background: var(--white);
  transform: translateY(2px) rotate(45deg);
}

.nav-open .menu-toggle span::after {
  background: var(--white);
  transform: translateY(0) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  padding: 150px 0 105px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(0, 11, 38, 0.98) 0%, rgba(0, 11, 38, 0.9) 38%, rgba(0, 11, 38, 0.28) 74%, rgba(0, 11, 38, 0.08) 100%),
    var(--page-img, url("../img/hero-clean.png")) right center / cover no-repeat;
  border-bottom: 3px solid rgba(167, 214, 63, 0.45);
  overflow: hidden;
  text-align: left;
}

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

.hero-copy {
  width: min(var(--container), calc(100% - 40px));
  max-width: var(--container);
  margin: 0 auto;
  text-align: left;
}

.hero-copy > * {
  max-width: 610px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.35rem, 4.8vw, 4.1rem);
  line-height: 1.02;
  font-weight: 950;
}

h1 span,
h2 span {
  color: var(--lime);
}

.hero-copy p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.02rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 16px;
  margin-top: 28px;
  max-width: 620px;
}

.proof-strip {
  color: var(--white);
  background: var(--navy);
  box-shadow: inset 0 1px rgba(167, 214, 63, 0.18);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.proof-item {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.proof-item:last-child {
  border-right: 0;
}

.proof-item svg,
.line-icon,
.differential-card > svg,
.feature-box > svg {
  width: 38px;
  height: 38px;
  color: var(--lime);
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.proof-item strong {
  display: block;
  font-size: 0.93rem;
  font-weight: 900;
}

.proof-item span {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.78rem;
}

.section {
  padding: 74px 0;
}

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

.section-head {
  max-width: 780px;
  margin: 0 auto 42px;
  text-align: center;
}

h2 {
  margin-bottom: 14px;
  color: var(--text);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  font-weight: 950;
}

.lead {
  color: var(--muted);
  font-size: 1.05rem;
}

.differentials {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.differential-card {
  text-align: center;
}

.differential-card .line-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 20px;
  stroke-width: 1.8;
}

.differential-card > svg {
  width: 58px;
  height: 58px;
  margin: 0 auto 20px;
  stroke-width: 1.8;
}

.differential-card h3,
.service-card h3,
.plan-card h3,
.post-card h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
  line-height: 1.15;
  font-weight: 950;
}

.differential-card p,
.service-card p,
.plan-card p,
.post-card p {
  color: var(--muted);
  font-size: 0.93rem;
}

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

.service-card,
.plan-card,
.post-card,
.contact-card,
.testimonial-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 28px rgba(0, 11, 38, 0.07);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.service-card:hover,
.plan-card:hover,
.post-card:hover,
.contact-card:hover {
  transform: translateY(-5px);
  border-color: rgba(167, 214, 63, 0.7);
  box-shadow: var(--shadow);
}

.service-card:hover .service-media,
.post-card:hover .service-media {
  transform: scale(1.025);
}

.service-media {
  min-height: 260px;
  background-position: center;
  background-size: cover;
  transition: transform 0.35s ease;
}

.service-body,
.plan-card,
.post-body,
.contact-card,
.testimonial-card {
  padding: 24px;
}

.service-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin: -58px auto 18px;
  border: 8px solid var(--white);
  border-radius: 999px;
  color: var(--lime-2);
  background: var(--white);
  box-shadow: 0 10px 22px rgba(0, 11, 38, 0.12);
}

.service-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card {
  text-align: center;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 58px;
  align-items: center;
}

.image-panel {
  position: relative;
}

.image-panel img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.icon-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.icon-list li,
.check-list li {
  list-style: none;
}

.icon-list,
.check-list {
  margin-left: 0;
  padding-left: 0;
}

.icon-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 800;
}

.icon-list svg,
.check-list svg {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  color: var(--lime-2);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.dark-band {
  color: var(--white);
  background:
    radial-gradient(circle at 18% 0%, rgba(167, 214, 63, 0.16), transparent 28%),
    linear-gradient(135deg, var(--navy), var(--navy-2));
}

.dark-band h2,
.dark-band h3 {
  color: var(--white);
}

.dark-band p,
.dark-band .lead {
  color: rgba(255, 255, 255, 0.78);
}

.dark-band .plan-card h3,
.dark-band .post-card h3,
.dark-band .contact-card h3,
.dark-band .feature-box h3 {
  color: var(--text);
}

.dark-band .plan-card p,
.dark-band .post-card p,
.dark-band .contact-card p,
.dark-band .feature-box p {
  color: var(--muted);
}

.plan-layout {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 36px;
  align-items: center;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.section:not(.dark-band) .check-list li {
  color: var(--text);
}

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

.plan-card {
  color: var(--text);
}

.plan-card h3,
.plan-card p {
  display: block;
}

.plan-card svg {
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  color: var(--navy);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat {
  min-height: 118px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.stat:last-child {
  border-right: 0;
}

.stat svg {
  width: 54px;
  height: 54px;
  color: var(--navy);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.stat strong {
  display: block;
  color: var(--navy);
  font-size: 2rem;
  line-height: 1;
  font-weight: 950;
}

.stat span {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 800;
}

.stars {
  color: #ffbe25;
  letter-spacing: 2px;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.testimonial-card {
  padding: 20px;
}

.testimonial-card p {
  color: var(--text);
  font-size: 0.86rem;
}

.avatar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  font-size: 0.82rem;
  font-weight: 900;
}

.avatar span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: var(--navy);
}

.map-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 26px;
  align-items: center;
}

.map-card img {
  width: 100%;
  border-radius: var(--radius);
  background: #eef2f0;
}

.cta-final {
  padding: 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(0, 11, 38, 0.35), rgba(0, 11, 38, 0.96) 42%, rgba(0, 11, 38, 0.98)),
    url("../img/team-cta-layout.png") left center / cover no-repeat;
}

.cta-final .container {
  min-height: 230px;
  display: grid;
  grid-template-columns: 1fr 1fr 360px;
  gap: 42px;
  align-items: center;
}

.cta-final h2 {
  color: var(--white);
}

.cta-box {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 8px;
  border: 1px solid var(--lime);
  border-radius: var(--radius);
  padding: 28px;
  color: var(--white);
  background: rgba(0, 11, 38, 0.78);
  text-transform: none;
}

.cta-box svg {
  width: 34px;
  height: 34px;
}

.cta-box strong {
  font-size: 1.35rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.cta-box small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
  font-weight: 700;
}

.page-hero {
  padding: 150px 0 82px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(0, 11, 38, 0.96) 0%, rgba(0, 11, 38, 0.84) 48%, rgba(0, 11, 38, 0.4) 100%),
    var(--page-img, url("../img/hero-clean.png")) right center / cover no-repeat;
}

.page-hero.hero-company {
  background:
    linear-gradient(90deg, rgba(0, 11, 38, 0.96) 0%, rgba(0, 11, 38, 0.8) 55%, rgba(0, 11, 38, 0.35) 100%),
    url("../img/team-cta-layout.png") center center / cover no-repeat;
}

.page-hero.hero-services {
  background:
    linear-gradient(90deg, rgba(0, 11, 38, 0.96) 0%, rgba(0, 11, 38, 0.78) 55%, rgba(0, 11, 38, 0.25) 100%),
    url("../img/services-layout.png") center center / cover no-repeat;
}

.page-hero.hero-plans {
  background:
    linear-gradient(90deg, rgba(0, 11, 38, 0.96) 0%, rgba(0, 11, 38, 0.82) 55%, rgba(0, 11, 38, 0.28) 100%),
    url("../img/plans-layout.png") center center / cover no-repeat;
}

.page-hero.hero-segments {
  background:
    linear-gradient(90deg, rgba(0, 11, 38, 0.96) 0%, rgba(0, 11, 38, 0.78) 55%, rgba(0, 11, 38, 0.28) 100%),
    url("../img/proof-layout.png") center center / cover no-repeat;
}

.page-hero.hero-blog {
  background:
    linear-gradient(90deg, rgba(0, 11, 38, 0.96) 0%, rgba(0, 11, 38, 0.8) 55%, rgba(0, 11, 38, 0.28) 100%),
    url("../img/service-pragas.png") center center / cover no-repeat;
}

.page-hero.hero-contact {
  background:
    linear-gradient(90deg, rgba(0, 11, 38, 0.96) 0%, rgba(0, 11, 38, 0.82) 55%, rgba(0, 11, 38, 0.32) 100%),
    url("../img/map-layout.png") center center / cover no-repeat;
}

.page-hero.hero-faq,
.page-hero.hero-privacy {
  background:
    linear-gradient(90deg, rgba(0, 11, 38, 0.96) 0%, rgba(0, 11, 38, 0.84) 58%, rgba(0, 11, 38, 0.34) 100%),
    url("../img/logo-layout.png") right center / contain no-repeat,
    linear-gradient(135deg, var(--navy), var(--navy-3));
}

.page-hero h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(2.15rem, 4.4vw, 3.65rem);
}

.page-hero p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.84);
}

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

.feature-box {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.feature-box svg {
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  color: var(--lime-2);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.proof-item svg path,
.differential-card > svg path,
.feature-box > svg path,
.plan-card svg path,
.check-list svg path,
.icon-list svg path,
.service-icon svg path {
  vector-effect: non-scaling-stroke;
}

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

.faq-list {
  max-width: 940px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(0, 11, 38, 0.06);
  overflow: hidden;
}

.faq-item + .faq-item {
  margin-top: 12px;
}

.faq-item summary {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  color: var(--navy);
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 999px;
  color: var(--navy);
  background: rgba(167, 214, 63, 0.22);
  font-size: 1.25rem;
  line-height: 1;
  transition: transform 0.2s ease, background 0.2s ease;
}

.faq-item[open] summary::after {
  content: "-";
  background: var(--lime);
}

.faq-item p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.document-layout {
  max-width: 920px;
}

.post-tag {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--lime-2);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 28px;
}

.contact-row {
  display: grid;
  gap: 6px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.contact-row:last-child {
  border-bottom: 0;
}

.contact-row strong {
  color: var(--navy);
}

.contact-card h2 {
  margin-bottom: 18px;
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  line-height: 1.15;
}

.contact-card a[href*="wa.me"] svg,
.site-footer a[href*="wa.me"] svg {
  width: 18px;
  height: 18px;
  display: inline-block;
  vertical-align: -3px;
  margin-right: 6px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  display: block;
  margin-bottom: 7px;
  color: var(--navy);
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 0 14px;
  color: var(--text);
  background: #fff;
  font: inherit;
}

textarea {
  min-height: 132px;
  padding-top: 12px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(167, 214, 63, 0.34);
  border-color: var(--lime-2);
}

.form-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.site-footer {
  color: var(--white);
  background: var(--navy);
  padding: 46px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.1fr 1fr 0.7fr;
  gap: 42px;
}

.footer-logo {
  width: 148px;
  margin-bottom: 18px;
}

.site-footer h3 {
  margin-bottom: 16px;
  color: var(--lime);
  font-size: 0.88rem;
  text-transform: uppercase;
}

.site-footer ul {
  margin: 0;
  padding: 0;
}

.site-footer li {
  list-style: none;
  margin-bottom: 9px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.2s ease;
}

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

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.socials a,
.socials span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  color: var(--lime);
  border: 1px solid rgba(167, 214, 63, 0.35);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 900;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.socials a:hover,
.socials span:hover {
  color: var(--white);
  border-color: var(--lime);
  background: rgba(167, 214, 63, 0.16);
  transform: translateY(-2px);
}

.socials svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.social-instagram svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.84rem;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: #25d366;
  box-shadow: 0 16px 34px rgba(37, 211, 102, 0.36);
}

.floating-whatsapp::before {
  content: "";
  position: absolute;
  inset: -8px;
  border: 2px solid rgba(37, 211, 102, 0.55);
  border-radius: inherit;
  animation: pulse 1.8s ease-out infinite;
}

.floating-whatsapp.is-paused::before {
  animation: none;
}

.floating-whatsapp svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

@keyframes pulse {
  0% {
    opacity: 0.8;
    transform: scale(0.86);
  }
  100% {
    opacity: 0;
    transform: scale(1.35);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.58s ease, transform 0.58s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

@media (max-width: 1160px) {
  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .nav-wrap {
    min-height: 72px;
    gap: 12px;
  }

  .nav-actions {
    margin-left: auto;
    flex: 0 0 auto;
  }

  .nav-actions .whatsapp-btn {
    display: none;
  }

  .site-nav {
    position: fixed;
    top: 72px;
    right: 14px;
    left: auto;
    width: min(320px, calc(100vw - 28px));
    max-height: calc(100vh - 86px);
    box-sizing: border-box;
    overflow-y: auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-left: 0;
    padding: 10px 18px 18px;
    border: 1px solid rgba(167, 214, 63, 0.24);
    border-radius: 8px;
    background: rgba(0, 11, 38, 0.99);
    box-shadow: 0 22px 50px rgba(0, 11, 38, 0.38);
  }

  .nav-open .site-nav {
    display: flex;
  }

  .site-nav a,
  .nav-item > a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    text-align: left;
  }

  .site-nav a::after,
  .nav-item > a::after {
    display: none;
  }

  .nav-item {
    display: grid;
  }

  .dropdown {
    position: static;
    min-width: 0;
    display: none;
    padding: 0 0 8px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-item.is-open .dropdown,
  .nav-item:focus-within .dropdown {
    display: grid;
  }

  .dropdown a {
    padding: 9px 0;
    white-space: normal;
    text-align: left;
  }

  .proof-grid,
  .differentials,
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid,
  .plans,
  .posts,
  .content-grid,
  .testimonials {
    grid-template-columns: repeat(2, 1fr);
  }

  .two-col,
  .plan-layout,
  .split-section,
  .contact-layout,
  .cta-final .container {
    grid-template-columns: 1fr;
  }

  .cta-final {
    background:
      linear-gradient(90deg, rgba(0, 11, 38, 0.82), rgba(0, 11, 38, 0.96)),
      url("../img/team-cta-layout.png") left center / cover no-repeat;
  }

  .cta-final .container > div:first-child {
    display: none;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .brand img {
    width: 110px;
  }

  .hero,
  .page-hero {
    padding-top: 120px;
  }

  .hero {
    min-height: 600px;
    align-items: flex-start;
    padding-bottom: 72px;
    background:
      linear-gradient(180deg, rgba(0, 11, 38, 0.98) 0%, rgba(0, 11, 38, 0.9) 50%, rgba(0, 11, 38, 0.72) 100%),
      url("../img/hero-clean.png") 56% center / cover no-repeat;
  }

  .page-hero {
    background:
      linear-gradient(180deg, rgba(0, 11, 38, 0.98), rgba(0, 11, 38, 0.84)),
      url("../img/hero-clean.png") 56% center / cover no-repeat;
  }

  h1 {
    font-size: clamp(2.25rem, 12vw, 3.5rem);
    line-height: 1;
  }

  .hero-actions,
  .hero-actions .btn,
  .whatsapp-btn {
    width: 100%;
  }

  .nav-actions .btn {
    display: none;
  }

  .proof-grid,
  .differentials,
  .services-grid,
  .plans,
  .posts,
  .content-grid,
  .testimonials,
  .stats,
  .icon-list,
  .map-card,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .proof-item,
  .stat {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .stat {
    border-color: var(--line);
  }

  .section {
    padding: 56px 0;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
