:root {
  --primary: #0d1b4b;
  --primary-2: #1a3a8f;
  --accent: #f5c518;
  --white: #ffffff;
  --muted: #f4f6fa;
  --text: #555e6e;
  --heading: #0d1b4b;
  --whatsapp: #25d366;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-strong: 0 20px 46px rgba(13, 27, 75, 0.16);
  --radius: 4px;
  --header-height: 122px;
  --font-body: "Inter", sans-serif;
  --font-heading: "Barlow Condensed", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  background: var(--white);
}

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

picture {
  display: block;
}

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

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 10000;
  padding: 10px 14px;
  background: var(--accent);
  color: var(--primary);
  border-radius: var(--radius);
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(1160px, calc(100% - 32px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
}

.top-bar {
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
}

.top-bar__inner {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.top-bar a,
.top-bar span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.top-bar i {
  color: var(--accent);
}

.top-bar__social {
  display: flex;
  gap: 14px;
}

.main-nav {
  background: var(--white);
  box-shadow: 0 2px 18px rgba(13, 27, 75, 0.08);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.main-nav.scrolled {
  box-shadow: 0 8px 28px rgba(13, 27, 75, 0.16);
}

.nav-shell {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img {
  width: 198px;
  height: auto;
  transform-origin: left center;
  transition: width 0.25s ease, transform 0.25s ease;
}

.trust-strip {
  background: var(--primary);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.trust-grid div {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.035);
  font-weight: 600;
  text-align: center;
}

.trust-grid i {
  color: var(--accent);
  font-size: 18px;
}

.main-nav.scrolled .brand img {
  width: 178px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--primary);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.15;
  text-transform: uppercase;
}

.nav-menu > a:not(.btn) {
  position: relative;
  padding-block: 8px;
  white-space: nowrap;
}

.nav-menu > a:not(.btn)::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--accent);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav-menu > a:not(.btn):hover::after {
  transform: scaleX(1);
}

.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius);
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.btn {
  position: relative;
  overflow: hidden;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 20px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.btn::after {
  position: absolute;
  inset: -35% auto -35% -70%;
  width: 52%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  content: "";
  transform: skewX(-18deg);
  transition: left 0.55s ease;
}

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

.btn:hover::after {
  left: 120%;
}

.btn--small {
  min-height: 40px;
  padding: 10px 14px;
  font-size: 12px;
  white-space: nowrap;
}

.btn--large {
  min-height: 54px;
  padding: 15px 24px;
}

.btn--accent {
  background: var(--accent);
  color: var(--primary);
  box-shadow: 0 10px 22px rgba(245, 197, 24, 0.2);
}

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

.btn--outline {
  border-color: rgba(255, 255, 255, 0.85);
  color: var(--white);
}

.btn--outline:hover {
  background: var(--white);
  color: var(--primary);
}

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

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  padding-top: var(--header-height);
}

.hero__slides,
.hero__slide {
  position: absolute;
  inset: 0;
}

.hero__slides {
  overflow: hidden;
}

.hero__slide {
  background-position: center;
  background-size: cover;
  content: "";
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 1s ease, transform 6.8s ease;
}

.hero__slide.is-active {
  opacity: 1;
  transform: scale(1.09);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 38%, rgba(245, 197, 24, 0.12), transparent 26%),
    linear-gradient(90deg, rgba(13, 27, 75, 0.9), rgba(13, 27, 75, 0.58)),
    rgba(13, 27, 75, 0.25);
}

.hero__overlay::after {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  content: "";
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.65), transparent 70%);
  opacity: 0.55;
}

.hero__content {
  position: relative;
  width: min(900px, calc(100% - 32px));
  text-align: center;
  z-index: 2;
}

.hero__content.is-changing #hero-kicker,
.hero__content.is-changing #hero-title,
.hero__content.is-changing #hero-text {
  opacity: 0;
  transform: translateY(10px);
}

#hero-kicker,
#hero-title,
#hero-text {
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.hero-reveal {
  opacity: 0;
  transform: translateY(22px);
  animation: heroIn 0.85s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}

.hero-reveal:nth-child(2) {
  animation-delay: 0.13s;
}

.hero-reveal:nth-child(3) {
  animation-delay: 0.26s;
}

.hero-reveal:nth-child(4) {
  animation-delay: 0.39s;
}

.badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 18px;
  padding: 7px 12px;
  background: var(--accent);
  color: var(--primary);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--heading);
  font-family: var(--font-heading);
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 860px;
  margin: 0 auto;
  color: var(--white);
  font-size: clamp(48px, 8vw, 92px);
  font-weight: 700;
  text-transform: uppercase;
}

.hero p {
  max-width: 700px;
  margin: 22px auto 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}

.hero__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.hero__dots button {
  width: 34px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.hero__dots button.is-active {
  width: 54px;
  background: var(--accent);
}

.section {
  padding: 96px 0;
}

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

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
  align-items: center;
  gap: 56px;
}

.split h2,
.section-heading h2 {
  margin-bottom: 20px;
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 700;
}

.split p,
.section-heading p {
  margin: 0 0 18px;
}

.image-frame {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-frame::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  content: "";
  pointer-events: none;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.75s ease;
}

.image-frame picture {
  width: 100%;
  aspect-ratio: 16 / 10;
  display: block;
}

.image-frame:hover img {
  transform: scale(1.045);
}

.values-grid,
.features-grid,
.product-grid,
.stats-grid,
.footer-grid,
.footer-strip__grid,
.process-steps {
  display: grid;
  gap: 24px;
}

.values-grid {
  grid-template-columns: repeat(3, 1fr);
}

.info-card,
.feature,
.product-card,
.contact-form,
.contact-list a,
.contact-list div,
.faq-item {
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.info-card,
.feature {
  padding: 30px;
  border-top: 3px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.info-card:hover,
.feature:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-strong);
  transform: translateY(-6px);
}

.info-card i,
.feature i {
  width: 52px;
  height: 52px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 20px;
  border: 2px solid var(--accent);
  color: var(--accent);
  border-radius: var(--radius);
  font-size: 22px;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.info-card:hover i,
.feature:hover i {
  background: var(--accent);
  color: var(--primary);
  transform: rotate(-3deg) scale(1.04);
}

.info-card h3,
.feature h3,
.product-card h3,
.footer h3 {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 600;
}

.info-card p,
.feature p,
.product-card p {
  margin: 0;
}

.stats {
  padding: 54px 0;
  background: var(--primary);
  color: var(--white);
  background-image:
    linear-gradient(90deg, rgba(245, 197, 24, 0.08), transparent 35%, rgba(245, 197, 24, 0.07)),
    linear-gradient(135deg, #0d1b4b, #081337);
}

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

.stat {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 132px;
  text-align: center;
}

.stat::before {
  position: absolute;
  top: 8px;
  width: 42px;
  height: 3px;
  background: var(--accent);
  content: "";
  transform: scaleX(0.75);
  transition: transform 0.3s ease;
}

.stat:hover::before {
  transform: scaleX(1.25);
}

.stat strong {
  color: var(--accent);
  font-family: var(--font-heading);
  font-size: clamp(44px, 5vw, 64px);
  font-weight: 700;
  line-height: 1;
}

.stat span {
  max-width: 160px;
  margin-top: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  text-transform: uppercase;
}

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

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

.product-card {
  overflow: hidden;
  transition: box-shadow 0.28s ease, transform 0.28s ease;
}

.product-card:hover {
  box-shadow: var(--shadow-strong);
  transform: translateY(-8px);
}

.product-card__media {
  position: relative;
  overflow: hidden;
}

.product-card__media picture,
.product-card__media img {
  width: 100%;
}

.product-card__media picture {
  aspect-ratio: 1 / 1;
  display: block;
}

.product-card__media img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease, filter 0.7s ease;
}

.product-card:hover .product-card__media img {
  filter: saturate(1.06) contrast(1.03);
  transform: scale(1.06);
}

.product-card__media span {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 7px 10px;
  background: rgba(13, 27, 75, 0.92);
  color: var(--white);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.product-card > div:not(.product-card__media) {
  padding: 28px;
}

.product-card .btn {
  margin-top: 22px;
}

.features-grid {
  grid-template-columns: repeat(3, 1fr);
}

.process {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 24%, rgba(13, 27, 75, 0.06), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8f9fc 100%);
}

.process-layout {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  align-items: center;
  gap: 42px;
}

.process-steps {
  grid-template-columns: repeat(2, 1fr);
}

.process-step {
  position: relative;
  min-height: 234px;
  padding: 28px;
  background: var(--white);
  border: 1px solid rgba(13, 27, 75, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.process-step:hover {
  border-color: rgba(245, 197, 24, 0.72);
  box-shadow: var(--shadow-strong);
  transform: translateY(-6px);
}

.process-step span {
  position: absolute;
  top: 22px;
  right: 24px;
  color: rgba(13, 27, 75, 0.1);
  font-family: var(--font-heading);
  font-size: 46px;
  font-weight: 700;
  line-height: 1;
}

.process-step i {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  background: var(--primary);
  color: var(--accent);
  border-radius: var(--radius);
  font-size: 21px;
}

.process-step h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.process-step p {
  margin: 0;
}

.process-gallery {
  position: relative;
  min-height: 620px;
  align-self: stretch;
}

.process-photo {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 8px solid var(--white);
  box-shadow: 0 22px 56px rgba(13, 27, 75, 0.18);
  isolation: isolate;
  transition: box-shadow 0.28s ease, transform 0.28s ease, z-index 0.28s ease;
}

.process-photo--large {
  top: 54px;
  left: 0;
  z-index: 2;
  width: 64%;
  min-height: 360px;
  transform: rotate(-1.4deg);
}

.process-photo--top {
  top: 0;
  right: 0;
  z-index: 3;
  width: 48%;
  min-height: 250px;
  transform: rotate(1.7deg);
}

.process-photo--middle {
  right: 10%;
  bottom: 126px;
  z-index: 4;
  width: 44%;
  min-height: 230px;
  transform: rotate(-0.8deg);
}

.process-photo--bottom {
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 58%;
  min-height: 270px;
  transform: rotate(1.1deg);
}

.process-photo:hover {
  z-index: 8;
  box-shadow: 0 30px 68px rgba(13, 27, 75, 0.26);
}

.process-photo--large:hover {
  transform: translateY(-8px) rotate(-1.4deg);
}

.process-photo--top:hover {
  transform: translateY(-8px) rotate(1.7deg);
}

.process-photo--middle:hover {
  transform: translateY(-8px) rotate(-0.8deg);
}

.process-photo--bottom:hover {
  transform: translateY(-8px) rotate(1.1deg);
}

.process-photo picture,
.process-photo img {
  width: 100%;
  height: 100%;
  min-height: inherit;
}

.process-photo img {
  object-fit: cover;
  transition: transform 0.65s ease, filter 0.65s ease;
}

.process-photo:hover img {
  filter: saturate(1.05) contrast(1.04);
  transform: scale(1.06);
}

.process-photo::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(13, 27, 75, 0.06), rgba(13, 27, 75, 0.18)),
    linear-gradient(90deg, rgba(13, 27, 75, 0.18), transparent 52%);
  content: "";
  z-index: 1;
}

.representative {
  position: relative;
  overflow: hidden;
  background: var(--primary);
  color: rgba(255, 255, 255, 0.82);
}

.representative::before {
  position: absolute;
  inset: 0 0 0 auto;
  width: 66%;
  background: url("assets/img/representante.webp") right center / cover no-repeat;
  content: "";
  z-index: 0;
}

.representative::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      #0d1b4b 0%,
      #0d1b4b 43%,
      rgba(13, 27, 75, 0.94) 52%,
      rgba(13, 27, 75, 0.62) 68%,
      rgba(13, 27, 75, 0.18) 86%,
      rgba(13, 27, 75, 0.08) 100%);
  content: "";
  z-index: 0;
}

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

.representative .split {
  min-height: 610px;
  grid-template-columns: minmax(0, 0.82fr) minmax(390px, 0.72fr);
}

.representative .split > div {
  max-width: 820px;
}

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

.check-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 36px;
  row-gap: 10px;
  margin: 30px 0 34px;
}

.check-columns ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-columns li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.86);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  text-wrap: pretty;
}

.check-columns li::before {
  position: absolute;
  top: 0.18em;
  left: 0;
  color: var(--accent);
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
}

.faq-list {
  max-width: 900px;
  margin-inline: auto;
}

.faq-item {
  overflow: hidden;
  margin-bottom: 12px;
  border-left: 0 solid var(--accent);
}

.faq-item.open {
  border-left-width: 4px;
  box-shadow: var(--shadow-strong);
}

.faq-question {
  width: 100%;
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  border: 0;
  background: var(--white);
  color: var(--primary);
  font-family: var(--font-body);
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.faq-question i {
  flex: 0 0 auto;
  color: var(--accent);
  transition: transform 0.2s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.34s ease;
}

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

.faq-item.open .faq-question i {
  transform: rotate(180deg);
}

.faq-item.open .faq-answer {
  max-height: 180px;
}

.contact .split {
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin: 26px 0;
}

.contact-list a,
.contact-list div {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  color: var(--text);
}

.contact-list i {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: var(--primary);
  color: var(--accent);
  border-radius: var(--radius);
}

.contact-list strong {
  display: block;
  color: var(--primary);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

.social-row {
  display: flex;
  gap: 12px;
  margin-bottom: 26px;
}

.social-row a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius);
  font-size: 18px;
  line-height: 1;
  text-align: center;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.social-row a i {
  width: 100%;
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.social-row a:hover {
  background: var(--accent);
  color: var(--primary);
  transform: translateY(-3px);
}

.social-row--light a {
  background: rgba(255, 255, 255, 0.1);
  color: var(--accent);
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 30px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid #d9deea;
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--primary);
  background: var(--white);
  font-weight: 500;
  outline: none;
}

.contact-form input.is-invalid,
.contact-form select.is-invalid,
.contact-form textarea.is-invalid {
  border-color: #d93025;
  box-shadow: 0 0 0 3px rgba(217, 48, 37, 0.12);
}

.form-feedback {
  min-height: 20px;
  margin: 0;
  color: #b42318;
  font-size: 13px;
  font-weight: 600;
}

.contact-form textarea {
  min-height: 124px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--primary-2);
  box-shadow: 0 0 0 3px rgba(26, 58, 143, 0.12);
}

.footer {
  background: var(--primary);
  color: rgba(255, 255, 255, 0.78);
}

.footer-strip {
  background: var(--accent);
  color: var(--primary);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
}

.footer-strip__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  min-height: 58px;
  gap: 18px;
}

.footer-strip span {
  display: flex;
  align-items: center;
  gap: 9px;
  line-height: 1.35;
}

.footer-strip span:first-child {
  justify-self: start;
  text-align: left;
}

.footer-strip span:nth-child(2) {
  justify-self: center;
  text-align: center;
}

.footer-strip span:last-child {
  justify-self: end;
  text-align: right;
}

.footer-grid {
  grid-template-columns: 1.4fr 0.8fr 1fr 1fr;
  padding: 62px 0;
}

.footer h3 {
  color: var(--white);
  font-size: 16px;
}

.footer img {
  width: 220px;
  height: auto;
  margin-bottom: 14px;
}

.footer a {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.78);
}

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

.footer p {
  margin: 0 0 14px;
}

.copyright {
  padding: 18px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
  text-align: center;
}

.whatsapp-float {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--whatsapp);
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  color: var(--white);
  font-size: 30px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float::before {
  position: absolute;
  inset: -8px;
  border: 2px solid rgba(37, 211, 102, 0.42);
  border-radius: 50%;
  content: "";
  animation: whatsappPulse 1.9s ease-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.7);
}

@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroZoom {
  from {
    transform: scale(1.02);
  }
  to {
    transform: scale(1.09);
  }
}

@keyframes whatsappPulse {
  0% {
    opacity: 0.75;
    transform: scale(0.86);
  }
  80%,
  100% {
    opacity: 0;
    transform: scale(1.28);
  }
}

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

.reveal-card.reveal-ready {
  opacity: 1;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

.reveal-card:nth-child(2) {
  transition-delay: 0.08s;
}

.reveal-card:nth-child(3) {
  transition-delay: 0.16s;
}

.reveal-card:nth-child(4) {
  transition-delay: 0.24s;
}

.reveal-card:nth-child(5) {
  transition-delay: 0.08s;
}

.reveal-card:nth-child(6) {
  transition-delay: 0.16s;
}

@media (max-width: 1120px) {
  .nav-menu {
    gap: 14px;
    font-size: 11px;
  }

  .brand img {
    width: 188px;
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 80px;
  }

  .top-bar {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 78px;
    right: 16px;
    left: 16px;
    display: grid;
    gap: 0;
    padding: 10px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(13, 27, 75, 0.08);
    border-radius: var(--radius);
    box-shadow: 0 18px 44px rgba(13, 27, 75, 0.24);
    backdrop-filter: blur(10px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav-menu.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-menu > a {
    padding: 13px 12px;
  }

  .nav-menu .btn {
    margin-top: 8px;
  }

  .split,
  .values-grid,
  .features-grid,
  .process-layout,
  .footer-grid,
  .footer-strip__grid {
    grid-template-columns: 1fr;
  }

  .stats-grid,
  .product-grid,
  .process-steps,
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-gallery {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .process-photo,
  .process-photo--large,
  .process-photo--top,
  .process-photo--middle,
  .process-photo--bottom {
    position: relative;
    inset: auto;
    width: auto;
    min-height: 240px;
    transform: none;
  }

  .process-photo:hover,
  .process-photo--large:hover,
  .process-photo--top:hover,
  .process-photo--middle:hover,
  .process-photo--bottom:hover {
    transform: translateY(-4px);
  }

  .section {
    padding: 72px 0;
  }

  .representative::before {
    width: 100%;
    opacity: 0.28;
    background-position: center bottom;
    background-size: cover;
  }

  .representative::after {
    background:
      linear-gradient(180deg,
        #0d1b4b 0%,
        #0d1b4b 58%,
        rgba(13, 27, 75, 0.9) 74%,
        rgba(13, 27, 75, 0.68) 100%);
  }

  .representative .split {
    min-height: auto;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 1160px);
  }

  .nav-shell {
    min-height: 76px;
  }

  .brand img {
    width: 172px;
  }

  .hero {
    min-height: 760px;
    align-items: center;
  }

  .hero__actions,
  .check-columns,
  .stats-grid,
  .product-grid,
  .process-steps,
  .process-gallery,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid div {
    min-height: 62px;
    justify-content: flex-start;
    text-align: left;
  }

  .process-photo,
  .process-photo--large,
  .process-photo--top,
  .process-photo--middle,
  .process-photo--bottom {
    min-height: 230px;
  }

  .hero__actions {
    display: grid;
  }

  .hero__actions .btn,
  .contact .btn,
  .representative .btn {
    width: 100%;
  }

  .stats-grid {
    display: grid;
  }

  .stat {
    min-height: 116px;
  }

  .product-card > div:not(.product-card__media),
  .contact-form,
  .info-card,
  .feature,
  .process-step {
    padding: 22px;
  }

  .contact-list a,
  .contact-list div {
    align-items: flex-start;
  }

  .footer-grid {
    gap: 34px;
  }

  .footer-strip__grid {
    gap: 10px;
    padding: 16px 0;
  }

  .footer-strip span,
  .footer-strip span:first-child,
  .footer-strip span:nth-child(2),
  .footer-strip span:last-child {
    justify-self: start;
    text-align: left;
  }

  .whatsapp-float {
    right: 18px;
    bottom: 18px;
    width: 56px;
    height: 56px;
  }
}

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

  .reveal-card,
  .hero-reveal {
    opacity: 1;
    transform: none;
  }
}
