.cv-content {
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 100px;
    border-top: 10px;
}

.cv-titulo {
    font-family: "Orbitron", sans-serif;
    color: #00f7ff;
    text-transform: uppercase;
    margin-bottom: 2%;
    text-shadow: 0 0 10px rgba(0, 247, 255, 0.5);
}

.cv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 10px;
    width: 100%;
    padding: 0 5%;
}

.cv-card {
    background: rgba(25, 31, 44, 0.6);
    border: 1px solid rgba(0, 247, 255, 0.2);
    border-radius: 20px;
    padding: 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.cv-card:hover {
    border-color: #00f7ff;
    box-shadow: 0 0 20px rgba(0, 247, 255, 0.2);
    transform: translateY(-5px);
}

.cv-subtitulo {
    font-size: 1.4rem;
    color: #00f7ff;
    margin-bottom: 20px;
    border-bottom: 2px solid rgba(0, 247, 255, 0.3);
    padding-bottom: 10px;
}

.cv-item {
    margin-bottom: 20px;
}

.cv-item-titulo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: #fff;
    font-size: 1.1rem;
}


.btn-linkedin-inline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    display: none;

}

.btn-linkedin-inline:hover {
    transform: scale(1.2);
    filter: brightness(1.2);
}

.btn-linkedin-inline img {
    width: 18px;
    height: 18px;
    filter: drop-shadow(0 0 2px rgba(0, 247, 255, 0.2));
}


.cv-item-local {
    color: #b8b8d0;
    font-size: 0.9rem;
    margin-top: 5px;
}

.btn-curriculo {

    display: flex;
    align-items: center;
    padding: 10px 10px;
    width: auto;
    max-width: 50%;
    text-decoration: none;
    color: #fff;
    background: rgba(0, 2 47, 255, 0.05);
    border: 1px solid rgba(0, 247, 255, 0.4);
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-curriculo:hover {
    background: rgba(0, 247, 255, 0.2);
    border-color: #00f7ff;
    box-shadow: 0 0 15px rgba(0, 247, 255, 0.4);
    transform: translateY(-2px);
}

@media (max-width: 600px) {
    .cv-titulo {
        font-size: 1.5rem;
        text-align: center;
    }

    .cv-grid {
        grid-template-columns: 1fr;
    }

    .cv-content {
        height: auto;
        padding-bottom: 50px;
    }

}