@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;600;700&display=swap');

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", Arial, Helvetica, sans-serif;
  background: #050505;
  color: #111111;
  line-height: 1.5;
}

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

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

:root {
  --dark: #0c0c0c;
  --black: #050505;
  --green: #005353;
  --cream: #f5f1e8;
  --white: #ffffff;
  --muted: #6d6a63;
  --line: rgba(12, 12, 12, 0.16);
}

/* HEADER */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  color: var(--white);
}

.header-inner {
  width: min(1180px, 90%);
  margin: 0 auto;
  padding: 34px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  --logo-source-width: 202px;
  --logo-wordmark-offset: 47px;
  --logo-wordmark-width: 150px;
  --logo-wordmark-height: 31px;
  --logo-mark-width: 55px;
}

.logo img {
  height: auto;
}

.logo-mark {
  width: var(--logo-mark-width);
  flex: 0 0 auto;
}

.logo-mark img {
  width: 100%;
}

.logo-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.logo-wordmark {
  width: var(--logo-wordmark-width);
  height: var(--logo-wordmark-height);
  display: block;
  overflow: hidden;
}

.logo-wordmark img {
  width: var(--logo-source-width);
  max-width: none;
  transform: translateX(calc(var(--logo-wordmark-offset) * -1));
}

.logo-tagline {
  display: block;
  font-family: "Manrope", Arial, Helvetica, sans-serif;
  font-size: 9px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.76);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-menu a {
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0;
  opacity: 0.92;
}

.nav-menu a:hover {
  opacity: 1;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  color: var(--white);
  overflow: hidden;
  background: #050505;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(0, 83, 83, 0.82) 0%,
      rgba(12, 12, 12, 0.88) 52%,
      rgba(5, 5, 5, 1) 100%
    ),
    url("assets/fondo.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, 90%);
  min-height: 100vh;
  margin: 0 auto;
  padding: 160px 0 90px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.eyebrow {
  display: inline-block;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0;
  font-weight: 700;
}

.hero h1 {
  max-width: 1050px;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: clamp(58px, 9vw, 118px);
  line-height: 0.94;
  letter-spacing: 0;
  font-weight: 700;
  margin-bottom: 42px;
}

.hero-bottom {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: end;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  padding-top: 32px;
}

.hero-bottom p {
  max-width: 560px;
  font-size: 21px;
  font-weight: 500;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.88);
}

/* PROYECTOS */
.featured-projects {
  position: relative;
  overflow: hidden;
  background: #050505;
  padding: 0 0 112px;
  color: var(--white);
  isolation: isolate;
}

.projects-bg-layer {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #050505;
}

.projects-viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: clamp(460px, 58vw, 720px);
  padding: 42px 0 54px;
  perspective: 1200px;
  contain: layout paint;
}

.project-track {
  position: relative;
  width: min(1180px, 100%);
  height: 100%;
  margin: 0 auto;
  transform-style: preserve-3d;
}

.project-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(280px, 36vw, 520px);
  aspect-ratio: 4 / 5;
  border-radius: 34px;
  overflow: visible;
  opacity: 0;
  pointer-events: none;
  transform-style: preserve-3d;
  transition:
    transform 0.68s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.42s ease;
  will-change: transform, opacity;
  --edge-opacity: 0.78;
  --veil-opacity: 0.18;
  --media-filter: blur(0.8px) saturate(0.72) brightness(0.48) contrast(0.96);
  --image-scale: 1;
}

.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 34px;
  pointer-events: none;
  z-index: 2;
  background:
    radial-gradient(
      ellipse at center,
      rgba(5, 5, 5, 0) 46%,
      rgba(5, 5, 5, 0.2) 70%,
      rgba(5, 5, 5, 0.62) 100%
    ),
    linear-gradient(rgba(5, 5, 5, var(--veil-opacity)), rgba(5, 5, 5, var(--veil-opacity)));
  opacity: var(--edge-opacity);
  transition: opacity 0.42s ease;
}

.project-select {
  appearance: none;
  border: 0;
  background: transparent;
  width: 100%;
  height: 100%;
  display: block;
  padding: 0;
  cursor: pointer;
  border-radius: inherit;
}

.project-select:focus-visible {
  outline: 2px solid rgba(245, 241, 232, 0.88);
  outline-offset: 8px;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 34px;
  box-shadow: none;
  filter: var(--media-filter);
  transform: translateZ(0) scale(var(--image-scale));
  transition:
    filter 0.52s ease,
    transform 0.52s ease;
}

.project-card.active {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(-50%, -50%, 0) rotateY(0deg) scale(1.08);
  z-index: 10;
  --edge-opacity: 0.38;
  --veil-opacity: 0;
  --media-filter: saturate(1.06) brightness(1.03) contrast(1.04);
  --image-scale: 1.012;
}

.project-card.active::after {
  opacity: 0.34;
  box-shadow:
    inset 0 0 0 1px rgba(245, 241, 232, 0.2),
    inset 0 0 36px rgba(245, 241, 232, 0.08);
}

.project-card.left-near {
  opacity: 0.5;
  pointer-events: auto;
  transform: translate3d(calc(-50% - clamp(180px, 25vw, 365px)), calc(-50% + 18px), 0) rotateY(26deg) rotateZ(-1.6deg) scale(0.9);
  z-index: 6;
  --edge-opacity: 0.9;
  --veil-opacity: 0.4;
  --media-filter: blur(1.15px) saturate(0.66) brightness(0.42) contrast(0.92);
  --image-scale: 0.992;
}

.project-card.right-near {
  opacity: 0.5;
  pointer-events: auto;
  transform: translate3d(calc(-50% + clamp(180px, 25vw, 365px)), calc(-50% + 18px), 0) rotateY(-26deg) rotateZ(1.6deg) scale(0.9);
  z-index: 6;
  --edge-opacity: 0.9;
  --veil-opacity: 0.4;
  --media-filter: blur(1.15px) saturate(0.66) brightness(0.42) contrast(0.92);
  --image-scale: 0.992;
}

.project-card.left-far {
  opacity: 0.26;
  pointer-events: auto;
  transform: translate3d(calc(-50% - clamp(330px, 46vw, 665px)), calc(-50% + 44px), 0) rotateY(36deg) rotateZ(-2.4deg) scale(0.74);
  z-index: 4;
  --edge-opacity: 0.96;
  --veil-opacity: 0.54;
  --media-filter: blur(1.6px) saturate(0.56) brightness(0.34) contrast(0.88);
  --image-scale: 0.985;
}

.project-card.right-far {
  opacity: 0.26;
  pointer-events: auto;
  transform: translate3d(calc(-50% + clamp(330px, 46vw, 665px)), calc(-50% + 44px), 0) rotateY(-36deg) rotateZ(2.4deg) scale(0.74);
  z-index: 4;
  --edge-opacity: 0.96;
  --veil-opacity: 0.54;
  --media-filter: blur(1.6px) saturate(0.56) brightness(0.34) contrast(0.88);
  --image-scale: 0.985;
}

.project-card.muted {
  opacity: 0;
  transform: translate3d(-50%, -50%, 0) scale(0.66);
  z-index: 1;
}

.projects-proof {
  width: min(1180px, 90%);
  margin: 8px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.projects-proof-item {
  min-height: 148px;
  padding: 30px 34px 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
}

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

.projects-proof-item strong {
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: clamp(28px, 3.2vw, 46px);
  line-height: 0.98;
  letter-spacing: 0;
  font-weight: 700;
  color: var(--cream);
}

.projects-proof-item span {
  max-width: 310px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.72);
}

/* INTRO */
.intro {
  padding: 115px 0;
  background: var(--cream);
}

.section-grid {
  width: min(1180px, 90%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
}

.intro .text-block {
  padding-top: 44px;
}

.eyebrow {
  color: var(--green);
  margin-bottom: 22px;
}

h2 {
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: clamp(42px, 6vw, 82px);
  line-height: 0.96;
  letter-spacing: 0;
  font-weight: 700;
}

.text-block p {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--dark);
  margin-bottom: 26px;
}

.text-link {
  display: inline-block;
  margin-top: 14px;
  color: var(--green);
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-weight: 700;
  border-bottom: 2px solid var(--green);
}

/* NUMBERS */
.numbers {
  background: var(--green);
  color: var(--white);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.number-card {
  min-height: 320px;
  padding: 52px;
  border-right: 1px solid rgba(255,255,255,0.22);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.number-card:last-child {
  border-right: none;
}

.number-card strong {
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: clamp(68px, 9vw, 120px);
  line-height: 0.85;
  letter-spacing: 0;
  font-weight: 700;
}

.number-card span {
  display: block;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 0;
  margin-bottom: 18px;
}

.number-card p {
  color: rgba(255,255,255,0.82);
  font-size: 17px;
  font-weight: 500;
}

/* STATEMENT */
.statement {
  padding: 125px 0;
  background: var(--dark);
  color: var(--white);
}

.statement-inner {
  width: min(1050px, 90%);
  margin: 0 auto;
}

.statement h2 {
  margin-bottom: 34px;
}

.statement p {
  max-width: 700px;
  font-size: 23px;
  font-weight: 500;
  letter-spacing: 0;
  color: rgba(255,255,255,0.76);
}

/* SERVICES */
.services {
  padding: 115px 0;
  background: var(--cream);
}

.section-heading {
  width: min(1180px, 90%);
  margin: 0 auto 70px;
}

.service-list {
  width: min(1180px, 90%);
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.service-item {
  display: grid;
  grid-template-columns: 90px 0.9fr 1.1fr;
  gap: 40px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}

.service-item span {
  color: var(--green);
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0;
}

.service-item h3 {
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 0.98;
  letter-spacing: 0;
  font-weight: 700;
}

.service-item p {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--muted);
  max-width: 480px;
}

/* PROCESS */
.process {
  padding: 115px 0;
  background: var(--white);
}

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

.process-step {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 30px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.process-step span {
  width: 46px;
  height: 46px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-weight: 700;
}

.process-step h3 {
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 28px;
  letter-spacing: 0;
  margin-bottom: 8px;
}

.process-step p {
  color: var(--muted);
  font-size: 18px;
  font-weight: 500;
}

/* CIERRE + FOOTER */
.closing {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(0, 83, 83, 0.96) 0%, rgba(0, 83, 83, 0.52) 24%, transparent 46%),
    linear-gradient(135deg, #005353 0%, #0c0c0c 52%, #050505 100%);
}

.closing-inner {
  width: min(1180px, 90%);
  margin: 0 auto;
  padding: 150px 0 120px;
  text-align: center;
}

.closing-eyebrow {
  display: inline-block;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0;
  font-weight: 700;
  color: rgba(255,255,255,0.72);
  margin-bottom: 28px;
}

.closing h2 {
  max-width: 960px;
  margin: 0 auto 46px;
  color: var(--white);
  font-size: clamp(52px, 8vw, 110px);
  line-height: 0.92;
  letter-spacing: 0;
}

.closing-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 40px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--dark);
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0;
  transition: transform 0.25s ease, background 0.25s ease;
}

.closing-cta svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.closing-cta:hover {
  background: var(--white);
  transform: translateY(-2px);
}

.footer {
  width: min(1180px, 90%);
  margin: 0 auto;
  padding: 0 0 46px;
}

.footer-line {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.18);
  margin-bottom: 52px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.25fr 1.25fr 0.8fr;
  align-items: start;
  gap: 64px;
  margin-bottom: 52px;
}

.footer-logo {
  width: 60px;
  display: block;
}

.footer-logo img {
  width: 100%;
  height: auto;
}

.footer-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: rgba(255,255,255,0.78);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
  margin-bottom: 18px;
  transition: 0.25s ease;
}

.footer-item:hover {
  color: var(--white);
}

.footer-item svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  fill: rgba(255,255,255,0.86);
  margin-top: 3px;
}

.footer-social {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.footer-instagram {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  transition: 0.25s ease;
}

.footer-instagram svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.footer-instagram:hover {
  background: var(--white);
  color: var(--green);
  transform: translateY(-2px);
}

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.12);
  text-align: center;
}

.footer-bottom p {
  color: rgba(255,255,255,0.55);
  font-size: 13px;
  font-weight: 500;
}

/* WHATSAPP */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 58px;
  height: 58px;
  background: #25D366;
  color: #ffffff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 18px 45px rgba(0,0,0,0.28);
  z-index: 40;
  transition: 0.25s ease;
}

.whatsapp-float svg {
  width: 31px;
  height: 31px;
  fill: currentColor;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
}

/* RESPONSIVE TABLET */
@media (max-width: 980px) {
  .header-inner {
    width: 90%;
  }

  .logo {
    gap: 9px;
    --logo-source-width: 188px;
    --logo-wordmark-offset: 44px;
    --logo-wordmark-width: 140px;
    --logo-wordmark-height: 29px;
    --logo-mark-width: 50px;
  }

  .hero h1 {
    font-size: clamp(58px, 14vw, 110px);
  }

  .hero-bottom {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .intro .text-block {
    padding-top: 0;
  }

  .projects-proof {
    grid-template-columns: 1fr;
  }

  .projects-proof-item {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

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

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

  .number-card {
    min-height: 260px;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.22);
  }

  .service-item {
    grid-template-columns: 60px 1fr;
  }

  .service-item p {
    grid-column: 2;
  }

  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 54px;
  }

  .footer-social {
    justify-content: flex-start;
  }
}

/* RESPONSIVE CELULAR */
@media (max-width: 700px) {
  .site-header {
    position: absolute;
  }

  .header-inner {
    padding: 22px 0;
    flex-direction: column;
    gap: 16px;
  }

  .logo {
    gap: 8px;
    --logo-source-width: 170px;
    --logo-wordmark-offset: 40px;
    --logo-wordmark-width: 126px;
    --logo-wordmark-height: 26px;
    --logo-mark-width: 44px;
  }

  .logo-tagline {
    font-size: 8px;
  }

  .nav-menu {
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-menu a {
    font-size: 13px;
  }

  .hero-inner {
    padding: 170px 0 72px;
    justify-content: center;
  }

  .eyebrow {
    font-size: 11px;
  }

  .hero h1 {
    font-size: clamp(48px, 15vw, 82px);
    margin-bottom: 32px;
  }

  .hero-bottom p {
    font-size: 18px;
  }

  .featured-projects {
    padding: 0 0 78px;
  }

  .projects-viewport {
    height: clamp(380px, 110vw, 540px);
    padding: 22px 0 34px;
  }

  .project-card {
    width: min(72vw, 360px);
    border-radius: 26px;
  }

  .project-card::after {
    border-radius: 26px;
  }

  .project-card img {
    border-radius: 26px;
  }

  .project-card.active {
    transform: translate3d(-50%, -50%, 0) rotateY(0deg) scale(1.04);
    --edge-opacity: 0.42;
  }

  .project-card.left-near {
    opacity: 0.32;
    transform: translate3d(calc(-50% - clamp(130px, 46vw, 230px)), calc(-50% + 26px), 0) rotateY(22deg) rotateZ(-1.4deg) scale(0.74);
    --veil-opacity: 0.54;
    --media-filter: blur(1.45px) saturate(0.58) brightness(0.34) contrast(0.88);
  }

  .project-card.right-near {
    opacity: 0.32;
    transform: translate3d(calc(-50% + clamp(130px, 46vw, 230px)), calc(-50% + 26px), 0) rotateY(-22deg) rotateZ(1.4deg) scale(0.74);
    --veil-opacity: 0.54;
    --media-filter: blur(1.45px) saturate(0.58) brightness(0.34) contrast(0.88);
  }

  .project-card.left-far {
    opacity: 0.12;
    transform: translate3d(calc(-50% - clamp(230px, 78vw, 380px)), calc(-50% + 36px), 0) rotateY(26deg) rotateZ(-2deg) scale(0.54);
    --media-filter: blur(1.8px) saturate(0.5) brightness(0.28) contrast(0.84);
  }

  .project-card.right-far {
    opacity: 0.12;
    transform: translate3d(calc(-50% + clamp(230px, 78vw, 380px)), calc(-50% + 36px), 0) rotateY(-26deg) rotateZ(2deg) scale(0.54);
    --media-filter: blur(1.8px) saturate(0.5) brightness(0.28) contrast(0.84);
  }

  .projects-proof {
    width: min(100% - 36px, 420px);
    margin-top: 0;
  }

  .projects-proof-item {
    padding: 24px 2px 26px;
  }

  .projects-proof-item strong {
    font-size: clamp(28px, 9vw, 40px);
  }

  .projects-proof-item span {
    max-width: 290px;
    font-size: 15px;
  }

  .intro,
  .services,
  .process,
  .statement {
    padding: 85px 0;
  }

  h2 {
    font-size: clamp(42px, 12vw, 64px);
  }

  .text-block p,
  .statement p {
    font-size: 19px;
  }

  .number-card {
    padding: 40px 28px;
  }

  .service-item {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 30px 0;
  }

  .service-item p {
    grid-column: auto;
  }

  .process-step {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .closing {
    background:
      radial-gradient(circle at top right, rgba(0, 83, 83, 0.95) 0%, rgba(0, 83, 83, 0.48) 30%, transparent 58%),
      linear-gradient(145deg, #005353 0%, #0c0c0c 56%, #050505 100%);
  }

  .closing-inner {
    padding: 105px 0 82px;
  }

  .closing h2 {
    font-size: clamp(46px, 14vw, 76px);
  }

  .footer {
    padding-bottom: 34px;
  }

  .footer-line {
    margin-bottom: 42px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 42px;
    margin-bottom: 44px;
  }

  .footer-logo {
    margin: 0 auto;
  }

  .footer-item {
    justify-content: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-instagram {
    margin: 0 auto;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 54px;
  }
}
