
.hero {
    height: 90%vh;
    position: relative;
    width: 100%;
    padding: 20px 0;

}

.sobre-mi {
    height: auto; 
    margin-top: 10px;
    margin-bottom: 10px;
    width: 100%; 
    padding: 10px 0; 
    text-align: center; 
    overflow: hidden; 
    white-space: nowrap; 
    position: relative; 
}

.nombre {
    font-size: 88pt;
    margin-top: 40px;
    margin-bottom: 5px;
    font-weight: 400;
    display: inline-block;
    position: relative;
    transition: left 0.025s linear; 
}


@keyframes scrollText {
    0% {
        transform: translateX(0); 
    }
    100% {
        transform: translateX(-100%); 
    }
}

.presentacion {
    display: flex; 
    justify-content: space-between; 
    align-items: flex-end; 
    padding: 20px; 
    width: 70%;
    margin: 10px auto;
}


.texto-hero {
    width: 60%; 
    text-align: left; 
}

.texto-hero h2 {
    font-size: 44pt;
    font-weight: 700;
    margin-bottom: 10px;;
}

.texto-hero p {
    font-size: 16pt; 
    font-weight: 400;
    line-height: 1.2; 
}

.imagen-hero {
    width: 20%; 
    text-align: right; 
}

.foto-hero {
    width: 100%; 
    height: auto; 
    object-fit: cover;
}

/*index*/

.texto-hero-index {
    width: 60%; 
    text-align: left; 
}

.texto-hero-index h2 {
    font-size: 38pt; 
    font-weight: 100;
    margin-top: 20px;
    margin-bottom: 20px;
    
}

.texto-hero-index-subrayado {
    background-color: white;
    
}

.texto-hero-index-subrayado:hover {
    background-color: rgb(255, 50, 140, 0.75);
    transition: color 0.3s ease;
}

.texto-hero-index p {
    font-size: 16pt; 
    font-weight: 400;
    line-height: 1.2; 
}

.imagen-hero-index {
    width: 25%; 
    text-align: right; 
}

.disciplinas {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.disciplina {
    width: 45%; 
    text-align: left;
}




/*proyectos*/
.texto-hero-proyectos h2 {
    font-size: 44pt;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 20px;
}

.texto-hero-proyectos p {
    font-size: 16pt;
    font-weight: 400;
    line-height: 1.2;
}

/*mantenimiento*/
.imagen-hero-mantenimiento {
    width: 30%; 
    text-align: right; 
}

.foto-hero-mantenimiento {
    width: 100%; 
    height: auto; 
    object-fit: cover;
}


.text-wrapper-4 {
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: normal;
    margin-top: -2.00px;
    position: relative;
    text-align: center;
    white-space: nowrap;
    width: fit-content;
}

.texto-2 {
    font-size: 28px;
    font-weight: 400;
    left: 63px;
    letter-spacing: 0;
    line-height: normal;
    position: absolute;
    top: 135px;
    width: 508px;
}

.img {
    height: 2px;
    left: 63px;
    position: absolute;
    top: 21px;
    width: 1158px;
}

.titulo-2 {
    font-size: 44px;
    font-weight: 400;
    left: 63px;
    letter-spacing: 0;
    line-height: 64px;
    position: absolute;
    top: 54px;
    white-space: nowrap;
    width: 253px;
}


.scroll {
    width: 80%; 
    margin: 0 auto; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 0 20px; 
    margin-top: 40px;
}

.comentario1 {
    font-size: 24px;
    font-weight: 400;
}

.comentario2 {
    font-size: 24px;
    font-weight: 400;
}


.contenido {
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: normal;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}




/**/

html {
    width: 100%;
}

body {
    font-family: Helvetica;
    color:#000000;
    display: flex; 
    flex-direction: column; 
    min-height: 100vh; 
    margin: 0; 
}
    
.div {
    background-color: #ffffff;
    flex-grow: 1; 
    position: relative;
    width: 100%; 
}

a {
    text-decoration: none;
    transition: color 0.3s ease;
    color: #000000;
}

a:hover {
    color:#ff3399;
    font-style: bold;
}

.menu {
    height: 80px;
    position: sticky;
    top: 0px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    z-index: 1000;
    margin: 0;
}


.navbar {
    flex-direction: row;
    position: static;
    padding: 0;
    margin-right: 5%;
    justify-content: flex-end;
    gap: 10px;
}

.navbar a {
    color: #000000;
    background-color: transparent;
    font-size: 30px;
    padding: 10px 0;
}

.navbar a:hover {
    color: #ff3399;
}

.espacio {
    font-size: 1.75vw;
}

.logo {
    width: 15vw;
    height: auto;
    object-fit: cover;
    margin-left: 5vw;
    margin-top: auto;
    margin-bottom: auto;
}

.hamburger {
    display: none;
}


@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(0);
    }
    to {
        opacity: 1;
        transform: translateY(1);
    }
}



/*LINKS Y FOOTER*/
/* Links */

.links {
    display: flex;
    justify-content: space-between;
    padding: 20px 10vw;
}

.column {
    display: flex;
    flex-direction: column;
}

.title {
    font-size: 28pt;
    font-weight: bold;
    margin-bottom: 10px;
}

.line {
    width: 100%;
    height: 4px;
    margin: 0;
    margin-top: 10px;
    background-color: #000000;
    border: none;
}

.link-columns {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.link-columns .column {
    width: 45%;
}

.link-columns .column ul {
    list-style: none;
    padding: 0;
    font-size: 20pt;
    line-height: 2;
}

.link-columns .column:nth-child(2) {
    text-align: right;
}



/*FOOTER*/

.footer {
    background-color: #ff3399;
    height: auto;
    width: 100%;
    display: flex;
    flex-direction: column; 
    align-items: center; 
    justify-content: center; 
}

.logo-2 {
    height: 120px;
    width: auto;
    margin-top: 30px;
    margin-bottom: 0px;
}

.texto-footer {
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 0;
    text-align: center;
    margin-bottom: 0px;
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    margin-top: 0px;
    
}


.d-erechos {
    margin-left: 5vw;
    margin-right: 5vw;
}

.politicas {
    margin-left: 5vw;
    margin-right: 5vw;
}

.politicas a {
    color: #ffffff; 
    text-decoration: none; 
}

.politicas a:hover {
    color: #000000;
} 


@media (max-width: 1260px){
    .links {
        padding: 20px 8vw;
    }
    
    .link-columns {
        gap: 2vw;
    }
    .title {
        font-size: 2em;
    }

    .link-columns .column ul {
        font-size: 1.6em;
    }

}


@media (max-width: 1050px) {
    .navbar a {
        font-size: 2.85vw;
        padding: 10px 0;
    }
    .espacio {
        font-size: 0.25vw;
    }


    /*LINKS*/
    
    .links {
        padding: 20px 5vw;
    }



    /*FOOTER*/

    .logo-2 {
        height: auto;
        width: 37vw;
    }
    .texto-footer {
        font-size: 1.20em;
        flex-direction: column;
    }
    .d-erechos {
        margin-left: 0;
        margin-right: 0;
    }
    
    .politicas {
        margin-left: 0;
        margin-right: 0;
    }
    


}

@media (max-width: 950px){
    .title {
        font-size: 1.8em;
    }

    .link-columns .column ul {
        font-size: 1.4em;
    }
}

@media (max-width: 825px){
    .title {
        font-size: 1.65em;
    }

    .link-columns .column ul {
        font-size: 1.25em;
    }
}


@media (max-width: 767px) {
    
    .navbar {
        display: none; /* Oculta el menú en versión móvil por defecto */
        flex-direction: column; /* Los enlaces estarán en una columna */
        background-color: #ff3399; /* Fondo rosado */
        position: fixed; /* El menú será fijo */
        top: 80px; /* Posicionado debajo de la barra de navegación */
        left: 0;
        width: 100vw;
        height: 85vh;
        padding: 20px 0;
        z-index: 999;
        justify-content: center;
    }

    .navbar a {
        font-size: 18pt;
        font-weight: 400;
        color: #ffffff; /* Color blanco para los enlaces en móvil */
        text-align: center;
        width: 100%;
        padding: 1.25vw;
        transition: background-color 0.3s ease, color 0.3s ease;
    }

    .logo {
        width: 35vw;
        height: auto;
        object-fit: cover;
        margin-left: 5vw;
        margin-top: auto;
        margin-bottom: auto;
    }

    
    .espacio {
        font-size: 32pt;
    }

    

    .navbar a:hover {
        text-decoration: underline;
        color: #ffffff;
    }

    .hamburger {
        display: flex; /* Mostrar el botón de hamburguesa en pantallas pequeñas */
        flex-direction: column;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        margin-right: 5vw;
        gap: 5px;
        position: sticky;
    }

    .hamburger span {
        width: 30px;
        height: 3px;
        background-color: #000000;
        transition: all 0.3s ease;
    }

    /* Mostrar el menú cuando la clase 'active' esté presente */
    .navbar.active {
        display: flex;
        animation: slideDown 0.3s ease forwards;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(0);
        }
        to {
            opacity: 1;
            transform: translateY(1);
        }
    }


    .sobre-mi {
        height: auto; 
        margin-top: 10px;
        margin-bottom: 10px;
        width: 100%; 
        padding: 10px 0; 
        text-align: center; 
        overflow: hidden; 
        white-space: nowrap; 
        position: relative; 
    }

    .nombre {
        font-size: 64pt;
        margin-top: 22px;
        margin-bottom: 5px;
        font-weight: 400;
        display: inline-block;
        position: relative;
        transition: left 0.025s linear; 
    }


    .presentacion {
        flex-direction: column;
        padding: 5px; 
        width: 90%;
        margin: 10px auto;
        gap: 10px;
    }

    .texto-hero-index {
        width: 100%; 
        text-align: left; 
    }

    .texto-hero-index h2 {
        font-size: 36pt; 
        font-weight: 100;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .imagen-hero-index {
    width: 60%; 
    text-align: center; 
}

    .disciplinas {
        display: column;
    }

    .disciplina {
        width: 100%; 
        text-align: left;
    }



    /*Links*/
    .links {
        flex-direction: column;
        margin-right: 2vw;
        margin-left: 2vw;
    }
    .title {
        font-size: 2em;
    }

    .link-columns .column ul {
        font-size: 1.6em;
    }


    

    /*FOOTER*/
    .logo-2 {
        height: auto;
        width: 45vw;
    }

    .texto-footer {
        font-size: 0.8em;
    }
}


@media (max-width: 825px){
    .title {
        font-size: 1.6em;
    }

    .link-columns .column ul {
        font-size: 1.2em;
    }
}

@media (max-width: 435px){
    .title {
        font-size: 1.5em;
    }

    .link-columns .column ul {
        font-size: 1.1em;
    }
}







/*NUEVOS ELEMENTOS*/
.proyectos {
    scrollbar-width: none;
    padding-top: 127.321px;
    column-gap: 50.9282px;
    row-gap: 50.9282px;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: stretch;
    display: flex;
    max-width: none;
    padding: 127.321px 33.9522px 169.761px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    box-sizing: border-box;
}

.titulos-proyectos {
    scrollbar-width: none;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 9rem), 1fr));
    align-items: end;
    column-gap: 21.2201px;
    row-gap: 21.2201px;
    grid-template-rows: auto;
    grid-auto-columns: minmax(0px, 1fr);
    display: grid;
    box-sizing: border-box;
}

.titulo-proyecto {
    scrollbar-width: none;
    margin-top: 0px;
    margin-bottom: 0px;
    font-size: 78.9388px;
    line-height: 78.9388px;
    font-weight: 500;
    text-transform: uppercase;
    overflow: clip;
    font-family: 'Neue Montreal', sans-serif;
    letter-spacing: -2.36816px;
    position: relative;
    display: inline-block;
    transform: translate(0px, 0px);
    transform: matrix(1, 0, 0, 1, 0, 0);
    scrollbar-width: none;
    box-sizing: border-box;
}

.subtitulo-proyecto {
    
    visibility: inherit;
    transform: translate(0px, 0px);
    visibility: visible;
    transform: matrix(1, 0, 0, 1, 0, 0);
    scrollbar-width: none;
    box-sizing: border-box;
    font-size: 20px;
}

.grid-proyectos {
    scrollbar-width: none;
    column-gap: 21.2201px;
    row-gap: 21.2201px;
    grid-template-rows: auto;
    grid-auto-columns: minmax(0px, 1fr);
    grid-template-columns: 719.438px 719.45px;
    display: grid;
    box-sizing: border-box;
}

.proyecto-1 {
    scrollbar-width: none;
    position: relative;
    column-gap: 8.48804px;
    row-gap: 8.48804px;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: stretch;
    display: flex;
    box-sizing: border-box;
}

.foto-proyecto {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    scrollbar-width: none;
    aspect-ratio: 4.4 / 6;
    border-radius: 0px;
    max-height: 590.72px;
    width: 100%;
    position: relative;
    overflow: hidden;
    flex-flow: column nowrap;
    place-content: center;
    align-items: center;
    display: flex;
    box-sizing: border-box;
}

.foto-proyecto img {
    width: 55vw;

}



.texto-proyecto {
    scrollbar-width: none;
    column-gap: 25.4641px;
    row-gap: 25.4641px;
    flex-flow: row nowrap;
    place-content: center flex-start;
    align-items: center;
    display: flex;
    font-family: 'Neue Montreal', sans-serif;
    font-size: 25.6339px;
    line-height: 33.324px;
    letter-spacing: -0.256339px;
    font-weight: 500;
    text-transform: none;
    box-sizing: border-box;
}

.numero-proyecto {
    scrollbar-width: none;
    max-width: 10%;
    flex: 1 1 0%;
    box-sizing: border-box;
}

.nombre-proyecto {
    scrollbar-width: none;
    flex: 1 1 0%;
    box-sizing: border-box;
}

.categoria-proyecto {
    scrollbar-width: none;
    color: color(srgb 0.0627451 0.0627451 0.0627451 / 0.6);
    box-sizing: border-box;
}

.style-25 {
    scrollbar-width: none;
    z-index: 3;
    opacity: 0;
    width: 100%;
    height: 632.525px;
    position: absolute;
    inset: 0px;
    color: rgb(16, 16, 16);
    text-decoration: none solid rgb(16, 16, 16);
    max-width: 100%;
    display: block;
    box-sizing: border-box;
    background-color: rgba(0, 0, 0, 0);
}

.style-26 {
    scrollbar-width: none;
    position: relative;
    column-gap: 8.48804px;
    row-gap: 8.48804px;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: stretch;
    display: flex;
    box-sizing: border-box;
}

.style-27 {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    scrollbar-width: none;
    aspect-ratio: 4.4 / 6;
    border-radius: 0px;
    max-height: 590.72px;
    width: 100%;
    position: relative;
    overflow: hidden;
    flex-flow: column nowrap;
    place-content: center;
    align-items: center;
    display: flex;
    box-sizing: border-box;
}

.style-28 {
    transform: matrix(1.05, 0, 0, 1.05, 0, 0);
    transition: 0.75s cubic-bezier(0.62, 0.05, 0.01, 0.99);
    scrollbar-width: none;
    width: 100%;
    height: 590.713px;
    position: absolute;
    inset: 0px;
    box-sizing: border-box;
}

.style-29 {
    scrollbar-width: none;
    width: 100%;
    height: 590.713px;
    position: absolute;
    inset: 0px;
    opacity: 0.1;
    background-color: rgb(16, 16, 16);
    box-sizing: border-box;
}

.style-30 {
    scrollbar-width: none;
    width: 100%;
    height: 590.713px;
    position: absolute;
    inset: 0px;
    object-fit: cover;
    max-width: 100%;
    vertical-align: middle;
    display: block;
    box-sizing: border-box;
    border: 0px none rgb(16, 16, 16);
}

.style-31 {
    translate: none;
    rotate: none;
    scale: none;
    transform: scale(0, 0);
    rotate: none;
    scale: none;
    transform: matrix(0, 0, 0, 0, 0, 0);
    scrollbar-width: none;
    background-color: rgb(24, 24, 24);
    color: rgb(223, 222, 217);
    --theme--background: #181818;
    --theme--background-alt: #101010;
    --theme--text: #dfded9;
    --theme--border: #fff3;
    --button--background: white;
    --button--text: #101010;
    --button--border: #fff0;
    --button--background-hover: white;
    --button--text-hover: #101010;
    --button--border-hover: #fff0;
    --button-secondary--background: #fff0;
    --button-secondary--text: white;
    --button-secondary--border: #181818;
    --button-secondary--background-hover: 1;
    --button-secondary--text-hover: 1;
    --button-secondary--border-hover: 1;
    width: clamp(3.75rem, 2.44rem + 6.55vw, 6.5rem);
    height: 110.338px;
    border-radius: 1528px;
    position: relative;
    flex-flow: column nowrap;
    place-content: center;
    align-items: center;
    display: flex;
    box-sizing: border-box;
}

.style-32 {
    scrollbar-width: none;
    width: 25%;
    box-sizing: border-box;
}

.style-33 {
    scrollbar-width: none;
    display: block;
    box-sizing: border-box;
    overflow: hidden;
}

.style-34 {
    scrollbar-width: none;
    box-sizing: border-box;
}

.style-35 {
    scrollbar-width: none;
    column-gap: 25.4641px;
    row-gap: 25.4641px;
    flex-flow: row nowrap;
    place-content: center flex-start;
    align-items: center;
    display: flex;
    font-family: 'Neue Montreal', sans-serif;
    font-size: 25.6339px;
    line-height: 33.324px;
    letter-spacing: -0.256339px;
    font-weight: 500;
    text-transform: none;
    box-sizing: border-box;
}

.style-36 {
    scrollbar-width: none;
    max-width: 10%;
    flex: 1 1 0%;
    box-sizing: border-box;
}

.style-37 {
    scrollbar-width: none;
    flex: 1 1 0%;
    box-sizing: border-box;
}

.style-38 {
    scrollbar-width: none;
    color: color(srgb 0.0627451 0.0627451 0.0627451 / 0.6);
    box-sizing: border-box;
}

.style-39 {
    scrollbar-width: none;
    z-index: 3;
    opacity: 0;
    width: 100%;
    height: 632.525px;
    position: absolute;
    inset: 0px;
    color: rgb(16, 16, 16);
    text-decoration: none solid rgb(16, 16, 16);
    max-width: 100%;
    display: block;
    box-sizing: border-box;
    background-color: rgba(0, 0, 0, 0);
}

.style-40 {
    scrollbar-width: none;
    padding-top: 67.9043px;
    grid-template-columns: 719.438px 719.45px;
    column-gap: 21.2201px;
    row-gap: 21.2201px;
    grid-template-rows: auto;
    grid-auto-columns: minmax(0px, 1fr);
    display: grid;
    box-sizing: border-box;
}


.cierre {
    position: relative;
    padding-bottom: 10px;
    display: inline-block;
    scrollbar-width: none;
    grid-column-start: 2;
    grid-column: auto / span 1;
    font-family: 'Neue Montreal', sans-serif;
    font-size: 58.0582px;
    line-height: 58.0582px;
    letter-spacing: -1.74175px;
    font-weight: 500;
    text-transform: none;
    box-sizing: border-box;
    margin-left: 50vw;
    margin-top: 20px;
}


/* Parallax */
.parallax {
    background-image: url('assets/Sin\ título-2_Mesa\ de\ trabajo\ 1.png');
    height: 600px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}



.style-0 {
    scrollbar-width: none;
    max-width: none;
    padding: 40px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    box-sizing: border-box;
}

.style-1 {
    scrollbar-width: none;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: stretch;
    display: flex;
    font-family: 'Neue Montreal', sans-serif;
    font-size: 58.0582px;
    line-height: 58.0582px;
    letter-spacing: -1.74175px;
    font-weight: 500;
    text-transform: none;
    box-sizing: border-box;
}

.style-2 {
    scrollbar-width: none;
    grid-template-columns: 349.112px 349.112px 349.112px 349.112px;
    column-gap: 21.2201px;
    row-gap: 21.2201px;
    grid-template-rows: auto;
    grid-auto-columns: minmax(0px, 1fr);
    display: grid;
    box-sizing: border-box;
}

.style-3 {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    scrollbar-width: none;
    aspect-ratio: 6 / 7;
    margin-bottom: -52.2524px;
    width: 100%;
    position: relative;
    overflow: hidden;
    grid-column: auto / span 1;
    box-sizing: border-box;
}

.style-4 {
    translate: none;
    rotate: none;
    scale: none;
    transform: translate(0px, 0px);
    rotate: none;
    scale: none;
    transform: matrix(1, 0, 0, 1, 0, 0);
    scrollbar-width: none;
    width: 100%;
    height: 407.288px;
    position: absolute;
    inset: 0px;
    box-sizing: border-box;
}

.style-5 {
    scrollbar-width: none;
    width: 100%;
    height: 407.288px;
    position: absolute;
    inset: 0px;
    opacity: 0.1;
    background-color: rgb(16, 16, 16);
    box-sizing: border-box;
}

.style-6 {
    scrollbar-width: none;
    width: 100%;
    height: 407.288px;
    position: absolute;
    inset: 0px;
    object-fit: cover;
    max-width: 100%;
    vertical-align: middle;
    display: block;
    box-sizing: border-box;
    border: 0px none rgb(16, 16, 16);
}

.texto-sobremi {
    justify-items: left;
}

.style-7 {
    scrollbar-width: none;
    padding-bottom: 25.4641px;
    grid-column: 2 / -1;
    flex-flow: row nowrap;
    place-content: flex-start space-between;
    align-items: flex-start;
    display: flex;
    font-family: 'Neue Montreal', sans-serif;
    font-size: 20.8806px;
    line-height: 27.1448px;
    letter-spacing: normal;
    font-weight: 500;
    text-transform: none;
    box-sizing: border-box;
}

.style-8 {
    translate: none;
    rotate: none;
    scale: none;
    opacity: 1;
    visibility: inherit;
    transform: translate(0px, 0px);
    rotate: none;
    scale: none;
    opacity: 1;
    visibility: visible;
    transform: matrix(1, 0, 0, 1, 0, 0);
    scrollbar-width: none;
    box-sizing: border-box;
    font-size: 40px;
}

.style-9 {
    translate: none;
    rotate: none;
    scale: none;
    opacity: 1;
    visibility: inherit;
    transform: translate(0px, 0px);
    rotate: none;
    scale: none;
    opacity: 1;
    visibility: visible;
    transform: matrix(1, 0, 0, 1, 0, 0);
    scrollbar-width: none;
    box-sizing: border-box;
    font-size: 20px;
}

.style-10 {
    translate: none;
    rotate: none;
    scale: none;
    opacity: 1;
    visibility: inherit;
    transform: translate(0px, 0px);
    rotate: none;
    scale: none;
    opacity: 1;
    visibility: visible;
    transform: matrix(1, 0, 0, 1, 0, 0);
    scrollbar-width: none;
    box-sizing: border-box;
    margin-right: 20px;
}

.style-11 {
    max-width: none;
    scrollbar-width: none;
    color: color(srgb 0.0627451 0.0627451 0.0627451 / 0.6);
    flex-flow: row nowrap;
    place-content: stretch flex-start;
    align-items: stretch;
    display: flex;
    box-sizing: border-box;
}

.style-12 {
    scrollbar-width: none;
    text-transform: uppercase;
    font-size: 16.9761px;
    line-height: 25.4641px;
    letter-spacing: normal;
    font-weight: 500;
    box-sizing: border-box;
}

.style-13 {
    scrollbar-width: none;
    text-transform: uppercase;
    font-size: 16.9761px;
    line-height: 25.4641px;
    letter-spacing: normal;
    font-weight: 500;
    box-sizing: border-box;
}

.style-14 {
    scrollbar-width: none;
    text-transform: uppercase;
    font-family: 'Neue Montreal', sans-serif;
    font-size: 16px;
    line-height: 25.4641px;
    letter-spacing: normal;
    font-weight: 500;
    box-sizing: border-box;
}

.style-15 {
    scrollbar-width: none;
    box-sizing: border-box;
}

.style-16 {
    scrollbar-width: none;
    box-sizing: border-box;
}

.style-17 {
    scrollbar-width: none;
    width: calc(calc((100% - calc(1.25rem * (12 - 1))) / 12 + 1.25rem)*3);
    display: inline-block;
    box-sizing: border-box;
}

.style-18 {
    scrollbar-width: none;
    width: calc(calc((100% - calc(1.25rem * (12 - 1))) / 12 + 1.25rem)*3);
    display: block;
    box-sizing: border-box;
}




.pSection {
  position: relative;
  padding-top: 200px;
  padding-bottom: 300px;
}

.container {
  padding: 20px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.pContent {
    background-color: FFFFFF;
  color: #000;
  padding: 20px 20px;
}

.pImage {
  width: 70%;
  position: absolute;
  top: 0;
  right: 0;
  max-height: 800px;
}

.style-1 {
    scrollbar-width: none;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: stretch;
    display: flex;
    font-family: 'Neue Montreal', sans-serif;
    font-size: 58.0582px;
    line-height: 58.0582px;
    letter-spacing: -1.74175px;
    font-weight: 500;
    text-transform: none;
    box-sizing: border-box;
}

.style-2 {
    scrollbar-width: none;
    grid-template-columns: 349.112px 349.112px 349.112px 349.112px;
    column-gap: 21.2201px;
    row-gap: 21.2201px;
    grid-template-rows: auto;
    grid-auto-columns: minmax(0px, 1fr);
    display: grid;
    box-sizing: border-box;
}

.style-3 {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    scrollbar-width: none;
    aspect-ratio: 6 / 7;
    margin-bottom: -52.2524px;
    width: 100%;
    position: relative;
    overflow: hidden;
    grid-column: auto / span 1;
    box-sizing: border-box;
}

.style-4 {
    translate: none;
    rotate: none;
    scale: none;
    transform: translate(0px, 0px);
    rotate: none;
    scale: none;
    transform: matrix(1, 0, 0, 1, 0, 0);
    scrollbar-width: none;
    width: 100%;
    height: 407.288px;
    position: absolute;
    inset: 0px;
    box-sizing: border-box;
}

.style-5 {
    scrollbar-width: none;
    width: 100%;
    height: 407.288px;
    position: absolute;
    inset: 0px;
    opacity: 0.1;
    background-color: rgb(16, 16, 16);
    box-sizing: border-box;
}

.style-6 {
    scrollbar-width: none;
    width: 100%;
    height: 407.288px;
    position: absolute;
    inset: 0px;
    object-fit: cover;
    max-width: 100%;
    vertical-align: middle;
    display: block;
    box-sizing: border-box;
    border: 0px none rgb(16, 16, 16);
}

.texto-sobremi {
    justify-items: left;
}

.style-7 {
    scrollbar-width: none;
    padding-bottom: 25.4641px;
    grid-column: 2 / -1;
    flex-flow: row nowrap;
    place-content: flex-start space-between;
    align-items: flex-start;
    display: flex;
    font-family: 'Neue Montreal', sans-serif;
    font-size: 20.8806px;
    line-height: 27.1448px;
    letter-spacing: normal;
    font-weight: 500;
    text-transform: none;
    box-sizing: border-box;
}

.style-8 {
    translate: none;
    rotate: none;
    scale: none;
    opacity: 1;
    visibility: inherit;
    transform: translate(0px, 0px);
    rotate: none;
    scale: none;
    opacity: 1;
    visibility: visible;
    transform: matrix(1, 0, 0, 1, 0, 0);
    scrollbar-width: none;
    box-sizing: border-box;
    font-size: 40px;
}

.style-9 {
    translate: none;
    rotate: none;
    scale: none;
    opacity: 1;
    visibility: inherit;
    transform: translate(0px, 0px);
    rotate: none;
    scale: none;
    opacity: 1;
    visibility: visible;
    transform: matrix(1, 0, 0, 1, 0, 0);
    scrollbar-width: none;
    box-sizing: border-box;
    font-size: 20px;
}

.style-10 {
    translate: none;
    rotate: none;
    scale: none;
    opacity: 1;
    visibility: inherit;
    transform: translate(0px, 0px);
    rotate: none;
    scale: none;
    opacity: 1;
    visibility: visible;
    transform: matrix(1, 0, 0, 1, 0, 0);
    scrollbar-width: none;
    box-sizing: border-box;
    margin-right: 20px;
}

.style-11 {
    max-width: none;
    scrollbar-width: none;
    color: black;
    flex-flow: row nowrap;
    place-content: stretch flex-start;
    align-items: stretch;
    display: flex;
    box-sizing: border-box;
}

.style-12 {
    scrollbar-width: none;
    text-transform: uppercase;
    font-family: 'Neue Montreal', sans-serif;
    font-size: 16.9761px;
    line-height: 25.4641px;
    letter-spacing: normal;
    font-weight: 500;
    box-sizing: border-box;
}

.style-13 {
    scrollbar-width: none;
    text-transform: uppercase;
    font-size: 16.9761px;
    line-height: 25.4641px;
    letter-spacing: normal;
    font-weight: 500;
    box-sizing: border-box;
}

.style-14 {
    scrollbar-width: none;
    text-transform: uppercase;
    
    font-size: 16px;
    line-height: 25.4641px;
    letter-spacing: normal;
    font-weight: 500;
    box-sizing: border-box;
}

.style-15 {
    scrollbar-width: none;
    box-sizing: border-box;
}

.style-16 {
    scrollbar-width: none;
    box-sizing: border-box;
}

.style-17 {
    scrollbar-width: none;
    width: calc(calc((100% - calc(1.25rem * (12 - 1))) / 12 + 1.25rem)*3);
    display: inline-block;
    box-sizing: border-box;
}

.style-18 {
    scrollbar-width: none;
    width: calc(calc((100% - calc(1.25rem * (12 - 1))) / 12 + 1.25rem)*3);
    display: block;
    box-sizing: border-box;
}


.contacto {
    scrollbar-width: none;
    margin: 0 auto; 
    column-gap: 67.9043px;
    row-gap: 67.9043px;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: stretch;
    display: flex;
    max-width: none;
    padding: 40px;
    width: 100%;
    position: relative;
    box-sizing: border-box;
    background-image: url(''); /* Añade la ruta de tu imagen */
    background-attachment: fixed; /* Efecto parallax */
    background-size: cover;
    background-position: center;
}

  .contacto-1 {
    scrollbar-width: none;
    padding-bottom: 67.9043px;
    column-gap: 169.761px;
    row-gap: 169.761px;
    border-bottom: 0.8px solid rgba(255, 255, 255, 0.8);
    flex-flow: column nowrap;
    place-content: flex-start;
    align-items: flex-start;
    display: flex;
    font-family: 'Neue Montreal', sans-serif;
    font-size: 78.9388px;
    line-height: 78.9388px;
    letter-spacing: -2.36816px;
    font-weight: 500;
    text-transform: none;
    box-sizing: border-box;
}

.contacto-2 {
    scrollbar-width: none;
    box-sizing: border-box;
}

.contacto-3 {
    max-width: 22ch;
    scrollbar-width: none;
    box-sizing: border-box;
}

.contacto-4 {
    scrollbar-width: none;
    margin-top: 0px;
    margin-bottom: 0px;
    font-size: 78.9388px;
    line-height: 78.9388px;
    font-weight: 500;
    box-sizing: border-box;
}

.contacto-5 {
    scrollbar-width: none;
    line-height: 102.62px;
    align-self: flex-end;
    position: relative;
    color: black;
    text-decoration: none solid rgb(223, 222, 217);
    box-sizing: border-box;
    background-color: rgba(0, 0, 0, 0);
}

.contacto-4 a {
    text-decoration: none;
    transition: color 0.3s ease;
    color: #000000;
}
.contacto-4 a:hover {
    color:#fff;
    font-style: bold;
}