
.projetos-web {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}



.container-projetos-web {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20dvh;
    
}


.titulo-web {
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2vw;
}

.titulo-web p {
    font-size: 3dvh;
    color: rgb(255, 255, 255);
    opacity: 0.5;
}


.cards-web {
    width: 90%;
    display: flex;
    justify-content: flex-start;
    gap: 20px;

    overflow-x: auto; /* scroll horizontal */
    scroll-behavior: smooth;
    padding-bottom:  30px;
}

.card-web{
    width: 55dvh;  
    height: 75dvh;
    flex-shrink: 0; 

    background-color:  rgb(14, 20, 27);
    border-radius: 10px;
    border: 1px solid #3f3f3f;
    box-shadow: rgba(105, 105, 105, 0.2) 5px 10px 10px 5px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    padding-bottom: 10px;
    gap: 10px;
    
}

.link-card-web {
    position: relative;
    
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.link-card-web img {
    width: 100%;
    height: 190px;
    object-position: top;
    object-fit: cover;
}

/* DEGRADÊ branco */
.link-card-web::before {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(to top,
             rgb(14, 20, 27),
            /* branco */
            rgba(255, 255, 255, 0)
            /* transparente */
        );

    z-index: 1;
    pointer-events: none;
    /* não bloqueia hover */
}

.link-card-web img:hover {
    transform: scale(1.05);
    transition: transform 0.5s ease-in-out;
}

.overlay-web {
    position: absolute;
    margin-left: 20dvh;
    bottom: 0;
    width: 70%;
    height: 30%;
    display: flex;
    align-items: end;
    justify-items: center;
    gap: 12px;
    opacity: 0;
    transition: 0.7s ease;
    z-index: 2;
}

.link-card-web:hover .overlay-web {
    opacity: 1;
}


.btn-web {
    height: 50%;
    padding: 8px 16px;
    background: #ffffff;
    font-family: "Poppins", sans-serif;
    font-style:normal;
    color: #000000;
    text-decoration: none;
    display: flex;
    align-items: center;
    border-radius: 999px;
    font-weight: 500;
    transition: 0.2s;
}

.btn-web:hover {
    background: rgb(255, 82, 119);
    color: white;
}

.text-card-web h3 {
    color: #ffffff;
   font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style:normal
}

.text-card-web {
    color: #ffffff;
    display: flex;
    flex-direction: column;
    
    gap: 10px;
    margin-left: 5px;
    width: 90%;
    height: 60%;
}

.text-card-web p {
    font-size: 0.9rem;
    
}

.tecnologias {
    display: flex;
    flex-direction: row;
    gap: 7px;
    font-weight: bold;
    padding-left: 5px;
    overflow-x: auto; /* scroll horizontal */
    scroll-behavior: smooth;
   
}

.tecnologias::-webkit-scrollbar {
    height: 5px;
}



.html {
    background-color: #E34C26;
    
}

.css {
    background-color: #0000FF;
    color: white;
    
}

.js {
    background-color: #F7DF1E;
}

.fireb {
    background-color: #FFA611;
}

.tailwind {
    background-color: #06b6d4;
}

.react {
    background-color: #61DBFB;
}

.next {
    background-color: #00ff00;
}

.wp{
    background-color:#21759b ;
}

.elementor{
    background-color: #D3004F;
}

.tecnologias p {
    font-size: 1rem;
    border-radius: 9999px;
    padding: 4px 12px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

