@import url('https://fonts.googleapis.com/css2?family=Bellota+Text:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap');

:root {
    --title-color: #202020;  
    --pink: #FF087F;
    --pink-secundaria: #B60058;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Bellota Text", Sans-serif;
}

body {
    padding-top: 200px; 
}

header {
    background-color: #fff;
    z-index: 1000;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.2);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 350px;
}

nav img {
    width: 100px;;
}

nav ul {
    display: flex;
    list-style: none;
}

nav li a {
    text-decoration: none;
    color: var(--title-color);
    font-family: "Bellota Text", Sans-serif;
    font-size: 23px;
    font-weight: 600;
    display: block;
    padding: 0 30px;
    transition: transform 0.3s ease, color 0.3s ease; 
}

nav li a:hover {
    color: var(--pink);
    transform: scale(1.1);
}

#contato {
    background-color: var(--pink);
    padding: 20px 50px;
    border-radius: 100px;
    font-size: 23px;
    font-weight: 600;
    font-family: "Bellota Text", Sans-serif;
    color: #fff;
    text-decoration: none;
}

.banner {
    font-family: "Bellota Text", Sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.banner img {
    width: 50%;
}

.banner h1 {
    color: var(--pink);
    font-size: 70px;
    font-weight: 600;
}

.banner h2 {
    color: var(--title-color);
    font-size: 50px;
    font-weight: 500;
}

.highlight {
    color: var(--pink);
}

#sobre {
    background-color: var(--pink-secundaria);
    color: #fff;
    padding: 80px 350px;
    position: relative;
}

#sobre::after {
    content: "";
    position: absolute;
    height: 70px;
    width: 70px;
    background-color: var(--pink-secundaria);
    top: calc(100% - 50px);
    left: calc(50% - 50px);
    transform: rotate(45deg);
    z-index: 2;
}

#sobre h1 {
    font-size: 50px;
    font-weight: 600;
    -webkit-text-stroke-width: 2px;
    letter-spacing: 1.5px;
}

#sobre p 
{
    margin: 20px 0;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
}

#portfolio {
    padding: 80px 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#portfolio h1 {
    font-size: 50px;
    font-weight: 600;
    color: var(--title-color);
    -webkit-text-stroke-width: 2px;
    letter-spacing: 1.5px;
}

.bloco {
    margin: 60px 0px 0px;
    display: flex;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.2);
    border: 1px solid transparent; 
    transition: border-color 0.3s ease, border-width 0.3s ease;
    flex-direction: row;
    align-items: center;
}

.bloco:hover {
    border-width: 1px;
    border-style: solid;
    border-color: var(--pink);
}

.bloco img {
    border-radius: 20px;
    width: 618px;
}

.bloco .text-content {
    position: relative;
    width: 50%;
}

.text-content {
    padding: 0px 40px;
}

#title {
    font-size: 30px;
}

 .bloco p {
    font-size: 16px;
    font-weight: 500;
    line-height: 30px;
 }

 .bloco button {
    background-color: var(--pink);
    color: #fff;
    padding: 15px 80px;
    border: none;
    border-radius: 100px;
    font-size: 20px;
    font-weight: 700;
    margin-top: 20px;
 }

 #skills {
    padding: 80px 350px;
    background-color: var(--pink-secundaria);
    text-align: center;
 }

 #skills h1 {
    font-size: 50px;
    color: #fff;
    font-weight: 600;
    -webkit-text-stroke-width: 2px;
    letter-spacing: 1.5px;
    margin-bottom: 120px;
 }

.todas_skills {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-content: center;
    align-items: center;
    gap: 100px 0px;
 }

 .skill {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
 }

 .skill p {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin-top: 30px;
    text-align: center;
}

 .skill img {
    width: 80px;
    transition: transform 0.3s ease, color 0.3s ease; 
 }

 .skill img:hover {
    transform: scale(1.1);
 }

 #wrapper {
    margin: 0 auto;
    width: 100%;
    overflow: hidden;
    background-color: #F9F7FC;
    padding: 80px 0; /* Remover padding lateral para centralizar */
}

#timeline {
    padding: 0 32px;
    height: 420px;
    width: fit-content;
    display: flex;
    flex-direction: row;
    position: relative;
    margin: 0 auto; /* Centralizar horizontalmente */
}

.timeline-container {
    overflow: auto;
}

#timeline::after {
    content: "";
    position: absolute;
    height: 1px;
    background: var(--pink-secundaria);
    top: 50%;
    width: 100%; 
    transition: 4s linear;
    animation-name: linegrow;
    animation-duration: 12s;
    animation-fill-mode: forwards;
    animation-iteration-count: 1;
    animation-timing-function: linear;
}

#wrapper h1 {
    font-size: 50px;
    color: var(--title-color);
    font-weight: 600;
    -webkit-text-stroke-width: 2px;
    letter-spacing: 1.5px;
    margin-bottom: 120px;
    text-align: center;
}

.card-info {
    border-radius: 8px;
    bottom: 12%;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    width: 200px;
    aspect-ratio: 3/4;
    padding: 16px;
    background: var(--pink-secundaria);
    transition: 0.3s all ease;
    z-index: 2;
    transform: translateY(20px);
}

.card-info p {
    line-height: 1.4rem;
    font-size: 16px;
    color: #fff;
    text-align: center;
}

.timeline-card {
    margin-right: 32px;
    padding: 16px;
    min-width: 220px;
    margin: 0px 20px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    transition: all 0.8s ease;
}

.timeline-card:hover .card-info {
    opacity: 1;
    transform: translateY(0);
}

.timeline-card h2 {
    color: var(--pink-secundaria);
    font-size: 28px;
    font-weight: 600;
    text-align: center;
}

.timeline-card span {
    color: var(--pink-secundaria);
    font-size: 1.4rem;
    font-weight: bold;
}

.timeline-card::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--pink-secundaria);
    z-index: 1;
}

.timeline-card:nth-child(even) {
    padding-bottom: 8rem;
}

.timeline-card:nth-child(even)::after {
    content: "";
    position: absolute;
    top: 70px;
    left: 50%;
    border-left: 1px dashed var(--pink);
    width: 0px;
    height: 30%;
    animation-name: linegrowVertical;
    animation-duration: 5s;
    animation-fill-mode: forwards;
    animation-iteration-count: 1;
    animation-timing-function: linear;
    transform-origin: bottom;
}

.timeline-card:nth-child(odd) {
    padding-top: 8rem;
}

.timeline-card:nth-child(odd)::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    height: 35%;
    border-left: 1px dashed var(--pink);
    width: 0px;
    animation-name: linegrowVerticalOdd;
    animation-duration: 5s;
    animation-fill-mode: forwards;
    animation-iteration-count: 1;
    animation-timing-function: linear;
    transform-origin: top;
}

#sites {
    padding: 80px 350px;
}

#sites .title01 {
    color: var(--title-color);
    font-size: 50px;
    font-weight: 600;
    letter-spacing: 1.5px;
    -webkit-text-stroke-width: 2px;
    stroke-width: 2px;
}

#sites .title02 {
    color: var(--title-color);
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 1.5px;
    -webkit-text-stroke-width: 1px;
    stroke-width: 1px;
}

.todos_sites {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-content: center;
    align-items: center;
    gap: 0px 30px;
    margin-top: 50px;
 }

 .site img{
    width: 70px;
 }

 .site .imglp img {
    width: 60px;
 }

 .site h3 {
    color: var(--pink);
    font-size: 19px;
    margin: 15px 0px;
    letter-spacing: 1.5px;
 }

 .site p {
    color: var(--title-color);
    font-size: 16px;
 }

 #contatosec {
    padding: 80px 550px;
    background-color: var(--pink-secundaria);
}

#contatosec h1 {
    font-size: 50px;
    color: #fff;
    font-weight: 600;
    -webkit-text-stroke-width: 2px;
    letter-spacing: 1.5px;
    text-align: center;
}

.informacoes {
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    gap: 30px; 
    justify-content: center; 
    align-items: center;
    margin-top: 50px;
}

.contato {
    background-color: #FFFFFF3B;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-align: center; 
}

.contato img {
    width: 40px;
}

.contato p {
    font-size: 18px;
    color: #fff;
    font-weight: 600;
}











































@media (max-width: 768px) {
    #timeline {
        .timeline-card {
            min-width: 110px;
        }
        .timeline-card h2 {
            color: #fff;
            font-size: 0.8rem;
        }
        .timeline-card span {
            font-size: 1.2rem;
        }
    }
}

@keyframes linegrow {
    0% {
        width: 0px;
    }
    100% {
        width: 100%;
    }
}

@keyframes linegrowVertical {
    0% {
        transform: scaleY(0);
    }
    100% {
        transform: scaleY(1);
    }
}

@keyframes linegrowVerticalOdd {
    0% {
        transform: scaleY(0);
    }
    100% {
        transform: scaleY(1);
    }
}
