:root {
  --container-max-width: 101.25rem;
  --container-padding: 2.5rem;
  --section-content-width: 80%;

  --radius-pill: 999px;

  --accent:     #fe2d75;
  --bg:         #181616;
  --cream:      #f7f5d4;
  --ease:       cubic-bezier(0.16, 1, 0.3, 1);

  --section-y:  120px;
}

/* =========================================================
   RESET / BASE
========================================================= */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-user-select: none;
  user-select: none;
}

html { scroll-behavior: auto; }



body {
  color: var(--cream);
  background: var(--bg);
  font-family: "Inter", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: geometricPrecision;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }

a { text-decoration: none; }

.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* =========================================================
   LENIS
========================================================= */

.lenis.lenis-smooth  { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

/* =========================================================
   SECTION SPACING
========================================================= */

.como-funciona,
.portfolio-section,
.section-services,
.section-testimonials,
.section-cta {
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
}

/* =========================================================
   SECTION LABEL
========================================================= */

.section-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 30px;
  margin-left: 8px;
}

/* =========================================================
   REVEAL HELPERS
========================================================= */

.line-mask {
  display: block;
  overflow: hidden;
  padding-bottom: 0.06em;
}

.line-inner {
  display: block;
  transform: translateY(105%);
  will-change: transform;
}

.reveal-fade {
  opacity: 0;
  transform: translateY(22px);
  will-change: opacity, transform;
}

.reveal-card {
  opacity: 0;
  transform: translateY(30px);
  will-change: opacity, transform;
}

/* =========================================================
   NAV
========================================================= */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 999;
  width: 100%;
  padding: 18px 0;
  background: transparent;
  border-bottom: 1px solid transparent;
  transform: translateY(0);
  transition:
    transform 0.75s var(--ease),
    background 0.35s ease,
    backdrop-filter 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.site-header.nav-escondida { transform: translateY(-110%); }

.site-header.scrolled {
  background: rgba(24, 22, 22, 0.85);
  border-bottom-color: rgba(247, 245, 212, 0.06);
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav-bar {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.nav-logo {
  justify-self: start;
  color: var(--cream);
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.05em;
  transition: opacity 0.3s ease;
}
.nav-logo:hover { opacity: 0.6; }

.nav-links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  color: var(--cream);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
  transition: color 0.3s ease;
}
.nav-links a:hover { color: var(--accent); }

.nav-cta {
  justify-self: end;
  padding: 14px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  background: transparent;
  border: 1px solid rgba(247, 245, 212, 0.3);
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.nav-cta:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

/* Hamburger — oculto no desktop */
.nav-hamburger {
  display: none;
  justify-self: end;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 6px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.nav-hamburger span {
  display: block;
  height: 1.5px;
  background: var(--cream);
  border-radius: 2px;
  transition: all 0.4s var(--ease);
}

.nav-hamburger span:first-child  { width: 24px; }
.nav-hamburger span:last-child   { width: 16px; }

.nav-hamburger.is-open span:first-child {
  width: 24px;
  transform: translateY(3.75px) rotate(45deg);
}
.nav-hamburger.is-open span:last-child {
  width: 24px;
  transform: translateY(-3.75px) rotate(-45deg);
}

/* Mobile Menu overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 998;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  text-align: center;
}

.mobile-link {
  color: var(--cream);
  font-size: clamp(2.2rem, 8vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  opacity: 0;
  transform: translateY(20px);
  transition: color 0.3s ease, opacity 0.4s var(--ease), transform 0.4s var(--ease);
}

.mobile-menu.is-open .mobile-link {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.is-open .mobile-link:nth-child(1) { transition-delay: 0.08s; }
.mobile-menu.is-open .mobile-link:nth-child(2) { transition-delay: 0.14s; }
.mobile-menu.is-open .mobile-link:nth-child(3) { transition-delay: 0.20s; }
.mobile-menu.is-open .mobile-link:nth-child(4) { transition-delay: 0.26s; }

.mobile-link:hover { color: var(--accent); }

.mobile-link--cta {
  color: var(--accent);
  font-size: clamp(1rem, 4vw, 1.2rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 4px;
  margin-top: 8px;
}

/* =========================================================
   HERO
========================================================= */

.hero-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--bg);
}

.hero-container {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 112px;
  padding-bottom: var(--section-y);
}

.hero-content {
  width: min(100%, 1240px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-heading {
  max-width: 1180px;
  color: var(--cream);
  font-size: clamp(4.6rem, 7.4vw, 6rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.hero-heading em {
  font-style: normal;
  color: var(--accent);
}

.hero-text {
  max-width: 540px;
  margin-top: 38px;
  color: rgba(247, 245, 212, 0.473);
  font-size: clamp(1rem, 1.3vw, 1.4rem);
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: -0.03em;
}

/* ---- Button ---- */
.hero-button-fill {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 172px;
  min-height: 56px;
  margin-top: 45px;
  padding: 20px 24px;
  color: #fff;
  background: var(--accent);
  border: 0;
  border-radius: 50px;
  overflow: hidden;
}

.hero-button-fill span {
  position: relative;
  z-index: 4;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  transition: color 0.65s var(--ease);
}

.hero-button-fill::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--cream);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.85s var(--ease);
}

.hero-button-fill::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  border: 1px solid var(--cream);
  border-radius: inherit;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.85s var(--ease);
  pointer-events: none;
}

.hero-button-fill:hover::before,
.hero-button-fill:hover::after { transform: scaleX(1); }
.hero-button-fill:hover span   { color: #050505; }



.como-funciona { background: var(--bg); }

.como-funciona .container {
  max-width: calc(var(--section-content-width) + var(--container-padding) * 2);
}

.como-funciona h2 {
  font-size: clamp(3.2rem, 5vw, 3.8rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--cream);
  margin-bottom: 16px;
}

.como-funciona .subtitulo {
  max-width: 420px;
  margin-top: 16px;
  margin-bottom: 64px;
  color: rgba(247,245,212,0.67);
  font-size: clamp(1rem, 1.3vw, 1.4rem);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.step {
  background: var(--bg);
  border: 1px solid rgba(247,245,212,0.1);
  border-radius: 8px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color 0.4s ease, background 0.4s ease;
}

.step:hover {
  border-color: rgba(247,245,212,0.2);
  background: rgba(247,245,212,0.03);
}

.step-number {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--accent);
}

.step-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(247,245,212,0.12);
  color: var(--cream);
  flex-shrink: 0;
}

.step h3 {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--cream);
  line-height: 1;
}

.step p {
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.2;
  color: rgba(247,245,212,0.5);
  letter-spacing: -0.01em;
}

/* =========================================================
   PORTFOLIO
========================================================= */

.portfolio-section {
  padding-left: 10%;
  padding-right: 10%;
  background: var(--bg);
}

.portfolio-header { margin-bottom: 52px; }

.portfolio-title {
  font-weight: 700;
  font-size: clamp(3.2rem, 5vw, 3.8rem);
  letter-spacing: -0.05em;
  line-height: 1.05;
  color: var(--cream);
  margin: 0;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 420px);
  gap: 16px;
  width: 100%;
}

.portfolio-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  display: block;
  background: var(--bg);
  isolation: isolate;
  transition:
    transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94),
    box-shadow 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}

.portfolio-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 56px rgba(0,0,0,0.7);
}

.card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 8px;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
}

.portfolio-card:hover .card-img { transform: scale(1.06); }

.card-overlay {
  position: absolute;
  inset: 0;
  border-radius: 8px;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.90) 0%,
    rgba(0,0,0,0.45) 40%,
    rgba(0,0,0,0.00) 75%
  );
  transition: background 0.4s ease;
  z-index: 1;
}

.portfolio-card:hover .card-overlay {
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.97) 0%,
    rgba(0,0,0,0.62) 50%,
    rgba(0,0,0,0.10) 80%
  );
}

.card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateY(4px);
  transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}

.portfolio-card:hover .card-content { transform: translateY(0); }

.card-tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(247,245,212,0.45);
  transition: color 0.3s ease;
}

.portfolio-card:hover .card-tag { color: var(--accent); }

.card-title {
  font-weight: 700;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--cream);
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin: 0;
}

/* =========================================================
   SERVICES
========================================================= */

.section-services {
  color: var(--cream);
  background: var(--bg);
}

.section-services .container {
  max-width: calc(var(--section-content-width) + var(--container-padding) * 2);
}

.services-content {
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.services-heading {
  max-width: 700px;
  margin: 0 0 100px;
  color: var(--cream);
  font-size: clamp(3.2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.06em;
  text-align: center;
}

.services-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 70px;
  margin-bottom: 48px;
  width: 100%;
}

.service-link {
  position: relative;
  display: block;
  color: var(--accent);
  width: 100%;
}

.service-text {
  display: block;
  font-size: clamp(4.5rem, 8vw, 7rem);
  font-weight: 700;
  line-height: 0.76;
  letter-spacing: -0.055em;
  text-transform: uppercase;
  text-align: center;
  transition: transform 0.8s var(--ease), color 0.45s ease;
}

.service-tags {
  position: absolute;
  left: 50%;
  top: 58%;
  z-index: 3;
  width: min(820px, 92vw);
  height: 150px;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.service-tags span {
  position: absolute;
  padding: 10px 16px;
  color: var(--cream);
  background: var(--bg);
  border: 1px solid var(--cream);
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  opacity: 0;
  transform: translateY(-90px) rotate(-8deg) scale(0.96);
  transition: opacity 0.2s ease, transform 0.9s cubic-bezier(0.22,1.25,0.36,1);
  white-space: nowrap;
}

.service-tags span:nth-child(1) { left: 4%;   bottom: 42px; }
.service-tags span:nth-child(2) { left: 24%;  bottom: 10px; transform: translateY(-90px) rotate(5deg) scale(0.96); }
.service-tags span:nth-child(3) { right: 24%; bottom: 54px; transform: translateY(-90px) rotate(-6deg) scale(0.96); }
.service-tags span:nth-child(4) { right: 4%;  bottom: 22px; transform: translateY(-90px) rotate(4deg) scale(0.96); }

.service-link:hover .service-text { transform: translateY(28px); color: var(--cream); }
.service-link:hover .service-tags span              { opacity: 1; transform: translateY(0) rotate(-4deg) scale(1); }
.service-link:hover .service-tags span:nth-child(2) { transform: translateY(0) rotate(5deg) scale(1); }
.service-link:hover .service-tags span:nth-child(3) { transform: translateY(0) rotate(-6deg) scale(1); }
.service-link:hover .service-tags span:nth-child(4) { transform: translateY(0) rotate(4deg) scale(1); }

.service-tags span:nth-child(1) { transition-delay: 0.02s; }
.service-tags span:nth-child(2) { transition-delay: 0.09s; }
.service-tags span:nth-child(3) { transition-delay: 0.15s; }
.service-tags span:nth-child(4) { transition-delay: 0.22s; }

.services-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 48px;
}

.services-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 20px 28px;
  overflow: hidden;
  border-radius: 50px;
}

.services-button span {
  position: relative;
  z-index: 4;
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  transition: color 0.65s var(--ease);
}

.services-button-primary {
  color: #fff;
  background: var(--accent);
  border: 0;
}

.services-button-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--cream);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.85s var(--ease);
}

.services-button-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  border: 1px solid var(--cream);
  border-radius: inherit;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.85s var(--ease);
  pointer-events: none;
}

.services-button-primary:hover::before,
.services-button-primary:hover::after { transform: scaleX(1); }
.services-button-primary:hover span   { color: var(--bg); }

/* =========================================================
   TESTIMONIALS
========================================================= */

.section-testimonials { background: var(--bg); }

.section-testimonials .container {
  max-width: calc(var(--section-content-width) + var(--container-padding) * 2);
}

.testimonials-heading {
  font-size: clamp(3.2rem, 5vw, 3.8rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--cream);
  margin-bottom: 64px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.testimonial-card {
  background: var(--bg);
  border: 1px solid rgba(247,245,212,0.1);
  border-radius: 8px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  transition: border-color 0.4s ease, background 0.4s ease;
}

.testimonial-card:hover {
  border-color: rgba(247,245,212,0.2);
  background: rgba(247,245,212,0.03);
}

.testimonial-text {
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: -0.02em;
  color: rgba(247,245,212,0.75);
}

.testimonial-author { display: flex; flex-direction: column; gap: 4px; }

.author-name {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--cream);
}

.author-role {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

/* =========================================================
   CTA
========================================================= */



.section-cta .container {
  max-width: calc(var(--section-content-width) + var(--container-padding) * 2);
}

.cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cta-heading {
  font-size: clamp(3.8rem, 6.5vw, 4.4rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--cream);
  margin-bottom: 24px;
}

.cta-sub {
  max-width: 300px;
  color: rgba(247,245,212,0.67);
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.02em;
}

.section-cta {
  padding: 120px 0;
  background-color: #181616;
}

.section-cta .container {
  max-width: calc(var(--section-content-width) + var(--container-padding) * 2);
}

.cta-card {
  padding: clamp(72px, 8vw, 120px) 32px;

  border: 1px solid rgba(247, 245, 212, 0.08);
  border-radius: 28px;
  background-color: #151313;

  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.32);
}

.cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cta-heading {
  font-size: clamp(3.8rem, 6.5vw, 4.4rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--cream);
  margin-bottom: 24px;
}

.cta-sub {
  max-width: 300px;
  color: rgba(247, 245, 212, 0.473);
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.02em;
}

.cta-button-fill{

position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 172px;
  min-height: 56px;
  margin-top: 45px;
  padding: 22px 26px;
  color: #fff;
  background: var(--accent);
  border: 0;
  border-radius: 50px;
  overflow: hidden;

}

.cta-button-fill span {
  position: relative;
  z-index: 4;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  transition: color 0.65s var(--ease);
}

.cta-button-fill::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--cream);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.85s var(--ease);
}

.cta-button-fill::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  border: 1px solid var(--cream);
  border-radius: inherit;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.85s var(--ease);
  pointer-events: none;
}



.cta-button-fill:hover::before,
.cta-button-fill:hover::after { transform: scaleX(1); }
.cta-button-fill:hover span   { color: #050505; }




@media (max-width: 768px) {
  .section-cta {
    padding: 88px 0;
  }

  .cta-card {
    padding: 64px 24px;
    border-radius: 22px;
  }
}

/* =========================================================
   FOOTER
========================================================= */
.footer {
  padding: 34px 0;
  color: #f7f5d4;
  background-color: #111010;
  border-top: 1px solid rgba(247, 245, 212, 0.08);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}

.footer-logo {
  justify-self: start;

  color: #f7f5d4;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  text-decoration: none;
}

.footer-copy {
  justify-self: center;
  margin: 0;

  color: rgba(247, 245, 212, 0.42);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1;
  text-align: center;
}

.footer-actions {
  justify-self: end;

  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-email {
  color: rgba(247, 245, 212, 0.62);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 40px;
  height: 40px;

  color: rgba(247, 245, 212, 0.68);
  border: 1px solid rgba(247, 245, 212, 0.10);
  border-radius: 50%;
  text-decoration: none;

  transition:
    color 0.25s ease,
    border-color 0.25s ease,
    background-color 0.25s ease,
    transform 0.25s ease;
}

.footer-email:hover,
.footer-icon:hover {
  color: #f7f5d4;
}

.footer-icon:hover {
  border-color: rgba(247, 245, 212, 0.22);
  background-color: rgba(247, 245, 212, 0.04);
  transform: translateY(-2px);
}

.footer-icon svg {
  display: block;
}

/* =========================================================
   RESPONSIVE CLEAN — MOBILE FINAL OVERRIDES
========================================================= */

@media (max-width: 768px) {
  :root {
    --container-padding: 1.35rem;
    --section-y: 76px;
  }

  /* NAV */
  .site-header {
    padding: 16px 0;
  }

  .nav-bar {
    grid-template-columns: 1fr auto;
  }

  .nav-logo {
    font-size: 28px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  /* HERO — centralizado no celular */
  .hero-container {
    min-height: 70svh;
    padding-top: 100px;
    padding-bottom: 72px;

    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .hero-content {
    align-items: center;
    text-align: center;
  }

  .hero-heading {
    max-width: 100%;
    font-size: clamp(3rem, 8vw, 4rem);
    line-height: 1.05;
    letter-spacing: -0.06em;
  }

  .hero-text {
    max-width: 900px;
    margin-top: 26px;

    font-size: 1rem;
    line-height: 1.45;
    text-align: center;
  }

  .hero-button-fill {
    margin-top: 34px;
    min-height: 52px;
    padding: 17px 24px;
  }

  .hero-button-fill span {
    font-size: 1.15rem;
  }

  /* LABELS / TITLES */
  .section-label {
    margin-left: 0;
    margin-bottom: 18px;
    text-align: center;
  }

  .como-funciona h2,
  .portfolio-title,
  .services-heading,
  .testimonials-heading,
  .cta-heading {
    text-align: center;
  }

  /* COMO FUNCIONA */
  .como-funciona .container {
    max-width: 100%;
  }

  .como-funciona h2 {
    font-size: clamp(2.65rem, 11vw, 3.7rem);
    line-height: 0.96;
  }

  .como-funciona .subtitulo {
    max-width: 330px;
    margin: 18px auto 42px;

    font-size: 1rem;
    line-height: 1.45;
    text-align: center;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .step {
    align-items: center;
    padding: 30px 24px;
    text-align: center;
    border-radius: 12px;
  }

  .step-icon {
    width: 58px;
    height: 58px;
  }

  .step h3 {
    font-size: 1.2rem;
  }

  .step p {
    max-width: 300px;
    font-size: 0.98rem;
    line-height: 1.45;
  }

  /* PORTFOLIO */
  .portfolio-section {
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
  }

  .portfolio-header {
    margin-bottom: 34px;
    text-align: center;
  }

  .portfolio-title {
    font-size: clamp(2.65rem, 11vw, 3.7rem);
    line-height: 0.96;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 14px;
  }

  .portfolio-card {
    min-height: 260px;
    border-radius: 12px;
  }

  .card-img,
  .card-overlay {
    border-radius: 12px;
  }

  .card-content {
    padding: 24px;
    text-align: left;
  }

  .card-title {
    font-size: 1.55rem;
  }

  /* SERVICES */
  .services-content {
    max-width: 100%;
  }

  .services-heading {
    max-width: 360px;
    margin-bottom: 54px;

    font-size: clamp(2.65rem, 11vw, 3.7rem);
    line-height: 0.96;
  }

  .services-list {
    gap: 34px;
    margin-bottom: 34px;
  }

  .service-text {
    font-size: clamp(3rem, 17vw, 4.4rem);
    line-height: 1.05;
    letter-spacing: -0.065em;
  }

  .service-tags {
    display: none;
  }

  .service-link:hover .service-text {
    transform: none;
    color: var(--accent);
  }

  .services-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
    margin-top: 38px;
  }

  .services-button {
    width: 100%;
    max-width: 320px;
    min-height: 54px;
  }

  .services-button span {
    font-size: 1.25rem;
  }

  /* TESTIMONIALS */
  .testimonials-heading {
    margin-bottom: 38px;

    font-size: clamp(2.65rem, 11vw, 3.7rem);
    line-height: 0.96;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .testimonial-card {
    padding: 30px 24px;
    border-radius: 12px;
    text-align: center;
  }

  .testimonial-author {
    align-items: center;
  }

  /* CTA */
  .section-cta {
    padding: 76px 0;
  }

  .cta-card {
    padding: 62px 22px;
    border-radius: 22px;
  }

  .cta-heading {
    font-size: clamp(2.75rem, 12vw, 4rem);
    line-height: 0.96;
  }

  .cta-sub {
    max-width: 300px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.45;
  }

  /* FOOTER */
  .footer {
    padding: 34px 0;
  }

  .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 22px;

    text-align: center;
  }

  .footer-logo,
  .footer-copy,
  .footer-actions {
    justify-self: auto;
  }

  .footer-logo {
    font-size: 1.45rem;
  }

  .footer-copy {
    max-width: 260px;
    font-size: 0.86rem;
    line-height: 1.35;
  }

  .footer-actions {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }

  .footer-email {
    width: 100%;
    text-align: center;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  :root {
    --container-padding: 1.15rem;
    --section-y: 68px;
  }



  .hero-text {
    max-width: 290px;
  }

  .como-funciona h2,
  .portfolio-title,
  .services-heading,
  .testimonials-heading,
  .cta-heading {
    font-size: clamp(2.45rem, 12vw, 4rem);
  }

  .service-text {
    font-size: clamp(2.65rem, 18vw, 3.8rem);
  }

  .portfolio-card {
    min-height: 230px;
  }

  .footer-actions {
    max-width: 280px;
  }

  .footer-icon {
    margin-top: 15px;
    width: 42px;
    height: 42px;
  }
}











/* =========================================================
   RESPONSIVE — AJUSTES FINAIS DAS SECTIONS
   Como Funciona / Serviços / Clientes / CTA
========================================================= */

@media (max-width: 768px) {
  /* COMO FUNCIONA */
  .como-funciona h2 {
    max-width: 390px;
    margin-left: auto;
    margin-right: auto;

    font-size: clamp(2.35rem, 9.5vw, 3.15rem);
    line-height: 0.98;
  }

  .como-funciona .subtitulo {
    max-width: 320px;
    margin: 16px auto 36px;
  }

  .steps {
    max-width: 360px;
    margin: 0 auto;
    gap: 10px;
  }

  .step {
    padding: 24px 22px;
    gap: 12px;
  }

  .step-icon {
    width: 52px;
    height: 52px;
  }

  .step-icon svg {
    width: 20px;
    height: 20px;
  }

  .step h3 {
    font-size: 1.08rem;
  }

  .step p {
    max-width: 280px;
    font-size: 0.92rem;
    line-height: 1.38;
  }

  /* SERVIÇOS */
  .services-heading {
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;

    font-size: clamp(2.45rem, 9.5vw, 3.35rem);
    line-height: 0.98;
  }

  /* CLIENTES / TESTIMONIALS */
  .testimonials-heading {
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 38px;

    font-size: clamp(2.45rem, 9.5vw, 3.35rem);
    line-height: 0.98;
    text-align: center;
  }

  /* CTA */
  .cta-heading {
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;

    font-size: clamp(2.45rem, 6vw, 2.45rem);
    line-height: 0.98;
  }
}


@media (max-width: 480px) {
  /* COMO FUNCIONA — força a segunda linha caber inteira */
  .como-funciona h2 {
    max-width: 350px;
    font-size: clamp(2.15rem, 9vw, 2.8rem);
    line-height: 1;
  }

  .steps {
    max-width: 330px;
  }

  .step {
    padding: 22px 20px;
  }

  .step p {
    font-size: 0.9rem;
  }

  /* SERVIÇOS — duas linhas */
  .services-heading {
    max-width: 360px;
    font-size: clamp(2.15rem, 9vw, 2.85rem);
    line-height: 1;
  }

  /* CLIENTES — duas linhas */
  .testimonials-heading {
    max-width: 360px;
    font-size: clamp(2.15rem, 9vw, 2.85rem);
    line-height: 1;
  }

  /* CTA — duas linhas */
  .cta-heading {
    max-width: 350px;
    font-size: clamp(2.15rem, 9vw, 2.85rem);
    line-height: 1;
  }
}

/* =========================================================
   RESPONSIVE — AJUSTES FINOS FINAIS
========================================================= */

@media (max-width: 768px) {
  /* PROCESSO — aumenta um pouco o gap dos cards */
  .steps {
    gap: 14px;
  }

  /* PORTFOLIO — aumenta um pouco o line-height do h2 */
  .portfolio-title {
    line-height: 1.06;
  }

  /* SERVICES — diminui um pouco a largura do botão */
  .services-button {
    width: auto;
    min-width: 240px;
    max-width: 280px;
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (max-width: 480px) {
  /* PROCESSO — mantém um respiro melhor entre os cards */
  .steps {
    gap: 13px;
  }

  /* PORTFOLIO — um pouco mais confortável no celular pequeno */
  .portfolio-title {
    line-height: 1.07;
  }

  /* SERVICES — botão menor no celular pequeno */
  .services-button {
    width: auto;
    min-width: 220px;
    max-width: 260px;
    padding-left: 22px;
    padding-right: 22px;
  }
}