  @import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

  :root {
      --black: #000000;
      --oscuro: #292521;
      --color-accent: #ffffff;
      --color-black: #0a0a0a;
      --dark-gray: #686868;
      --azul: #365299;
      --crema: #F5EDE1;


      --font-large: 100px;
      --font-regular: 14px;
      --font-small: 12px;
      --font-tiny: 10px;
  }

  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }

  body {
      font-family: "Manrope", sans-serif;
      font-optical-sizing: auto;
      font-weight: 300;
      font-style: normal;
      background: var(--crema);
      color: #333;
  }

  .menu-container {
      position: fixed;
      width: 100vw;
      height: 100vh;
      top: 0;
      left: 0;
      z-index: 100;
      pointer-events: none;
  }

  .menu-bar {
      position: fixed;
      top: 0;
      width: calc(100% - 4em);
      height: 64px;
      margin: 2em;
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      backdrop-filter: blur(200px);
      border-radius: 1rem;
      overflow: hidden;
      background: rgba(0, 0, 0, 0.15);
      border: 1px dashed rgba(21, 20, 20, 0.499);
      pointer-events: all;
      z-index: 10000;
      transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .menu-bar.hidden {
      transform: translateY(-200px);
  }

  .menu-bar-container {
      background-color: transparent;
      width: 100%;
      height: 64px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0 0.7em 0.1em 1em;
  }

  .menu-logo a {
      position: relative;
      display: inline-block;
      top: -0.05em;
      color: var(--oscuro);
      text-decoration: none;
  }


  .menu-logo h4::before {
      content: '< Luciano Miranda />';
      color: var(--oscuro);
      font-size: 1.2rem;
      text-transform: uppercase;
      font-weight: 300;

  }

  .menu-actions {
      display: flex;
      align-items: center;
      gap: 2em;
  }

  .menu-toggle {
      width: 60px;
      height: 60px;
      display: flex;
      justify-content: flex-end;
      align-items: center;
  }

  .hamburger-icon {
      position: absolute;
      display: flex;
      justify-content: center;
      align-items: center;
      outline: none;
      height: 40px;
      width: 60px;
      border-radius: 0.6rem;
      background: transparent;
      transition: all 300ms;
      border: 1px dashed rgba(21, 20, 20, 0.503);
      cursor: pointer;
      z-index: 10001;
  }


  .hamburger-overlay {
      position: fixed;
      top: 2em;
      right: 2em;
      width: 60px;
      height: 60px;
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 10000;
      pointer-events: none;
      opacity: 0;
      transition: opacity 0.3s ease;
  }

  .hamburger-overlay.visible {
      pointer-events: all;
      opacity: 1;
  }

  .hamburger-icon:hover {
      background: rgba(255, 255, 255, 0.2);
  }

  .hamburger-icon:before,
  .hamburger-icon:after {
      content: "";
      position: absolute;
      width: 24px;
      height: 1.5px;
      background: var(--oscuro);
      transition: all 300ms ease-in-out;
      transition-delay: 150ms;
      will-change: transform;
  }

  .hamburger-icon:before {
      transform: translateY(-3px);
  }

  .hamburger-icon:after {
      transform: translateY(3px);
  }

  .hamburger-icon.active:before {
      transform: translateY(0) rotate(45deg);
  }

  .hamburger-icon.active:after {
      transform: translateY(0) rotate(-45deg);
  }

  .menu {
      position: fixed;
      bottom: 0;
      left: 0;
      width: calc(100% - 4em);
      height: calc(100% - 8.5em);
      border-radius: 1rem;
      overflow: hidden;
      clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
      display: flex;
      justify-content: center;
      align-items: center;
      pointer-events: none;
      z-index: 9999;
      margin: 2em 2em 2em 2em;
      backdrop-filter: blur(20px);
      background: rgba(0, 0, 0, 0.15);
      border: 1px dashed rgba(9, 9, 9, 0.545);
  }

  .menu.open {
      pointer-events: all;
      
  }

  .menu-col {
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 100%;
  }

  .menu-sub-col {
      width: 100%;
  }

  .menu-links {
      display: flex;
      flex-direction: column;
      align-items: center;
  }

  .menu-link-item {
      position: relative;
      padding: 1em 0 0.125em 0;
      clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
      text-align: center;
      overflow: hidden;
  }

  .menu-link-item .menu-link-item-holder {
      position: relative;
      will-change: transform;
  }

  .menu-link-item .menu-link-item-holder a {
      position: relative;
      color: var(--oscuro);
      font-size: 7vw;
      font-weight: bold;
      text-transform: uppercase;
      letter-spacing: -0.01em;
      line-height: 80%;
      transition: color 0.3s;
      text-decoration: none;
      display: block;
      text-shadow: none;
      cursor: pointer;
     
  }

  .menu-link-item .menu-link-item-holder a:hover {
      color: var(--azul);
  }

  body.menu-open {
      overflow: hidden;
      position: fixed;
      width: 100%;
  }

  main .seccion-contenido {
      max-width: 1200px;
      margin: 0 auto;
  }

  main .seccion-base {
      width: 100%;
      padding: 0rem 20rem;
  }


  /* hero */
  .hero {
      width: 100%;
      height: 100vh;
      padding-top: 20vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: space-between;
      overflow: hidden;
  }


  .hero .container {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
  }

  .hero-row {
      width: 100%;
      display: flex;
      padding: 20px;
      justify-content: space-between;

  }

  .hero-row:nth-child(2) .header h1 {
      text-align: right;
      color: var(--black);
  }

  .hero-row p {
      width: 240px;
      margin-left: 8em;
      color: var(--azul);
  }

  h1,
  span {
      margin: 0;
      padding: 0;
      text-transform: uppercase;
      text-decoration: none;
      line-height: 100%;
      color: var(--oscuro);
  }



  h1 span {
      position: relative;
      display: inline-block;
      transform: translateX(100%);
      font-size: var(--font-large);
      font-weight: bold;
      font-size: 7rem;
  }

  p,
  a {
      font-size: var(--font-regular);
      font-weight: 500;
  }

  span {
      font-size: var(--font-small);
      font-weight: 500;
  }


  .letter {
      display: inline-block;
      clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }

  /* slider infinito */
  /* marquee */
  .marquee {
      position: relative;
      width: 100vw;
      max-width: 100%;
      height: 140px;
      display: flex;
      align-items: center;
      font-size: 100px;
      font-weight: 100;
      text-transform: uppercase;
      overflow-x: hidden;
      color: var(--color-black);
  }

  .track {
      position: absolute;
      white-space: nowrap;
      will-change: transform;
      animation: marquee 32s linear infinite;
  }

  @keyframes marquee {
      from {
          transform: translateX(0);
      }

      to {
          transform: translateX(-50%);
      }
  }

  /* about */
  .about {
      width: 100%;

  }

  .about-header {
      width: 100%;
      padding: 10em 0 10em 0;
      display: flex;
  }

  .about-col {
      padding: 1em;
  }

  .callout {
      font-size: 2.5rem;
  }

  .about-col:nth-child(1) {
      flex: 2;
  }

  .about-col:nth-child(2) {
      flex: 4;
  }

  .about-col h2 {
      width: 85%;
      color: rgba(157, 157, 157, 0.393);
      transition: color 0.3s;
      font-size: 2rem;
      font-weight: 300;
  }

  .inicio-about {
      display: none;
  }

  .about-copy {
      width: 50%;
      padding: 5em 1em 5em 1em;
      text-transform: uppercase;
      color: var(--azul);
  }

  .about-text-img {
      display: flex;
      align-items: center;
      margin-top: 2rem;
  }

  .about-text-img img {
      max-width: 250px;
      object-fit: cover;
      border-radius: 20px;
  }

  @media (max-width: 1000px) {
      .menu {
          width: calc(100% - 2.5em);
          /* Ajustado para móvil */
          height: calc(100% - 7em);
          margin: 1.25em 1.25em 1.25em 1.25em;
          border: 1px dashed rgba(9, 9, 9, 0.545);

      }

      main .seccion-base {
          padding: 0rem ;
          
      }


      .menu-bar {
          margin: 1.25em;
          width: calc(100% - 2.5em);
      }

      .menu-toggle {
          justify-content: flex-end;
      }

      .menu-col {
          width: 100%;
          flex-direction: column;
      }

      .menu-link-item .menu-link-item-holder a {
          font-size: 10vw;
      }

      .hero-row p {
          margin-left: 0;
      }

      .hero-row:nth-child(2) {
          flex-direction: column;
          gap: 4em;
      }

      h1 {
          font-size: 40px;
      }

      h1 span {
          font-size: 40px;
      }

  }

  /* Responsive */
  @media (max-width: 768px) {
      .hero-content h1 {
          font-size: 2rem;
      }

      .marquee {
          font-size: 50px;
      }

      .hero-content h2 {
          font-size: 1.2rem;
      }

      .about-header {
          flex-direction: column;
      }

      .about-col h2 {
          width: 100%;
          order: 3;
          font-size: 1.6rem;
      }

      .about-text-img {
          flex-direction: column;
          order: 1;
      }

      .about-copy {
          width: 100%;
          padding: 2em 0em 2em 0em;
          order: 2;
          font-size: 1rem;
          text-transform: none;
      }

      .about-text-img img {
          display: none;
      }

      .inicio-about {
          width: 300px;
          object-fit: cover;
          display: block;
          margin: 0rem 2rem;
          border-radius: 20px;
      }

      .about {
          display: flex;
          align-items: center;
          justify-content: center;
          flex-direction: column;
      }


      .about-header {
          width: 100%;
          padding: 2em 0 5em 0;
          display: flex;
      }
  }