@font-face {
  font-family: "Avenir LT Pro";
  src: url("fonts/AVENIRLTPROBOOK.OTF") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Avenir LT Pro";
  src: url("fonts/AVENIRLTPROMEDIUM.OTF") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Avenir LT Pro";
  src: url("fonts/avenir-next-lt-pro-bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #f5f5ef;
  --bg-soft: #eef4eb;
  --surface: rgba(255, 255, 255, 0.86);
  --surface-strong: #ffffff;
  --surface-dark: rgba(12, 28, 18, 0.74);
  --text: #18321e;
  --muted: #5d6e61;
  --line: rgba(24, 50, 30, 0.12);
  --line-strong: rgba(255, 255, 255, 0.18);
  --primary: #4fa244;
  --primary-dark: #2d7a34;
  --primary-soft: rgba(79, 162, 68, 0.12);
  --accent: #d9e98c;
  --shadow-lg: 0 28px 80px rgba(13, 33, 17, 0.14);
  --shadow-md: 0 20px 48px rgba(12, 28, 18, 0.1);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --font-sans: "Avenir LT Pro", "Segoe UI", sans-serif;
  --font-display: "Playfair Display", serif;
  --container: min(1180px, calc(100% - 32px));
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  background:
    radial-gradient(
      circle at top left,
      rgba(153, 194, 132, 0.22),
      transparent 34%
    ),
    radial-gradient(
      circle at right 10%,
      rgba(69, 137, 74, 0.12),
      transparent 28%
    ),
    linear-gradient(180deg, #f8f7f1 0%, #eef4eb 34%, #ffffff 100%);
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  border-radius: 999px;
  filter: blur(90px);
  pointer-events: none;
  z-index: -1;
}

body::before {
  width: 260px;
  height: 260px;
  top: 12%;
  left: -60px;
  background: rgba(79, 162, 68, 0.1);
}

body::after {
  width: 320px;
  height: 320px;
  right: -120px;
  bottom: 10%;
  background: rgba(108, 71, 40, 0.08);
}

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

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

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

button {
  border: 0;
  background: transparent;
}

ul {
  list-style: none;
}

h1,
h2,
h3 {
  line-height: 1;
  text-wrap: balance;
}

h1 {
  font-family: var(--font-sans);
  font-size: clamp(3rem, 6vw, 5.9rem);
  font-weight: 700;
  line-height: 0.94;
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 600;
  line-height: 1.02;
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  line-height: 1.15;
}

p {
  font-size: 1.03rem;
  line-height: 1.8;
  color: var(--muted);
}

:focus-visible {
  outline: 3px solid rgba(79, 162, 68, 0.36);
  outline-offset: 4px;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: clamp(72px, 8vw, 112px) 0;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  color: var(--primary-dark);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-kicker-light {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.16);
  color: #f2f8ef;
}

.section-intro {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-intro h2 {
  margin-top: 18px;
  margin-bottom: 18px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(248, 247, 241, 0.72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(24, 50, 30, 0.08);
}

.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  flex-shrink: 0;
}

.brand img {
  width: clamp(148px, 17vw, 200px);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.site-nav a {
  position: relative;
  padding: 10px 14px;
  border-radius: 999px;
  color: #203926;
  font-size: 0.95rem;
  font-weight: 500;
  transition:
    color 0.25s ease,
    background 0.25s ease;
}

.site-nav a:hover {
  background: rgba(79, 162, 68, 0.1);
  color: var(--primary-dark);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

.header-cta {
  padding: 14px 22px;
  background: linear-gradient(135deg, var(--primary) 0%, #6db64b 100%);
  color: #fefefe;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(47, 122, 52, 0.2);
}

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

.hero {
  position: relative;
  min-height: calc(100svh - 84px);
  background:
    linear-gradient(135deg, rgba(7, 19, 11, 0.8), rgba(14, 44, 22, 0.4)),
    url("img/frente.webp") center / cover no-repeat;
  overflow: clip;
}

.hero-video,
.hero-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  object-fit: cover;
}

.hero-backdrop {
  background:
    linear-gradient(
      112deg,
      rgba(10, 24, 14, 0.9) 12%,
      rgba(10, 24, 14, 0.42) 58%,
      rgba(10, 24, 14, 0.68) 100%
    ),
    radial-gradient(
      circle at top right,
      rgba(133, 193, 71, 0.34),
      transparent 25%
    ),
    linear-gradient(180deg, transparent 56%, rgba(10, 24, 14, 0.56) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  min-height: calc(100svh - 84px);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 410px);
  align-items: end;
  gap: clamp(32px, 5vw, 64px);
  padding: clamp(84px, 11vw, 132px) 0 68px;
}

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

.hero-kicker {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  color: #f3f9f0;
}

.hero-copy h1,
.hero-copy p {
  color: #ffffff;
}

.hero-copy h1 {
  max-width: 10.4ch;
  margin-top: 20px;
}

.hero-copy p {
  margin-top: 24px;
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.82);
}

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

.btn {
  min-height: 54px;
  padding: 14px 24px;
  font-weight: 700;
  border: 1px solid transparent;
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary) 0%, #6db64b 100%);
  box-shadow: 0 16px 34px rgba(47, 122, 52, 0.24);
}

.btn-secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
}

.btn-light {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.14);
}

.hero-highlights {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-highlights li {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1 1 220px;
  min-height: 58px;
  padding: 14px 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: #f8fbf7;
  line-height: 1.45;
}

.hero-highlights i {
  color: var(--accent);
}

.hero-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  box-shadow: 0 24px 56px rgba(7, 19, 11, 0.24);
}

.hero-panel img {
  aspect-ratio: 16 / 10;
  width: 100%;
  object-fit: cover;
}

.hero-panel-label {
  position: absolute;
  top: 0;
  left: 0;
  margin: 18px 0 0 18px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(10, 24, 14, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #f2f8ef;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 1;
}

.hero-panel-body,
.hero-panel-list {
  padding-left: 24px;
  padding-right: 24px;
}

.hero-panel-body {
  padding-top: 24px;
}

.hero-panel-body h2 {
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  color: #ffffff;
}

.hero-panel-body p,
.hero-panel-list li {
  color: rgba(255, 255, 255, 0.76);
}

.hero-panel-body p {
  margin-top: 16px;
}

.hero-panel-list {
  padding-top: 22px;
  padding-bottom: 28px;
  display: grid;
  gap: 14px;
}

.hero-panel-list li {
  position: relative;
  padding-left: 18px;
}

.hero-panel-list li::before,
.value-card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, #ffffff 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(320px, 1.05fr);
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
}

.about-media {
  position: relative;
}

.video-frame {
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  background: #dce9db;
  aspect-ratio: 4 / 5;
}

.about-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-badge {
  position: absolute;
  right: -18px;
  bottom: 26px;
  min-width: 180px;
  padding: 18px 20px;
  border-radius: 22px;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.media-badge-label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-copy h2 {
  margin-top: 18px;
  margin-bottom: 22px;
}

.about-copy p + p {
  margin-top: 16px;
}

.about-points {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.about-point {
  padding: 24px 20px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 30px rgba(12, 28, 18, 0.06);
}

.about-point i {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 16px;
  background: var(--primary-soft);
  color: var(--primary-dark);
}

.about-point h3 {
  margin-bottom: 10px;
}

.about-point p {
  font-size: 0.98rem;
  line-height: 1.65;
}

.presence {
  background: linear-gradient(
    180deg,
    rgba(79, 162, 68, 0.07) 0%,
    rgba(255, 255, 255, 0) 100%
  );
}

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

.presence-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: var(--surface-strong);
  box-shadow: var(--shadow-md);
}

.presence-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.presence-card-content {
  padding: 26px 26px 30px;
}

.presence-tag {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(79, 162, 68, 0.12);
  color: var(--primary-dark);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.presence-card h3 {
  margin-bottom: 14px;
}

.values {
  position: relative;
  background:
    radial-gradient(
      circle at top right,
      rgba(133, 193, 71, 0.15),
      transparent 30%
    ),
    linear-gradient(180deg, #173122 0%, #1f4930 100%);
  overflow: hidden;
}

.values::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent 34%),
    radial-gradient(
      circle at left bottom,
      rgba(217, 233, 140, 0.1),
      transparent 28%
    );
  pointer-events: none;
}

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

.values .section-intro h2,
.values .section-intro p {
  color: #ffffff;
}

.values .section-intro p {
  color: rgba(255, 255, 255, 0.72);
}

.values-shell {
  position: relative;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.value-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 52px rgba(7, 19, 11, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

.value-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(9, 24, 14, 0.12) 0%,
    rgba(9, 24, 14, 0.88) 100%
  );
}

.value-card-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.value-card-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding: 28px;
}

.value-card-tag {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 16px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #f6fbf4;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.value-card h3,
.value-card p,
.value-card-list li {
  color: #ffffff;
}

.value-card p,
.value-card-list {
  margin-top: 16px;
}

.value-card p,
.value-card-list li {
  line-height: 1.7;
}

.value-card-list {
  display: grid;
  gap: 10px;
}

.value-card-list li {
  position: relative;
  padding-left: 18px;
}

.values-controls {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}

.values-prev,
.values-next {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #f7fbf6;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease,
    background 0.25s ease;
}

.values-prev:hover,
.values-next:hover {
  background: rgba(255, 255, 255, 0.18);
}

.values-prev:disabled,
.values-next:disabled {
  opacity: 0.4;
  cursor: default;
}

.values-dots {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.values-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  transition:
    transform 0.25s ease,
    background 0.25s ease;
}

.values-dot.active {
  transform: scale(1.15);
  background: #ffffff;
}

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

.partner-card {
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 36px rgba(12, 28, 18, 0.06);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.partner-card img {
  width: 100%;
  max-width: 180px;
  max-height: 92px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.88;
  transition:
    filter 0.25s ease,
    opacity 0.25s ease;
}

.partner-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 42px rgba(12, 28, 18, 0.12);
  border-color: rgba(79, 162, 68, 0.18);
}

.partner-card:hover img {
  filter: grayscale(0);
  opacity: 1;
}

.contact {
  padding-top: 0;
}

.contact-shell {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border-radius: var(--radius-xl);
  background: #112418;
  box-shadow: var(--shadow-lg);
}

.contact-background-media,
.contact-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.contact-background-media {
  object-fit: cover;
}

.contact-overlay {
  background:
    linear-gradient(
      102deg,
      rgba(10, 24, 14, 0.88) 8%,
      rgba(10, 24, 14, 0.48) 58%,
      rgba(10, 24, 14, 0.86) 100%
    ),
    radial-gradient(
      circle at right top,
      rgba(133, 193, 71, 0.18),
      transparent 24%
    );
}

.contact-content {
  position: relative;
  z-index: 1;
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 350px);
  align-items: center;
  gap: 24px;
  padding: clamp(30px, 5vw, 48px);
}

.contact-copy h2,
.contact-copy p {
  color: #ffffff;
}

.contact-copy h2 {
  margin-top: 18px;
  margin-bottom: 20px;
}

.contact-copy p {
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.78);
}

.contact-card {
  display: grid;
  gap: 14px;
  padding: 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
}

.contact-card a {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 86px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(10, 24, 14, 0.34);
  transition:
    transform 0.25s ease,
    background 0.25s ease;
}

.contact-card a:hover {
  transform: translateX(4px);
  background: rgba(10, 24, 14, 0.46);
}

.contact-card i {
  display: inline-flex;
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--accent);
}

.contact-card span,
.contact-card strong {
  display: block;
  color: #ffffff;
}

.contact-card span {
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer {
  padding: 0 0 30px;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 0.7fr));
  gap: 24px;
  padding: 32px;
  border-radius: 28px;
  background: #122519;
  box-shadow: 0 20px 40px rgba(7, 19, 11, 0.12);
}

.footer-brand img {
  width: min(220px, 100%);
}

.footer-brand p,
.footer-links a,
.footer-social a {
  color: rgba(255, 255, 255, 0.72);
}

.footer-brand p {
  max-width: 42ch;
  margin-top: 18px;
}

.footer-links,
.footer-social {
  display: grid;
  align-content: start;
  gap: 14px;
}

.footer-links a,
.footer-social a {
  transition: color 0.25s ease;
}

.footer-links a:hover,
.footer-social a:hover {
  color: #ffffff;
}

.fade-up {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .hero-content {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  }

  .hero-copy h1 {
    max-width: 11ch;
  }
}

@media (max-width: 960px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
    padding: 12px 0;
  }

  .site-nav {
    order: 3;
    width: 100%;
  }

  .hero-content,
  .about-grid,
  .contact-content {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    min-height: auto;
    padding-top: 72px;
    padding-bottom: 56px;
  }

  .hero-panel {
    max-width: 560px;
  }

  .about-media {
    max-width: 620px;
  }

  .about-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .presence-grid,
  .partners-grid,
  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-copy p {
    max-width: none;
  }

  .contact-card {
    max-width: 460px;
  }
}

@media (max-width: 820px) {
  .values-grid {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 12px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .values-grid::-webkit-scrollbar {
    display: none;
  }

  .value-card {
    flex: 0 0 min(82vw, 360px);
    min-height: 500px;
    scroll-snap-align: start;
  }

  .values-controls {
    display: flex;
  }
}

@media (max-width: 680px) {
  :root {
    --container: calc(100% - 28px);
  }

  h1 {
    font-size: clamp(2.5rem, 11vw, 3.8rem);
  }

  h2 {
    font-size: clamp(1.9rem, 8vw, 2.8rem);
  }

  .site-header {
    position: static;
  }

  .header-inner {
    min-height: auto;
  }

  .brand img {
    width: 168px;
  }

  .site-nav {
    gap: 8px;
  }

  .site-nav a {
    padding: 8px 12px;
    font-size: 0.9rem;
  }

  .header-cta {
    display: none;
  }

  .hero-content {
    gap: 0;
    padding-top: 52px;
    padding-bottom: 28px;
  }

  .hero-copy h1 {
    max-width: none;
  }

  .hero-panel,
  .hero-highlights {
    display: none;
  }

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

  .hero-actions .btn {
    flex: 1 1 100%;
  }

  .hero-highlights li {
    flex-basis: 100%;
  }

  .media-badge {
    right: 16px;
    bottom: 16px;
  }

  .about-points,
  .presence-grid,
  .partners-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .presence-card img {
    height: 260px;
  }

  .partner-card {
    min-height: 150px;
  }

  .contact-shell,
  .contact-content {
    min-height: auto;
  }

  .contact-card a {
    align-items: flex-start;
  }

  .footer-inner {
    padding: 26px 22px;
  }
}

@media (max-width: 520px) {
  .section {
    padding: 62px 0;
  }

  .container {
    width: calc(100% - 24px);
  }

  .hero-content {
    padding-top: 46px;
    padding-bottom: 24px;
  }

  .hero-panel-body,
  .hero-panel-list,
  .value-card-content,
  .presence-card-content {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-panel-list {
    padding-bottom: 24px;
  }

  .about-point,
  .contact-card a {
    padding: 16px;
  }

  .value-card {
    flex-basis: 86vw;
    min-height: 470px;
  }

  .contact-content {
    padding: 22px;
  }
}

@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;
    scroll-behavior: auto !important;
  }

  .fade-up {
    opacity: 1;
    transform: none;
  }
}
