:root {
  --white: #ffffff;
  --background: #f6f8fa;
  --background-alt: #eef2f5;

  --text: #18232d;
  --text-soft: #52606d;
  --text-light: #ffffff;

  --primary: #d71920;
  --primary-dark: #b81218;

  --navy: #132936;
  --navy-light: #1d3a49;

  --border: #dce3e8;
  --border-dark: rgba(255, 255, 255, 0.14);

  --max-width: 1120px;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
}

/* --------------------------------------------------
RESET
-------------------------------------------------- */

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

body {
  margin: 0;

  font-family:
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  color: var(--text);
  background: var(--white);

  line-height: 1.6;

  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

button,
a {
  touch-action: manipulation;
}

/* --------------------------------------------------
LAYOUT
-------------------------------------------------- */

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

.section {
  padding-block: 88px;
}

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

/* --------------------------------------------------
TYPOGRAPHY
-------------------------------------------------- */

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

h1,
h2,
h3 {
  letter-spacing: -0.025em;
}

h2 {
  margin-bottom: 18px;

  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.1;
}

h3 {
  margin-bottom: 8px;

  font-size: 1.2rem;
  line-height: 1.25;
}

p {
  color: var(--text-soft);
}

.eyebrow {
  display: block;

  margin-bottom: 16px;

  color: var(--primary);

  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.eyebrow-light {
  color: #ffb5b8;
}

/* --------------------------------------------------
HEADER
-------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;

  background: rgba(255, 255, 255, 0.97);

  border-bottom: 1px solid var(--border);
}

.header-inner {
  min-height: 76px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 28px;
}

.logo {
  flex-shrink: 0;
  display: inline-flex;
}

.site-logo {
  width: auto;
  height: 40px;
}

.main-nav {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.nav-list {
  display: none;

  list-style: none;
  padding: 0;
  margin: 0;

  gap: 28px;
}

.nav-list a {
  color: var(--text-soft);

  text-decoration: none;

  font-size: 0.92rem;
  font-weight: 600;

  transition: color 160ms ease;
}

.nav-list a:hover {
  color: var(--text);
}

.nav-toggle {
  padding: 8px 12px;

  border: 1px solid var(--border);
  border-radius: var(--radius-sm);

  background: var(--white);
  color: var(--text);

  font: inherit;
}

.nav-list.open {
  position: absolute;

  top: 76px;
  left: 20px;
  right: 20px;

  display: flex;
  flex-direction: column;

  gap: 0;

  padding: 10px;

  background: var(--white);

  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.nav-list.open a {
  display: block;
  padding: 12px;
}

.header-cta {
  display: none !important;
}

/* --------------------------------------------------
BUTTONS
-------------------------------------------------- */

.btn {
  min-height: 48px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  padding: 11px 17px;

  border: 1px solid transparent;
  border-radius: var(--radius-sm);

  text-decoration: none;

  font-size: 0.92rem;
  font-weight: 750;

  cursor: pointer;

  transition:
    transform 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease;
}

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

.btn-large {
  min-height: 54px;
  padding-inline: 21px;
}

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

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-secondary {
  background: var(--white);
  color: var(--text);
  border-color: var(--border);
}

.btn-secondary:hover {
  background: var(--background);
}

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

.wa-icon {
  width: 19px;
  height: 19px;
}

/* --------------------------------------------------
HERO
-------------------------------------------------- */

.hero {
  padding-block: 30px 40px;

  background: linear-gradient(
    90deg,
    var(--white) 0%,
    var(--white) 55%,
    var(--background) 100%
  );
}

.hero-inner {
  display: grid;
  align-items: center;

  gap: 30px;
}

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

.hero h1 {
  max-width: 650px;

  margin-bottom: 22px;

  font-size: clamp(2.7rem, 7vw, 4.4rem);
  line-height: 1.02;

  color: var(--text);
}

.hero h1 span {
  color: var(--primary);
}

.lead {
  max-width: 590px;

  margin-bottom: 30px;

  font-size: 1.08rem;
  line-height: 1.7;
}

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

.hero-note {
  margin-top: 20px;

  color: var(--text-soft);

  font-size: 0.85rem;
}

.hero-visual {
  position: relative;
}

.hero-image-wrap {
  overflow: hidden;

  border-radius: var(--radius-lg);

  background: var(--background-alt);
}

.hero-image {
  width: 100%;
  aspect-ratio: 4 / 4.3;

  object-fit: cover;
}

.hero-badge {
  position: absolute;

  left: -24px;
  bottom: 28px;

  display: flex;
  flex-direction: column;

  padding: 15px 18px;

  background: var(--white);

  border: 1px solid var(--border);
  border-radius: var(--radius-md);

  box-shadow: 0 16px 35px rgba(20, 35, 45, 0.12);
}

.hero-badge strong {
  font-size: 0.95rem;
}

.hero-badge span {
  color: var(--text-soft);

  font-size: 0.78rem;
}

/* --------------------------------------------------
PROOF
-------------------------------------------------- */

.proof {
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

.proof-grid {
  display: grid;

  padding-block: 38px;
}

.proof-item {
  display: grid;
  grid-template-columns: 42px 1fr;

  gap: 12px;

  padding: 18px 0;
}

.proof-item + .proof-item {
  border-top: 1px solid var(--border);
}

.proof-number {
  color: var(--primary);

  font-size: 0.75rem;
  font-weight: 800;
}

.proof-item strong {
  display: block;

  margin-bottom: 4px;

  font-size: 0.95rem;
}

.proof-item p {
  margin: 0;

  font-size: 0.88rem;
}

/* --------------------------------------------------
PROBLEM
-------------------------------------------------- */

.problem-section {
  padding-block: 88px;

  background: var(--background-alt);
}

.problem-inner {
  display: grid;
  gap: 32px;
}

.problem-inner h2 {
  max-width: 520px;

  margin: 0;

  font-size: clamp(2.2rem, 5vw, 3.4rem);
}

.problem-content {
  max-width: 580px;
}

.problem-content p {
  margin-bottom: 24px;

  font-size: 1.05rem;
}

/* --------------------------------------------------
SECTION HEADING
-------------------------------------------------- */

.section-heading {
  max-width: 650px;

  margin-bottom: 48px;
}

.section-heading p {
  max-width: 580px;

  margin-bottom: 0;

  font-size: 1rem;
}

/* --------------------------------------------------
SERVICES
-------------------------------------------------- */

.services-grid {
  display: grid;

  gap: 18px;
}

.service-card {
  overflow: hidden;

  display: flex;
  flex-direction: column;

  background: var(--white);

  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.service-card-featured {
  border-color: #ccd6dc;
}

.service-image {
  overflow: hidden;
}

.service-image img {
  width: 100%;
  aspect-ratio: 16 / 10;

  object-fit: cover;

  transition: transform 300ms ease;
}

.service-card:hover .service-image img {
  transform: scale(1.025);
}

.service-content {
  padding: 24px;
}

.service-label {
  display: block;

  margin-bottom: 8px;

  color: var(--primary);

  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.service-content p {
  margin-bottom: 0;

  font-size: 0.92rem;
}

/* --------------------------------------------------
EQUIPMENT
-------------------------------------------------- */

.equipment-section {
  padding-block: 88px;

  background: var(--background);
}

.equipment-inner {
  max-width: var(--max-width);
}

.equipment-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  list-style: none;

  padding: 0;
  margin: 0 0 30px;

  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.equipment-list li {
  position: relative;

  padding: 17px 24px 17px 0;

  border-bottom: 1px solid var(--border);

  color: var(--text);

  font-size: 0.95rem;
  font-weight: 600;

  transition:
    transform 180ms ease,
    color 180ms ease;
}

.equipment-list li:hover {
  transform: translateY(-4px);
  color: var(--primary);
}
.equipment-list li::before {
  content: "";

  display: inline-block;

  width: 6px;
  height: 6px;

  margin-right: 12px;

  border-radius: 50%;

  background: var(--primary);

  vertical-align: middle;

  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}
.equipment-cta {
  width: fit-content;

  display: inline-flex;
  align-items: center;
  gap: 14px;

  padding: 10px 16px 10px 10px;

  color: var(--text);
  text-decoration: none;

  background: var(--white);

  border: 1px solid var(--border);
  border-radius: var(--radius-md);

  box-shadow: 0 4px 14px rgba(20, 35, 45, 0.05);

  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.equipment-cta:hover {
  transform: translateY(-3px);

  border-color: #cbd5db;

  box-shadow: 0 10px 24px rgba(20, 35, 45, 0.1);
}

.equipment-cta-icon {
  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  border-radius: 50%;

  background: #bdbdbd;
  color: #b5b6b5;
}

.equipment-cta-icon .wa-icon {
  width: 21px;
  height: 21px;
}

.equipment-cta-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.equipment-cta-text strong {
  font-size: 0.88rem;
  line-height: 1.3;
}

.equipment-cta-text small {
  color: var(--text-soft);
  font-size: 0.76rem;
}

.equipment-cta-arrow {
  margin-left: 8px;

  color: var(--primary);
  font-size: 1.2rem;

  transition: transform 180ms ease;
}

.equipment-cta:hover .equipment-cta-arrow {
  transform: translateX(4px);
}

@media (max-width: 699px) {
  .equipment-cta {
    width: 100%;
  }
}

.equipment-cta {
  width: fit-content;

  display: inline-flex;
  align-items: center;
  gap: 14px;

  padding: 10px 16px 10px 10px;

  color: var(--text);
  text-decoration: none;

  background: var(--white);

  border: 1px solid var(--border);
  border-radius: var(--radius-md);

  box-shadow: 0 4px 14px rgba(20, 35, 45, 0.05);

  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.equipment-cta:hover {
  transform: translateY(-3px);

  border-color: #cbd5db;

  box-shadow: 0 10px 24px rgba(20, 35, 45, 0.1);
}

.equipment-cta-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.equipment-cta-text strong {
  font-size: 0.88rem;
  line-height: 1.3;
}

.equipment-cta-text small {
  color: var(--text-soft);
  font-size: 0.76rem;
}

.equipment-cta-arrow {
  margin-left: 8px;

  color: var(--primary);
  font-size: 1.2rem;

  transition: transform 180ms ease;
}

.equipment-cta:hover .equipment-cta-arrow {
  transform: translateX(4px);
}

@media (max-width: 699px) {
  .equipment-cta {
    width: 100%;
  }
}
.equipment-list li:hover::before {
  transform: scale(1.5);

  box-shadow: 0 0 0 4px rgba(215, 25, 32, 0.1);
}

@media (prefers-reduced-motion: reduce) {
  .equipment-list li {
    transition: none;
  }

  .equipment-list li:hover {
    transform: none;
    animation: none;
  }
}

.equipment-grid li {
  padding: 18px 14px;

  background: var(--background);

  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);

  font-weight: 650;
}

.text-link {
  width: fit-content;

  display: inline-flex;

  gap: 10px;

  background: transparent !important;
  color: var(--primary);

  border: 0 !important;
  box-shadow: none !important;

  padding-inline: 0;
}

.cardios-section {
  padding-block: 100px;
  background: var(--white);
}

.cardios-layout {
  display: grid;
  gap: 48px;
  align-items: center;
}

.cardios-image {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.cardios-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.cardios-content {
  max-width: 560px;
}

.cardios-content h2 {
  margin-bottom: 20px;
}

.cardios-content p {
  margin-bottom: 28px;
  font-size: 1rem;
}

@media (min-width: 900px) {
  .cardios-layout {
    grid-template-columns: 1fr 1fr;
    gap: 90px;
  }

  .cardios-content {
    order: 2;
  }

  .cardios-image {
    order: 1;
  }
}

/* --------------------------------------------------
CONTRACT
-------------------------------------------------- */

.contract-section {
  padding-block: 80px;

  background: var(--white);
}

.contract-box {
  overflow: hidden;

  display: grid;

  background: var(--navy);

  color: var(--white);

  border-radius: var(--radius-lg);
}

.contract-copy {
  padding: 42px 30px;
}

.contract-copy h2 {
  max-width: 620px;

  margin-bottom: 20px;

  font-size: clamp(2rem, 4vw, 3.1rem);
}

.contract-copy p {
  max-width: 600px;

  margin-bottom: 0;

  color: rgba(255, 255, 255, 0.74);
}

.contract-details {
  padding: 34px 30px;

  background: var(--navy-light);
}

.contract-details ul {
  list-style: none;

  padding: 0;
  margin: 0 0 30px;
}

.contract-details li {
  padding-block: 10px;

  border-bottom: 1px solid var(--border-dark);

  color: rgba(255, 255, 255, 0.85);
}

.contract-details li::before {
  content: "✓";

  margin-right: 10px;

  color: #ffb5b8;
}

.contract-price {
  margin-bottom: 26px;
}

.contract-price span,
.contract-price small {
  display: block;

  color: rgba(255, 255, 255, 0.6);
}

.contract-price strong {
  display: block;

  margin: 2px 0;

  font-size: 2rem;
}

.contract-price strong span {
  display: inline;

  font-size: 1rem;
}

/* --------------------------------------------------
HOW
-------------------------------------------------- */

.how-grid {
  display: grid;

  list-style: none;

  padding: 0;
  margin: 0;

  border-top: 1px solid var(--border);
}

.how-grid li {
  padding: 28px 0;

  border-bottom: 1px solid var(--border);
}

.step-number {
  display: block;

  margin-bottom: 18px;

  color: var(--primary);

  font-size: 0.75rem;
  font-weight: 800;
}

.how-grid h3 {
  margin-bottom: 8px;
}

.how-grid p {
  max-width: 280px;

  margin-bottom: 0;

  font-size: 0.9rem;
}

/* --------------------------------------------------
WHY
-------------------------------------------------- */
.why-section {
  padding-block: 100px;

  background: var(--background);
}

.why-layout {
  display: grid;
  gap: 50px;
}

.why-image {
  overflow: hidden;

  border-radius: var(--radius-lg);
}

.why-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;

  object-fit: cover;
}

.why-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.why-content .section-heading {
  margin-bottom: 30px;
}

.why-content .section-heading h2 {
  margin-bottom: 18px;
}

.why-list {
  border-top: 1px solid var(--border);
}

.why-list article {
  display: grid;
  grid-template-columns: 40px 1fr;

  gap: 12px;

  padding: 20px 0;

  border-bottom: 1px solid var(--border);
}

.why-list article > span {
  color: var(--primary);

  font-size: 0.72rem;
  font-weight: 800;
}

.why-list h3 {
  margin-bottom: 5px;

  font-size: 1rem;
}

.why-list p {
  margin: 0;

  font-size: 0.88rem;
}
/* --------------------------------------------------
FAQ
-------------------------------------------------- */

.faq-container {
  max-width: 850px;
}

.faq-list {
  border-top: 1px solid var(--border);
}

.faq-list details {
  border-bottom: 1px solid var(--border);
}

.faq-list summary {
  position: relative;

  padding: 22px 42px 22px 0;

  cursor: pointer;

  list-style: none;

  font-weight: 700;
}

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

.faq-list summary::after {
  content: "+";

  position: absolute;
  right: 4px;
  top: 50%;

  transform: translateY(-50%);

  color: var(--primary);

  font-size: 1.4rem;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 700px;

  padding: 0 40px 22px 0;
  margin: 0;

  font-size: 0.92rem;
}

/* --------------------------------------------------
CONTACT
-------------------------------------------------- */

.contact-section {
  padding-block: 100px;

  background: var(--primary);

  color: var(--white);

  text-align: center;
}

.contact-inner {
  max-width: 780px;
}

.contact-section h2 {
  max-width: 720px;

  margin-inline: auto;
  margin-bottom: 20px;

  font-size: clamp(2.2rem, 5vw, 3.5rem);
}

.contact-section p {
  max-width: 580px;

  margin-inline: auto;
  margin-bottom: 30px;

  color: rgba(255, 255, 255, 0.82);
}

/* --------------------------------------------------
FOOTER
-------------------------------------------------- */

.site-footer {
  padding-block: 30px;

  background: var(--navy);

  color: var(--white);
}

.footer-inner {
  display: flex;
  flex-direction: column;

  gap: 20px;

  align-items: flex-start;
}

.site-footer strong {
  display: block;

  margin-bottom: 4px;
}

.site-footer p {
  margin: 0;

  color: rgba(255, 255, 255, 0.6);

  font-size: 0.85rem;
}

/* --------------------------------------------------
ACCESSIBILITY
-------------------------------------------------- */

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(215, 25, 32, 0.35);
  outline-offset: 4px;
}

/* --------------------------------------------------
TABLET / DESKTOP
-------------------------------------------------- */

@media (min-width: 700px) {
  .nav-toggle {
    display: none;
  }

  .nav-list {
    display: flex;
  }

  .header-cta {
    display: inline-flex !important;
  }

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

  .proof-item {
    padding: 12px 28px;
  }

  .proof-item + .proof-item {
    border-top: 0;
    border-left: 1px solid var(--border);
  }

  .problem-inner {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
  }

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

  .service-card-featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
  }

  .service-card-featured .service-image img {
    height: 100%;
    aspect-ratio: auto;
  }

  .equipment-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .contract-box {
    grid-template-columns: 1.35fr 0.65fr;
  }

  .contract-copy {
    padding: 60px;
  }

  .contract-details {
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    padding: 50px 38px;
  }
  .how-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .how-grid li {
    min-height: 240px;

    padding: 28px;

    border-bottom: 0;
    border-right: 1px solid var(--border);
  }

  .how-grid li:last-child {
    border-right: 0;
  }

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

  .why-grid article {
    min-height: 220px;
  }

  .footer-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 1000px) {

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) 470px;
  }

  .hero-image {
    aspect-ratio: 0.92;
  }

  .hero-badge {
    left: -35px;
  }

  .section {
    padding-block: 110px;
  }

  .problem-section,
  .equipment-section,
  .why-section {
    padding-block: 110px;
  }
}

.equipment-list {
  display: grid;
  grid-template-columns: 1fr 1fr;

  list-style: none;

  padding: 0;
  margin: 0 0 34px;

  border-top: 1px solid var(--border);
}

.equipment-list li {
  position: relative;

  padding: 17px 24px 17px 0;

  border-bottom: 1px solid var(--border);

  color: var(--text);

  font-size: 0.95rem;
  font-weight: 600;
}
.equipment-list li::before {
  content: "";
  display: inline-block;

  width: 6px;
  height: 6px;
  margin-right: 12px;

  border-radius: 50%;
  background: var(--primary);
  vertical-align: middle;
}
.equipment-list li::after {
  position: absolute;
  right: 12px;

  color: var(--primary);
  font-weight: 400;
}

@media (min-width: 900px) {
  .equipment-list {
    grid-template-columns: repeat(3, 1fr);
    column-gap: 40px;
  }
}
/* --------------------------------------------------
SMALL MOBILE
-------------------------------------------------- */

@media (max-width: 699px) {
  .hero-ctas {
    flex-direction: column;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .hero-badge {
    left: 12px;
    bottom: 12px;
  }

  .contract-details .btn {
    width: 100%;
  }

  .contact-section .btn {
    width: 100%;
  }
}
.site-footer {
  padding-block: 56px 24px;
  background: var(--navy);
  color: var(--white);
}

.footer-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;

  text-align: center;
}

.footer-company {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.footer-logo {
  width: auto;
  height: auto;
}

.footer-company address {
  max-width: 380px;

  color: rgba(255, 255, 255, 0.62);

  font-size: 0.85rem;
  font-style: normal;
  line-height: 1.7;
}

/* WhatsApp */

.footer-whatsapp {
  min-width: 280px;

  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;

  gap: 14px;

  padding: 14px 16px;

  color: var(--white);
  text-decoration: none;

  background: var(--navy-light);

  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);

  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.footer-whatsapp:hover {
  transform: translateY(-2px);

  background: #244655;

  border-color: rgba(255, 255, 255, 0.2);
}

.footer-whatsapp-icon {
  width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #25d366;
}

.footer-whatsapp-icon .wa-icon {
  width: 24px;
  height: 24px;
}

.footer-whatsapp-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-whatsapp-content strong {
  font-size: 0.92rem;
}

.footer-whatsapp-content span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
}

.footer-whatsapp-arrow {
  color: rgba(255, 255, 255, 0.55);
  font-size: 1.3rem;

  transition: transform 180ms ease;
}

.footer-whatsapp:hover .footer-whatsapp-arrow {
  transform: translateX(3px);
}

/* Copyright */

.footer-bottom {
  margin-top: 48px;
  padding-top: 22px;

  border-top: 1px solid var(--border-dark);

  text-align: center;
}

.footer-bottom p {
  margin: 0;

  color: rgba(255, 255, 255, 0.45);

  font-size: 0.78rem;
}

@media (max-width: 699px) {
  .footer-bottom {
    margin-top: 36px;
  }
}
