@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;400&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline:none;
    scroll-behavior: smooth;
    font-family: 'poppins', sans-serif;
}

:root {
    --bg-color: #1f242d;
    --second--bg-color: #323946;
    --text-color: #fff;
    --main-color:#0ef;
}

html {
    font-size: 62.5%;
    overflow-x: hidden;

}

body {
    background-color: #1f242d;
    color:#fff
}

.header {
    position: fixed;
    top:0;
    left: 0;
    width: 100%;
    padding: 2rem 9%;
    background: var(--bg-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.header.sticky {
    border-bottom: .1rem solid rgba(0, 0, 0, .2);
}

section {
    min-height: 100vh;
    padding: 10rem 9% 2rem;
}

.logo {
    font-size: 25px;
    color:#fff;
    text-decoration: none;
    font-weight: 600;
    cursor: default;
    opacity: 0;
    animation: slideRight 1s ease forwards;
}

.navbar a {
    font-size: 1.7rem;
    color: var(--text-color);
    margin-left: 4rem;
    transition: .3s;
}

.navbar a:hover,
.navbar a.active {
  color: var(--main-color)
}

#menu-icon {
    font-size: 3rem;
    color: var(--text-color);
    display: none;
}

.home {
    position: flex;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 70px 10% 0;
}

.home-content .img {
    max-width:  450px;
    margin-right: -50px;
    animation-delay: 2s, 3s;
}



.home-content {
    max-width: 600px;
} 

.home-content h3{
    font-size: 3.2rem;
    font-weight: 700;
    opacity: 0;
    animation: slideBottom 1s ease forwards;
    animation-delay: .7s;
}

.home-content h3:nth-of-type(2) {
    margin-bottom: 30px;
    animation: slideTop 1s ease forwards;
    animation-delay: .7s;
}

.home-content h3 span {
    color:#0ef;
}

span {
    color: #0ef;

}

.home-content h1 {
    font-size: 56px;
    font-weight: 700;
    margin: -3px 0;
    opacity: 0;
    animation: slideRight 1s ease forwards;
    animation-delay: 1s;
}

.home-content p {
    font-size: 16px;
    opacity: 0;
    animation: slideLeft 1s ease forwards;
    animation-delay: 1s;
}


.social-media a {
    display:inline-flex;
    justify-content: center;
    align-items: center;
    width:40px;
    height: 40px;
    background: transparent;
    border: 2px solid #0ef;
    border-radius: 50%;
    font-size: 20px;
    color: #0ef;
    text-decoration: none;
    margin: 30px 15px 30px 0;
    transition: .5s ease;
    opacity: 0;
    animation: slideLeft 1s ease forwards;
    animation-delay: calc(.2s * var(--i));
}

.social-media a:hover {
    background: #0ef;
    color: #1f242d;
    box-shadow: 0 0 20px #0ef;
}

.btn {
    display:  inline-block;
    padding: 12px 24px;
    background: #0ef;
    border-radius: 40px;
    box-shadow: 0 0 10px #0ef;
    font-size: 16px;
    color: #1f242d;
    letter-spacing: 1px;
    text-decoration: none;
    font-weight: 600;
    opacity: 0;
    animation: slideTop 1s ease forwards;
    animation-delay: 2s;
}

.btn:hover {
    box-shadow: none;
}

.about {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    background: var(--second-bg-color);
}

.about-img img {
    max-width:  450px;
    margin-left: -20px;
    opacity: 0;
    animation: zoomIn 1s ease forwards, floatImage 4s ease-in-out infinite;
    animation-delay: 2s, 3s;
}

.heading {
    text-align: center;
    font-size: 4.5rem;
}

.about-content h2 {
    text-align: left;
    line-height: 1.2;
}

.about-content h3 {
    font-size: 2rem;
    color: var(--main-color);

}

.about-content p {
    font-size: 16px;
    opacity: 0;
    animation: slideLeft 1s ease forwards;
    animation-delay: 1s;
}

.skills h2 {
    margin-bottom: 5rem;
}

.skills-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.skills-container .skills-box {
    flex: 1 1 30rem;
    background: var(--second--bg-color);
    padding: 3rem 2rem 4rem;
    border-radius: 2rem;
    text-align: center;
    border: .2rem solid var(--bg-color);
}

.skills-box i {
    flex: 1 1 30rem;
    font-size: 10rem;
    align-items: center;
    color: var(--main-color);

}

.skills-box .skills-img {
    flex: 1 1 30rem;
    font-size: 10rem;
    align-items: center;
}

.skills-container .skills-box:hover {
    border-color: var(--main-color) ;
    transform: scale(1.02);
}


.skills-box p {
    font-size: 1.6rem;
    margin: 1rem 0 3rem;
}

.portifolio {
    background: var(--second--bg-color);
}

.portifolio h2{
    margin-bottom: 4rem;
}

.portifolio-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    gap: 2.5rem;
    margin-top: 5rem;
}


.portifolio-container .portifolio-box {
    position: relative;
    border-radius: 2rem;
    box-shadow: 0 0 1rem var(--bg-color);
    overflow: hidden;
    display: flex;
}

.portifolio-box img {
    width: 100%;
    transition: .5s ease;
}

.portifolio-box:hover img {
    transform: scale(1.1);
}

.portifolio-box  {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, .1) );
    background: var(--bg-color);
    display: flex;
    margin-top: -300px;
    flex-direction: column;
    text-align: center;
    padding: 0 4rem;
    transform: translateY(100%);
    transition: .5s ease;
}
.portifolio-layer { 
    margin: 300;
    margin-top: -200px;
    border: #323946;
    flex-direction: column;
    text-align: center;
    padding: 0 1rem;
    transform: translateY(100%);
    transition: .5s ease;
   

}


.portifolio-box:hover .portifolio-layer {
    transform: translateY(0%);
}

.portifolio-layer h4 { 
    
    margin: 3px;
    font-size: 1.3rem; 
    color: #0ef
}

.portifolio-layer p {
    font-size: 1.3rem;
    margin: .3rem 0 1rem;
}

.portifolio-layer a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 5rem;
    height: 5rem;
    background: var(--text-color);
    border-radius: 50%;
}

.portifolio-layer a i {
    font-size: 2rem;
    color:  var(--second--bg-color-color);
}

.contact h2 {
    text-align: center;
    align-items: center;
    margin-bottom:  3rem;
}


.contact form {
    max-width: 70rem;
    margin:  1rem auto;
    text-align: center;
    margin-bottom: 3rem;
}

.contact form .input-box {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.contact form .input-box input,
.contact form textarea {
    width: 100%;
    padding: 1.5rem;
    font-size: 1.6rem;
    color: var(--text-color);
    background: var(--second--bg-color);
    border-radius: .8rem;
    margin: .7rem 0;
}

.contact form .input-box input {
    width: 49%;
}

.contact form textarea {
    resize: none;
}

.contact form .btn {
    margin-top: 2rem;
    cursor: pointer;
}


.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 2rem 18%;
    background: var(--second--bg-color);
}

.footer-text p {
    font-size: 1.6rem;
}


.footer-iconTop a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: .8rem;
    background: var(--main-color);
    border-radius: .8rem;
    transition: .5s ease;

}

.footer-iconTop a:hover {
    box-shadow: 0 0 1rem var(--main-color);
}

.footer-iconTop a i {
    font-size: 2.4rem;
    color: var(--second--bg-color);
}

/* break points */

@media (max-width: 1200px) {
    html {
        font-size: 55%;
    }
}

@media (max-width: 991px) {
    .header {
        padding: 2rem 3%;
    }

    section {
        padding: 10rem 3% 2rem;
    }

    .skills {
        padding-bottom: 7rem;
    }
    .portifolio {
        padding-bottom: 7rem;
    }

    .contact {
        min-height: auto;
    }

    .footer {
        padding: 2rem 3%;
    }
}

@media (max-width: 768px) {
    #menu-icon {
        display: block
    }
    .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding:  1rem 3%;
        background: var(--bg-color);
        border-top: .1rem solid rgba(0, 0, 0, .2);
        box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .2);
        display: none;
    }


    .navbar.active {
        display: block;

    }
    .navbar a {
        display: block;
        font-size:  2rem;
        margin: 3rem 0;

    }
    .home {
        flex-direction: column;
    }
    .home-content h3 {
        font-size: 2.6rem;
    }
    .home-content h1 {
        font-size: 5rem;
    }
    
    .about {
        flex-direction: column-reverse;
    }
    .about-img {
        width: 70vw;
        margin-top: 4rem;
    }
    .skills h2 {
        margin-bottom: 3rem;
    }

    .portifolio h2 {   
        margin-bottom: 6rem; 
    }
    .portifolio-container {
        grid-template-columns: repeat(2, 1fr);
    } 
}

@media (max-width: 617px) {
    .portifolio-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 450px) {
    html {
        font-size:50%;
    }

    .contact form .input-box input {
        width: 100%;

    }
}

@media (max-width: 365px) {
    .home-img img {
        width: 90vw;
    }

    .about-img img {
        width: 90vw;
    }

    .footer {
        flex-direction: column-reverse;
    }

    .footer p {
        text-align: center;
        margin-top: 2rem;

    }
}


.more-content {
    display: none;
}


/* KEYFRAMES ANIMATION */
@keyframes slideRight {
    0% {
        transform: translateX(-100px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideLeft {
    0% {
        transform: translateX(100px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideTop {
    0% {
        transform: translateY(100px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideBottom {
    0% {
        transform: translateY(-100px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }

}
@keyframes zoomIn {
    0% {
        transform:scale(0);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes floatImage {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-24px);
    }
    100% {
        transform: translateY(0);
    }
}



.home-img img {
    width: 300px; /* Ajuste o tamanho conforme necessário */

    height: auto;
    animation: floatImage 4s ease-in-out infinite;
}
.home-content {
    margin-right: 60px;
    background: linear-gradient(-120deg, var(--bg-color), var(--second--bg-color));
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

/* Ajustando a margem da seção portfólio para subir mais próximo ao título */
.portifolio-container {
    margin-top: -655px; /* Ajuste conforme necessário */
}

/* Ajustando os boxes do portfólio */
.portifolio-box {
    margin-top: 0px;  /* Ajuste conforme necessário */
    padding: 0px; /* Controle o espaçamento interno se necessário */
}

/* Subir a camada sobre o portfólio */
.portifolio-layer {
    margin-top: 0px;  /* Ajuste a margem para um posicionamento mais próximo */
    padding-top: 0px; /* Altere o padding conforme necessário */
}

.portifolio-layer h4 {
    padding: -0px;
    margin-top: -15px; /* Ajuste conforme necessário */
    
}


/* teste */ 

.portifolio-box {
    margin-top: 100px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.portifolio-box img {
    width: 100%;
    display: block;
    transition: transform 0.3s ease-in-out;
}

.portifolio-box:hover img {
    transform: scale(1.1);
}

.portifolio-layer {
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    padding: 20px; /* Adiciona um espaçamento interno */
    text-align: center;
    transition: 0.5s;
    margin-top: -110px;
}

.portifolio-layer h4 {
    margin-bottom: 10px; /* Espaço entre o título e o texto */
    font-size: 1.8rem;
}

.portifolio-layer p {
    font-size: 1.4rem;
    line-height: 1.6; /* Melhora a legibilidade do texto */
    margin-top: 10px; /* Espaço extra entre a imagem e o texto */
}

/*  espaço para responsividade */ 

@media (max-width: 768px) {
    .home {
        flex-direction: column;
        padding-top: 10rem;
        text-align: center;
    }

    .home-content {
        margin-right: 0;
        padding: 2rem 1rem;
        box-shadow: none;
    }

    .home-img img {
        width: 220px;
        margin-top: 2rem;
    }
}


@media (max-width: 768px) {
    .about {
        flex-direction: column-reverse;
        text-align: center;
        padding: 6rem 2rem;
    }

    .about-img img {
        max-width: 280px;
        margin: 0 auto 2rem;
    }

    .about-content h2,
    .about-content h3,
    .about-content p {
        text-align: center;
    }
}


@media (max-width: 768px) {
    .home-content {
        background: none;
        box-shadow: none;
        border-radius: 0;
    }
}


@media (max-width: 768px) {
    .social-media {
        justify-content: center;
        flex-wrap: wrap;
    }

    .social-media a {
        margin: 10px;
    }
}



@media (max-width: 768px) {
    .home {
        flex-direction: column-reverse;
        align-items: center;
        text-align: center;
        padding-top: 8rem;
    }

    .home-img img {
        width: 240px;
        margin-bottom: 2rem;
    }

    .home-content {
        margin: 0;
        padding: 2rem 1.5rem;
        box-shadow: none;
        border-radius: 0;
    }

    .social-media {
        justify-content: center;
        flex-wrap: wrap;
    }

    .social-media a {
        margin: 10px;
    }
}
 
/* Responsividade para mobile */
@media (max-width: 768px) {
    .about {
        flex-direction: column-reverse;
        text-align: center;
        padding: 2rem 1.5rem;
    }

    .about-img img {
        width: 220px;
        margin-bottom: 2rem;
    }

    .about-content h2,
    .about-content h3,
    .about-content p {
        margin: 0 auto;
    }
}



@media (max-width: 768px) {
  .portifolio-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px; /* controla o espaço entre os cards */
    padding: 10px;
    margin-top: 0;
    width: 100%;
  }

  .portifolio-box {
    margin-top: -200px;
    width: 45%; /* faz caber duas lado a lado */
    max-width: none;
    height: 250px;
  }

  .portifolio-box img {
    
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

