
@font-face {
  font-family: 'Bimbo';
  src: url('/assets/fonts/Bimbo-Pro-Regular-TRIAL.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'BimboFinetip';
  src: url('/assets/fonts/Bimbo-Pro-Finetip-TRIAL.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'BimboBallpoint';
  src: url('/assets/fonts/Bimbo-Pro-Ballpoint-TRIAL.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}




:root {
  --font-hand: 'BimboFinetip', 'Bimbo', cursive;
  --font-hand-soft: 'BimboBallpoint', 'BimboFinetip', 'Bimbo', cursive;
  --green: #347d34;
  --green-dark: #2f7d32;
  --bg-soft: #f2f2f2;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  font-family: Arial, Helvetica, sans-serif;
  background: #ffffff;
  color: var(--green-dark);
}

a.work-card{text-decoration:none!important;    color: var(--green-dark);}

body {
  overflow-x: hidden;
}

.menu-button {
  position: fixed;
  top: 26px;
  right: 28px;
  z-index: 200;
  width: 42px;
  height: 34px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.menu-button span {
  display: block;
  width: 38px;
  height: 2px;
  margin: 8px 0;
  background: var(--green-dark);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-button.active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
  background: var(--green-dark);
}

.menu-button.active span:nth-child(2) {
  opacity: 0;
}

.menu-button.active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
  background: var(--green-dark);
}

.language-switcher {
  position: fixed;
  top: 25px;
  left: 28px;
  z-index: 120;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
}

.language-switcher a {
  color: var(--green-dark);
  text-decoration: none;
  opacity: 0.55;
  transition: opacity 0.25s ease;
}

.language-switcher a.active,
.language-switcher a:hover {
  opacity: 1;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: rgba(242, 242, 242, 0.86);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.menu-overlay.open {
  opacity: 1;
  visibility: visible;
}

.menu-box {
  width: min(600px, 78vw);
  min-height: 430px;
  max-height: calc(100vh - 80px);
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 50px 38px 48px;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.045);
  overflow-y: auto;
  opacity: 0;
  transform: translateY(16px) scale(0.985);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.menu-overlay.open .menu-box {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.menu-brand {
  color: var(--green);
  font-family: var(--font-hand);
  font-size: 40px;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  margin-bottom: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.menu-brand:hover {
  opacity: 0.72;
  transform: translateY(-1px);
}

.menu-subtitle {
  
  
  /*font-family: Arial, Helvetica, sans-serif;*/
  font-family: "Courier New", Courier, monospace;
  margin-top:18px;;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--green);
  opacity: 0.44;
  margin-bottom: 6px;
}

.menu-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 21px;
}

.menu-nav::before {
  content: "";
  width: 48px;
  height: 1px;
  margin-bottom: 5px;
  background: var(--green);
  opacity: 0.28;
}

.menu-item-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.menu-link,
.menu-category-link {
  color: rgba(47, 125, 50, 0.84);
  font-family:Helvetica, sans-serif;
  text-transform:uppercase;
  
  text-decoration: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.menu-link {
     font-size: 12px;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    /*color: var(--green);*/
	color:#925b1d;
    opacity: 0.44;
    margin-bottom: 6px;
}

.menu-category-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding-top: 1px;
}

.menu-category-link {
  color: rgba(47, 125, 50, 0.68);
  font-size: 23px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
}

.menu-nav a:hover {
  opacity: 0.68;
  transform: translateY(-1px);
}

.menu-nav a.active {
  /*color: var(--green-dark);*/
   color:a76112;
  opacity: 1;
  position: relative;
}

.menu-link.active::after {
  content: "";
  display: block;
  width: 24px;
  height: 1px;
  background: var(--green);
  margin: 7px auto 0;
  opacity: 0.38;
}

.menu-category-link.active {
  color: rgba(47, 125, 50, 0.92);
}

.home {
  width: 100%;
  min-height: 100vh;
  background: #ffffff;
  text-align: center;
}

.hero {
  position: relative;
  width: 100%;
  height: calc(100vh - 85px);
  min-height: 610px;
  max-height: 760px;
  overflow: hidden;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.06);
  pointer-events: none;
}

.foto-home {
  position: absolute;
  left: 50%;
  bottom: -2px;
  z-index: 2;
  width: 100%;
  max-width: 780px;
  display: block;
  opacity: 0;
  transform: translateX(-50%) translateY(115px);
  animation: subirFoto 1.55s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
}

.logo-home {
  position: absolute;
  left: 50%;
  top: 24%;
  z-index: 3;
  width: 260px;
  max-width: 28vw;
  transform: translateX(-150%) rotate(-18deg);
  opacity: 0;
  animation: aparecerLogo 1.1s ease-out 0.85s forwards;
}

.redes-home {
  width: 100%;
  min-height: 85px;
  background: #f4f4f4;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 20px;
}

.redes-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 62px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(22px);
  animation: subirElemento 1s ease-out 1.1s forwards;
}

.red-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--green-dark);
  text-decoration: none;
  font-size: 15px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 5px;
  transition: opacity 0.25s ease;
}

.red-link:hover {
  opacity: 0.65;
}

.red-link img {
  width: 27px;
  height: 27px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.red-link.mail {
  letter-spacing: 5px;
}

.simple-page {
  min-height: 100vh;
  display: grid;
  place-content: center;
  gap: 18px;
  text-align: center;
}

.simple-page a {
  color: var(--green-dark);
}

.hand {
  font-family: var(--font-hand);
  font-weight: 400;
  text-decoration:none;
}

.works-list-page,
.work-detail-page {
  background: var(--bg-soft);
  color: var(--green);
  font-family: "Courier New", Courier, monospace;
  min-height: 100vh;
}

.works-list-page .top-space {
  height: 78px;
  background: var(--bg-soft);
}

/* PRODUCCIONES */

.hero-producciones {
  height: 210px;
  background: var(--bg-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 28px;
}

.hero-producciones-logo {
  display: none;
}

.hero-producciones-brand {
  color: var(--green);
  font-family: var(--font-hand);
  font-size: 44px;
  font-weight: 400;
  line-height: 1;
  margin: 0 0 16px;
  opacity: 0;
  transform: translateY(14px);
  animation: fadeUp 0.85s ease-out 0.08s forwards;
}

.hero-producciones-kicker {
  /*color: var(--green);*/
  color:#a76112;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 5px;
  line-height: 1;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp 0.85s ease-out 0.16s forwards;
}

.hero-producciones-line {
  width: 42px;
  height: 1px;
  background: var(--green);
  opacity: 0;
  margin: 18px 0 16px;
  transform: translateY(8px);
  animation: fadeUp 0.85s ease-out 0.22s forwards;
}

.hero-producciones h1 {
  display: none;
}

.hero-producciones-subtitle {
  max-width: 460px;
  margin: 0 auto;
  color: var(--green-dark);
  font-family: "Courier New", Courier, monospace;
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0.08em;
  text-align: center;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp 0.85s ease-out 0.28s forwards;
}

.works-grid {
  width: 760px;
  max-width: calc(100% - 40px);
  margin: 34px auto 80px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 85px;
  row-gap: 62px;
  align-items: start;
}

.work-card {
  width: 260px;
  max-width: 100%;
  display: block;
  margin: 0 auto;
  color: var(--green-dark);
  text-decoration: none !important;
}

.work-card-img,
.work-card img {
  width: 260px;
  height: 260px;
  max-width: 100%;
  display: block;
  margin: 0 auto 10px;
  object-fit: cover;
  object-position: center center;
  border-radius: 50%;
}

.work-card-title {
	text-align:center;
  display: block;
  width: 260px;
  max-width: 100%;
  margin: 8px auto 0;
  color: var(--green-dark);
  font-family: var(--font-hand);
  font-size: 21px;
  font-weight: 400;
  line-height: 1.08;
 
}

.work-card:hover .work-card-img,
.work-card:hover img {
  opacity: 0.86;
}

/* DETALLE DE OBRA */

.work-detail-page {
  padding-top: 34px;
}

.breadcrumb {
  width: 940px;
  max-width: calc(100% - 40px);
  margin: 0 auto;
  color: rgba(47, 125, 50, 0.34);
  font-family: Helvetica, Arial, sans-serif;
  font-size: 10px;
  letter-spacing: 0.18em;
  font-weight: 500;
  line-height: 1.4;
  text-transform: uppercase;
}

.breadcrumb a,
.breadcrumb span {
  color: inherit;
  text-decoration: none;
}

.breadcrumb a:hover {
  opacity: 0.7;
}

.breadcrumb-separator {
  display: inline-block;
  margin: 0 8px;
  opacity: 0.55;
}

.breadcrumb-list {
  margin: 0 auto -18px;
  position: relative;
  z-index: 2;
}

.breadcrumb-content {
  margin-bottom: 28px;
}

.detail-page-header {
  width: 940px;
  max-width: calc(100% - 40px);
  margin: 92px auto -56px;
  position: relative;
  z-index: 2;
}

.detail-page-brand {
  color: rgba(47, 125, 50, 0.66);
  font-family: var(--font-hand);
  font-size: 42px;
  font-weight: 400;
  line-height: 1;
  margin: 26px 0 0;
  text-align: center;
}

.detail-page-header .breadcrumb {
  width: 100%;
  max-width: 100%;
  margin: 0;
}

.work-page {
  width: 940px;
  max-width: calc(100% - 40px);
  margin: 136px auto 90px;
  display: grid;
  grid-template-columns: 420px 420px;
  gap: 50px;
  align-items: start;
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.85s ease-out 0.12s forwards;
}

.main-photo {
  width: 420px;
  max-width: 100%;
  border-radius: 18px;
  display: block;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.work-content {
  max-width: 420px;
  padding-top: 0;
  font-family: "Courier New", Courier, monospace;
  font-size: 13px;
  line-height: 1.72;
  letter-spacing: 0.01em;
  color: #444444;
}

.internal-signature {
  color: rgba(47, 125, 50, 0.46);
  font-family: var(--font-hand);
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  margin: 0 0 14px;
}

.work-content h1 {
	 color: #925b1d;
  
  font-family: var(--font-hand);
  font-size: 36px;
  font-weight: 400;
  line-height: 1;
  margin: 0 0 4px;
}

.work-content h1 span {
  display: block;
  margin-top: 6px;
  font-size: 0.48em;
  line-height: 1.15;
  font-family: "Courier New", Courier, monospace;
  font-weight: 400;
  color: #666666;
}

.year {
  font-size: 12px;
  color: #777777;
  margin-bottom: 28px;
}

.technique {
  font-size: 13px;
  color: #555555;
  margin-bottom: 30px;
}

.rich-content p {
  margin: 0 0 18px;
}

.rich-content .poem,
.rich-content pre {
  margin-top: 38px;
  white-space: pre-line;
  font-family: inherit;
}

.back {
	 font-family:Helvetica, sans-serif;
  display: inline-block;
  margin-top: 28px;
  color: var(--green);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 1.5px;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.gallery-link {
  display: inline-block;
  margin: 10px 18px 0 0;
  color: rgba(47, 125, 50, 0.68);
  font-family: Helvetica, sans-serif;
  font-size: 12px;
  letter-spacing: 5px;
  text-decoration: none;
  font-weight:700;
  text-transform: uppercase;
  transition: opacity 0.25s ease;
}

.gallery-link:hover {
  opacity: 0.65;
}

.back:hover {
  opacity: 0.65;
  transform: translateX(-3px);
}

.gallery {
  width: 940px;
  max-width: calc(100% - 40px);
  margin: 70px auto 90px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
}

.gallery img {
  width: 100%;
  border-radius: 18px;
  display: block;
  object-fit: cover;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.07);
}

.content-page {
  min-height: 100vh;
  background: var(--bg-soft);
  color: #333333;
  font-family: "Courier New", Courier, monospace;
  padding: 130px 20px 80px;
}

.content-page-inner {
  width: 860px;
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
  gap: 42px;
  align-items: start;
}

.content-page-image {
  width: 100%;
  border-radius: 18px;
  display: block;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.07);
}

.content-page-copy h1 {
  color: var(--green);
  font-family: var(--font-hand);
  font-size: 42px;
  font-weight: 400;
  line-height: 1;
  margin: 0 0 28px;
}

.content-download {
  display: inline-block;
  margin-top: 24px;
  color: var(--green);
  font-weight: 700;
  letter-spacing: 2px;
  text-decoration: none;
}

/* ANIMACIONES */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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


@keyframes subirFoto {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(115px);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

@keyframes aparecerLogo {
  from {
    opacity: 0;
    transform: translateX(-150%) rotate(-18deg) translateY(25px);
  }

  to {
    opacity: 1;
    transform: translateX(-150%) rotate(-18deg) translateY(0);
  }
}

@keyframes subirElemento {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

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

/* RESPONSIVE */

@media (max-width: 900px) {
  .hero {
    height: calc(100vh - 120px);
    min-height: 560px;
  }

  .foto-home {
    max-width: 700px;
  }

  .logo-home {
    width: 230px;
    transform: translateX(-135%) rotate(-18deg);
  }

  @keyframes aparecerLogo {
    from {
      opacity: 0;
      transform: translateX(-135%) rotate(-18deg) translateY(25px);
    }

    to {
      opacity: 1;
      transform: translateX(-135%) rotate(-18deg) translateY(0);
    }
  }

  .redes-inner {
    gap: 34px;
  }

  .red-link {
    font-size: 13px;
    letter-spacing: 3px;
  }

  .hero-producciones {
    height: 195px;
    padding-bottom: 24px;
  }

  .hero-producciones-brand {
    font-size: 40px;
    margin-bottom: 14px;
  }

  .hero-producciones-kicker {
    font-size: 10px;
    letter-spacing: 4px;
  }

  .hero-producciones-line {
    margin: 16px 0 14px;
  }

  .hero-producciones-subtitle {
    max-width: 360px;
    font-size: 11px;
  }

  .works-grid {
    width: 100%;
    grid-template-columns: 1fr;
    row-gap: 46px;
    margin-top: 34px;
  }

 
  .work-card {
    width: 180px;
  }

  .work-card-img,
  .work-card img {
    width: 180px;
    height: 180px;
  }

  .work-card-title {
    width: 180px;
    font-size: 20px;
  }

  .work-page {
    width: 100%;
    margin: 100px auto 70px;
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .main-photo {
    width: 100%;
  }

  .work-content {
    max-width: 100%;
    font-size: 13px;
    line-height: 1.7;
  }

  .work-content h1 {
    font-size: 36px;
  }

  .gallery {
    width: 100%;
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .content-page-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .menu-button {
    top: 20px;
    right: 20px;
  }

  .language-switcher {
    top: 20px;
    left: 20px;
  }

  .menu-box {
    width: 84vw;
    min-height: 410px;
    max-height: calc(100vh - 58px);
    padding: 44px 28px 42px;
  }

  .menu-brand {
    font-size: 36px;
  }

  .menu-subtitle {
    font-size: 9px;
    letter-spacing: 4px;
    margin-bottom: 6px;
  }

  .menu-nav {
    gap: 15px;
  }

  .menu-link {
    font-size: 31px;
  }

  .menu-category-list {
    gap: 6px;
  }

  .menu-category-link {
    font-size: 21px;
  }

  .hero {
    height: calc(100vh - 170px);
    min-height: 430px;
    background-position: center top;
  }

  .foto-home {
    max-width: 560px;
  }

  .logo-home {
    width: 180px;
    max-width: none;
    top: 23%;
    transform: translateX(-120%) rotate(-18deg);
  }

  .redes-home {
    min-height: 170px;
  }

  .redes-inner {
    flex-direction: column;
    gap: 16px;
  }

  .red-link {
    font-size: 13px;
    letter-spacing: 3px;
  }

  .hero-producciones {
    height: 185px;
    padding-bottom: 22px;
  }

  .hero-producciones-brand {
    font-size: 36px;
    margin-bottom: 12px;
  }

  .hero-producciones-kicker {
    font-size: 9px;
    letter-spacing: 3px;
  }

  .hero-producciones-line {
    margin: 15px 0 14px;
  }

  .hero-producciones-subtitle {
    max-width: 280px;
    font-size: 10px;
    line-height: 1.55;
    letter-spacing: 0.06em;
  }

  .works-grid {
    max-width: calc(100% - 32px);
    row-gap: 42px;
    margin: 30px auto 70px;
  }

  .work-card {
    width: 170px;
  }

  .work-card-img,
  .work-card img {
    width: 170px;
    height: 170px;
  }

  .work-card-title {
    width: 170px;
    font-size: 19px;
  }

  .work-page {
    max-width: calc(100% - 32px);
    margin-top: 105px;
  }

  .breadcrumb {
    max-width: calc(100% - 32px);
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  .detail-page-header {
    max-width: calc(100% - 32px);
    margin: 72px auto -44px;
  }

  .detail-page-brand {
    font-size: 34px;
    margin-top: 20px;
  }

  .breadcrumb-list {
    margin: 0 auto -12px;
  }

  .breadcrumb-content {
    margin-bottom: 12px;
  }

  .work-content h1 {
    font-size: 34px;
  }

  .gallery {
    max-width: calc(100% - 32px);
  }

  .gallery img {
    border-radius: 16px;
  }

  @keyframes aparecerLogo {
    from {
      opacity: 0;
      transform: translateX(-120%) rotate(-18deg) translateY(25px);
    }

    to {
      opacity: 1;
      transform: translateX(-120%) rotate(-18deg) translateY(0);
    }
  }
}


@media (max-width: 767px) {
  /* estilos para celulares y tablets chicas */
  .menu-brand {
        font-size: 30px;
    }
	
  .menu-link {
    font-size: 12px;
   
}


}
