:root {
  color-scheme: light;
  font-family: Arial, Helvetica, sans-serif;
  --off-white: #f8f4f0;
  --pink: #eda0b2;
  --blush: #e5cdce;
  --blue: #111386;
}
* { box-sizing: border-box; }
h1, h2, h3 {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
  font-style: normal;
}
body { margin: 0; color: var(--blue); background: var(--off-white); }
header { position: sticky; top: 0; z-index: 1000; padding: 18px clamp(24px, 6vw, 88px); border-bottom: 6px solid var(--pink); background: var(--blue); }
nav { display: flex; align-items: center; flex-wrap: wrap; gap: 22px; }
nav a { color: var(--blush); font-weight: 700; text-decoration: none; }
nav a:hover, nav a:focus-visible { color: var(--pink); }
nav a[aria-current="page"] { color: var(--off-white); text-decoration: underline; text-decoration-color: var(--pink); text-underline-offset: 7px; }
.site-nav { justify-content: space-between; }
.brand-logo {
  flex: 0 0 auto;
  color: var(--off-white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(27px, 2.5vw, 38px);
  font-weight: 700;
  line-height: .9;
  letter-spacing: -.045em;
}
.brand-logo span { color: var(--off-white); }
.brand-logo i { color: var(--pink); font-weight: 700; }
.brand-logo:hover span,
.brand-logo:focus-visible span { color: var(--off-white); }
.brand-logo:hover i,
.brand-logo:focus-visible i { color: var(--blush); }
.nav-links { display: flex; align-items: center; justify-content: flex-end; flex-wrap: wrap; gap: 22px; margin-left: auto; }
.nav-budget-button {
  margin-left: auto;
  padding: 13px 20px;
  border: 3px solid var(--pink);
  color: var(--blue);
  background: var(--pink);
  font-weight: 900;
  text-transform: uppercase;
  transition: color .15s ease, background .15s ease, transform .15s ease;
}
.nav-budget-button:hover,
.nav-budget-button:focus-visible { color: var(--blue); background: var(--off-white); transform: translateY(-2px); }
main { min-height: calc(100vh - 79px); display: grid; align-content: center; padding: clamp(48px, 10vw, 140px); background: linear-gradient(135deg, var(--off-white) 0 72%, var(--blush) 72% 100%); }
h1 { position: relative; width: fit-content; margin: 0; color: var(--blue); font-size: clamp(54px, 12vw, 150px); line-height: .9; text-transform: uppercase; }
h1::after { content: ""; display: block; width: 42%; height: clamp(7px, 1vw, 14px); margin-top: 22px; background: var(--pink); }
p { max-width: 620px; margin: 28px 0 0; font-size: clamp(18px, 2vw, 26px); line-height: 1.5; }
::selection { color: var(--off-white); background: var(--blue); }

.hero {
  position: relative;
  min-height: calc(100svh - 79px);
  display: grid;
  align-content: center;
  justify-items: center;
  padding: clamp(32px, 5vh, 56px) clamp(24px, 6vw, 92px);
  text-align: center;
  background: var(--off-white);
}
.hero-copy { position: relative; z-index: 2; display: grid; justify-items: center; width: min(100%, 1500px); }
.hero .hero-title {
  max-width: 1180px;
  color: var(--blue);
  font-size: clamp(34px, 4.5vw, 66px);
  line-height: 1.18;
  letter-spacing: -.045em;
  text-wrap: balance;
}
.hero .hero-title::after { display: none; }
.hero-title span {
  display: inline;
  padding: .02em .08em .12em;
  color: var(--blue);
  background: var(--pink);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.hero-description {
  max-width: 820px;
  margin-top: clamp(22px, 3vh, 32px);
  color: var(--blue);
  font-size: clamp(16px, 1.35vw, 21px);
  line-height: 1.45;
  text-wrap: balance;
}
.hero-button {
  margin-top: clamp(24px, 3vh, 34px);
  padding: 15px 24px;
  border: 3px solid var(--blue);
  color: var(--off-white);
  background: var(--blue);
  box-shadow: 8px 8px 0 var(--pink);
  font-size: clamp(14px, 1.2vw, 18px);
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .15s ease, box-shadow .15s ease;
}
.hero-button:hover, .hero-button:focus-visible { transform: translate(4px, 4px); box-shadow: 4px 4px 0 var(--pink); }

.projects-marquee {
  width: 100%;
  overflow: hidden;
  padding: clamp(18px, 2vw, 30px) 0;
  border-top: 5px solid var(--blue);
  border-bottom: 5px solid var(--blue);
  background: var(--blue);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: projects-marquee 38s linear infinite;
}
.marquee-group {
  display: flex;
  flex-shrink: 0;
  gap: clamp(18px, 2vw, 30px);
  padding-right: clamp(18px, 2vw, 30px);
}
.marquee-group figure {
  width: clamp(440px, 46vw, 720px);
  aspect-ratio: 16 / 9;
  flex: 0 0 auto;
  margin: 0;
  overflow: hidden;
  border: 4px solid var(--off-white);
  background: var(--off-white);
}
.marquee-group img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center top; }
.projects-marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes projects-marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation-play-state: paused; } }

.business-section {
  position: relative;
  padding: clamp(88px, 11vw, 170px) clamp(24px, 6vw, 90px) clamp(72px, 9vw, 130px);
  overflow: hidden;
  background: var(--off-white);
}
.business-copy {
  width: min(100%, 900px);
  margin: 0 auto;
  text-align: center;
}
.business-detail { display: none; }
.business-copy h2 {
  margin: 0 auto clamp(34px, 4vw, 52px);
  color: var(--blue);
  font-size: clamp(34px, 3.8vw, 56px);
  line-height: 1.02;
  letter-spacing: -.045em;
  text-transform: uppercase;
  text-wrap: balance;
}
.business-copy > p {
  max-width: 790px;
  margin: 0 auto 24px;
  color: var(--blue);
  font-size: clamp(17px, 1.55vw, 21px);
  line-height: 1.65;
  text-wrap: balance;
}
.business-callout {
  width: min(100%, 760px);
  margin: clamp(42px, 5vw, 64px) auto 0;
  padding: clamp(24px, 3vw, 36px);
  border: 3px solid var(--blue);
  background: var(--blush);
  box-shadow: 9px 9px 0 var(--pink);
}
.business-callout strong { display: block; color: var(--blue); font-size: clamp(20px, 2.2vw, 28px); }
.business-callout p { margin: 14px auto 0; color: var(--blue); font-size: clamp(16px, 1.45vw, 19px); line-height: 1.55; }
.platforms {
  width: min(100%, 1100px);
  margin: clamp(70px, 9vw, 120px) auto 0;
  padding-top: clamp(42px, 5vw, 62px);
  border-top: 3px solid var(--pink);
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: center;
  gap: clamp(24px, 4vw, 58px);
}
.platforms figure { width: 100%; height: 92px; margin: 0; display: grid; place-items: center; }
.platforms img { display: block; width: 130px; height: 88px; object-fit: contain; }
.platforms .platform-wide { grid-column: span 1; }

.problems-section {
  padding: clamp(78px, 9vw, 135px) clamp(24px, 7vw, 110px);
  color: var(--off-white);
  background: var(--blue);
}
.problems-heading {
  width: min(100%, 1000px);
  margin-inline: auto;
  text-align: center;
  margin-bottom: clamp(70px, 9vw, 120px);
}
.problems-heading h2 {
  max-width: 880px;
  margin: 0 auto;
  font-size: clamp(34px, 3.8vw, 56px);
  line-height: 1.02;
  letter-spacing: -.045em;
  text-transform: uppercase;
  text-wrap: balance;
}
.problems-heading p { max-width: 780px; margin: 30px auto 0; color: var(--off-white); font-size: clamp(17px, 1.5vw, 21px); line-height: 1.55; text-align: center; opacity: .85; }
.problems-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(60px, 7vw, 100px) clamp(42px, 6vw, 80px); }
.problems-grid article { padding-top: 22px; border-top: 3px solid var(--pink); }
.problems-grid h3 { margin: 0; color: var(--pink); font-size: clamp(25px, 2.5vw, 38px); line-height: 1.08; letter-spacing: -.035em; }
.problems-grid p { margin-top: 21px; color: var(--off-white); font-size: clamp(15px, 1.2vw, 18px); line-height: 1.6; opacity: .82; }

.services-section {
  display: grid;
  grid-template-columns: minmax(290px, .85fr) minmax(0, 1.6fr);
  gap: clamp(50px, 7vw, 110px);
  padding: clamp(80px, 10vw, 150px) clamp(24px, 7vw, 110px);
  color: var(--blue);
  background: var(--off-white);
}
.services-intro { align-self: start; position: sticky; top: 40px; }
.services-label {
  width: fit-content;
  margin: 0 0 24px;
  padding: 0 0 7px;
  border-bottom: 3px solid var(--pink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.services-intro h2 {
  margin: 0;
  font-size: clamp(34px, 3.8vw, 56px);
  line-height: 1.02;
  letter-spacing: -.045em;
  text-transform: uppercase;
  text-wrap: balance;
}
.services-intro > p:not(.services-label) { margin-top: 30px; font-size: clamp(17px, 1.45vw, 21px); line-height: 1.55; }
.services-button {
  display: inline-block;
  margin-top: 34px;
  padding: 16px 24px;
  border: 3px solid var(--pink);
  color: var(--blue);
  background: var(--pink);
  box-shadow: 7px 7px 0 var(--off-white);
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .15s ease, box-shadow .15s ease;
}
.services-button:hover, .services-button:focus-visible { transform: translate(3px, 3px); box-shadow: 4px 4px 0 var(--off-white); }
.services-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(58px, 7vw, 110px) clamp(46px, 6vw, 90px); }
.service-item {
  min-width: 0;
  padding: 0;
}
.service-item h3 { margin: 0; color: var(--blue); font-size: clamp(27px, 2.7vw, 40px); line-height: 1.05; letter-spacing: -.035em; }
.service-item h3::after { content: ""; display: block; width: 46px; height: 4px; margin-top: 14px; background: var(--pink); }
.service-item p { margin-top: 20px; color: var(--blue); font-size: clamp(15px, 1.2vw, 18px); line-height: 1.6; opacity: .82; }

@media (max-width: 720px) {
  header { padding: 20px 22px; }
  nav { gap: 16px; font-size: 14px; }
  .nav-budget-button { width: 100%; margin-left: 0; text-align: center; }
  .hero { min-height: calc(100svh - 73px); }
  .hero .hero-title { font-size: clamp(32px, 9.5vw, 48px); line-height: 1.16; }
  .marquee-group figure { width: 82vw; }
  .marquee-track { animation-duration: 28s; }
  .business-copy h2 { font-size: clamp(34px, 9vw, 46px); }
  .platforms { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 34px 28px; }
  .platforms figure { height: 72px; }
  .platforms img { width: 96px; height: 68px; }
  .problems-heading { grid-template-columns: 1fr; }
  .problems-grid { grid-template-columns: 1fr; }
  .services-section { grid-template-columns: 1fr; }
  .services-intro { position: static; }
  .services-grid { grid-template-columns: 1fr; }
  .service-item { min-height: 0; }
}

/* Home reorganizada */
html { scroll-behavior: smooth; }
section { scroll-margin-top: 24px; }
.hero-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px; margin-top: clamp(26px, 3vh, 36px); }
.primary-button,
.secondary-button {
  display: inline-block;
  padding: 15px 24px;
  border: 3px solid var(--blue);
  font-size: clamp(14px, 1.1vw, 17px);
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .15s ease, box-shadow .15s ease, color .15s ease, background .15s ease;
}
.primary-button { color: var(--blue); background: var(--pink); box-shadow: 7px 7px 0 var(--blue); }
.secondary-button { color: var(--blue); background: transparent; }
.primary-button:hover,
.primary-button:focus-visible { transform: translate(3px, 3px); box-shadow: 4px 4px 0 var(--blue); }
.secondary-button:hover,
.secondary-button:focus-visible { color: var(--off-white); background: var(--blue); }

.section-heading { width: min(100%, 1020px); margin: 0 auto clamp(54px, 7vw, 90px); text-align: center; }
.section-heading-left { margin-left: 0; text-align: left; }
.section-heading h2,
.final-cta h2 {
  max-width: 920px;
  margin: 0;
  color: var(--blue);
  font-size: clamp(34px, 4.2vw, 62px);
  line-height: 1.02;
  letter-spacing: -.045em;
  text-transform: uppercase;
  text-wrap: balance;
}
.section-heading > p:not(.section-label) { max-width: 780px; margin: 28px 0 0; color: var(--blue); font-size: clamp(17px, 1.45vw, 21px); line-height: 1.55; }
.section-label { width: fit-content; margin: 0 0 22px; padding-bottom: 7px; border-bottom: 3px solid var(--pink); color: var(--blue); font-size: 12px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.section-heading-light h2,
.section-heading-light > p:not(.section-label),
.section-heading-light .section-label { color: var(--off-white); }

.portfolio-section { padding: clamp(80px, 9vw, 135px) clamp(24px, 6vw, 90px); background: var(--off-white); }
.portfolio-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(30px, 4vw, 58px); }
.project-card { min-width: 0; border: 3px solid var(--blue); background: var(--off-white); box-shadow: 9px 9px 0 var(--pink); }
.project-card-wide { grid-column: span 2; }
.project-card img { width: 100%; aspect-ratio: 16 / 9; display: block; object-fit: cover; object-position: center top; border-bottom: 3px solid var(--blue); }
.project-card:not(.project-card-wide) img { aspect-ratio: 4 / 3; }
.project-info { display: flex; align-items: end; justify-content: space-between; gap: 24px; padding: clamp(20px, 2.5vw, 32px); }
.project-info h3 { margin: 0; color: var(--blue); font-size: clamp(25px, 2.6vw, 38px); line-height: 1; letter-spacing: -.035em; }
.project-info p { margin: 9px 0 0; color: var(--blue); font-size: clamp(15px, 1.15vw, 18px); line-height: 1.4; }
.project-info > span { max-width: 270px; color: var(--blue); font-size: 13px; font-weight: 700; line-height: 1.4; text-align: right; text-transform: uppercase; }
.text-link { display: block; width: fit-content; margin: clamp(42px, 5vw, 66px) 0 0 auto; padding-bottom: 5px; border-bottom: 3px solid var(--pink); color: var(--blue); font-size: 18px; font-weight: 900; text-decoration: none; text-transform: uppercase; }

.problems-section { padding: clamp(80px, 9vw, 135px) clamp(24px, 7vw, 110px); }
.problems-section .section-heading { margin-inline: auto; }
.problems-section .section-heading > p:not(.section-label) { margin-inline: auto; text-align: center; }
.problems-section .section-label { margin-inline: auto; }
.problems-grid-compact { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(50px, 6vw, 84px); }
.problems-grid-compact h3 { max-width: 480px; }

.services-section-revised { align-items: start; }
.services-section-revised .primary-button { margin-top: 34px; }
.services-cards { gap: clamp(24px, 3vw, 38px); }
.services-cards .service-item { padding: clamp(24px, 3vw, 36px); border: 3px solid var(--blue); background: var(--off-white); box-shadow: 7px 7px 0 var(--pink); }
.included-list { grid-column: 2; display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); align-items: center; gap: 18px 14px; margin-top: clamp(48px, 6vw, 80px); padding-top: 34px; border-top: 3px solid var(--pink); }
.included-list strong { grid-column: 1 / -1; width: 100%; font-size: 20px; text-align: center; }
.included-list span { position: relative; justify-self: center; padding-left: 20px; font-weight: 700; white-space: nowrap; }
.included-list span:nth-of-type(1) { grid-column: 1 / 3; }
.included-list span:nth-of-type(2) { grid-column: 3 / 5; }
.included-list span:nth-of-type(3) { grid-column: 5 / 7; }
.included-list span:nth-of-type(4) { grid-column: 2 / 4; }
.included-list span:nth-of-type(5) { grid-column: 4 / 6; }
.included-list span::before { content: "✓"; position: absolute; left: 0; color: var(--pink); font-weight: 900; }

.why-section,
.faq-section { padding: clamp(80px, 9vw, 135px) clamp(24px, 7vw, 110px); }
.why-section { background: var(--blush); }
.feature-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(34px, 5vw, 70px); }
.feature-grid article { padding-top: 22px; border-top: 3px solid var(--blue); }
.feature-grid article > span { color: var(--pink); font-size: 18px; font-weight: 900; }
.feature-grid h3 { margin: 16px 0 0; color: var(--blue); font-size: clamp(25px, 2.5vw, 38px); line-height: 1.08; letter-spacing: -.035em; }
.feature-grid p { margin-top: 18px; color: var(--blue); font-size: clamp(15px, 1.2vw, 18px); line-height: 1.6; }

.process-section { display: grid; grid-template-columns: minmax(280px, .9fr) minmax(0, 1.35fr); gap: clamp(55px, 8vw, 130px); padding: clamp(80px, 9vw, 135px) clamp(24px, 7vw, 110px); color: var(--off-white); background: var(--blue); }
.process-section .section-heading { margin-bottom: 0; }
.process-list { margin: 0; padding: 0; list-style: none; }
.process-list li { display: grid; grid-template-columns: 66px 1fr; gap: 24px; padding: 28px 0; border-top: 2px solid var(--pink); }
.process-list li:last-child { border-bottom: 2px solid var(--pink); }
.process-list li > span { color: var(--pink); font-size: 22px; font-weight: 900; }
.process-list h3 { margin: 0; color: var(--off-white); font-size: clamp(22px, 2vw, 30px); line-height: 1.1; }
.process-list p { margin: 12px 0 0; color: var(--off-white); font-size: 16px; line-height: 1.55; opacity: .82; }

.faq-section { background: var(--off-white); }
.faq-section .section-heading { max-width: 850px; }
.faq-list { width: min(100%, 960px); margin: 0 auto; border-top: 3px solid var(--blue); }
.faq-list details { border-bottom: 3px solid var(--blue); }
.faq-list summary { position: relative; padding: 26px 54px 26px 0; color: var(--blue); cursor: pointer; font-size: clamp(19px, 1.8vw, 26px); font-weight: 900; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 8px; top: 20px; color: var(--pink); font-size: 34px; line-height: 1; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 800px; margin: 0; padding: 0 54px 26px 0; color: var(--blue); font-size: 17px; line-height: 1.6; }

.final-cta { display: grid; justify-items: center; padding: clamp(80px, 10vw, 150px) clamp(24px, 8vw, 130px); text-align: center; background: var(--pink); }
.final-cta .section-label { border-color: var(--blue); }
.final-cta h2 { max-width: 980px; text-align: center; }
.final-cta > p:not(.section-label) { max-width: 700px; margin: 28px auto 0; color: var(--blue); font-size: clamp(17px, 1.5vw, 21px); line-height: 1.55; }
.final-cta .primary-button { margin-top: 36px; background: var(--off-white); }
.final-cta small { margin-top: 30px; color: var(--blue); font-size: 13px; font-weight: 700; text-transform: uppercase; }

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(180px, .75fr) minmax(150px, .5fr);
  align-items: start;
  gap: clamp(52px, 8vw, 130px);
  min-height: 330px;
  padding: clamp(64px, 7vw, 100px) clamp(24px, 6vw, 90px);
  color: var(--blue);
  background-color: var(--off-white);
}
.site-footer p { margin: 0; }
.site-footer .footer-label { margin-bottom: 30px; color: var(--blue); font-size: 12px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.footer-intro > p:not(.footer-label) { max-width: 560px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(21px, 2vw, 29px); line-height: 1.45; }
.footer-logo {
  display: inline-block;
  margin-top: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.045em;
  text-decoration: none;
}
.footer-logo span { color: var(--blue); }
.footer-logo i { color: var(--pink); }
.footer-socials { display: grid; justify-items: start; gap: 16px; }
.footer-socials .footer-label { margin-bottom: 14px; }
.footer-socials a { color: var(--blue); font-size: 18px; font-weight: 700; text-decoration-color: var(--pink); text-underline-offset: 6px; }
.footer-socials a:hover,
.footer-socials a:focus-visible { color: var(--pink); }
.footer-back-to-top { display: grid; justify-items: end; }
.footer-back-to-top .footer-label { text-align: right; }
.footer-back-to-top a {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border: 2px solid rgba(17, 19, 134, .3);
  border-radius: 50%;
  color: var(--blue);
  background: rgba(248, 244, 240, .72);
  font-size: 30px;
  font-weight: 700;
  text-decoration: none;
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}
.footer-back-to-top a:hover,
.footer-back-to-top a:focus-visible { border-color: var(--pink); color: var(--blue); background: var(--pink); transform: translateY(-4px); }

.whatsapp-floating {
  position: fixed;
  right: clamp(18px, 2.5vw, 36px);
  bottom: clamp(18px, 2.5vw, 36px);
  z-index: 900;
  display: grid;
  width: clamp(58px, 5vw, 68px);
  height: clamp(58px, 5vw, 68px);
  place-items: center;
  border: 3px solid var(--off-white);
  border-radius: 50%;
  color: var(--off-white);
  background: var(--blue);
  box-shadow: 0 10px 28px rgba(17, 19, 134, .28);
  transition: color .2s ease, background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.whatsapp-floating svg { width: 56%; height: 56%; fill: currentColor; }
.whatsapp-floating:hover,
.whatsapp-floating:focus-visible { color: var(--blue); background: var(--pink); transform: translateY(-4px); box-shadow: 0 14px 32px rgba(17, 19, 134, .34); }

@media (max-width: 900px) {
  .portfolio-grid,
  .feature-grid,
  .problems-grid-compact { grid-template-columns: 1fr; }
  .project-card-wide { grid-column: auto; }
  .project-card:not(.project-card-wide) img { aspect-ratio: 16 / 9; }
  .services-section-revised,
  .process-section { grid-template-columns: 1fr; }
  .services-intro { position: static; }
  .included-list { grid-column: 1; }
  .process-section .section-heading { margin-bottom: 20px; }
}

@media (max-width: 720px) {
  header { padding: 16px 20px; }
  .site-nav { gap: 14px 20px; }
  .brand-logo { font-size: 29px; }
  .nav-links { width: 100%; justify-content: flex-start; flex-wrap: nowrap; gap: 18px; padding: 2px 0 4px; overflow-x: auto; scrollbar-width: none; }
  .nav-links::-webkit-scrollbar { display: none; }
  .included-list { grid-template-columns: 1fr; justify-items: center; }
  .included-list strong,
  .included-list span:nth-of-type(n) { grid-column: 1; }
  .included-list span { white-space: normal; }
  .hero-actions { width: 100%; }
  .hero-actions a { width: 100%; text-align: center; }
  .section-heading h2,
  .final-cta h2 { font-size: clamp(32px, 9vw, 46px); }
  .project-info { display: block; }
  .project-info > span { display: block; margin-top: 20px; text-align: left; }
  .services-cards { grid-template-columns: 1fr; }
  .process-list li { grid-template-columns: 48px 1fr; gap: 14px; }
  .site-footer { grid-template-columns: 1fr; min-height: 0; gap: 50px; text-align: left; }
  .footer-back-to-top { justify-items: start; }
  .footer-back-to-top .footer-label { text-align: left; }
}

/* Faixa editorial */
.editorial-ticker {
  height: 58px;
  overflow: hidden;
  display: flex;
  align-items: center;
  color: var(--off-white);
  background: var(--blue);
}
.ticker-track { display: flex; width: max-content; flex-shrink: 0; animation: editorial-ticker 34s linear infinite; }
.ticker-track p { flex-shrink: 0; max-width: none; margin: 0; padding-right: .45em; color: var(--off-white); font-size: 16px; font-weight: 900; letter-spacing: .07em; line-height: 1; text-transform: uppercase; white-space: nowrap; }
.ticker-track span { padding-inline: .45em; color: var(--pink); }
@keyframes editorial-ticker { to { transform: translateX(-50%); } }

/* Portfólio editorial */
.portfolio-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(52px, 7vw, 96px) clamp(34px, 5vw, 70px); }
.project-card,
.project-card-wide { grid-column: auto; border: 0; background: transparent; box-shadow: none; }
.project-card img,
.project-card:not(.project-card-wide) img { aspect-ratio: 16 / 10; border: 0; object-fit: contain; object-position: center; background: var(--off-white); }
.project-info { padding: 22px 0 0; border-top: 0; }
.project-info p { max-width: 440px; }
.project-info > a { flex-shrink: 0; padding-bottom: 4px; border-bottom: 2px solid var(--pink); color: var(--blue); font-size: 13px; font-weight: 900; letter-spacing: .06em; text-decoration: none; text-transform: uppercase; }
.project-info > a:hover,
.project-info > a:focus-visible { color: var(--pink); }

/* Sobre Larissa */
.about-section {
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(320px, .82fr) 74px minmax(0, 1.18fr);
  color: var(--blue);
  background: var(--off-white);
}
.about-photo { min-width: 0; overflow: hidden; background: var(--blue); }
.about-photo img { width: 100%; height: 100%; min-height: 760px; display: block; object-fit: cover; object-position: center; filter: grayscale(1); }
.about-ribbon { position: relative; overflow: hidden; color: var(--blue); background: var(--pink); border-inline: 3px solid var(--blue); }
.about-ribbon-track { position: absolute; inset: 0; display: flex; align-items: center; flex-direction: column; width: 100%; height: max-content; animation: about-ribbon 25s linear infinite; }
.about-ribbon-track span { flex-shrink: 0; padding: 20px 0; font-size: 16px; font-weight: 900; letter-spacing: .04em; line-height: 1; text-transform: uppercase; white-space: nowrap; writing-mode: vertical-rl; transform: rotate(180deg); }
@keyframes about-ribbon { to { transform: translateY(-50%); } }
.about-content { align-self: center; padding: clamp(64px, 8vw, 120px) clamp(34px, 7vw, 105px); }
.about-content h2 { max-width: 820px; margin: 0; color: var(--blue); font-size: clamp(36px, 4.4vw, 66px); line-height: 1.02; letter-spacing: -.045em; text-transform: uppercase; text-wrap: balance; }
.about-content > p:not(.section-label) { max-width: 760px; margin: 22px 0 0; color: var(--blue); font-size: clamp(16px, 1.25vw, 19px); line-height: 1.6; }
.about-content > p strong { font-size: 1.15em; }
.about-highlights { display: flex; flex-wrap: wrap; gap: 14px 24px; margin-top: 38px; padding-top: 28px; border-top: 3px solid var(--pink); }
.about-highlights span { position: relative; padding-left: 18px; font-size: 13px; font-weight: 900; letter-spacing: .04em; text-transform: uppercase; }
.about-highlights span::before { content: "✦"; position: absolute; left: 0; color: var(--pink); }

@media (prefers-reduced-motion: reduce) {
  .ticker-track,
  .about-ribbon-track { animation-play-state: paused; }
}

@media (max-width: 900px) {
  .about-section { grid-template-columns: minmax(260px, .8fr) 58px minmax(0, 1.2fr); }
  .about-content { padding-inline: clamp(28px, 5vw, 60px); }
}

@media (max-width: 720px) {
  .editorial-ticker { height: 46px; }
  .ticker-track p { font-size: 13px; }
  .portfolio-grid { grid-template-columns: 1fr; gap: 58px; }
  .project-info { display: block; }
  .project-info > a { display: inline-block; margin-top: 18px; }
  .about-section { min-height: 0; grid-template-columns: 1fr; }
  .about-photo img { min-height: 0; aspect-ratio: 4 / 5; object-position: center; }
  .about-ribbon { height: 48px; border-inline: 0; border-block: 3px solid var(--blue); }
  .about-ribbon-track { position: static; flex-direction: row; width: max-content; height: 100%; animation-name: about-ribbon-mobile; }
  .about-ribbon-track span { padding: 0 20px; writing-mode: horizontal-tb; transform: none; }
  @keyframes about-ribbon-mobile { to { transform: translateX(-50%); } }
  .about-content { padding: 68px 24px 80px; }
  .about-content h2 { font-size: clamp(34px, 10vw, 48px); }
  .about-highlights { display: grid; grid-template-columns: 1fr; }
}
