@charset "UTF-8";
.square {
  width: 6px;
  height: 6px;
  background-color: #E62633;
  display: inline-block;
}

.number {
  font-family: "Circular-black", sans-serif;
  font-size: 20px;
  color: #3E373B;
  letter-spacing: -1px;
  color: #3E373B;
}

@font-face {
  font-family: "Circular-black";
  src: url("../fonts/CircularStd-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: "Circular-bold";
  src: url("../fonts/CircularStd-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Circular-book";
  src: url("../fonts/CircularStd-Book.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Circular-medium";
  src: url("../fonts/CircularStd-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
html {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.section-header {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.description {
  max-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.description .linea {
  width: 200px;
  background-color: white;
  height: 1px;
}
@media (max-width: 768px) {
  .description .description-text {
    display: none;
  }
}
.description p {
  color: #ffffff;
  font-family: "Circular-book", sans-serif;
  font-size: 14px;
  margin: -1px;
  text-align: right;
  line-height: 1.25;
}
.description p span {
  font-family: "Circular-bold", sans-serif;
  color: #ffffff;
  font-size: 13px;
}
.description .number {
  color: #ffffff;
}

.arrow-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: none;
  border: none;
  font-family: "Circular-black", sans-serif;
  font-size: 20px;
  color: #3E373B;
  cursor: pointer;
  padding: 0;
  transition: opacity 0.3s ease;
  text-decoration: none;
}
.arrow-button span {
  color: #3E373B;
}
.arrow-button:hover {
  opacity: 0.8;
}
.arrow-button .arrow-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #3E373B;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  transition: background-color 0.3s ease;
}
.arrow-button .arrow-circle img {
  width: 22px;
  transform: rotate(180deg);
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}
.arrow-button:hover .arrow-circle img {
  transform: rotate(180deg) translateX(3px);
}

body {
  font-family: "Circular-book", sans-serif;
  font-size: 18px;
  line-height: 1.8;
  color: #999595;
  background-color: #f5f5f5;
  margin: 0;
  padding: 0;
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 768px) {
  body {
    font-size: 16px;
    line-height: 1.7;
    -webkit-overflow-scrolling: touch;
  }
}
body h1 {
  color: #F7F7F7;
  font-family: "Circular-black", sans-serif;
  font-size: 100px;
  line-height: 80px;
  letter-spacing: -1px;
}
@media (max-width: 768px) {
  body h1 {
    font-size: 50px;
    line-height: 56px;
  }
}
body h2 {
  font-family: "Circular-black", sans-serif;
  font-size: 80px;
  letter-spacing: -4px;
  color: #3E373B;
  margin: -32px 0 0 0;
  padding: 0;
}
@media (max-width: 768px) {
  body h2 {
    font-size: 40px;
    margin: -22px 0 0 0;
  }
}
body p,
body span {
  font-family: "Circular-book", sans-serif;
  font-size: 18px;
  color: #999595;
  letter-spacing: -1px;
  line-height: 1.8;
}
body a {
  text-decoration: none;
  color: unset;
}

.main-nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: #f5f5f5;
  z-index: 100;
}
.main-nav .nav-container {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 74px;
  padding: 0 2rem;
}
@media (max-width: 768px) {
  .main-nav .nav-container {
    height: 60px;
    padding: 0 1rem;
  }
}
.main-nav .nav-container .nav-left,
.main-nav .nav-container .nav-right {
  display: flex;
  gap: 1.5rem;
  padding: 0;
}
@media (max-width: 768px) {
  .main-nav .nav-container .nav-left,
  .main-nav .nav-container .nav-right {
    display: none;
  }
}
.main-nav .nav-container .nav-left li,
.main-nav .nav-container .nav-right li {
  list-style: none;
}
.main-nav .nav-container .nav-left li a,
.main-nav .nav-container .nav-right li a {
  text-decoration: none;
  color: #999595;
  font-family: "Circular-book", sans-serif;
  font-size: 15px;
  letter-spacing: -0.5px;
}
@media (max-width: 768px) {
  .main-nav .nav-container .nav-left li a,
  .main-nav .nav-container .nav-right li a {
    font-size: 16px;
  }
}
.main-nav .nav-container .nav-left li a.active,
.main-nav .nav-container .nav-right li a.active {
  color: #3E373B;
  font-family: "Circular-bold", sans-serif;
}
.main-nav .nav-container .logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.main-nav .nav-container .logo img {
  width: 100px;
}
@media (max-width: 768px) {
  .main-nav .nav-container .logo img {
    width: 70px;
  }
}
.main-nav .nav-container .menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: #999595;
  z-index: 101;
}
@media (max-width: 768px) {
  .main-nav .nav-container .menu-toggle {
    display: block;
  }
}
.main-nav .nav-container .nav-mobile {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 44px;
  left: 0;
  width: 50%;
  background-color: #3E373B;
  padding: 0;
  z-index: 100;
  opacity: 0.9;
}
.main-nav .nav-container .nav-mobile li {
  list-style: none;
  padding: 1rem;
}
.main-nav .nav-container .nav-mobile li a {
  color: #999595;
  text-decoration: none;
  font-family: "Circular-book", sans-serif;
  font-size: 15px;
}
.main-nav .nav-container .nav-mobile li a:hover {
  color: #ffffff;
}
.main-nav .nav-container .nav-mobile li a.active {
  color: #ffffff;
  font-family: "Circular-bold", sans-serif;
}
.main-nav .nav-container .nav-mobile li p {
  color: #999595;
  font-family: "Circular-book", sans-serif;
  font-size: 12px;
  line-height: 0.5;
}
.main-nav .nav-container .nav-mobile.open {
  display: flex;
}

.slider-css {
  padding-top: 74px;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
}
@media (max-width: 768px) {
  .slider-css {
    padding-top: 60px;
  }
}
.slider-css .slides {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}
.slider-css .slide {
  width: 100%;
  height: calc(100vh - 74px);
  position: relative;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .slider-css .slide {
    height: calc(100vh - 60px);
  }
}
.slider-css .slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.slider-css .slide img {
  width: 100vw;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}
.slider-css .slide .text {
  position: absolute;
  bottom: 4rem;
  left: 2rem;
  color: white;
  max-width: 800px;
  z-index: 2;
  display: flex;
  flex-direction: row-reverse;
  gap: 2rem;
}
@media (max-width: 768px) {
  .slider-css .slide .text {
    flex-direction: column-reverse;
    max-width: 300px;
    align-items: flex-end;
    gap: 0.5rem;
    bottom: 1rem;
    right: 5rem;
  }
}
.slider-css .slide .text h1 {
  max-width: 500px;
  line-height: 0.9;
  margin: 0;
}
@media (max-width: 768px) {
  .slider-css .slide .text h1 {
    font-size: 50px;
    line-height: 56px;
    text-align: right;
  }
}
.slider-css .navigation {
  position: absolute;
  top: 74px;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  height: 100%;
}
.slider-css .navigation .brand {
  margin-bottom: 2.5rem;
  transform: rotate(270deg);
  color: white;
  font-family: "Circular-book", sans-serif;
  font-size: 10px;
  white-space: nowrap;
  pointer-events: none;
}
.slider-css .navigation .linea {
  width: 1px;
  background-color: white;
  height: 180px;
  margin: 0.5rem 0;
  pointer-events: none;
}
.slider-css .navigation .numeration {
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  pointer-events: auto;
}
.slider-css .navigation .numeration label {
  font-family: "Circular-book", sans-serif;
  font-size: 13px;
  color: white;
  cursor: pointer;
}
@media (max-width: 768px) {
  .slider-css .navigation .numeration label {
    font-size: 11px;
  }
}
.slider-css .navigation .numeration label.active {
  font-family: "Circular-bold", sans-serif;
  color: red;
}

.text-section {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  margin: 80px auto;
  padding: 4rem 0;
}
@media (max-width: 768px) {
  .text-section {
    margin: 0;
    padding: 2rem 1rem;
  }
}
.text-section p {
  padding: 0;
  margin: 0;
}
@media (max-width: 768px) {
  .text-section p {
    font-size: 16px;
    line-height: 1.7;
  }
}

.work {
  background: #ffffff;
}
.work .work-container {
  padding: 4rem 2rem;
}
@media (max-width: 768px) {
  .work .work-container {
    padding: 2rem 1rem;
  }
}
.work .work-container .work-image-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.5rem 0;
}
.work .work-container .work-image-container .work-card-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  width: calc(33.333% - 1.5rem);
  cursor: pointer;
}
.work .work-container .work-image-container .work-card-container img {
  width: 100%;
  height: auto;
  -o-object-position: center;
  object-position: center;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.4s ease;
}
.work .work-container .work-image-container .work-card-container img:hover {
  filter: grayscale(0%);
}
.work .work-container .work-image-container .work-card-container .card-header {
  position: absolute;
  top: 47%;
  left: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.work .work-container .work-image-container .work-card-container .card-header .number {
  color: #ffffff;
}
.work .work-container .work-image-container .work-card-container .card-header .square {
  margin: 0 0.3rem;
}
@media (max-width: 768px) {
  .work .work-container .work-image-container {
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    padding: 1rem 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
    width: 100%;
    touch-action: pan-x;
  }
  .work .work-container .work-image-container::-webkit-scrollbar {
    display: none;
  }
  .work .work-container .work-image-container .work-card-container {
    min-width: 300px;
    scroll-snap-align: start;
    aspect-ratio: 1/1;
  }
}

.clients {
  padding: 4rem 2rem;
}
@media (max-width: 768px) {
  .clients {
    padding: 2rem 1rem;
  }
}
.clients .clients-image-container {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid #999595;
  border-left: 1px solid #999595;
}
.clients .clients-image-container .client-cell {
  width: 20%;
  aspect-ratio: 3/1;
  border-right: 1px solid #999595;
  border-bottom: 1px solid #999595;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .clients .clients-image-container .client-cell {
    width: 33.3333%;
    padding: 0.5rem;
  }
}
.clients .clients-image-container .client-cell img {
  max-width: 80%;
  max-height: 80%;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.contact-section {
  padding: 4rem 2rem;
  background: #ffffff;
}
.contact-section .contact-form {
  display: flex;
  flex-direction: column;
  max-width: 600px;
  margin: auto;
  padding: 2.5rem 0;
}
@media (max-width: 768px) {
  .contact-section .contact-form {
    padding: 0;
  }
}
.contact-section .contact-form h2 {
  padding-bottom: 2rem;
}
@media (max-width: 768px) {
  .contact-section .contact-form h2 {
    padding-bottom: 1rem;
  }
}
.contact-section .contact-form label {
  display: flex;
  flex-direction: column;
  color: #999595;
  font-family: "Circular-book", sans-serif;
  font-size: 1rem;
  padding-bottom: 1rem;
}
@media (max-width: 768px) {
  .contact-section .contact-form label {
    font-size: 0.9rem;
  }
}
.contact-section .contact-form label input,
.contact-section .contact-form label textarea {
  border: none;
  background: #f5f5f5;
  height: 60px;
  margin: 1.5rem 0;
  font-family: "Circular-book", sans-serif;
  font-size: 1rem;
  resize: none;
}
@media (max-width: 768px) {
  .contact-section .contact-form label input,
  .contact-section .contact-form label textarea {
    font-size: 16px;
    height: 40px;
    margin: 0.5rem 0;
  }
}
.contact-section .contact-form .primary-button {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #999595;
  font-family: "Circular-book", sans-serif;
  font-size: 18px;
  gap: 0.5rem;
  position: relative;
  background: none;
  border: none;
  flex-direction: row;
  font-family: "Circular-bold", sans-serif;
}
@media (max-width: 768px) {
  .contact-section .contact-form .primary-button span:not(.arrow-circle) {
    display: none;
  }
}
.contact-section .contact-form .primary-button .arrow-circle {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  margin-top: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), visibility 0.4s ease;
}
.contact-section .contact-form .primary-button .arrow-circle img {
  width: 100%;
  height: auto;
  transform: rotate(180deg);
}
@media (max-width: 768px) {
  .contact-section .contact-form .primary-button .arrow-circle {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    margin-top: 0;
  }
}
.contact-section .contact-form .primary-button:hover {
  color: #3E373B;
}
.contact-section .contact-form .primary-button:hover .arrow-circle {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
@media (max-width: 768px) {
  .contact-section .contact-form .primary-button {
    font-size: 16px;
  }
}
.contact-section .contact-form .contact-link {
  display: flex;
  justify-content: space-between;
  align-items: self-start;
}
.contact-section .contact-form .contact-link span {
  color: #3E373B;
}
.contact-section .contact-form .contact-link .link-images {
  gap: 1rem;
  display: flex;
  align-items: center;
}
.contact-section .contact-form .contact-link .link-images img {
  height: -moz-max-content;
  height: max-content;
  display: inline;
  margin: 0 0 0 1rem;
}
.contact-section .popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.contact-section .popup-content {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  position: relative;
  color: #3E373B;
}
.contact-section .close-icon {
  position: absolute;
  top: 0.5rem;
  right: 0.75rem;
  font-size: 1.5rem;
  cursor: pointer;
  color: #3E373B;
}

.work-page-body .work-page {
  background: #ffffff;
  height: 100vh;
  align-items: center;
}
.work-page-body .work-page .text-section {
  height: 100%;
  justify-content: center;
  padding: 0;
}
@media (max-width: 768px) {
  .work-page-body .work-page .text-section {
    padding: 2rem 1rem;
  }
}
.work-page-body .work-page .text-section .work-nav {
  width: 100%;
}
.work-page-body .work-page .text-section .work-nav .button-links {
  display: flex;
  justify-content: space-between;
  padding: 2rem 0;
  cursor: pointer;
}
.work-page-body .work-page .text-section .work-nav .button-links .work-button {
  display: flex;
  flex-direction: column;
  position: relative;
}
.work-page-body .work-page .text-section .work-nav .button-links .work-button:hover {
  color: #3E373B;
}
.work-page-body .work-page .text-section .work-nav .button-links .work-button .section-header {
  margin-bottom: -6px;
}
.work-page-body .work-page .text-section .work-nav .button-links .work-button a.link-with-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #999595;
  font-family: "Circular-book", sans-serif;
  font-size: 18px;
  gap: 0.5rem;
  position: relative;
  background: none;
  border: none;
  flex-direction: column;
}
.work-page-body .work-page .text-section .work-nav .button-links .work-button a.link-with-arrow .arrow-circle {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  margin-top: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), visibility 0.4s ease;
}
.work-page-body .work-page .text-section .work-nav .button-links .work-button a.link-with-arrow .arrow-circle img {
  width: 100%;
  height: auto;
  transform: rotate(0deg);
}
.work-page-body .work-page .text-section .work-nav .button-links .work-button a.link-with-arrow:hover {
  color: #3E373B;
}
.work-page-body .work-page .text-section .work-nav .button-links .work-button a.link-with-arrow:hover .arrow-circle {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@media (max-width: 768px) {
  .work-page-body .work-page .text-section .work-nav .button-links .work-button a.link-with-arrow {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .work-page-body .work-page .text-section .work-nav .button-links .work-button a.link-with-arrow {
    font-size: 16px;
  }
}
.work-page-body .work-page .text-section .work-nav .button-links .work-button a.link-with-arrow .arrow-circle {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0.5rem;
  width: 24px;
  height: 24px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), visibility 0.4s ease;
}
.work-page-body .work-page .text-section .work-nav .button-links .work-button a.link-with-arrow .arrow-circle img {
  width: 100%;
  height: auto;
  transform: rotate(270deg);
}
.work-page-body .work-page .text-section .work-nav .button-links .work-button a.link-with-arrow:hover {
  color: #3E373B;
}
.work-page-body .work-page .text-section .work-nav .button-links .work-button a.link-with-arrow:hover .arrow-circle {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.work-page-body .work-page .text-section .work-nav .button-links .work-button a.link-with-arrow:hover .arrow-circle img {
  filter: none;
}
.work-page-body .work-page-projects.grey {
  background: none;
}
.work-page-body .work-page-projects .work-container .obra-image-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.work-page-body .work-page-projects .work-container .obra-image-container .obra-card-container {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  width: calc(33.333% - 1.5rem);
}
.work-page-body .work-page-projects .work-container .obra-image-container .obra-card-container img {
  width: 100%;
  height: auto;
  -o-object-position: center;
  object-position: center;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.4s ease;
}
.work-page-body .work-page-projects .work-container .obra-image-container .obra-card-container img:hover {
  filter: grayscale(0%);
}
@media (max-width: 768px) {
  .work-page-body .work-page-projects .work-container .obra-image-container .obra-card-container img:hover {
    filter: none !important;
  }
}
.work-page-body .work-page-projects .work-container .obra-image-container .obra-card-container .card-header {
  position: absolute;
  top: 47%;
  left: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.work-page-body .work-page-projects .work-container .obra-image-container .obra-card-container .card-header .number {
  color: #ffffff;
}
.work-page-body .work-page-projects .work-container .obra-image-container .obra-card-container .card-header .square {
  margin: 0 0.3rem;
}
.work-page-body .work-page-projects .work-container .obra-image-container .obra-card-container.on-page {
  overflow: visible;
}
.work-page-body .work-page-projects .work-container .obra-image-container .obra-card-container.on-page .work-card-description {
  display: flex;
  flex-direction: column;
  justify-content: left;
  gap: 0;
}
.work-page-body .work-page-projects .work-container .obra-image-container .obra-card-container.on-page .work-card-description span {
  line-height: 1.3;
}
.work-page-body .work-page-projects .work-container .obra-image-container .obra-card-container.on-page .work-card-description .text {
  font-family: "Circular-bold", sans-serif;
  color: #3E373B;
}
@media (max-width: 768px) {
  .work-page-body .work-page-projects .work-container .obra-image-container .obra-card-container.on-page .work-card-description .text {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .work-page-body .work-page-projects .work-container .obra-image-container .obra-card-container.on-page .work-card-description .line-2 {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .work-page-body .work-page-projects .work-container .obra-image-container .obra-card-container {
    min-width: calc(50% - 1rem);
    aspect-ratio: 1/1;
  }
}

.detail-page-body .detail-main-image {
  height: calc(100vh - 74px);
  width: calc(100% - 4rem);
  margin: auto;
  position: relative;
  margin-top: 74px;
}
@media (max-width: 768px) {
  .detail-page-body .detail-main-image {
    height: calc(100vh - 60px);
    width: calc(100% - 2rem);
  }
}
.detail-page-body .detail-main-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.detail-page-body .detail-main-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.detail-page-body .detail-main-image.project .text {
  bottom: 2rem;
  left: 2rem;
  position: absolute;
  z-index: 2;
}
.detail-page-body .detail-main-image.project .text h1 {
  font-size: 50px;
  line-height: 1;
  margin: 0;
}
@media (max-width: 768px) {
  .detail-page-body .detail-main-image.project .text h1 {
    font-size: 32px;
    line-height: 56px;
  }
}
.detail-page-body .detail-main-image.project .text .number {
  color: #ffffff;
}
@media (max-width: 768px) {
  .detail-page-body .detail-main-image.project .text .number {
    font-size: 18px;
  }
}
.detail-page-body .text-section {
  max-width: calc(100% - 12rem);
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .detail-page-body .text-section {
    max-width: 100%;
    padding: 2rem !important;
  }
}
.detail-page-body .text-section .title {
  display: flex;
  flex-direction: row;
  margin: auto;
  gap: 2rem !important;
}
@media (max-width: 768px) {
  .detail-page-body .text-section .title {
    padding-top: 3rem;
    padding-bottom: 2rem !important;
  }
}
.detail-page-body .text-section .title .section-header {
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .detail-page-body .text-section .title .section-header h2 {
    line-height: 1;
  }
}
.detail-page-body .text-section .title .section-header .number {
  display: flex;
  flex-direction: row;
  align-items: inherit;
  gap: 0.3rem;
}
.detail-page-body .text-section .title .description.dark {
  align-items: self-start;
}
.detail-page-body .text-section .title .description.dark p,
.detail-page-body .text-section .title .description.dark span {
  color: #3E373B;
  text-align: left;
}
.detail-page-body .text-section .title .description.dark p span,
.detail-page-body .text-section .title .description.dark span span {
  font-family: "Circular-black", sans-serif;
}

#project-content .project-page .text-section {
  padding: 0 4rem;
}
#project-content .project-page .text-section h2 {
  margin: -22px 0 0 0;
  line-height: 1;
}
#project-content .project-page .text-section .title {
  align-items: anchor-center;
  margin: auto;
  padding-bottom: 0;
  padding-bottom: 4rem;
  justify-content: center;
  gap: 3rem;
}
#project-content .project-page .text-section .title .number {
  line-height: 1.2;
}
#project-content .project-page .text-section .title .description {
  position: relative;
}
#project-content .project-page .text-section .title .description::before {
  content: "";
  width: 2px;
  background-color: #3E373B;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -15px;
}
#project-content .project-page .text-section .text-description {
  line-height: 1.4;
  margin: auto;
  justify-content: center;
  align-items: center;
  align-self: center;
}
#project-content .project-page .text-section .text-description .intro {
  font-family: "Circular-black", sans-serif;
  margin: 2rem 0 0.5rem 0;
  font-size: 24px;
  color: #3E373B;
}
#project-content .project-page .text-section .text-description .square {
  margin-right: 5px;
}
#project-content .project-page .text-section .text-description .with-colon {
  font-family: "Circular-bold", sans-serif;
  color: #3E373B;
  line-height: 3.5rem;
}
#project-content .project-nav {
  display: flex;
  justify-content: space-between;
  padding: 1rem 2rem;
  transform: translateY(-50%);
}
#project-content .project-nav .nav-button {
  align-items: center;
}
#project-content .project-nav .nav-button.all {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #999595;
  font-family: "Circular-book", sans-serif;
  font-size: 18px;
  gap: 0.5rem;
  position: relative;
  background: none;
  border: none;
  flex-direction: column;
  font-family: "Circular-bold", sans-serif;
}
#project-content .project-nav .nav-button.all .arrow-circle {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  margin-top: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), visibility 0.4s ease;
}
#project-content .project-nav .nav-button.all .arrow-circle img {
  width: 100%;
  height: auto;
  transform: rotate(0deg);
}
#project-content .project-nav .nav-button.all:hover {
  color: #3E373B;
}
#project-content .project-nav .nav-button.all:hover .arrow-circle {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@media (max-width: 768px) {
  #project-content .project-nav .nav-button.all {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  #project-content .project-nav .nav-button.all {
    display: none;
  }
}
#project-content .project-nav .nav-button.prev {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #999595;
  font-family: "Circular-book", sans-serif;
  font-size: 18px;
  gap: 0.5rem;
  position: relative;
  background: none;
  border: none;
  flex-direction: row;
  font-family: "Circular-bold", sans-serif;
}
@media (max-width: 768px) {
  #project-content .project-nav .nav-button.prev span:not(.arrow-circle) {
    display: none;
  }
}
#project-content .project-nav .nav-button.prev .arrow-circle {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  margin-top: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-10px);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), visibility 0.4s ease;
}
#project-content .project-nav .nav-button.prev .arrow-circle img {
  width: 100%;
  height: auto;
  transform: rotate(0deg);
}
@media (max-width: 768px) {
  #project-content .project-nav .nav-button.prev .arrow-circle {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    margin-top: 0;
  }
}
#project-content .project-nav .nav-button.prev:hover {
  color: #3E373B;
}
#project-content .project-nav .nav-button.prev:hover .arrow-circle {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
@media (max-width: 768px) {
  #project-content .project-nav .nav-button.prev {
    font-size: 16px;
  }
}
#project-content .project-nav .nav-button.next {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #999595;
  font-family: "Circular-book", sans-serif;
  font-size: 18px;
  gap: 0.5rem;
  position: relative;
  background: none;
  border: none;
  flex-direction: row;
  font-family: "Circular-bold", sans-serif;
}
@media (max-width: 768px) {
  #project-content .project-nav .nav-button.next span:not(.arrow-circle) {
    display: none;
  }
}
#project-content .project-nav .nav-button.next .arrow-circle {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  margin-top: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), visibility 0.4s ease;
}
#project-content .project-nav .nav-button.next .arrow-circle img {
  width: 100%;
  height: auto;
  transform: rotate(180deg);
}
@media (max-width: 768px) {
  #project-content .project-nav .nav-button.next .arrow-circle {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    margin-top: 0;
  }
}
#project-content .project-nav .nav-button.next:hover {
  color: #3E373B;
}
#project-content .project-nav .nav-button.next:hover .arrow-circle {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
@media (max-width: 768px) {
  #project-content .project-nav .nav-button.next {
    font-size: 16px;
  }
}
#project-content .project-nav .nav-button.next img {
  transform: rotate(180deg);
}

#lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  flex-direction: row;
}
#lightbox-overlay .gallery-img {
  max-width: 95vw;
  max-height: 95vh;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}
#lightbox-overlay .lightbox-arrow {
  background: none;
  border: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
  padding: 1rem;
}
#lightbox-overlay .lightbox-arrow .arrow {
  width: 24px;
  /* Puedes ajustar según necesidad */
  height: auto;
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.5));
}
#lightbox-overlay #lightbox-prev {
  left: 2rem;
}
#lightbox-overlay #lightbox-next {
  right: 2rem;
}
#lightbox-overlay #lightbox-next .arrow {
  transform: scaleX(-1);
}

footer {
  background: #3E373B;
  display: flex;
  flex-direction: column;
  margin: auto;
  padding: 2.5rem 0;
}
footer .footer-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: auto;
  flex-wrap: wrap;
}
footer .footer-content img {
  max-width: 100px;
  margin: auto;
}
footer .footer-content p {
  color: #ffffff;
  font-size: 16px;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  footer {
    padding: 1.5rem 0;
  }
  footer .footer-content img {
    max-width: 80px;
  }
  footer .footer-content p {
    display: none;
  }
}/*# sourceMappingURL=main.css.map */