﻿:root {
  --blue-980: #0a0144;
  --blue-950: #0a0144;
  --blue-900: #0a0144;
  --blue-850: #0a0144;
  --blue-200: #ffffff;
  --blue-100: #ffffff;

  --red-700: #ff2929;
  --red-600: #ff2929;

  --white: #ffffff;

  --ink-900: #0a0144;
  --ink-700: #0a0144;
  --ink-500: #0a0144;

  --surface: #ffffff;
  --border: rgba(10, 1, 68, 0.2);

  --radius-xl: 22px;
  --radius-lg: 16px;
  --radius-sm: 10px;

  --shadow-soft: 0 16px 34px rgba(10, 1, 68, 0.12);
  --shadow-card: 0 12px 24px rgba(10, 1, 68, 0.08);
}

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

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "Nunito Sans", sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-700);
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 40%, #ffffff 100%);
  overflow-x: hidden;
}

main {
  overflow-x: clip;
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -64px;
  z-index: 200;
  background: var(--red-600);
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
  font-size: 0.92rem;
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(10, 1, 68, 0.24);
  transition: top 0.2s ease;
}

.skip-link:focus-visible {
  top: 0.8rem;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(255, 41, 41, 0.42);
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

[id] {
  scroll-margin-top: 230px;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.center {
  text-align: center;
}

.section {
  padding: 4.8rem 0;
}

.eyebrow {
  margin: 0;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--red-600);
}

.section-title {
  margin: 0.65rem 0 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2rem, 4.8vw, 3rem);
  line-height: 1.08;
  text-transform: none;
  color: var(--ink-900);
}

.section-title,
.hero-copy h1,
.hero-banner-title,
.card h3,
.product-card h3,
.flow-item h3,
.trust-card h3 {
  text-wrap: balance;
}

.section-copy {
  max-width: 62ch;
  margin-top: 1rem;
}

.section-copy-center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.8rem 1.35rem;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease,
    color 0.2s ease, border-color 0.2s ease;
}

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

.btn:focus-visible {
  outline: 3px solid rgba(255, 41, 41, 0.35);
  outline-offset: 2px;
}

.btn-primary {
  background: linear-gradient(160deg, var(--red-700), var(--red-600));
  color: var(--white);
  box-shadow: 0 10px 20px rgba(255, 41, 41, 0.27);
}

.btn-primary:hover {
  box-shadow: 0 13px 24px rgba(255, 41, 41, 0.35);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.75);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.04);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.15);
}

.btn-ghost-dark {
  border-color: var(--blue-900);
  color: var(--blue-900);
  background: transparent;
}

.btn-ghost-dark:hover {
  border-color: var(--red-600);
  color: var(--red-600);
  background: rgba(255, 41, 41, 0.04);
}

.topbar {
  position: relative;
  z-index: 70;
  background: #ffffff;
  border-bottom: 1px solid rgba(10, 1, 68, 0.14);
  box-shadow: 0 6px 14px rgba(10, 1, 68, 0.12);
  transition: box-shadow 0.24s ease;
}

.topbar.is-scrolled {
  box-shadow: 0 10px 20px rgba(10, 1, 68, 0.16);
}

.header-strip {
  width: 100%;
}

.header-inner {
  display: flex;
  align-items: center;
}

.header-strip-top {
  background: #ffffff;
  border-bottom: 1px solid rgba(10, 1, 68, 0.12);
}

.header-strip-top .header-inner {
  min-height: 44px;
  justify-content: center;
}

.header-main-menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 0.34rem;
}

.header-main-menu a {
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.04em;
  font-size: 0.78rem;
  color: var(--ink-900);
  padding: 0.38rem 0.62rem;
  border-radius: 8px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.header-main-menu a:hover {
  background: rgba(255, 41, 41, 0.1);
  color: var(--red-600);
}

.header-main-menu a.is-active {
  background: var(--red-600);
  color: #ffffff;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  width: auto;
  max-width: min(320px, 38vw);
  height: 58px;
  object-fit: contain;
}

.header-strip-brand .logo img {
  height: 62px;
  max-width: min(360px, 34vw);
}

.header-strip-brand {
  background: var(--blue-950);
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.header-strip-brand .container {
  width: min(1380px, calc(100% - 1.4rem));
}

.header-brand-inner {
  min-height: 96px;
  display: grid;
  grid-template-columns: auto auto minmax(220px, 1fr) auto;
  align-items: center;
  gap: 0.7rem 0.95rem;
  padding: 0.55rem 0;
}

.header-phone {
  display: grid;
  gap: 0.12rem;
}

.header-phone span {
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.04em;
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.86);
}

.header-phone a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 900;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
}

.header-slogan {
  margin: 0;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.03em;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(0.92rem, 1.45vw, 1.16rem);
  line-height: 1.05;
  text-align: center;
  color: #ffffff;
}

.header-quote-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.52rem;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.03em;
  font-size: 0.72rem;
  min-height: 40px;
  padding: 0.5rem 0.78rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #ffffff;
  background: #22c55e;
  box-shadow: 0 10px 16px rgba(34, 197, 94, 0.26);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.header-quote-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 20px rgba(34, 197, 94, 0.34);
}

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

.whatsapp-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: currentColor;
}

.header-strip-categories {
  background: #ffffff;
  border-bottom: 1px solid rgba(10, 1, 68, 0.12);
}

.header-strip-categories .header-inner,
.header-strip-final .header-inner {
  justify-content: center;
}

.header-category-menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 0.35rem 0.55rem;
  padding: 0.36rem 0;
}

.header-category-menu a {
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.03em;
  font-size: 0.72rem;
  color: var(--ink-900);
  padding: 0.34rem 0.56rem;
  border-radius: 8px;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.header-category-menu a:hover {
  color: var(--red-600);
  background: rgba(255, 41, 41, 0.1);
}

.header-strip-final {
  background: var(--blue-950);
}

.header-dropdown {
  position: relative;
}

.header-dropdown-item {
  border: 0;
  background: transparent;
  color: #ffffff;
  padding: 0.5rem 0;
  font-weight: 900;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  cursor: pointer;
  list-style: none;
}

.header-dropdown-item::-webkit-details-marker {
  display: none;
}

.header-dropdown-item span {
  font-size: 0.66rem;
  transition: transform 0.2s ease;
}

.header-dropdown[open] .header-dropdown-item span {
  transform: rotate(180deg);
}

.header-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.32rem);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  min-width: 260px;
  display: grid;
  gap: 0.2rem;
  padding: 0.45rem;
  border-radius: 10px;
  border: 1px solid rgba(10, 1, 68, 0.14);
  background: #ffffff;
  box-shadow: 0 14px 26px rgba(10, 1, 68, 0.22);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 20;
}

.header-dropdown[open] .header-dropdown-menu {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.header-dropdown-menu a {
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  color: var(--ink-900);
  padding: 0.44rem 0.56rem;
  border-radius: 7px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.header-dropdown-menu a:hover {
  background: rgba(255, 41, 41, 0.08);
  color: var(--red-600);
}

.hero {
  position: relative;
  padding: 5.8rem 0 5rem;
  color: #ffffff;
  background: linear-gradient(120deg, rgba(10, 1, 68, 0.97), rgba(10, 1, 68, 0.93));
  isolation: isolate;
  overflow: clip;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.1) 1px,
      transparent 1px
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(
      circle at 18% 22%,
      rgba(255, 41, 41, 0.3),
      transparent 45%
    ),
    radial-gradient(circle at 84% 15%, rgba(255, 255, 255, 0.16), transparent 42%);
}

.hero.has-carousel {
  min-height: min(79vh, 690px);
  background: #0a0144;
}

.hero.has-carousel::before {
  display: none;
}

.hero.has-carousel::after {
  display: none;
}

.hero-carousel {
  position: absolute;
  inset: 0;
  z-index: -3;
  background: #0a0144;
  overflow: hidden;
}

.hero-carousel-track {
  display: flex;
  height: 100%;
  width: 100%;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.hero-slide {
  margin: 0;
  flex: 0 0 100%;
  min-width: 100%;
  height: 100%;
  position: relative;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 1, 68, 0.38) 0%, rgba(10, 1, 68, 0.72) 100%);
  pointer-events: none;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  image-rendering: auto;
  filter: saturate(0.96) contrast(1.04);
}

.hero-slide.slide-canil img {
  object-position: center 38%;
}

.hero-slide.slide-tela-cerca img {
  object-position: center 46%;
}

.hero-slide.slide-malha-industrial img {
  object-position: center 42%;
}

.hero-slide.slide-cercamento-header img {
  object-position: center 48%;
}

.hero-slide.slide-gado-header img {
  object-position: center 44%;
}

.hero-slide.slide-pastagem-header img {
  object-position: center 42%;
}

.hero-image-layer {
  display: none;
}

.hero-grid,
.hero-products-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(290px, 0.9fr);
  align-items: center;
  gap: 2rem;
}

.hero-grid-centered {
  display: none;
}

.hero-slide-card {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  width: min(920px, calc(100% - 2rem));
  transform: translate(-50%, -50%);
  display: grid;
  justify-items: center;
  gap: 0.64rem;
  text-align: center;
  pointer-events: auto;
}

.hero-banner-title-box {
  width: min(100%, 860px);
  background: rgba(10, 1, 68, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 14px;
  padding: 1.05rem 1.25rem;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(1px);
}

.hero-banner-title {
  margin: 0;
  color: #ffffff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.52rem, 3.65vw, 2.78rem);
  line-height: 1.1;
  letter-spacing: 0.01em;
  font-weight: 800;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.hero-banner-strip {
  margin: 0;
  max-width: min(100%, 860px);
  background: rgba(255, 255, 255, 0.92);
  color: var(--blue-900);
  border-radius: 12px;
  padding: 0.62rem 1rem;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 700;
  line-height: 1.35;
  box-shadow: 0 10px 18px rgba(10, 1, 68, 0.32);
}

.hero-banner-support {
  display: block;
  margin-top: 0.26rem;
  font-size: 0.85em;
  font-weight: 900;
  letter-spacing: 0.01em;
}

.hero-slide-card.theme-white .hero-banner-title-box {
  background: rgba(10, 1, 68, 0.86);
  border-color: rgba(255, 255, 255, 0.28);
}

.hero-slide-card.theme-white .hero-banner-title {
  color: #ffffff;
}

.hero-slide-card.theme-red .hero-banner-title-box {
  background: rgba(10, 1, 68, 0.86);
}

.hero-slide-card.theme-red .hero-banner-strip {
  background: rgba(255, 255, 255, 0.92);
  color: var(--blue-900);
}

.hero-banner-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.56rem;
  margin-top: 0.16rem;
  min-height: 52px;
  padding: 0.78rem 1.16rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: #22c55e;
  color: #ffffff;
  text-decoration: none;
  font-weight: 900;
  font-size: 1rem;
  line-height: 1.2;
  box-shadow: 0 13px 22px rgba(34, 197, 94, 0.34);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-banner-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(34, 197, 94, 0.38);
}

.hero-banner-whatsapp .whatsapp-icon {
  width: 18px;
  height: 18px;
}

.hero-copy h1 {
  margin: 0.45rem 0 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2.1rem, 4.9vw, 4.2rem);
  line-height: 1.08;
  letter-spacing: 0;
  text-transform: none;
}

.hero-copy p {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.92);
  max-width: 62ch;
}

.company-cnpj-note {
  margin-top: 0.75rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.96);
}

.hero.has-carousel .hero-copy {
  background: rgba(10, 1, 68, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-left: 4px solid rgba(255, 41, 41, 0.92);
  border-radius: 16px;
  padding: 1.35rem;
  box-shadow: 0 14px 26px rgba(10, 1, 68, 0.32);
}

.hero.has-carousel .hero-copy p {
  color: rgba(255, 255, 255, 0.95);
}

.hero-cta {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-card {
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(10, 1, 68, 0.16);
  border-top: 4px solid var(--red-600);
  box-shadow: var(--shadow-soft);
  color: var(--ink-700);
  padding: 1.5rem;
}

.hero-card h2 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.8rem;
  text-transform: uppercase;
  color: var(--ink-900);
}

.hero-card ul {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.hero-card li {
  position: relative;
  padding-left: 1.28rem;
}

.hero-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--red-600);
}

.hero-carousel-controls {
  position: absolute;
  left: 50%;
  bottom: 1.15rem;
  z-index: 5;
  margin-top: 0;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.52rem;
}

.hero-dot {
  width: 38px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: width 0.24s ease, background-color 0.24s ease;
}

.hero-dot:hover {
  background: rgba(255, 255, 255, 0.65);
}

.hero-dot.is-active {
  width: 58px;
  background: var(--red-600);
}

.hero-dot:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.38);
  outline-offset: 2px;
}

.hero-shape {
  position: absolute;
  right: -130px;
  bottom: -190px;
  width: 390px;
  height: 390px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 41, 41, 0.46), rgba(255, 41, 41, 0) 70%);
  pointer-events: none;
}

.hero.has-carousel .hero-shape {
  display: none;
}

.hero-products {
  padding-top: 5.2rem;
  padding-bottom: 4.6rem;
}

.hero-slide.slide-galinheiro-header img {
  object-position: center 46%;
}

.hero-slide.slide-viveiro-header img {
  object-position: center 44%;
}

.hero-slide.slide-quadra-header img {
  object-position: center 46%;
}

.section-services {
  background: var(--surface);
}

.cards {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-top: 5px solid var(--red-600);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 1.4rem;
}

.card,
.product-card,
.segment-card,
.flow-item,
.trust-card {
  contain: content;
}

.card h3 {
  margin: 0 0 0.6rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.55rem;
  text-transform: uppercase;
  color: var(--ink-900);
}

.card p {
  margin: 0;
}

.section-products-highlight {
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 100%);
}

.product-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.product-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.product-big-icon {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 14px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(10, 1, 68, 0.14);
  box-shadow: 0 10px 16px rgba(10, 1, 68, 0.12);
}

.product-big-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
}

.product-card h3 {
  margin: 1rem 0 0.55rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.8rem;
  text-transform: uppercase;
  color: var(--ink-900);
}

.product-card p {
  margin: 0;
}

.product-card .btn {
  margin-top: auto;
}

.products-page-link {
  margin-top: 2rem;
  text-align: center;
}

.product-grid-page {
  align-items: stretch;
}

.product-grid-page-centered {
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
}

.product-grid-page-centered .product-card {
  width: min(100%, 740px);
}

.product-list {
  list-style: none;
  margin: 1rem 0 1.2rem;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.product-list li {
  position: relative;
  padding-left: 1.3rem;
}

.product-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--red-600);
}

.section-publicos {
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 100%);
}

.publicos-top {
  display: grid;
  gap: 2rem;
}

.segment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.segment-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 1.2rem;
}

.segment-card h3 {
  margin: 0.9rem 0 0.45rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.5rem;
  text-transform: uppercase;
  color: var(--ink-900);
}

.segment-card p {
  margin: 0;
}

.segment-media {
  margin: 0 0 0.85rem;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(10, 1, 68, 0.12);
  box-shadow: 0 8px 14px rgba(10, 1, 68, 0.12);
  background: #ffffff;
}

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

.segment-media-residential img {
  object-position: center 34%;
}

.animal-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid rgba(10, 1, 68, 0.18);
  box-shadow: 0 6px 10px rgba(10, 1, 68, 0.15);
  background: #ffffff;
}

.animal-icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: var(--blue-900);
  stroke-width: 2.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.animal-strip {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.animal-pill {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 15px;
  box-shadow: var(--shadow-card);
  padding: 0.75rem 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-weight: 800;
  color: var(--ink-900);
}

.animal-pill span {
  letter-spacing: 0.01em;
}

.section-flow {
  background: linear-gradient(140deg, var(--blue-950), var(--blue-850));
}

.section-flow .eyebrow {
  color: #ff2929;
}

.section-flow .section-title {
  color: #ffffff;
}

.flow-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.flow-item {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 28px rgba(10, 1, 68, 0.26);
  padding: 1.2rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.flow-item:hover,
.flow-item.is-focus {
  transform: translateY(-5px);
  box-shadow: 0 18px 30px rgba(10, 1, 68, 0.36);
}

.flow-item span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(160deg, var(--red-700), var(--red-600));
  color: var(--white);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
}

.flow-item h3 {
  margin: 0.9rem 0 0.45rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.5rem;
  text-transform: uppercase;
  color: var(--ink-900);
}

.flow-item p {
  margin: 0;
}

.section-trust {
  background: #ffffff;
}

.section-guarantees {
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 100%);
  border-top: 1px solid var(--border);
}

.trust-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.trust-card {
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 1.3rem;
}

.trust-card h3 {
  margin: 0 0 0.5rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.56rem;
  text-transform: uppercase;
  color: var(--ink-900);
}

.trust-card p {
  margin: 0;
}

.section-local-seo .section-copy {
  margin-left: auto;
  margin-right: auto;
}

.section-local-radius {
  margin-top: 0.7rem;
  font-weight: 700;
  color: var(--ink-900);
}

.section-local-seo .trust-grid {
  margin-top: 1.65rem;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.section-local-seo .trust-card {
  grid-column: span 4;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  height: 100%;
  min-width: 0;
}

.section-local-seo .trust-card h3 {
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

.section-local-seo .trust-card:nth-child(4) {
  grid-column: 3 / span 4;
}

.section-local-seo .trust-card:nth-child(5) {
  grid-column: 7 / span 4;
}

.section-local-seo .trust-card p {
  flex: 1;
}

.local-cities-block {
  margin-top: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-card);
  padding: 1rem;
  min-width: 0;
}

.local-cities-title {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.36rem;
  text-transform: uppercase;
  color: var(--ink-900);
}

.local-city-chips {
  margin: 0.72rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.local-city-chips li {
  display: inline-flex;
  align-items: center;
  padding: 0.34rem 0.62rem;
  border-radius: 999px;
  border: 1px solid rgba(10, 1, 68, 0.14);
  background: #f5f7ff;
  color: var(--ink-900);
  font-size: 0.84rem;
  line-height: 1.2;
}

.section-local-cta {
  margin-top: 1rem;
  text-align: center;
}

.section-local-cta .btn {
  width: auto;
  max-width: 100%;
}

.footer {
  background: linear-gradient(160deg, var(--blue-980), var(--blue-900));
  color: #ffffff;
  padding: 3.2rem 0 1.6rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr auto;
  gap: 1.2rem;
  align-items: start;
}

.footer h2 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.03em;
}

.footer-logo {
  display: inline-block;
}

.footer-logo img {
  height: 56px;
  width: auto;
  max-width: min(100%, 270px);
}

.footer p {
  margin: 0.45rem 0 0;
}

.contact {
  display: grid;
  gap: 0.2rem;
}

.footer-link {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-link:hover {
  color: #ffffff;
}

.footer-btn {
  justify-self: end;
  align-self: center;
}

.copy {
  margin: 1.4rem 0 0;
  text-align: center;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.72);
}

.quick-chat {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 140;
}

.quick-chat-toggle {
  position: relative;
  border: 0;
  border-radius: 50%;
  width: 62px;
  height: 62px;
  padding: 0;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #ffffff;
  background: linear-gradient(160deg, var(--red-700), var(--red-600));
  box-shadow: 0 12px 24px rgba(10, 1, 68, 0.35);
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.quick-chat-toggle::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.38);
  opacity: 0;
  transform: scale(0.88);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.quick-chat-toggle:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 16px 28px rgba(10, 1, 68, 0.4);
}

.quick-chat-toggle:hover::after,
.quick-chat-toggle:focus-visible::after {
  opacity: 1;
  transform: scale(1);
}

.quick-chat-toggle-avatar {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.quick-chat-toggle-fallback {
  width: 100%;
  height: 100%;
  display: none;
  place-items: center;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.32rem;
  letter-spacing: 0.03em;
  color: #ffffff;
}

.quick-chat-panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 0.7rem);
  width: min(360px, calc(100vw - 1.4rem));
  max-height: min(70vh, 540px);
  background: #ffffff;
  border: 1px solid rgba(10, 1, 68, 0.16);
  border-radius: 16px;
  box-shadow: 0 18px 36px rgba(10, 1, 68, 0.26);
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  opacity: 0;
  transform: translateY(8px) scale(0.98);
  transform-origin: bottom right;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
  will-change: transform, opacity;
}

.quick-chat.is-open .quick-chat-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.quick-chat.is-opening .quick-chat-panel {
  animation: chatPanelPop 0.42s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.quick-chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  padding: 0.8rem 0.9rem;
  background: linear-gradient(135deg, var(--blue-950), var(--blue-900));
  color: #ffffff;
}

.quick-chat-title-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 0;
}

.quick-chat-header strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  line-height: 1;
}

.quick-chat-close {
  border: 0;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  border-radius: 8px;
  width: 34px;
  height: 30px;
  font-weight: 700;
  cursor: pointer;
}

.quick-chat-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.16);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.quick-chat-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.quick-chat-avatar-fallback {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  display: none;
}

.quick-chat-log {
  padding: 0.75rem;
  overflow: auto;
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 100%);
  display: grid;
  gap: 0.6rem;
  align-content: start;
}

.quick-chat-message {
  max-width: 88%;
  padding: 0.6rem 0.72rem;
  border-radius: 10px;
  font-size: 0.92rem;
  line-height: 1.4;
}

.quick-chat-message.is-new {
  animation: quickChatMessageIn 0.28s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.quick-chat-message.is-bot {
  justify-self: start;
  background: rgba(10, 1, 68, 0.08);
  border: 1px solid rgba(10, 1, 68, 0.12);
  color: var(--ink-900);
}

.quick-chat-message.is-user {
  justify-self: end;
  background: rgba(255, 41, 41, 0.12);
  border: 1px solid rgba(255, 41, 41, 0.25);
  color: var(--ink-900);
}

.quick-chat-message-cta {
  justify-self: stretch;
  max-width: 100%;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
}

.quick-chat-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
  padding: 0.62rem 0.82rem;
  border-radius: 10px;
  border: 1px solid rgba(10, 124, 53, 0.56);
  background: linear-gradient(160deg, #19ba57, #149645);
  color: #ffffff;
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 20px rgba(20, 150, 69, 0.22);
  transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
}

.quick-chat-whatsapp-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
  box-shadow: 0 14px 22px rgba(20, 150, 69, 0.28);
}

.quick-chat-whatsapp-btn:focus-visible {
  outline: 2px solid rgba(10, 1, 68, 0.55);
  outline-offset: 2px;
}

.quick-chat-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  padding: 0.7rem 0.75rem 0.7rem;
  border-top: 1px solid rgba(10, 1, 68, 0.12);
}

.quick-chat-suggestion {
  border: 1px solid rgba(10, 1, 68, 0.16);
  background: #ffffff;
  color: var(--ink-900);
  border-radius: 999px;
  padding: 0.35rem 0.62rem;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
}

.quick-chat-sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@keyframes chatPanelPop {
  0% {
    opacity: 0;
    transform: translateY(12px) scale(0.94);
  }
  65% {
    opacity: 1;
    transform: translateY(-2px) scale(1.01);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes quickChatMessageIn {
  0% {
    opacity: 0;
    transform: translateY(8px) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

@supports (content-visibility: auto) {
  .section {
    content-visibility: auto;
    contain-intrinsic-size: 1px 920px;
  }

  .footer {
    content-visibility: auto;
    contain-intrinsic-size: 1px 440px;
  }
}

.delay-1 {
  transition-delay: 0.12s;
}

.delay-2 {
  transition-delay: 0.24s;
}

@media (min-width: 981px) {
  .publicos-top {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: start;
  }
}

@media (max-width: 1080px) {
  [id] {
    scroll-margin-top: 250px;
  }

  .header-brand-inner {
    grid-template-columns: auto auto minmax(230px, 1fr) auto;
  }

  .header-slogan {
    grid-column: auto;
    text-align: center;
  }

  .header-main-menu a,
  .header-category-menu a {
    font-size: 0.74rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-btn {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (max-width: 960px) {
  .hero-grid,
  .hero-products-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hero.has-carousel {
    min-height: min(74vh, 610px);
  }

  .hero-copy {
    max-width: 700px;
  }

  .hero-carousel-controls {
    margin-top: 0.95rem;
  }

  .cards,
  .flow-grid,
  .trust-grid,
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .segment-grid,
  .animal-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-local-seo .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-local-seo .trust-card:nth-child(4),
  .section-local-seo .trust-card:nth-child(5) {
    grid-column: auto;
  }

  .section-local-seo .trust-card:nth-child(5) {
    grid-column: 1 / -1;
    max-width: 520px;
    justify-self: center;
  }
}

@media (max-height: 760px) and (min-width: 821px) {
  .hero.has-carousel {
    min-height: min(78vh, 680px);
  }

  .hero-slide-card {
    top: 46%;
  }

  .hero-carousel-controls {
    bottom: 0.8rem;
  }
}

@media (max-width: 820px) {
  body {
    font-size: 16px;
  }

  [id] {
    scroll-margin-top: 220px;
  }

  .header-main-menu,
  .header-category-menu {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    width: 100%;
    justify-content: flex-start;
    scroll-snap-type: x proximity;
    padding: 0.04rem 0.25rem 0.08rem;
  }

  .header-main-menu::-webkit-scrollbar,
  .header-category-menu::-webkit-scrollbar {
    display: none;
  }

  .header-main-menu a,
  .header-category-menu a {
    white-space: nowrap;
    scroll-snap-align: start;
  }

  .header-brand-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 0.42rem;
    padding: 0.48rem 0;
  }

  .header-phone {
    justify-items: center;
    text-align: center;
  }

  .logo img {
    height: 50px;
    max-width: 220px;
  }

  .header-slogan {
    text-align: center;
    font-size: 0.88rem;
  }

  .header-quote-btn {
    width: auto;
    min-height: 38px;
    justify-content: center;
  }

  .header-dropdown-item {
    width: 100%;
    justify-content: center;
  }

  .header-dropdown {
    width: 100%;
  }

  .header-dropdown-menu {
    position: static;
    transform: none;
    min-width: 0;
    width: 100%;
    margin-top: 0.2rem;
    opacity: 1;
    pointer-events: auto;
    display: none;
  }

  .header-dropdown[open] .header-dropdown-menu {
    display: grid;
    transform: none;
  }

  .hero {
    padding-top: 3.8rem;
  }

  .hero-slide-card {
    width: min(720px, calc(100% - 1.4rem));
    gap: 0.52rem;
    top: 49%;
  }

  .hero-banner-title-box {
    padding: 0.78rem 0.82rem;
  }

  .hero-banner-strip {
    font-size: 0.84rem;
  }

  .hero-dot {
    width: 32px;
  }

  .hero-dot.is-active {
    width: 48px;
  }

  .section {
    padding: 4rem 0;
  }

  .cards,
  .flow-grid,
  .trust-grid,
  .product-grid,
  .segment-grid,
  .animal-strip {
    grid-template-columns: 1fr;
  }

  .section-local-seo .trust-grid {
    grid-template-columns: 1fr;
  }

  .section-local-seo .trust-card {
    grid-column: auto;
    max-width: none;
    justify-self: stretch;
  }

  .section-local-seo .trust-card:nth-child(5) {
    grid-column: auto;
    max-width: none;
    justify-self: stretch;
  }

  .local-cities-block {
    padding: 0.9rem;
  }

  .local-city-chips li {
    font-size: 0.8rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-btn {
    justify-self: start;
    width: auto;
  }
}

@media (max-width: 640px) {
  [id] {
    scroll-margin-top: 206px;
  }

  .container {
    width: min(1120px, calc(100% - 1.2rem));
  }

  .logo img {
    height: 44px;
    max-width: 190px;
  }

  .header-main-menu a,
  .header-category-menu a {
    font-size: 0.68rem;
  }

  .header-phone a {
    font-size: 0.84rem;
  }

  .header-slogan {
    font-size: 0.8rem;
  }

  .hero-copy h1 {
    font-size: clamp(1.9rem, 10vw, 2.8rem);
  }

  .hero.has-carousel {
    padding-top: 3.3rem;
    padding-bottom: 3.1rem;
  }

  .hero-slide-card {
    width: min(640px, calc(100% - 1.2rem));
    gap: 0.48rem;
    top: 50%;
  }

  .hero-banner-title {
    font-size: clamp(1.08rem, 6.2vw, 1.62rem);
  }

  .hero-banner-strip {
    width: 100%;
    border-radius: 10px;
    padding: 0.56rem 0.72rem;
    font-size: 0.74rem;
  }

  .hero-banner-support {
    margin-top: 0.2rem;
    font-size: 0.88em;
  }

  .hero-banner-whatsapp {
    width: 100%;
    min-height: 46px;
    padding: 0.68rem 0.82rem;
    font-size: 0.84rem;
  }

  .hero-carousel-controls {
    bottom: 0.72rem;
  }

  .btn {
    width: 100%;
  }

  .product-card,
  .card,
  .trust-card,
  .segment-card,
  .flow-item {
    padding: 1.05rem;
  }

  .product-big-icon {
    border-radius: 12px;
  }

  .animal-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
  }

  .animal-icon svg {
    width: 36px;
    height: 36px;
  }

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

  .copy {
    font-size: 0.8rem;
  }

  .quick-chat {
    right: max(0.65rem, env(safe-area-inset-right));
    bottom: max(0.65rem, env(safe-area-inset-bottom));
  }

  .quick-chat-toggle {
    width: 56px;
    height: 56px;
  }

  .quick-chat-panel {
    width: min(350px, calc(100vw - 1rem));
    max-height: min(68vh, 500px);
  }
}

@media (max-width: 430px) {
  .section-local-seo .trust-grid {
    grid-template-columns: 1fr !important;
    gap: 0.85rem;
  }

  .section-local-seo .trust-card {
    grid-column: auto !important;
    width: 100%;
  }

  .section-local-seo .trust-card h3 {
    line-height: 1.16;
    text-wrap: pretty;
  }

  .section-local-seo {
    padding-bottom: 5.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}


