      @import url('https://fonts.googleapis.com/css2?family=Instrument+Serif&display=swap');
      * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            background-color: #e3e6e4;
            overflow-x: hidden;
            font-family: 'Helvetica', sans-serif;
        }
        
        .mobile-menu-btn {
            display: none;
        }
        
        .mobile-menu {
            display: none;
        }
        
        .mobile-walk-talk {
            display: none;
        }
        
        .language-toggle {
            display: none;
        }
        
        /* Header */
        .header {
            position: fixed;
            top: 40px;
            left: 40px;
            right: 40px;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-family: 'Helvetica', sans-serif;
            font-size: 12px;
            color: black;
        }
        
        .header-center {
            position: relative;
            font-family: 'Helvetica', sans-serif;
            font-size: 12px;
            color: black;
        }
        
        .header-right {
            display: flex;
            gap: 20px;
            align-items: baseline;
            position: relative;
            z-index: 1003;
        }
        
        .header-right span {
            cursor: pointer;
            transition: opacity 0.3s;
        }
        
        .header-right span:hover {
            opacity: 0.7;
        }
        
        .header-contact-btn {
            padding: 3px 15px 5px;
            border: 1px solid black;
            border-radius: 5px;
            transition: border-radius 0.3s;
        }
        
        .header-contact-btn:hover {
            border-radius: 15px;
        }
        
        /* Fixed Aparte text */
        .aparte-fixed {
            position: fixed;
            left: 40px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 998;
            font-family: "Instrument Serif", serif;
            font-weight: 400;
            font-style: normal;
            font-size: 96px;
            color: black;
            line-height: 0.9;
            pointer-events: none;
        }
        
        .aparte-a {
            display: inline-block;
        }
        
        .aparte-parte {
            display: inline-block;
            transition: transform 0.6s ease;
            transform: translateX(0px);
        }
        
        /* Introduction Section */
        .intro-section {
            height: 100vh;
            position: relative;
            display: flex;
            align-items: flex-end;
            padding: 0 40px 120px;
        }
        
        .intro-text {
            position: absolute;
            left: 50%;
            bottom: 80px;
            transform: translateX(-50%);
            width: 50%;
            font-family: 'Helvetica', sans-serif;
            font-size: 24px;
            color: black;
            line-height: 1.4;
            z-index: 999;
            background-color: transparent;
            text-align: left;
            opacity: 0;
            transition: opacity 0.6s ease;
        }
        
        .intro-text.visible {
            opacity: 1;
        }
        
        /* Content Section */
        .content-section {
            padding: 100px 40px;
            position: relative;
            min-height: 180vh;
        }
        
        .image-div {
            background-color: #d0d3d1;
            border-radius: 8px;
            opacity: 0;
            transform: translateY(100px);
            transition: all 0.8s ease;
            position: absolute;
            will-change: transform;
            background-size: cover;
            background-position: center;
        }
        
        .image-div.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .image-div:nth-child(1) { 
            height: 400px; 
            width: 300px;
            left: 10%;
            top: 100px;
            z-index: 100;
        }
        .image-div:nth-child(2) { 
            height: 300px; 
            width: 250px;
            right: 15%;
            top: 200px;
            z-index: 120;
        }
        .image-div:nth-child(3) { 
            height: 500px; 
            width: 350px;
            left: 30%;
            top: 150px;
            z-index: 110;
        }
        .image-div:nth-child(4) { 
            height: 450px; 
            width: 80%;
            left: 10%;
            top: 650px;
            z-index: 125;
        }
        .image-div:nth-child(5) { 
            height: 350px; 
            width: 280px;
            right: 25%;
            top: 950px;
            z-index: 90;
        }
        .image-div:nth-child(6) { 
            height: 450px; 
            width: 320px;
            left: 5%;
            top: 1100px;
            z-index: 130;
        }
        .image-div:nth-child(7) { 
            height: 320px; 
            width: 260px;
            right: 10%;
            top: 1300px;
            z-index: 105;
        }
        
        /* Footer */
        .footer {
            height: 66vh;
            background-color: rgb(255, 255, 0);
            position: relative;
            padding: 40px;
            display: flex;
            flex-direction: column;
            z-index: 1000;
            box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .footer-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 40px;
        }
        
        .start-walk {
            font-family: 'Instrument Serif', serif;
            font-size: 96px;
            color: black;
            font-weight: 400;
            line-height: 0.9;
            letter-spacing: -2px;
            position: relative;
        }
        
        .walk-letter {
            display: inline-block;
            transition: all 0.3s ease;
        }
        
        .here-button {
            padding: 15px 30px;
            background: transparent;
            border: 2px solid black;
            border-radius: 100px;
            color: black;
            text-decoration: none;
            font-family: 'Instrument Serif', serif;
            font-size: 96px;
            font-weight: 400;
            line-height: 0.9;
            letter-spacing: -2px;
            transition: all 0.3s;
            display: inline-block;
        }
        
        .here-button:hover {
            border-radius: 100px;
        }
        
        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-top: auto;
        }
        
        .footer-walk-talk {
            font-family: 'Helvetica', sans-serif;
            font-size: 12px;
            color: black;
            cursor: pointer;
        }
        
        .footer-center {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            font-family: 'Helvetica', sans-serif;
            font-size: 12px;
            color: black;
            text-align: center;
        }
        
        .footer-center a {
            color: black;
            text-decoration: underline;
            transition: opacity 0.3s;
        }
        
        .footer-center a:hover {
            opacity: 0.7;
        }
        
        .footer-instagram {
            font-family: 'Helvetica', sans-serif;
            font-size: 12px;
            color: black;
            cursor: pointer;
            position: absolute;
            bottom: 40px;
            right: 40px;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .header {
                top: 20px;
                left: 20px;
                right: 20px;
                flex-direction: column;
                gap: 10px;
                align-items: flex-start;
            }
            
            .header-left,
            .header-center {
                display: none;
            }
            
            .header-right {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
                position: fixed;
                top: 20px;
                left: 20px;
                z-index: 1002;
                font-family: 'Helvetica', sans-serif;
                font-size: 12px;
                color: black;
                cursor: pointer;
                background: none;
                border: none;
                padding: 0;
            }
            
            .language-toggle {
                display: block;
                position: fixed;
                top: 20px;
                right: 20px;
                z-index: 1002;
                font-family: 'Helvetica', sans-serif;
                font-size: 12px;
            }
            
            .mobile-menu {
                display: none;
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background-color: rgb(255, 255, 0);
                z-index: 1001;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 0px;
            }
            
            .mobile-menu.active {
                display: flex;
            }
            
            .mobile-menu.active ~ .language-toggle {
                display: none;
            }
            
            .mobile-menu a,
            .mobile-menu span {
                font-family: 'Instrument Serif', serif;
                font-size: 48px;
                color: black;
                text-decoration: none;
                cursor: pointer;
                text-transform: uppercase;
                line-height: 1.2;
            }
            
            .aparte-fixed {
                left: 20px;
                top: 40px;
                transform: none;
                font-size: 20vw;
                z-index: 997;
            }
            
            .intro-section {
                padding: 0 20px 40px;
                z-index: 997;
            }
            
            .intro-text {
                width: 90%;
                font-size: 18px;
                opacity: 1;
                position: static;
                transform: none;
                margin-top: 160px;
            }
            
            .content-section {
                padding: 60px 20px;
                min-height: 120vh;
            }
            
            .image-div:nth-child(1) { 
                width: 250px;
                height: 300px;
                left: 5%;
            }
            .image-div:nth-child(2) { 
                width: 200px;
                height: 250px;
                right: 10%;
                top:310px;
            }
            .image-div:nth-child(3) { 
                width: 280px;
                height: 400px;
                left: 20%;
                top:330px;
            }
            .image-div:nth-child(4) { 
                width: 90%;
                height: 250px;
                left: 5%;
            }
            .image-div:nth-child(5) { 
                width: 220px;
                height: 280px;
                right: 20%;
                top:840px;
            }
            .image-div:nth-child(6) { 
                width: 260px;
                height: 350px;
                left: 2%;
            }
            .image-div:nth-child(7) { 
                width: 200px;
                height: 260px;
                right: 5%;
            }
            
            .footer {
                padding: 40px 20px 20px;
                height: 100vh;
                display: flex;
                flex-direction: column;
                justify-content: space-between;
                position: relative;
                z-index: 1000;
                bottom: 0px !important;
            }
            
            .start-walk {
                font-size: 20vw;
                letter-spacing: -2px;
                line-height: 0.9;
                display: flex;
                flex-direction: column;
            }
            
            .here-button {
                font-size: 20vw;
                letter-spacing: -2px;
                padding: 15px 30px;
                border-radius: 100px;
                position: absolute;
                bottom: 20px;
                left: 50%;
                transform: translateX(-50%);
                text-align: center;
                width: auto;
                display: inline-block;
            }
            
            .here-button:hover {
                border-radius: 100px;
            }
            
            .footer-top {
                flex-direction: column;
                gap: 40px;
                align-items: flex-start;
                margin-bottom: 0;
            }
            
            .footer-bottom {
                display: none;
            }
            
            .footer-center {
                display: none;
            }
            
            .footer-walk-talk {
                display: none;
            }
            
            .footer-instagram {
                display: none;
            }

            .sp{
              display: none
            }
        }
        
        @media (max-width: 480px) {
            .intro-text {
                font-size: 16px;
            }
            
            .aparte-fixed {
                font-size: 20vw;
            }
            
            .start-walk {
                font-size: 20vw;
            }
            
            .here-button {
                font-size: 20vw;
            }
            
            .header {
                font-size: 10px;
            }
        }

        .nostyle{         
          all: unset;        /* elimina TODOS los estilos del navegador */
          cursor: pointer;   /* vuelve a poner el cursor de link */
        }

