/* #region Base reset*/
*,
*::before,
*::after {
    box-sizing: border-box;
    /* border: 1px solid red; */
}
html {
    height: 100%;
}

html,
body {
    min-height: 100%;
    min-width: 320px;
    margin: 0;
    padding: 0;
    background-color: rgba(199, 208, 216);
    position: relative;
    z-index: 0;
    overflow-x: hidden;
    scroll-behavior: smooth;
    font-family: "Sniglet", sans-serif;
    font-size: clamp(18px, 1vw, 20px);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: url('../SRC/IMG/back.png');
    background-size: cover;
    background-position: center;
    opacity: 1;
    z-index: -1;
    animation: blinkbackground 5s ease-in-out infinite;
}

a:focus,
button:focus {
  outline: 2px dashed #ffcc08;
  outline-offset: 4px;
}
/* #endregion */

/* #region animation */
@keyframes blinkbackground {

  0%,
  100% {
    opacity: 0.5;
  }

  50% {
    opacity: 0.1;
  }
}


@keyframes subir  {
  to {
    opacity: 1;
    transform: translateY(0);
  }
  }

@keyframes aparecer {
  to {
    opacity: 1;
  }
  }

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
  }

@keyframes slideInRight {
    to {
      opacity: 1;
      transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.1);
    }
}

@keyframes pulse2 {
    0%, 100% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.04);
    }
}

@keyframes bounceLetter {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
} 

@keyframes bounceSide {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-15px); }
}
/* #endregion */

/* #region HEADER*/
header {
    height: 6rem;
    padding: 2px;
    background-color: #001f49;
    color: #c7d0d8;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
}

.nav-container {
    display: flex;
    width: 80%;
    height: 100%;
    margin: 0 auto;
    padding: 0 1rem;
    justify-content: space-between;
    align-items: center;
    line-height: 1;
}

.andre {
    color: #c7d0d8;
    white-space: nowrap;
    text-decoration: none;
    font-weight: bold;
    font-size: 2rem;
    transition: color 0.3s;
}

.andre:hover {
    color: #ffcc08;
    text-decoration: underline;
}

/* MENU DESKTOP */
.start-nav {
    display: flex;
    gap: clamp(1.5rem, 2vw, 2rem);
    align-items: center;
    justify-content: center;
}

.start-nav a {
    color: #c7d0d8;
    text-decoration: none;
    font-weight: 300;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.start-nav a:hover {
    color: #ffcc08;
    text-decoration: underline;
}

.social-icons {
    display: flex;
    gap: clamp(1rem, 2vw, 1.5rem);
    align-items: center;
}

.social-icons a {
    color: #c7d0d8;
    font-size: 2rem;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #ffcc08;
}

/* HAMBURGUER - ESCONDER NO DESKTOP */
.menu-toggle {
    display: none;
    flex-direction: column;
    width: 20px;
    height: 20px;
    gap: 5px;
    justify-content: center;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle .bar {
    height: clamp(2.5px, 1vw, 4px);
    width: clamp(20px, 1vw, 30px);
    background: #c7d0d8;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* MENU MOBILE */
.mobile-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100vh;
    width: 260px;
    padding: 2rem;
    gap: 2rem;
    top: 0;
    right: 0;
    background: #001f49;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1000;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu a {
    color: #c7d0d8;
    text-decoration: none;
    font-weight: 400;
    font-size: 1.5rem;
    transition: color 0.3s;
}
/* #endregion */

main {
    width: 100%;
    position: relative;
    z-index: 1;
}

/* #region HERO SECTION */
.hero-section {
    display: flex;
    box-sizing: border-box;
    max-width: 100%;
    height: 40rem;
    padding: clamp(0rem, 4vw, 0rem);
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.3);
}

/* Textos */
.hero-text {
    display: flex;
    flex: 1 1 clamp(6rem, 25vw, 25rem);
    min-width: 6rem;
    max-width: 100%;
    flex-direction: column;
    justify-content: center;
    color: #001f49;
}

.hero-text.left {
    height: 100%;
    padding-right: 0.5rem;
    text-align: right;
    align-items: flex-end;
}

.hero-text.right {
    height: 100%;
    padding-left: 0.5rem;
    text-align: left;
    align-items: flex-start;
}

.slide-wrapper {
    opacity: 0;
    animation-fill-mode: forwards;
}

.hero-text.left .slide-wrapper {
    transform: translateX(-200%);
    animation: slideInLeft 1s forwards ease;
}

.hero-text.right .slide-wrapper {
    transform: translateX(200%);
    animation: slideInRight 1s forwards ease;
}

.hero-text.left h2  {
    margin-bottom: clamp(0.2rem, 2vw, 0.5rem);
    font-size: clamp(3.5rem, 4vw, 4rem);
    text-transform: uppercase;
    transition: transform 0.3s ease;
    animation: pulse 1.5s infinite ease-in-out ;
}

.hero-text.right h2  {
    margin-bottom: clamp(0.2rem, 2vw, 0.5rem);
    font-size: clamp(3.5rem, 4vw, 4rem);
    text-transform: uppercase;
    transition: transform 0.3s ease;
    animation: pulse 1.5s infinite ease-in-out ;
}

.hero-text p {
    margin: 0;
    opacity: 0;
    font-size: 1.7rem;
    line-height: 1.4;
    animation: aparecer 8s forwards;
}

.hero-section:hover .hero-text {
    opacity: 0.3;
}

.hero-section:hover .hero-text:hover {
    opacity: 1;
}

.hero-section:hover .hero-text:hover h2 {
    transform: scale(1.2);
    animation: none;
}

/* IMAGEM */
.hero-image {
    display: flex;
    height: clamp(40rem, 4vw, 40rem);
    aspect-ratio: 1 / 1;
    /* flex: 0 1 clamp(40rem, 30vw, 40rem); */
    align-items: center;
    align-self: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: aparecer 3s forwards;
}

.hero-image img {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: contain;
    inset: 0;   
}

.hero-image .designer {
    clip-path: polygon(0 0, 42% 0, 42% 100%, 0 100%);
    transition: clip-path 0.4s ease;
    z-index: 2;
}

.hero-image .coder {
    position: relative;
    bottom: 0;
    z-index: 1;
}
/* #endregion*/

/* #region INTRO */
.intro-section {
    max-width: 100%;
    margin: 0;
    padding: 1rem 5vw;
    background-color: #001f49;
    text-align: center;
    overflow-x: hidden;
    opacity: 1;
    transform: translateY(500px);
    animation: subir 0.4s ease-out forwards;
}

.intro-section h2 {
    max-width: 85%;
    margin: 0 auto;
    margin-top: 1rem;
    color: #c7d0d8;
    font-weight: 400;
    text-align: justify;
    text-align-last: left;
    word-break: break-word;
    line-height: 1.8;
    font-size: clamp(1.5rem, 2vw, 2rem);
}

.intro-section h3 {
    display: inline-block;
    position: relative;
    margin: 2.5rem 0 0;
    color: #ffcc08;
    cursor: default;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 800;
    font-size: clamp(2rem, 3vw, 3rem);
}

.intro-section h3 span {
    display: inline-block;
    animation: bounceLetter 2s ease-in-out infinite;
}

.intro-section h3 span:nth-child(even) {
    animation-delay: 0.1s;
}

.intro-section h3 span:nth-child(odd) {
    animation-delay: 0.2s;
}
/* #endregion */

/* #region ICONS */

.intro-icons {
    display: flex;
    flex-wrap: nowrap;
    width: 85%;
    gap: clamp(1.5rem, 1vw, 10rem);
    padding: 2rem 0;
    margin: 0 auto;
    justify-content: space-between;
    align-items: center;   
}

/* Container de cada ícone */
.icon-wrapper {
    display: flex;
    flex-direction: column;
    width: clamp(4rem, 10vw, 6rem);
    gap: clamp(1rem, 2vw, 1.5rem);
    align-items: center;
    animation: pulse2 3.0s infinite ease-in-out ;
}

  /* Ícones (FA, Devicon, Iconify) */
.icon-wrapper i,
.icon-wrapper iconify-icon {
    color: #c7d0d8;
    filter: grayscale(20%);
    font-size: 4rem;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.icon-wrapper:hover i,
.icon-wrapper:hover iconify-icon,
.icon-wrapper:hover .icons-label {
    filter: none;
    color: #ffcc08;
    transform: scale(1.2);
    transition: transform 0.2s ease, filter 0.2s ease, color 0.2s ease;
}

/* Texto abaixo dos ícones */
.icons-label {
    color: #c7d0d8;
    white-space: nowrap;
    text-align: center;
    font-weight: 400;
    font-size: 1.2rem;
}
/* #endregion */

/* #region project */

.project-section {
    max-width: 100%; 
    margin: 0 auto;
    padding: 0 1.5rem 0 1.5rem;
    opacity: 0;
    animation: aparecer 3s forwards;
}

.project-section h2 {
    flex-wrap: nowrap;
    margin: 2rem 0 0 2rem; 
    text-align: center;
    color: #001f49;
    font-size: clamp(4rem, 5vw, 5rem);
}

.project-section h2 span {
    padding: clamp(1.5rem, 3vw, 2.5rem) clamp(0.3rem, 1vw, 0.5rem);
    display: inline-block;
    animation: bounceLetter 2s ease-in-out infinite;
}

.project-section span:nth-child(even) {
     animation-delay: 0.1s;
}

.project-section h2 span:nth-child(odd) {
     animation-delay: 0.2s;
}

.project-item {
    display: flex;
    position: relative;
    width: 85%;
    aspect-ratio: 16 / 7;
    margin: 0 auto; 
    margin-bottom: clamp(4rem, 2vw, 6rem);
    padding: 0;
    padding-left: clamp(0.5rem, 2vw, 1rem);
    gap: 0;
    overflow: hidden;
    background-color: #001f49dd;
    color: #ffcc08;
    border-radius: 1rem;
    align-items: center;
    transition: all 0.5s ease;
    z-index: 1;
     max-width: 1500px;
}

.project-item::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -146%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        -45deg,
        transparent 0%,
        rgba(255, 189, 89, 0.25) 45%,
        rgba(255, 189, 89, 0.25) 55%,
        transparent 0%
         );
    transform: translateX(-100%);
    opacity: 0;
    z-index: 1;
    pointer-events: none;
    transition: transform 0.6s ease, opacity 0.3s ease;
}

.project-item:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 189, 89, 1);
}

.project-item:hover::before {
    opacity: 1;
    transform: translateX(100%);
}

.card-text {
    display: flex;
    flex-direction: column;
    flex: 0 0 45%;
    height: 90%;
    padding: 0 clamp(1rem, 2vw, 2rem);
    justify-content: flex-start; 
    text-align-last: left;
}

.project-item h3 {
    width: 100%;
    margin: 0;
    font-size: clamp(2rem, 2vw, 3rem);
}

.project-item h4 {
    width: 100%;
    margin: 0 0 0.5rem;
    font-size: clamp(1.5rem, 2vw, 2rem);
}

.project-item p {
    width: 100%;
    margin: 0;
    margin-bottom: 0.5rem;
    text-align:justify;
    word-break: break-word;
    line-height: 1.8;
    font-size: clamp(1.3rem, 2vw, 1.5rem);
}

.bt-behance {
    display: flex;
    position: relative;
    width: 100%;
    height: 15%;
    margin-bottom: 0;
    margin-top: auto;
    background-color: #ffcc08;
    justify-content: center;
    align-self: flex-start;
    border-radius: 1rem;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    
}

.bt-behance::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%; 
    height: 300%;
    z-index: 2;
    pointer-events: none;
}

.bt-behance:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 189, 89, 1);
}

.bt-behance:hover::before {
    opacity: 1;
    transform: translateX(100%);
}

.bt-behancefull {
    display: flex;
    position: relative;
    width: 50%;
    height: 5rem;
    margin: 4rem auto;
    background-color: #ffcc08;
    justify-content: center;
    align-self: flex-start;
    border-radius: 2rem;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bt-behancefull::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%; 
    height: 300%;
    z-index: 2;
    pointer-events: none;
}

.bt-behancefull:hover {
    transform: scale(1.08);
    box-shadow: 0 0 20px rgba(255, 189, 89, 1);
}

.bt-behancefull:hover::before {
    opacity: 1;
    transform: translateX(100%);
}

#bt-full {
    display: flex;
    margin: auto;
    color: #001f49;
    justify-content: center;
    font-size: clamp(1.8rem, 1.5vw, 2.4rem);
}

#bt-full a {
    color: #001f49;
    text-decoration: none;
    font-weight: 800;
    transition: color 0.3s;
    font-size: 3rem;
}

#bt-full a:hover {
    color: #001f49dd;
    text-decoration: none;
}

#bt-p {
    display: flex;
    margin: auto;
    color: #001f49;
    justify-content: center;
    font-size: clamp(1.5rem, 1.5vw, 2rem);
}

.project-item a {
    color: #001f49;
    text-decoration: none;
    font-weight: 800;
    transition: color 0.3s;
}

.project-item a:hover {
    color: #001f49dd;
    text-decoration: none;
}


.project-item .card {
    position: relative;
    flex: 0 0 55%;
    height: 90%;
    background: #ffffff;
    border-radius: 1rem;
    overflow: hidden;
    border: #ffcc08 0.2rem solid;
}

.project-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    transition: opacity 0.5s ease-in-out;
    border-radius: 1rem;
}

.img-main,
.img-next {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease;
}

.img-main {
    opacity: 1;
    z-index: 1;
}

.img-next {
    opacity: 0;
    z-index: 2;
}

.tech-icons {
    display: flex;
    position: absolute;
    bottom: 0.8rem;
    left: 0.8rem;
    padding: 0.5rem;
    gap: 0.8rem;
    background-color: rgba(199, 208, 216, 0.7);
    border-radius: 0.7rem;
    border: #ffcc08 1px solid;
    z-index: 3;
}

.tech-icons i, .tech-icons iconify-icon {
    color: #001f49; 
    cursor: default;
    opacity: 1;
    font-size: 2.4rem;
    filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.5));
    transition: transform 0.3s ease, color 0.3s ease;
}
/* #endregion */

/* #region Contact */
.contact-section {
    padding: 
    clamp(1rem, 2vw, 1rem) clamp(1rem, 3vw, 1.5rem) 
    clamp(2.5rem, 2vw, 4rem) clamp(1rem, 3vw, 1.5rem);
    background-color: #001f49;
    color: #c7d0d8;
    text-align: center;
    box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.3);
    border-bottom: #ffcc08 1px solid;
}

.contact-section h2 {
    margin-bottom: 2rem;
    color: #ffcc08;
    font-size: clamp(4rem, 5vw, 5rem);
}

.contact-section h2 span {
    display: inline-block;
    padding: 0 5px;
    animation: bounceLetter 2s ease-in-out infinite;
}

.contact-section h2 span:nth-child(even) {
    animation-delay: 0.1s;
}

.contact-section h2 span:nth-child(odd) {
    animation-delay: 0.2s;
}

.contact-container {
    display: flex;
    flex-direction: column;
    width: 60%;
    gap: clamp(0.5rem, 2vw, 1rem);
    margin: 0 auto;
}

.contact-info p {
    font-size: clamp(1rem, 2vw, 1.5rem);
    margin: 0.5rem 0;
}

.contact-info i {
    margin-right: 0.5rem;
    color: #ffcc08;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: clamp(0.5rem, 2vw, 1rem);  
}

.contact-form input,
.contact-form textarea {
    padding: 0.5rem;
    background-color: #ffffff;
    color: #001f49;
    resize: none;
    border: none;
    border-radius: 0.5rem;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
}

.contact-form button {
    padding: 1rem 2rem;
    background-color: #ffcc08;
    color: #001f49;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    font-weight: 800;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(255, 204, 8, 0.7);
}
/* #endregion */

/* #region FOOTER */
footer {
    flex-direction: column;
    flex-wrap: nowrap;
    position: relative;
    padding: clamp(1.5rem, 4vw, 2.5rem) 0 0 0;
    margin: 0;
    background-color: #001f49;
    color: #c7d0d8;
}

.footer-arrow {
    display: flex;
    position: relative;
    top: 0.5rem;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.circle-button {
    display: flex;
    width: clamp(0.5rem, 8vw, 4rem);
    height: clamp(0.5rem, 8vw, 4rem);
    background-color: #001f49;
    color: #ffffff;
    align-items: center;
    justify-content: center;
    box-shadow: 0 -3px 15px rgba(0, 0, 0, 0.3);
    border: 0.2rem solid #c7d0d8;
    border-radius: 50%;
    text-decoration: none;
    font-size: clamp(1.2rem, 2vw, 2rem);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.circle-button:hover {
    background-color: #ffcc08;
    color: #001f49;
    transform: translateY(-5px);
}

.footer-content {
    display: flex;
    flex-wrap: nowrap; 
    width: 90%;
    gap: clamp(0.5rem, 2vw, 1.5rem);
    margin: auto;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
}

.footer-content p {
    padding-bottom: 0;
    color: #c7d0d8;
    text-decoration: none;
    font-weight: 300;
    font-size: 1rem;
    transition: color 0.3s;
}

.footer-links {
    display: flex;
    gap: clamp(1rem, 2vw, 1.5rem);
}

.footer-links a, .footer-content a {
    margin: 0 auto;
    color: #c7d0d8;
    text-decoration: none;
    font-weight: 300;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.footer-links a:hover, .footer-content a:hover {
    color: #ffcc08;
    text-decoration: underline;
}
/* #endregion */

/* #region responsive */

/* #region Desktop */
@media (max-width: 1600px) { 
    html {
        font-size: clamp(16.5px, 1vw, 18px);
    }
}

@media (max-width: 1440px) { 
    html {
        font-size: clamp(15px, 1vw, 16.5px);
    }
}

@media (max-width: 1366px) { 
    html {
        font-size: clamp(12.5px, 1vw, 15px);
    }
}

@media (max-width: 1220px) { 
    html {
        font-size: clamp(10px, 1vw, 12.5px);
    }
}
/* #endregion */

/* #region Tablet */
@media (max-width: 1024px) { 
    html {
        font-size: clamp(9px, 1vw, 10px);
    } 
}
@media (min-width: 835px) {
    .menu-toggle,
    .mobile-menu,
    .overlay {
        display: none;
    }
}

@media (max-width: 834px) {
    html {
        font-size: clamp(8px, 1vw, 9px);
    }

    .andre  {
        font-size: 4rem;
    }
    
    .menu-toggle {
        display: flex;
    }

    .start-nav,
    .social-icons {
        display: none;
    }

    header {
        position: relative;
    }

 
    .mobile-menu {
        display: flex;
        flex-direction: column;
        position: absolute;
        height: auto;
        width: auto;
        min-width: 200px; 
        margin-bottom: 1rem;
        padding: 2rem;
        gap: 2rem;
        top: 100%;
        right: 0;
        background: #001f49;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4); 
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 1000;
    }

    .mobile-menu.active {
        transform: translateX(0);
    }

    .mobile-menu a {
        color: #c7d0d8;
        text-decoration: none;
        font-weight: 400;
        font-size: 3rem;
        transition: color 0.3s;
    }

    .mobile-menu a:hover {
        color: #ffcc08;
  }
}

    .mobile-menu .social-icons {
        display: flex;
         gap: 1.5rem;
        justify-content: center;
    }

@media (max-width: 800px) { 
    html {
        font-size: clamp(7px, 1vw, 8px);
    }
}

@media (max-width: 768px) { 
    html {
        font-size: clamp(6px, 1vw, 7px);
    }
}
@media (max-width: 600px) { 
    html {
        font-size: clamp(5.2px, 1vw, 6px);
    }
}

@media (max-width: 500px) { 
    html {
        font-size: clamp(4.5px, 1vw, 5.2px);
    }
}
/* #endregion */

/* #region Mobile */
@media (max-width: 430px) { 
    html {
        font-size: 8px;
    }

    header {
        padding: auto 0.5rem;
        text-align: center;
        height: 8rem;
    }

    .nav-container {
        display: flex;
        height: 8rem;
        width: 100%;
        padding: 0 1.5rem; 
        margin: 0 auto;
        align-items: center;
    }

     .hero-image {
      position: relative;
      height: 100%;
      width: auto;
      flex-shrink: 0;
      flex-grow: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }
  
    .hero-image img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    
    }
    
    .hero-section {
        display: flex;
        position: relative;
        height: 30rem;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }
  
    .hero-image {
        display: flex;
        position: relative;
        height: 100%;
        width: auto;
        flex-shrink: 0;
        flex-grow: 0;
        align-items: center;
        justify-content: center;
    }
  
    .hero-image img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
  
    .hero-text.left,
    .hero-text.right {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 0;
        bottom: 0;
        width: 45%;
        justify-content: center;
        color: #001f49;
        background: transparent;
        z-index: 2;
        pointer-events: auto;
    }
  
    .hero-text.left {
        padding-right: 10rem;
        left: 0;
        align-items: flex-end;
        text-align: right;
    }
  
    .hero-text.right {
        padding-left: 10rem;
        right: 0;
        align-items: flex-start;
        text-align: left;
    }
  
    .hero-text.left h2,
    .hero-text.right h2 {
        margin-bottom: 0.5rem;
        text-transform: uppercase;
        font-size: 2rem;
        animation: pulse 1.5s infinite ease-in-out;
    }
  
    .hero-text.left p,
    .hero-text.right p {
        line-height: 1.4;
        margin: 0;
        opacity: 1;
        font-size: 1.2rem;
    }
  
    .hero-section:hover .hero-text {
         opacity: 1;
    }
  
    .hero-section:hover .hero-text:hover {
         opacity: 1;
    }  

      .intro-section  {
        padding: 0;
      }

    .intro-section h2 {
        margin-top: 1rem;
        margin-bottom: 1rem;
        max-width: 100%;
        padding: 1rem 4rem;
        word-break: break-word;
        line-height: 1.8;
        font-size: 2.4rem;
    }

    .intro-section h3 {
        font-size: 3rem;
    }

    .intro-scroll-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        width: 100%;
        padding: 1rem 0; 
        scroll-padding-left: 4rem;
        scroll-padding-right: 4rem;
        scrollbar-width: none;
        -ms-overflow-style: none;
        position: relative;
        animation: bounceSide 3s ease-in-out infinite;
    }

    .intro-scroll-container::-webkit-scrollbar {
        display: none; /* Chrome, Safari e Opera */
    }

    .intro-icons {
        display: flex;
        flex-wrap: nowrap;
        width: max-content;
        gap: 8rem;
        padding: 0 4rem;
    }

    .intro-icons.paused {
        animation-play-state: paused;
    }

    .icon-wrapper {
        display: flex;
        flex: 0 0 auto;
        flex-direction: column;
        gap: 2rem;
        min-width: 5rem;
        padding: 2rem 0;
        align-items: center;
        scroll-snap-align: start; 
    }

    .intro-icons i,
    .intro-icons iconify-icon {
        font-size: 8rem;
    }

    .icon-wrapper:first-child {
        margin-left: 0; 
    }

    .icon-wrapper:last-child {
        margin-right: 0; 
    }

    .icons-label  {
        white-space: nowrap;
    }

    .project-item {
        display: flex;
        flex-direction: column;
        height: 70rem; 
        width: 90%;
        padding: 0;
        padding-top: 2.5%;
        gap: 1rem;
        border-radius: 2rem;
    }

    .project-item::before {
        top: -100%;
        left: -20%;
        background: linear-gradient(
            -40deg,
            transparent 0%,
            rgba(255, 189, 89, 0.25) 45%,
            rgba(255, 189, 89, 0.25) 55%,
            transparent 0%
        );
        transition: transform 1s ease, opacity 0.3s ease;
    }

    .project-item .card {
        position: relative;
        flex: 0 0 30%;
        aspect-ratio: 16 / 7;
        width: 95%;
        flex-shrink: 0;
        border-radius: 2rem;
        border: #ffcc08 0.2rem solid; 
    }

    .card-text {
        display: flex;
        flex: 0 0 40%;
        flex-direction: column;
        padding: 3%;
        justify-content: flex-start; 
        text-align-last: left;
        box-sizing: border-box;
    }

    .card-text,
    .project-item .card {
        flex-grow: 1;
    }
          
    .project-item h3 {
        font-size: clamp(3rem, 2vw, 3.5rem);
    }

    .project-item h4 {
        margin-bottom: 1rem;
        font-size: clamp(3rem, 2vw, 3.5rem);
    }

    .project-item p {
        line-height: 2;
        font-size: clamp(1.7rem, 2vw, 2rem);
    }

    .bt-behance {
        display: flex;
        flex-shrink: 0;
        width: 100%;
        height: 15%;  
        margin-top: auto;    
        border-radius: 2rem;
        justify-content: center;
        align-items: center;
        background-color: #ffcc08; 
    }

    #bt-full a {
    font-size: 2.5rem;
    }

    .bt-behancefull {
    width: 90%;
    height: 5.5rem;
    }

    #bt-p {
        font-size: clamp(2rem, 1vw, 2.5rem);
    }

    .contact-container {
        width: 90%;
    }

    .contact-form input,
    .contact-form textarea,
    .contact-form button {
        margin-bottom: 1rem;
        border-radius: 0.5rem;
        font-size: clamp(2rem, 1.5vw, 3rem);
    }

    .footer-content {
        gap: clamp(1rem, 2vw, 1.5rem);
    }

    .circle-button {
        width: clamp(8rem, 8vw, 10rem);
        height: clamp(8rem, 8vw, 10rem);
        color: #c7d0d8;
        font-size: clamp(4rem, 2vw, 5rem);
    }

    .footer-content a {
        font-size: clamp(1rem, 1.5vw, 2rem);
    };
 }

@media (max-width: 414px) { 
    html {
        font-size: clamp(7px, 2vw, 8px);
    }
}

@media (max-width: 393px) { 
    html {
        font-size: clamp(6px, 2vw, 7px);
    }
}

@media (max-width: 375px) { 
    html {
    font-size: clamp(5.5px, 2vw, 7px);
    }
    .project-item h3 {
    font-size: clamp(3.5rem, 2vw, 4rem);
}

.project-item h4 {
    font-size: clamp(2.5rem, 2vw, 3rem);
    margin-bottom: 1rem;
}

.project-item p {
    font-size: clamp(1.8rem, 2vw, 2rem);
    line-height: 2;
}
}

@media (max-width: 320px) { 
    html {
        font-size: clamp(5.5px, 2vw, 6px);
    }
}
/* #endregion */

