
.font-main{
    font-family: "Roboto", serif;
    font-optical-sizing: auto;
    font-weight: 100;
    font-style: normal;
    font-variation-settings:
      "wdth" 100;
}

    
    .hero-nuvuus-portafolio{
        height: 45vh;
        background-color:#009CD7;
        color: white;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .rect-nuvuus{
        display: flex;
        justify-content: space-around;
        align-items: center;
        /*background-color: #F5F5F5;*/
        background-color: #ffffff;
        padding: 1rem 1rem;
    }
    
    .rect-nuvuus div{



    }
    .rect-nuvuus div h2{
        font-size: 1.2rem;
    }
        /* Contenedor principal */
.portfolio-item {
max-width: 300px;
border-radius: 10px;
overflow: hidden;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
background-color: #ffffff;
transition: transform 0.3s ease, box-shadow 0.3s ease;
margin: 1rem auto;
text-align: center;
}

/* Imagen del proyecto */
.portfolio-img {
width: 100%;
height: auto;
display: block;
}
.a-link{
display: flex;
flex-direction: column;;
justify-content: center;
align-items: center
}

/* Contenido interno */
.portfolio-content {
padding: 1rem;
}

/* Título del proyecto */
.portfolio-title {
font-size: 1.2rem;
font-weight: bold;
color: #333333;
margin-bottom: 0.5rem;
}

/* Descripción del proyecto */
.portfolio-description {
font-size: 0.9rem;
color: #666666;
line-height: 1.5;
}

/* Efecto hover */
.portfolio-item:hover {
transform: translateY(-5px);
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.logo-img{
margin: 2rem  0 0 0;
width: auto !important;
height: 6vh;
margin-right: 10px;
}
    


.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
}

/* Card de proyecto */
.portfolio-card {
    background-color: #ffffff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.2, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.portfolio-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.portfolio-card:hover .card-logo {
    transform: scale(1.03);
}

/* Contenedor del logo */
.card-logo-container {
    height: 200px;
    overflow: hidden;
    background-color: #f2f2f2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(22, 22, 22, 0) 0%, rgba(22, 22, 22, 0.03) 100%);
    z-index: 1;
}
.card-logo {
    max-width: 70%;
    max-height: 70%;
    object-fit: contain;
    transition: transform 0.5s ease;
    position: relative;
    z-index: 2;
}

/* Contenido de la card */
.card-content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: #161616;
}

.card-description {
    font-size: 0.875rem;
    color: #525252;
    margin-bottom: 16px;
    line-height: 1.5;
    flex-grow: 1;
}
.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.card-tag {
    font-size: 0.75rem;
    color: #0f62fe;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-link {
    color: #0f62fe;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    transition: all 0.2s ease;
}

.card-link:hover {
    color: #0043ce;
}

.card-link svg {
    margin-left: 4px;
    width: 16px;
    height: 16px;
}