@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900&display=swap');

@font-face {
  font-family: 'Aminute';
  src: url('../fonts/Aminute.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  overflow-x: hidden;
  max-width: 100%;
  background: #1e1e1e;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: #fff;
}

img { max-width: none; display: block; }

.hidden { display: none !important; }

/* ---------- Scale canvas ---------- */

.fc-outer {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #1e1e1e;
}

.fc-canvas {
  position: relative;
  width: 1920px;
  height: 5032px;
  transform-origin: top left;
  background: #1e1e1e;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

.abs { position: absolute; }

/* ---------- Type helpers ---------- */

.t-blk { font-weight: 900; }
.t-eb { font-weight: 800; }
.t-b { font-weight: 700; }
.t-sb { font-weight: 600; }
.t-m { font-weight: 500; }
.t-r { font-weight: 400; }
.t-l { font-weight: 300; }
.t-am { font-family: 'Aminute', 'Quicksand', sans-serif; font-weight: 400; }

.c-white { color: #fff; }
.c-pink { color: #ff92ca; }
.c-pink2 { color: #fcbfd7; }
.c-pink3 { color: #ffd7dd; }
.c-dark { color: #d6647b; }
.c-ink { color: #3d3d41; }
.c-label { color: #ba5f8d; }
.c-black { color: #131313; }

.nowrap { white-space: nowrap; }

/* ---------- Nav ---------- */

.fc-nav-link {
  text-decoration: none;
  font-size: 20.289px;
  letter-spacing: -1.42px;
}

.fc-lang-outer {
  display: flex;
  align-items: center;
  background: #2b2b2e;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 28.5px;
  padding: 0 22px;
}
.fc-lang-outer .lang-switcher {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 10px;
  margin: 0;
}
.fc-lang-outer .lang-btn {
  background: none;
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: #fff;
  opacity: 0.5;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}
.fc-lang-outer .lang-btn.active { opacity: 1; }
.fc-lang-outer .lang-btn[data-lang="pt"]::before { content: "🇧🇷"; font-size: 16px; }
.fc-lang-outer .lang-btn[data-lang="en"]::before { content: "🇺🇸"; font-size: 16px; }
.fc-lang-outer .lang-sep {
  color: rgba(255,255,255,0.35);
  font-size: 0;
  position: relative;
}
.fc-lang-outer .lang-sep::before {
  content: "·";
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -60%);
}

/* ---------- Portfolio marquee ---------- */

.fc-marquee-clip { overflow: hidden; }

.fc-marquee-track {
  display: flex;
  align-items: center;
  gap: 13.856px;
  width: max-content;
  height: 100%;
  animation: fc-marquee 42s linear infinite;
}
.fc-marquee-clip:hover .fc-marquee-track { animation-play-state: paused; }

@keyframes fc-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Button shine sweep ---------- */

.fc-btn-shine {
  animation: fc-pulse-glow 2.6s ease-in-out infinite;
}
@keyframes fc-pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,146,202,0), inset 0 1px 0 rgba(255,255,255,0.3); }
  50% { box-shadow: 0 0 26px 6px rgba(255,146,202,0.6), inset 0 1px 0 rgba(255,255,255,0.3); }
}
.fc-shine-clip {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  overflow: hidden;
  display: block;
  pointer-events: none;
}
.fc-shine-clip::after {
  content: "";
  position: absolute;
  top: -20%;
  left: -60%;
  width: 45%;
  height: 140%;
  background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,0.75) 50%, transparent 100%);
  transform: skewX(-22deg);
  animation: fc-shine-sweep 3.2s ease-in-out infinite;
}
@keyframes fc-shine-sweep {
  0% { left: -60%; }
  28% { left: 130%; }
  100% { left: 130%; }
}

/* ---------- Footer floating bubbles ---------- */

.fc-float { animation: fc-float-bob 6s ease-in-out infinite; }
.fc-float-a { animation-duration: 5.5s; animation-delay: 0s; }
.fc-float-b { animation-duration: 6.5s; animation-delay: -1.5s; }
.fc-float-c { animation-duration: 7s; animation-delay: -3s; }

@keyframes fc-float-bob {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-10px) translateX(3px); }
}

.fc-spin { transform-origin: center; }

.fc-icon-primary.fc-spin-a { animation: fc-spin-rotate 14s linear infinite, fc-icon-fade-out 7s ease-in-out infinite; }
.fc-icon-alt.fc-spin-a { animation: fc-spin-rotate 14s linear infinite, fc-icon-fade-in 7s ease-in-out infinite; }
.fc-icon-primary.fc-spin-b { animation: fc-spin-rotate 18s linear infinite reverse, fc-icon-fade-out 7s ease-in-out infinite -2s; }
.fc-icon-alt.fc-spin-b { animation: fc-spin-rotate 18s linear infinite reverse, fc-icon-fade-in 7s ease-in-out infinite -2s; }
.fc-icon-primary.fc-spin-c { animation: fc-spin-rotate 22s linear infinite, fc-icon-fade-out 7s ease-in-out infinite -4s; }
.fc-icon-alt.fc-spin-c { animation: fc-spin-rotate 22s linear infinite, fc-icon-fade-in 7s ease-in-out infinite -4s; }

@keyframes fc-spin-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes fc-icon-fade-out {
  0%, 40% { opacity: 1; }
  50%, 90% { opacity: 0; }
  100% { opacity: 1; }
}
@keyframes fc-icon-fade-in {
  0%, 40% { opacity: 0; }
  50%, 90% { opacity: 1; }
  100% { opacity: 0; }
}

/* ---------- Services accordion ---------- */

.fc-accordion { position: relative; }

.fc-acc-divider {
  height: 1px;
  background: rgba(255,255,255,0.25);
  width: 100%;
}

.fc-acc-row {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 23px 0 22px;
  font-family: inherit;
}

.fc-acc-num { font-size: 29.647px; flex-shrink: 0; margin: 0; }
.fc-acc-title { font-size: 28.958px; flex: 1; margin: 0; }
.fc-acc-chev {
  font-size: 22px;
  color: #fff;
  opacity: 0.7;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.fc-acc-item.open .fc-acc-chev { transform: rotate(180deg); }

.fc-acc-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}
.fc-acc-item.open .fc-acc-body { grid-template-rows: 1fr; }
.fc-acc-inner { overflow: hidden; min-height: 0; }

.fc-acc-list {
  list-style: none;
  margin: 0;
  padding: 4px 0 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.fc-acc-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 17px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  font-family: 'Montserrat', sans-serif;
}
.fc-acc-list .spark {
  color: #ff92ca;
  font-size: 15px;
  margin-top: 2px;
  flex-shrink: 0;
}

.fc-card {
  position: relative;
  width: 632.412px;
  height: 386.969px;
  border-radius: 45px;
  overflow: hidden;
  flex-shrink: 0;
}
.fc-card img { width: 100%; height: 100%; object-fit: cover; }
.fc-card .tag {
  position: absolute;
  left: 20px; top: 20.78px;
  background: rgba(61,61,65,0.85);
  border: 1px solid rgba(255,255,255,0.33);
  border-radius: 19.5px;
  padding: 8px 18px;
  font-size: 12.55px;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
}
.fc-card .year {
  position: absolute;
  right: 20px; bottom: 20px;
  border: 1px solid rgba(255,255,255,0.33);
  border-radius: 16.5px;
  padding: 6px 14px;
  font-size: 14.57px;
  font-weight: 300;
  color: #fff;
}
.fc-card .name {
  position: absolute;
  left: 20px; bottom: 20px;
  font-size: 16.25px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}

/* ---------- Contact form fields ---------- */

.fc-input {
  border: none;
  font-family: inherit;
  font-size: 15px;
  color: #3d3d41;
  padding: 0 18px;
}
.fc-input::placeholder { color: #9a9a9e; }
.fc-textarea {
  border: none;
  font-family: inherit;
  font-size: 15px;
  color: #3d3d41;
  padding: 14px 18px;
  resize: none;
}
.fc-textarea::placeholder { color: #9a9a9e; }
.fc-submit {
  border: none;
  font-family: inherit;
  cursor: pointer;
}
.fc-submit:disabled { opacity: 0.7; cursor: not-allowed; }
.fc-msg { font-size: 13px; font-weight: 600; }
.fc-msg.success { color: #1f5c3a; }
.fc-msg.error { color: #7a1f1f; }

.fc-client-link {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================================
   Mobile reflowed layout (genuine flow, not a scaled-down canvas)
   ============================================================ */

.fc-mobile { display: none; }

@media (max-width: 767px) {
  .fc-outer { display: none; }
  .fc-mobile { display: block; }
}

.fc-mobile { background: #1e1e1e; overflow-x: hidden; }
.fc-mobile img { max-width: 100%; }

.fc-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.fc-reveal.fc-reveal-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .fc-reveal { opacity: 1; transform: none; transition: none; }
}

.fc-m-section { padding: 44px 22px; }
.fc-m-eyebrow {
  font-family: 'Aminute', 'Quicksand', sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #fff;
  margin: 0 0 6px;
}

/* nav */
.fc-m-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 20px;
  background: rgba(30, 30, 30, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.fc-m-nav-right { display: flex; align-items: center; gap: 10px; }
.fc-m-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.fc-m-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.fc-lang-outer-m {
  padding: 0 12px;
  height: 38px;
  border-radius: 19px;
}
.fc-lang-outer-m .lang-btn { font-size: 14px; gap: 5px; }
.fc-m-nav-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ff92ca;
  border: 1px solid #ffd7dd;
  color: #3d3d41;
  font-weight: 600;
  font-size: 13.5px;
  padding: 10px 18px;
  border-radius: 20px;
  text-decoration: none;
  white-space: nowrap;
}

/* hero */
.fc-m-hero { padding: 30px 22px 8px; }
.fc-m-hero-heading {
  font-weight: 800;
  font-size: 15.5vw;
  line-height: 0.92;
  letter-spacing: -0.5px;
  margin: 4px 0 0;
}
.fc-m-hero-heading .pink { color: #ff92ca; }
.fc-m-hero-sub { margin: 18px 0 26px; }
.fc-m-hero-sub .lead {
  font-family: 'Aminute', 'Quicksand', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  display: block;
  margin-bottom: 2px;
}
.fc-m-hero-sub .graphic {
  font-weight: 800;
  font-size: 24px;
  color: #fff;
}
.fc-m-hero-photo {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  aspect-ratio: 513 / 683;
  border-radius: 28px;
  overflow: hidden;
}
.fc-m-hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }

/* tagline */
.fc-m-tagline-1 { font-size: 16px; font-weight: 500; margin: 0 0 8px; color: #fff; }
.fc-m-tagline-2 {
  font-family: 'Aminute', 'Quicksand', sans-serif;
  font-weight: 400;
  font-size: 9vw;
  line-height: 1.08;
  margin: 0 0 16px;
}
.fc-m-tagline-3 { font-size: 14.5px; line-height: 1.55; color: #fff; opacity: 0.85; margin: 0; }

/* portfolio marquee — scrolls on its own, no manual interaction */
.fc-m-carousel-wrap { padding: 0 0 44px; }
.fc-m-carousel-title { padding: 0 22px 18px; font-size: 16px; font-weight: 500; color: #fff; margin: 0; }
.fc-m-marquee-clip { overflow: hidden; padding: 4px 0 6px; }
.fc-m-marquee-track {
  display: flex;
  align-items: center;
  gap: 14px;
  width: max-content;
  padding-left: 22px;
  animation: fc-m-marquee 48s linear infinite;
}
@keyframes fc-m-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.fc-m-card {
  position: relative;
  flex: 0 0 78vw;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 632 / 387;
}
.fc-m-card img { width: 100%; height: 100%; object-fit: cover; }
.fc-m-card .tag {
  position: absolute; left: 14px; top: 14px;
  background: rgba(61, 61, 65, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.33);
  border-radius: 14px;
  padding: 5px 12px;
  font-size: 10.5px;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
}
.fc-m-card .name {
  position: absolute; left: 14px; bottom: 14px;
  font-size: 14px; font-weight: 700; color: #fff;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}
.fc-m-card .year {
  position: absolute; right: 14px; bottom: 14px;
  border: 1px solid rgba(255, 255, 255, 0.33);
  border-radius: 12px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 300;
  color: #fff;
}
/* cta button */
.fc-m-cta-wrap { display: flex; justify-content: center; }
.fc-m-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 19px 30px;
  border-radius: 37px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0) 75%), #ff92ca;
  color: #3d3d41;
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.2px;
  text-decoration: none;
}

/* services */
.fc-m-services-title { font-size: 8.6vw; font-weight: 800; color: #fff; margin: 0; }
.fc-m-services-sub {
  font-family: 'Aminute', 'Quicksand', sans-serif;
  font-weight: 400;
  color: #ff92ca;
  font-size: 7vw;
  margin: 4px 0 16px;
}
.fc-m-services-desc { font-size: 14.5px; line-height: 1.55; color: #ffd7dd; opacity: 0.9; margin: 0 0 30px; }
.fc-m-services-photo {
  width: 100%;
  margin-top: 30px;
  aspect-ratio: 466 / 320;
  position: relative;
}
.fc-m-services-photo-inner {
  width: 100%;
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
}
.fc-m-services-photo-inner img { width: 100%; height: 100%; object-fit: cover; }
.fc-m-services-badge {
  position: absolute;
  right: 18px;
  bottom: -18px;
  width: 84px;
  height: 84px;
  background: #ff92ca;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}
.fc-m-services-badge img { width: 34px; height: 34px; }

/* about */
.fc-m-about-photo {
  width: 100%;
  max-width: 320px;
  margin: 0 auto 30px;
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 407 / 491;
}
.fc-m-about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 60% 20%; }
.fc-m-about-greeting { font-size: 7.6vw; font-weight: 700; color: #fff; margin: 0; }
.fc-m-about-name {
  font-family: 'Aminute', 'Quicksand', sans-serif;
  font-weight: 400;
  color: #ff92ca;
  font-size: 6.8vw;
  margin: 2px 0 16px;
}
.fc-m-about-bio { font-size: 14px; line-height: 1.62; color: #fff; opacity: 0.88; margin: 0 0 28px; }
.fc-m-stats { display: flex; flex-wrap: wrap; gap: 22px 30px; }
.fc-m-stat { flex: 1 1 38%; }
.fc-m-stat .num { font-weight: 900; color: #ff92ca; font-size: 11vw; margin: 0; }
.fc-m-stat .label { font-size: 12.5px; color: #fff; opacity: 0.8; margin: 4px 0 0; }

/* contact */
.fc-m-contact-card {
  background: #ff92ca;
  border-radius: 30px;
  padding: 34px 24px;
  position: relative;
  overflow: hidden;
}
.fc-m-contact-badges { display: flex; gap: 10px; margin-bottom: 18px; }
.fc-m-contact-h1 { font-weight: 900; color: #fff; font-size: 8vw; line-height: 1.15; margin: 0 0 14px; }
.fc-m-contact-desc { color: #fff; font-size: 14px; line-height: 1.55; margin: 0 0 26px; font-weight: 600; }
.fc-m-contact-form { display: flex; flex-direction: column; gap: 12px; position: relative; z-index: 1; }
.fc-m-contact-form input,
.fc-m-contact-form textarea {
  width: 100%;
  border: none;
  border-radius: 12px;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 14px;
  color: #3d3d41;
  background: #fff;
}
.fc-m-contact-form input::placeholder,
.fc-m-contact-form textarea::placeholder { color: #9a9a9e; }
.fc-m-contact-form textarea { min-height: 120px; resize: none; }
.fc-m-contact-submit {
  position: relative;
  align-self: flex-start;
  margin-top: 4px;
  border: none;
  padding: 14px 30px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0) 75%), #ffd7dd;
  color: #3d3d41;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  font-family: inherit;
}
.fc-m-contact-submit:disabled { opacity: 0.7; cursor: not-allowed; }

/* footer */
.fc-m-footer { background: #ff92ca; padding: 40px 22px 30px; }
.fc-m-footer-logo { height: 32px; margin-bottom: 30px; }
.fc-m-footer-logo img { height: 100%; width: auto; object-fit: contain; }
.fc-m-footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 16px; margin-bottom: 26px; }
.fc-m-footer-label { font-weight: 600; color: #ba5f8d; font-size: 14px; margin: 0 0 4px; }
.fc-m-footer-value { font-weight: 700; color: #131313; font-size: 13.5px; margin: 0; word-break: break-word; }
.fc-m-footer-divider { height: 1px; background: rgba(19, 19, 19, 0.35); margin: 6px 0 20px; }
.fc-m-footer-copy { font-size: 11.5px; color: #131313; text-align: center; margin: 0 0 26px; }
.fc-m-footer-circles { display: flex; justify-content: center; gap: 4px; }
.fc-m-bubble { position: relative; width: 58px; height: 58px; }
.fc-m-bubble-bg { position: absolute; inset: 0; width: 100%; height: 100%; }
.fc-m-bubble-icon { position: absolute; left: 18%; top: 18%; width: 64%; height: 64%; }

@media (max-width: 767px) {
  .fc-acc-num { font-size: 17px; }
  .fc-acc-title { font-size: 16.5px; }
  .fc-acc-chev { font-size: 17px; }
  .fc-acc-row { padding: 18px 0; gap: 10px; }
  .fc-acc-list li { font-size: 14px; }
}
