@import url("./reset.css");
@import url("./variables.css");
@import url("./base.css");
@import url("./home.css");

/* ===========================
   SERVICES PAGE
=========================== */

.services-page,
.selected-work-page {
  min-height: 100vh;

  background:
    linear-gradient(rgba(8, 8, 8, 0.45), rgba(8, 8, 8, 0.55)),
    url("../images/services/background.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.services-hero {
  padding: 90px 54px 65px;
  text-align: center;
  animation: servicesReveal 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.services-title {
  color: #fff;

  font-size: 60px;
  font-weight: 700;

  letter-spacing: 0.24em;
  text-transform: uppercase;

  background: linear-gradient(
    180deg,
    #8a8a8a79 5%,
    #e8e8e8 15%,
    #ffffff 30%,
    #9a9a9a5b 42%,
    #d4d4d4 50%,
    #ffffff 58%,
    #7a7a7a2c 72%,
    #c8c8c8 86%,
    #ffffff 100%
  );

  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;

  filter: drop-shadow(0 2px 10px rgba(255, 255, 255, 0.035));

  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.4),
    0 -1px 0 rgba(0, 0, 0, 0.45),
    0 3px 6px rgba(0, 0, 0, 0.7),
    0 14px 30px rgba(0, 0, 0, 0.5);
}

.services-grid {
  width: min(1400px, 100%);
  margin: 0 auto;
  padding: 0 54px 120px;

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 35px;
  animation: servicesReveal 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  animation-delay: 0.2s;
  animation-fill-mode: both;
}
.service-card {
  position: relative;

  width: 100% !important;
  height: 100% !important;
  flex: none !important;
  aspect-ratio: 1 / 1;

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

  clip-path: polygon(
    25% 6.7%,
    75% 6.7%,
    100% 50%,
    75% 93.3%,
    25% 93.3%,
    0% 50%
  );

  background: #0b0b0b;
  text-decoration: none;

  transition: transform 0.35s ease;
}
.service-card-wrap {
  flex: 0 0 410px;
  width: 410px;
  height: 410px;
  aspect-ratio: 1 / 1;

  filter: drop-shadow(0 0 1.2px rgba(255, 195, 120, 1))
    drop-shadow(0 0 0.4px rgba(255, 210, 150, 1))
    drop-shadow(0 28px 38px rgba(0, 0, 0, 0.85))
    drop-shadow(0 10px 16px rgba(20, 15, 10, 0.75));

  transition: filter 0.4s ease;
}
.service-card-wrap:hover {
  filter: drop-shadow(0 0 2px rgba(255, 195, 120, 0.9))
    drop-shadow(0 0 14px rgba(255, 175, 90, 0.5))
    drop-shadow(0 28px 38px rgba(0, 0, 0, 0.85))
    drop-shadow(0 10px 16px rgba(20, 15, 10, 0.75));
}
.service-image {
  position: absolute;
  inset: 0;

  background-size: cover;
  background-position: center;

  transition: transform 2s ease;
}

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

.service-mixmaster {
  background-image: url("../images/services/mix-master.png");
  transform: scale(1.06);
}

.service-mix {
  background-image: url("../images/services/mix.png?v=1");
  background-position: 100% center;
}

.service-master {
  background-image: url("../images/services/master.png");
  background-position: 0% center;
}

.service-mentoring {
  background-image: url("../images/services/mentoring.png");
  background-position: 100% center;
}
.service-card::before {
  content: "";

  position: absolute;
  inset: 0;

  z-index: 1;

  background:
    radial-gradient(
      circle,
      rgba(0, 0, 0, 0.12) 80%,
      rgba(0, 0, 0, 0.58) 98%,
      rgba(0, 0, 0, 0.9) 100%
    ),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.78));
}
.service-card::after {
  content: "";

  position: absolute;
  inset: 0;

  z-index: 2;

  clip-path: polygon(
    25% 6.7%,
    75% 6.7%,
    100% 50%,
    75% 93.3%,
    25% 93.3%,
    0% 50%
  );

  box-shadow: inset 0 0 0 1.5px rgba(255, 195, 120, 0.6);

  pointer-events: none;
}
.service-card span {
  position: relative;
  z-index: 2;

  transform: translateY(-2px);

  color: #f2f2f2;
  font-size: 29px;
  font-weight: 700;
  letter-spacing: 0.18em;

  background: linear-gradient(180deg, #ffffff 0%, #ffffff 100%);

  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;

  text-shadow:
    0 1px 0 rgba(0, 0, 0, 0.35),
    0 2px 2px rgba(0, 0, 0, 0.25),
    0 4px 6px rgba(0, 0, 0, 0.12);
  transition:
    transform 2s ease,
    text-shadow 2s ease;
}
.service-card:hover span {
  transform: translateY(-2px) scale(1.04);
}
.home-logo-link {
  position: fixed;
  top: 24px;
  left: 20px;

  z-index: 1000;

  text-decoration: none;
}

.logo-small {
  font-size: 33px;
  margin-top: 5px;
  margin-left: 3px;
  opacity: 0.72;

  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

.logo-small .lus {
  margin-left: 25px;
}

.home-logo-link:hover .logo-small {
  opacity: 1;
  transform: translateY(-2px);
}
/* ===========================
   ABOUT
=========================== */

.about-page {
  min-height: 100vh;

  background:
    linear-gradient(rgba(8, 8, 8, 0.45), rgba(8, 8, 8, 0.55)),
    url("../images/services/background.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.about-page .hero-header {
  position: static;
}
/* HERO */

.about-hero {
  min-height: 88vh;

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

  padding: 0 54px;

  text-align: center;
}

.about-title {
  max-width: 1500px;

  margin: 0;

  background: linear-gradient(
    100deg,
    #8a8a8a 0%,
    #e8e8e8 20%,
    #ffffff 35%,
    #9a9a9a 50%,
    #d4d4d4 65%,
    #ffffff 80%,
    #b0b0b0 100%
  );
  background-size: 200% 100%;

  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;

  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.4),
    0 -1px 0 rgba(0, 0, 0, 0.5),
    0 4px 10px rgba(0, 0, 0, 0.75),
    0 16px 34px rgba(0, 0, 0, 0.55);

  font-size: 60px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.015em;
}

/* MANIFESTO */

/* IMAGE */

.about-image {
  position: relative;
  margin-top: 70px;

  padding: 70px 54px 150px;
}

.about-image-wrapper {
  width: min(1400px, calc(100% - 80px));
  aspect-ratio: 3/1;

  margin: 0 auto;

  overflow: hidden;
}

.about-image img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  filter: brightness(0.82) contrast(1.05) saturate(0.9);

  transition:
    transform 0.8s ease,
    filter 0.8s ease;
}

.about-image-wrapper:hover img {
  transform: scale(1.02);

  filter: brightness(0.9) contrast(1.08) saturate(0.95);
}

/* ENDING */

.about-ending {
  display: flex;
  justify-content: center;
  align-items: center;

  padding: 0 0px 420px;

  text-align: center;

  margin-top: -40px;
}
.about-ending h2 {
  max-width: 1000px;

  margin: 0;

  background: linear-gradient(
    100deg,
    #8a8a8a 0%,
    #e8e8e8 20%,
    #ffffff 35%,
    #9a9a9a 50%,
    #d4d4d4 65%,
    #ffffff 80%,
    #b0b0b0 100%
  );
  background-size: 200% 100%;

  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;

  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.4),
    0 -1px 0 rgba(0, 0, 0, 0.5),
    0 4px 10px rgba(0, 0, 0, 0.75),
    0 16px 34px rgba(0, 0, 0, 0.55);
  font-size: 60px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.015em;
}
.about-manifesto {
  display: flex;
  justify-content: center;
  align-items: center;

  padding: 0 54px 160px;

  text-align: center;

  opacity: 0;
  transform: translateY(24px);
  animation: aboutReveal 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.5s;
}

.about-manifesto p {
  max-width: 820px;

  margin: 0;

  background: linear-gradient(
    100deg,
    #8a8a8a 0%,
    #e8e8e8 20%,
    #ffffff 35%,
    #9a9a9a 50%,
    #d4d4d4 65%,
    #ffffff 80%,
    #b0b0b0 100%
  );
  background-size: 200% 100%;

  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;

  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.3),
    0 3px 8px rgba(0, 0, 0, 0.6);

  font-size: 30px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.01em;

  animation: titleShine 7s ease-in-out infinite;
}

.manifesto-line {
  display: block;
}

.manifesto-line:first-child {
  margin-bottom: 16px;
}
/* SELECTED WORK */

.about-selected {
  padding: 0 54px 220px;
}
.about-selected-title {
  margin: 0 0 70px;

  background: linear-gradient(
    100deg,
    #8a8a8a 0%,
    #e8e8e8 20%,
    #ffffff 35%,
    #9a9a9a 50%,
    #d4d4d4 65%,
    #ffffff 80%,
    #b0b0b0 100%
  );
  background-size: 200% 100%;

  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;

  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.4),
    0 -1px 0 rgba(0, 0, 0, 0.5),
    0 4px 10px rgba(0, 0, 0, 0.75),
    0 16px 34px rgba(0, 0, 0, 0.55);
  font-size: 51px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.selected-grid {
  width: min(1500px, 100%);

  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0px;
}

.selected-item {
  display: block;

  overflow: hidden;

  text-decoration: none;

  border-radius: 4px;
}
.selected-item img {
  display: block;

  width: 100%;
  margin: 0 auto;

  aspect-ratio: 1;
  object-fit: cover;

  transition: transform 0.45s ease;
}

.selected-item:hover img {
  transform: scale(1.04);
}
/* ===========================
   SELECTED WORK
=========================== */

.selected-work-list {
  width: min(2000px, 100%);

  margin: 0;

  padding: 60px 54px 120px;

  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 70px 90px;
}
.work-item {
  display: flex;
  align-items: center;

  gap: 28px;

  min-width: 0;
}

.work-item:last-child {
  border-bottom: none;
}
.work-image {
  flex-shrink: 0;

  width: 420px;
}

.work-image img {
  width: 100%;
  height: auto;

  display: block;

  border-radius: 4px;
}
.work-overlay {
  display: flex;
  flex-direction: column;
  justify-content: center;

  flex: 1;
  max-width: none;

  min-width: 0;
}
.work-artist {
  margin-bottom: 21px;

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

  font-size: 22px;
  font-weight: 300;
}

.work-title {
  margin-bottom: 32px;

  color: #fff;

  font-size: 58px;
  font-weight: 700;
  line-height: 0.95;
}

.work-role {
  margin: 0;

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

  font-size: 13px;
  font-weight: 500;

  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ===========================
   CONTACT
=========================== */

.contact-page {
  min-height: 100vh;

  background:
    linear-gradient(rgba(8, 8, 8, 0.45), rgba(8, 8, 8, 0.55)),
    url("../images/services/background.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.contact-content {
  min-height: calc(100vh - 110px);

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

  text-align: center;

  padding: 0 40px;
}

.contact-title,
.contact-subtitle,
.contact-email,
.contact-location {
  margin: 0;
}
.contact-title {
  color: #fff;

  font-size: 78px;
  font-weight: 600;

  letter-spacing: 0.18em;
  text-transform: uppercase;

  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #faf8f2 22%,
    #efefec 60%,
    #dfdfdc 100%
  );

  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;

  filter: drop-shadow(0 2px 10px rgba(255, 255, 255, 0.035));

  text-shadow:
    0 1px 1px rgba(0, 0, 0, 0.45),
    0 6px 18px rgba(0, 0, 0, 0.18);

  margin-bottom: 42px;
}
.contact-subtitle {
  color: rgba(255, 255, 255, 0.45);

  font-size: 15px;
  font-weight: 500;

  letter-spacing: 0.12em;

  margin-bottom: 56px;
}
.contact-email {
  display: inline-block;

  text-decoration: none;
  cursor: pointer;

  padding: 8px 0;

  font-size: 48px;
  font-weight: 600;

  letter-spacing: -0.02em;
  line-height: 1.1;

  background: linear-gradient(180deg, #ffffff 0%, #f5f5f5 35%, #d7d7d7 100%);

  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;

  text-shadow:
    0 1px 1px rgba(0, 0, 0, 0.35),
    0 8px 22px rgba(0, 0, 0, 0.18);

  margin-bottom: 70px;

  transition:
    opacity 0.35s ease,
    transform 0.45s ease;
}

.contact-email:hover {
  opacity: 0.85;
  transform: translateY(-1px);
  color: #e5c37d;

  text-shadow: 0 0 18px rgba(229, 195, 125, 0.18);
}

.contact-location {
  color: rgba(255, 255, 255, 0.45);

  font-size: 17px;
  font-weight: 400;

  letter-spacing: 0.05em;
}
.contact-wrapper {
  width: min(720px, 100%);
}
.contact-content {
  animation: contactFade 0.9s ease-out;
}

@keyframes contactFade {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.985);
    filter: blur(4px);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes locationGlow {
  0% {
    filter: brightness(1);
  }

  45% {
    filter: brightness(1.25);
  }

  100% {
    filter: brightness(1.08);
  }
}
@keyframes servicesReveal {
  0% {
    opacity: 0;
    transform: translateY(14px);
    filter: blur(3px);
  }

  15% {
    opacity: 0.12;
    filter: blur(2.5px);
  }

  30% {
    opacity: 0.28;
    filter: blur(2.2px);
  }

  45% {
    opacity: 0.5;
    filter: blur(2px);
  }

  60% {
    opacity: 0.72;
    filter: blur(1.2px);
  }

  75% {
    opacity: 0.88;
    filter: blur(0.6px);
  }

  90% {
    opacity: 0.97;
    transform: translateY(1px);
    filter: blur(0.15px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}
/* ==========================================
   ABOUT PAGE ANIMATION
========================================== */

@keyframes aboutFadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-hero,
.about-image,
.about-ending,
.about-selected {
  opacity: 0;
  transform: translateY(24px);
  animation: aboutFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.about-hero {
  animation-delay: 0.1s;
}

.about-image {
  animation-delay: 0.25s;
}

.about-ending {
  animation-delay: 0.4s;
}

.about-selected {
  animation-delay: 0.55s;
}
@keyframes aboutReveal {
  from {
    opacity: 0;
    transform: translateY(20px);
    filter: blur(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0px);
  }
}

.about-hero,
.about-image,
.about-ending,
.about-selected {
  animation: aboutReveal 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* ==========================================
   RESPONSIVIDADE - TABLET / MOBILE
========================================== */

@media (max-width: 900px) {
  /* --- HEADER / NAVEGAÇÃO (todas as páginas) --- */
  .hero-header {
    padding: 16px 20px;
  }

  .navigation-frame {
    padding: 0;
    padding-top: 54px;
  }

  .navigation {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 14px;
    column-gap: 22px;
  }

  .navigation a {
    font-size: 10px;
    letter-spacing: 0.14em;
  }

  .navigation a:hover::after,
  .navigation a.active::after {
    width: 70%;
  }

  .language-switcher {
    position: static;
    transform: none;
    justify-content: center;
    margin-top: 32px;
    font-size: 10px;
  }

  .home-logo-link {
    top: 16px;
    left: 16px;
  }

  .logo.logo-small {
    font-size: 16px;
  }

  .logo-small .lus {
    margin-left: 10px;
  }

  /* --- HOME --- */
  .hero {
    padding: 120px 24px 40px;
  }

  .hero-content {
    transform: translateY(-50px);
  }

  .logo {
    font-size: 72px;
  }

  .lus {
    margin-left: 44px;
  }

  .subtitle {
    margin-top: 32px;
    font-size: 11px;
    letter-spacing: 0.22em;
  }

  .cta {
    width: 100%;
    max-width: 360px;
    height: 64px;
    margin-top: 40px;
    font-size: 13px;
  }

  .hero-footer {
    padding-top: 48px;
  }

  /* --- SERVICES --- */
  .services-hero {
    padding: 130px 24px 40px;
  }

  .services-title {
    font-size: 34px;
  }

  .services-grid {
    flex-wrap: wrap;
    padding: 0 24px 70px;
    gap: 24px;
  }

  .service-card {
    width: 45% !important;
    height: auto !important;
    flex: 0 0 45% !important;
  }

  .service-card span {
    font-size: 16px;
  }

  /* --- ABOUT --- */
  .about-hero {
    padding: 0 24px;
  }

  .about-title {
    font-size: 30px;
  }

  .about-image {
    padding: 40px 24px 80px;
  }

  .about-ending {
    padding: 0 24px 100px;
  }

  .about-ending h2 {
    font-size: 28px;
  }

  .about-selected {
    padding: 0 24px 100px;
  }

  .about-selected-title {
    font-size: 26px;
    margin-bottom: 32px;
  }

  .selected-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  /* --- SELECTED WORK --- */
  .selected-work-list {
    padding: 30px 24px 70px;
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .work-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .work-image {
    width: 100%;
  }

  .work-title {
    font-size: 32px;
  }

  .work-artist {
    margin-bottom: 12px;
    font-size: 16px;
  }

  /* --- CONTACT --- */
  .contact-title {
    font-size: 36px;
    margin-bottom: 24px;
  }

  .contact-subtitle {
    font-size: 14px;
    margin-bottom: 32px;
  }

  .contact-email {
    font-size: 22px;
  }

  .contact-location {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 52px;
  }

  .lus {
    margin-left: 28px;
  }

  .navigation {
    column-gap: 16px;
    row-gap: 10px;
  }

  .navigation a {
    font-size: 9px;
  }

  .service-card {
    width: 100% !important;
    flex: 0 0 100% !important;
  }

  .services-title {
    font-size: 28px;
  }

  .about-title,
  .about-ending h2 {
    font-size: 24px;
  }

  .contact-title {
    font-size: 28px;
  }

  .contact-email {
    font-size: 18px;
  }
}
/* =========================================================
   PARTNERS PAGE
========================================================= */

.partners-page {
  min-height: 100vh;

  background:
    radial-gradient(
      ellipse at top,
      rgba(178, 132, 61, 0.12) 0%,
      rgba(178, 132, 61, 0.04) 18%,
      transparent 50%
    ),
    linear-gradient(rgba(8, 8, 8, 0.38), rgba(8, 8, 8, 0.58)),
    url("../images/services/background.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.partners-content {
  min-height: calc(100vh - 110px);

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

  text-align: center;

  padding: 0 40px;

  animation: partnersReveal 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.partners-title {
  margin: 0 0 24px;

  display: inline-block;

  font-size: 60px;
  font-weight: 600;

  letter-spacing: 0.22em;
  text-transform: uppercase;

  background: linear-gradient(
    100deg,
    #6f6f6f 0%,
    #d7d7d7 16%,
    #ffffff 30%,
    #9b9b9b 45%,
    #f1f1f1 60%,
    #ffffff 74%,
    #a6a6a6 88%,
    #6f6f6f 100%
  );

  background-size: 220% 100%;

  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;

  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.22),
    0 -1px 0 rgba(0, 0, 0, 0.45);

  filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.04))
    drop-shadow(0 18px 36px rgba(0, 0, 0, 0.24));

  animation: partnersMetal 12s linear infinite;
}

@keyframes partnersMetal {
  from {
    background-position: 0% 50%;
  }

  to {
    background-position: 220% 50%;
  }
}
.partners-supported {
  margin: 0 0 48px;

  color: #6f8ea3;

  font-size: 15px;
  font-weight: 500;

  letter-spacing: 0.35em;
  text-transform: uppercase;
}

.partners-text {
  max-width: 560px;

  margin: 0;

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

  font-size: 18px;
  line-height: 1.9;

  letter-spacing: 0.03em;
}

@keyframes partnersReveal {
  from {
    opacity: 0;
    transform: translateY(28px);
    filter: blur(5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}
