:root{
    --color-black: #000;
    --color-menu: #000000b3;
    --color-background: #FCFDEE;
    --color-yellow: #FFC900;
    --color-green: #D5DD3F;
    --color-orange: #F78012;
    --color-cards: #FEF7E7;
    --color-green2: #C0CA0F;
    --color-yellow2: #F8C400;
    --font-main: 'Inter', sans-serif;
    --letter-spacing: -0.05%;
 }

 html {
    background-color: var(--color-background);
    scroll-behavior: smooth;
    scroll-padding-top: 20px;
 }

 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-main);
    letter-spacing: var(--letter-spacing);
 }
 
 body {
    min-height: 100vh;
 }

 .ellipse-1 {
  	width: 800px;
    height: 500px;
    position: absolute;
    top: -250px;
    left: 50%;
    transform: translateX(-50%);
    filter: blur(80px);
    border-radius: 50%;
  	background-color: var(--color-green);
    z-index: -1;
    animation: wave 8s infinite ease-in-out;
}

@keyframes wave {
    0% {
        transform: translateX(-50%);
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    50% {
        transform: translateX(-50%);
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
    100% {
        transform: translateX(-50%);
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}

.ellipse-project {
    width: 800px;
    height: 500px;
    position: absolute;
    top: -450px;
    left: 50%;
    transform: translateX(-50%);
    filter: blur(350px);
    border-radius: 50%;
    background-color: var(--color-yellow);
    z-index: -1;
    animation: wave 8s infinite ease-in-out;
}

 nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    transition: transform 0.6s ease-in-out, background-color 0.6s ease;
    animation: slideDown 1s ease-out forwards;
 }

 .hide-nav {
    transform: translateY(-100%) !important;
 }


 @keyframes slideDown {
    0% {
        transform: translateY(-50px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
 }

 nav ul {
    display: flex;
    list-style: none;
    gap: 20px; 
    padding: 0;
    justify-content: center;
    margin-top: 32px;
 }

 nav ul li {
    width: 133px;
    
 }

 nav a {
    text-decoration: none;
    color: var(--color-menu);
    display: block;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    padding: 8px 0;
    border-radius: 100px;
    transition: all 0.8s ease;
    border: 1px solid transparent;
 }

 nav a:hover {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
 }

 .container-main {
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    top: 150px;
    left: 50%;
    transform: translateX(-50%);
    width: fit-content;
 }

 .card-menu{
  	width: 450px;
  	height: 320px;
  	box-shadow: 0px 0px 11px 2px rgba(0, 0, 0, 0.25);
  	border-radius: 50px;
  	background-color: var(--color-cards);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.card-menu p{
line-height: 42px;
font-weight: 500;
font-size: 18px;;
color: var(--color-black);
text-align: left;
padding: 0 40px;
}

.card-icon {
    position: absolute;
    padding: 0;
    left: -35px;
    top: -40px;
    width: 120px;
}

.rotated-text {
    position: absolute;
    top: -15px;
    left: 140px;
    transform: rotate(-5.89deg);
    color: var(--color-black);
    font-weight: 700;
    font-size: 22px;
    background-color: var(--color-background);
    padding: 16px;
    border: 3px solid var(--color-black);
    border-radius: 100px;
    white-space: nowrap;
}


.container-main > img {
    width: 395px;
    height: 450px;
    object-fit: contain;
}

.rotated-title {
    position: absolute;
    bottom: -200px;
    right: -100px;
    transform: rotate(5.28deg);
    color: var(--color-orange);
    background-color: var(--color-cards);
    padding: 12px 54px;
    border: 3px solid var(--color-orange);
    border-radius: 100px;
    font-weight: 700;
    font-size: 32px;
}

.rotated-title2 {
    position: absolute;
    bottom: -940px;
    left: -100px;
    transform: rotate(-5.28deg);
    color: var(--color-orange);
    background-color: var(--color-cards);
    padding: 12px 54px;
    border: 3px solid var(--color-orange);
    border-radius: 100px;
    font-weight: 700;
    font-size: 32px;
}

.info-cards-container {
    display: flex;
    justify-content: center;
    gap: 28px;
    position: absolute;
    top: 1468px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.info-card {
    width: 401px;
    height: 140px;
    background-color: var(--color-cards);
    border-radius: 50px;
    position: relative;
    cursor: pointer;
    transition: height 0.4s ease, box-shadow 0.3s ease;
    overflow: hidden;
    box-shadow: 0px 0px 11px 2px rgba(0, 0, 0, 0.15);
}

.info-card:hover {
    box-shadow: 0px 0px 15px 4px rgba(0, 0, 0, 0.2);
}

.info-card.expanded {
    height: 480px;
}

.info-card-icon {
    position: absolute;
    top: 42px;
    left: 40px;
    width: 54px;
    height: 54px;
}

.info-card-title {
    position: absolute;
    top: 69px;
    left: 114px;
    transform: translateY(-50%);
    font-weight: 700;
    font-size: 24px;
    color: var(--color-black);
}

.info-card-action {
    position: absolute;
    top: 44px;
    right: 40px;
    width: 50px;
    transition: transform 0.4s ease;
}

.info-card.expanded .info-card-action {
    transform: rotate(44deg);
}

.info-topics-container {
    position: absolute;
    top: 146px;
    left: 40px;
    right: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    opacity: 0;
    transition: opacity 0.3s ease 0.1s;
}

.info-card.expanded .info-topics-container {
    opacity: 1;
}

.topic-tag {
    padding: 8px 26px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 16px;
    background-color: transparent;
    color: var(--color-black);
    text-align: center;
    border-style: solid;
    border-width: 3px;
    transition: transform 0.2s ease;
}

.topic-tag:hover {
    transform: translateY(-5px);
}

.projects-container {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 60px;
    margin-top: 416px;
    margin-bottom: 100px;
    width: 100%;
    padding-left: 140px;
    padding-top: 30px;
    padding-right: 40px;
    padding-bottom: 40px;
    overflow-x: auto;
    scrollbar-width: none;
}

.projects-container::-webkit-scrollbar {
    display: none;
}

.project-card {
    width: 454px;
    height: 416px;
    background-color: var(--color-cards);
    border-radius: 50px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-shrink: 0;
    box-shadow: 0px 0px 11px 2px rgba(0, 0, 0, 0.25);
}

.project-card h3 {
    margin-top: 40px;
    margin-left: 40px;
    color: var(--color-black);
    font-weight: 700;
    font-size: 24px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 374px;
}

.project-card h4 {
    margin-top: 10px;
    margin-left: 40px;
    margin-right: 40px;
    color: var(--color-black);
    font-weight: 500;
    font-size: 14.6px;
}

.project-image {
    margin-top: 20px;
    margin-left: 46px;
    width: 360px; 
    height: 150px;
    object-fit: fill;
    border-radius: 20px;
}

.btn-more {
    margin-top: 20px;
    margin-left: 254px;
    margin-bottom: 0;
    background-color: var(--color-green);
    color: var(--color-black);
    font-weight: 700;
    border-radius: 100px;
    padding: 10px 24px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.btn-more:hover {
    transform: scale(1.05);
    background-color: var(--color-green2);
    box-shadow: 0 4px 15px #00001a94;
}

.corner-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 75px;
    height: 75px;
    transform: rotate(13.76deg);
}

#contato {
    top: 1788px;
    bottom: auto;
    right: -100px;
    transition: top 0.4s ease;
}

#contato.moved-down {
    top: 2128px;
}

.bastidores-container {
    position: absolute;
    top: 1936px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: flex-start;
    gap: 36px;
    width: max-content;
    transition: top 0.4s ease;
}

.bastidores-container.moved-down {
    top: 2276px;
}

.bastidores-image {
    height: 416px;
    width: 340px;
    object-fit: cover;
}

.bastidores-card {
    width: 454px;
    height: 416px;
    background-color: var(--color-cards);
    border-radius: 50px;
    box-shadow: 0px 0px 11px 2px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
}

.bastidores-card h3 {
    margin-top: 40px;
    margin-left: 40px;
    margin-right: 190px;
    font-weight: 700;
    font-size: 24px;
    color: var(--color-black);
}

.bastidores-grid {
    margin-top: 40px;
    margin-left: 60px;
    display: grid;
    grid-template-columns: repeat(3, 48px);
    grid-template-rows: repeat(2, 48px);
    column-gap: 80px;
    row-gap: 40px;
}

.bastidores-grid img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 12px;
}

footer {
    position: absolute;
    top: 2850px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-black);
    font-weight: 500;
    padding-bottom: 32px;
    white-space: nowrap;
    transition: top 0.4s ease;
}

footer.moved-down {
    top: 3190px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.project-page-body {
    position: relative;
    min-height: 100vh;
    overflow-x: hidden;
}

.back-button {
    position: absolute;
    top: 100px;
    left: 124px;
    cursor: pointer;
    z-index: 20;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.1s forwards;
}

.project-detail-container {
    display: flex;
    width: 100%;
    position: relative;
}

.project-left-col {
    margin-left: 124px;
    margin-top: 180px;
    display: flex;
    flex-direction: column;
}

.project-image-wrapper {
    position: relative;
    width: 602px;
    height: 342px;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.2s forwards;
}

#project-img {
    width: 602px;
    height: 342px;
    border-radius: 50px;
    object-fit: cover;
    box-shadow: 0px 0px 11px 2px rgba(0, 0, 0, 0.15);
}

#project-decoration {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 75px;
    height: 75px;
    transform: rotate(5.28deg);
}

.tech-section {
    margin-top: 50px;
    margin-left: 16px;
    display: flex;
    align-items: center;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.7s forwards;
    max-width: 604px;
}

.tech-section h3 {
    font-weight: 600;
    font-size: 20px;
    color: var(--color-black);
    margin-right: 26px;
}

.tech-list {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.project-right-col {
    position: absolute;
    top: 180px;
    left: 798px;
    display: flex;
    flex-direction: column;
    filter: drop-shadow(0px 0px 11px rgba(0, 0, 0, 0.15));
}

.project-info-header {
    width: 380px;
    height: 104px;
    background-color: var(--color-cards);
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    position: relative;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.4s forwards;
}

.project-info-header h1 {
    position: absolute;
    top: 34px;
    left: 42px;
    font-weight: 700;
    font-size: 32px;
    color: var(--color-orange);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: clip;
    max-width: 296px;
    mask-image: linear-gradient(90deg, transparent, #000 10px, #000 calc(100% - 10px), transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 10px, #000 calc(100% - 10px), transparent);
}

.project-info-header h1 span {
    display: inline-block;
    white-space: nowrap;
    animation: scroll-title 4s linear infinite alternate;
}

@keyframes scroll-title {
    0% { transform: translateX(0); }
    100% { transform: translateX(min(0px, calc(296px - 100%))); }
}

.project-info-body {
    width: 514px;
    height: 485px;
    background-color: var(--color-cards);
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    border-top-right-radius: 50px;
    position: relative;
    margin-top: -1px;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.5s forwards;
}

.project-description {
    margin-top: 46px;
    margin-left: 38px;
    margin-right: 40px;
    margin-bottom: 50px;
    max-height: 200px;
    overflow-y: auto;
    font-weight: 500;
    color: var(--color-black);
    line-height: 1.5;
}

.project-buttons {
    position: absolute;
    bottom: 46px;
    left: 42px;
    display: flex;
    gap: 16px;
}

.btn-project {
    padding: 10px 58px;
    border-radius: 100px;
    font-weight: 600;
    color: var(--color-black);
    text-decoration: none;
    text-align: center;
    transition: transform 0.2s;
}

.btn-project:hover {
    transform: scale(1.05);
}

.btn-site {
    background-color: var(--color-yellow2);
}

.btn-code {
    background-color: var(--color-green2);
}

.nav-arrow {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background-color: var(--color-cards);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0px 0px 11px 2px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, background-color 0.3s ease;
    z-index: 100;
    color: var(--color-black);
}

.nav-arrow:hover {
    transform: translateY(-50%) scale(1.1);
    background-color: var(--color-yellow);
}

.left-arrow {
    left: 40px;
}

.right-arrow {
    right: 40px;
}

.hamburger {
    display: none;
    border: none;
    background: none;
}

.no-scroll {
    overflow: hidden;
}

.contact-form-container {
    width: 830px;
    background-color: var(--color-cards);
    border-radius: 50px;
    padding: 40px;
    box-shadow: 0px 0px 11px 2px rgba(0, 0, 0, 0.15);
    position: absolute;
    top: 2400px; 
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    transition: top 0.4s ease;
    display: flex;
    align-items: center;
    gap: 40px;
}

.contact-form-container h3 {
    font-weight: 700;
    font-size: 24px;
    color: var(--color-orange);
    margin-bottom: 0;
    text-align: left;
    width: 40%;
}

.contact-form-container.moved-down {
    top: 2740px;
}

#contact-form {
    width: 60%;
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-black);
}

.contact-form-container input,
.contact-form-container textarea {
    width: 100%;
    padding: 15px;
    border-radius: 20px;
    border: 2px solid transparent;
    background-color: var(--color-background);
    font-family: var(--font-main);
    font-size: 16px;
    transition: border-color 0.3s;
}

.contact-form-container input:focus,
.contact-form-container textarea:focus {
    outline: none;
    border-color: var(--color-orange);
}

#form-status {
    margin-top: 15px;
    text-align: center;
    font-weight: 600;
}

@media (max-width: 1024px) {
    body {
        overflow-x: hidden;
    }

    nav {
        background-color: transparent;
        padding-bottom: 10px;
        display: flex;
        justify-content: flex-end;
        padding-right: 20px;
    }

    .hamburger {
        display: block;
        cursor: pointer;
        z-index: 1001;
        margin-top: 30px;
    }

    .hamburger .bar {
        display: block;
        width: 30px;
        height: 3px;
        margin: 6px auto;
        transition: all 0.3s ease-in-out;
        background-color: var(--color-black);
        border-radius: 3px;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    nav ul {
        position: fixed;
        left: 100%;
        top: 0;
        flex-direction: column;
        background-color: var(--color-background);
        width: 100%;
        height: 100vh;
        align-items: center;
        justify-content: center;
        transition: left 0.8s ease-in-out;
        margin-top: 0;
        gap: 40px;
        z-index: 1000;
    }

    nav ul.active {
        left: 0;
        transition: left 0.5s ease-in-out;
    }

    nav ul li {
        width: auto;
    }

    nav a {
        padding: 15px 40px;
        font-size: 24px;
        background: rgba(255, 255, 255, 0.25);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    }

    main {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 120px;
        width: 100%;
        overflow-x: hidden;
    }

    .container-main {
        display: contents;
    }

    .container-main > img,
    .info-cards-container,
    .bastidores-container,
    .contact-form-container,
    footer {
        position: static !important;
        transform: none !important;
        margin: 0 !important;
        left: auto !important;
        top: auto !important;
        right: auto !important;
        bottom: auto !important;
    }

    .container-main > img { order: 1; margin-bottom: 0 !important; }
    .card-menu { order: 2; margin-bottom: 40px !important; }
    .rotated-title { order: 3; margin: 40px auto !important; }
    .projects-container { order: 4; margin-bottom: 60px !important; margin-top: 0 !important; }
    .rotated-title2 { order: 5; margin: 40px auto !important; }
    .info-cards-container { order: 6; margin-bottom: 60px !important; }
    #contato { order: 7; margin: 40px auto !important; }
    .bastidores-container { order: 8; margin-bottom: 60px !important; }
    .contact-form-container { order: 9; margin-bottom: 60px !important; width: 90%; }
    footer { order: 10; padding-bottom: 40px !important; }

    .card-menu {
        width: 90%;
        height: auto;
        padding: 40px 20px;
        margin-top: 0px !important;
        position: relative !important;
    }
    .card-menu p {
        text-align: center;
        padding: 0;
        font-size: 16px;
        line-height: 1.5;
    }
    .rotated-text {
        position: absolute !important;
        top: -42px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: auto;
        max-width: 90%;
        text-align: center;
        font-size: 20px;
    }
    .card-icon {
        display: none !important;
    }

    .container-main > img {
        width: 100%;
        max-width: 250px;
        height: auto;
        object-fit: contain;
        
    }

    .rotated-title {
        position: static !important;
        transform: rotate(5.28deg) !important;
        background-color: var(--color-cards);
        border: 3px solid var(--color-orange);
        padding: 12px 54px;
        border-radius: 100px;
        width: fit-content;
    }

    .rotated-title2 {
        position: static !important;
        transform: rotate(-5.28deg) !important;
        background-color: var(--color-cards);
        border: 3px solid var(--color-orange);
        padding: 12px 54px;
        border-radius: 100px;
        width: fit-content;
    }

    #contato {
        position: static !important;
        transform: rotate(5.28deg) !important;
        background-color: var(--color-cards);
        border: 3px solid var(--color-orange);
        padding: 12px 54px;
        border-radius: 100px;
        width: fit-content;
        font-weight: 700;
        font-size: 32px;
        color: var(--color-orange);
    }

    .projects-container {
        width: 100%;
        padding: 20px;
        gap: 20px;
        overflow-x: auto;
        justify-content: flex-start;
    }
    .project-card {
        width: 85vw;
        max-width: 350px;
        height: auto;
        min-height: 480px;
        flex-shrink: 0;
    }
    .project-card h3 {
        margin-left: 20px;
        margin-right: 20px;
        font-size: 20px;
        white-space: normal;
    }
    .project-card h4 {
        margin-left: 20px;
        margin-right: 20px;
    }
    .project-image {
        width: calc(100% - 40px);
        margin-left: 20px;
        height: 180px;
        object-fit: cover;
    }
    .btn-more {
        margin: 20px auto;
        position: relative;
        left: 0;
        transform: none;
    }

    .info-cards-container {
        display: flex;
        flex-direction: column;
        width: 100%;
        align-items: center;
        gap: 20px;
    }
    .info-card {
        width: 90%;
        max-width: 400px;
    }
    .info-card.expanded {
        height: auto !important;
        min-height: 400px;
        padding-bottom: 20px;
    }
    .info-topics-container {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        margin-top: 130px;
        padding: 0 20px;
        display: none;
        opacity: 1;
    }
    .info-card.expanded .info-topics-container {
        display: flex;
    }
    .info-card-title {
        font-size: 20px;
        left: 100px;
    }

    .bastidores-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 40px;
    }
    .bastidores-image {
        max-width: 400px;
        height: auto;
        margin-bottom: 0;
        order: 2;
    }
    .bastidores-card {
        width: 90%;
        max-width: 400px;
        height: auto;
        padding-bottom: 30px;
        order: 1;
    }

    .contact-form-container {
        flex-direction: column;
        gap: 20px;
    }
    .contact-form-container h3 {
        width: 100%;
        text-align: center;
    }
    #contact-form {
        width: 100%;
    }

    .bastidores-card h3 {
        margin-right: 20px;
        font-size: 20px;
    }
    .bastidores-grid {
        margin-left: 0;
        display: grid;
        grid-template-columns: repeat(3, 48px);
        grid-template-rows: repeat(2, 48px);
        justify-content: center;
        column-gap: 30px;
        row-gap: 30px;
        padding: 20px 0;
        width: 100%;
    }

    footer {
        width: 100%;
        text-align: center;
        white-space: normal;
        padding-left: 20px;
        padding-right: 20px;
        line-height: 1.5;
    }

    .project-detail-container {
        flex-direction: column;
        align-items: center;
    }
    .project-left-col {
        display: contents;
    }
    .project-image-wrapper {
        width: 90%;
        height: auto;
        order: 1;
        margin-top: 100px;
        margin-bottom: 40px;
    }
    #project-img {
        width: 100%;
        height: auto;
        border-radius: 20px;
    }
    #project-decoration {
        width: 50px;
        height: 50px;
        top: -15px;
        right: -15px;
    }
    .tech-section {
        margin-left: 0;
        padding: 20px;
        width: 100%;
        flex-direction: column;
        align-items: center;
        order: 3;
        margin-bottom: 100px;
    }
    .tech-section h3 {
        margin-right: 0;
        margin-bottom: 15px;
    }
    .tech-list {
        justify-content: center;
    }
    
    .project-right-col {
        position: static;
        width: 100%;
        margin-top: 0;
        margin-bottom: 40px;
        align-items: center;
        padding-bottom: 0;
        order: 2;
    }
    .project-info-header {
        width: 90%;
        height: auto;
        padding: 20px;
        border-radius: 30px 30px 0 0;
    }
    .project-info-header h1 {
        position: static;
        font-size: 24px;
        max-width: 100%;
        white-space: normal;
        mask-image: none;
        -webkit-mask-image: none;
    }
    .project-info-header h1 span {
        animation: none;
        white-space: normal;
    }
    
    .project-info-body {
        width: 90%;
        height: auto;
        border-radius: 0 0 30px 30px;
        padding-bottom: 30px;
    }
    .project-description {
        margin: 20px;
        max-height: none;
    }
    .project-buttons {
        position: static;
        margin-top: 20px;
        justify-content: center;
        flex-wrap: wrap;
    }
    .btn-project {
        padding: 10px 30px;
    }

    .back-button {
        top: 20px;
        left: 20px;
        opacity: 1;
    }
    
    .nav-arrow {
        width: 50px;
        height: 50px;
        top: auto;
        bottom: 20px;
        transform: none;
    }
    .left-arrow { left: 20px; }
    .right-arrow { right: 20px; }
    
    .ellipse-1, .ellipse-project {
        width: 100%;
        height: 300px;
        filter: blur(60px);
    }
}
